41 lines
935 B
JavaScript
41 lines
935 B
JavaScript
export const packedUserGroupSchema = {
|
|
type: "object",
|
|
properties: {
|
|
id: {
|
|
type: "string",
|
|
optional: false,
|
|
nullable: false,
|
|
format: "id",
|
|
example: "xxxxxxxxxx"
|
|
},
|
|
createdAt: {
|
|
type: "string",
|
|
optional: false,
|
|
nullable: false,
|
|
format: "date-time"
|
|
},
|
|
name: {
|
|
type: "string",
|
|
optional: false,
|
|
nullable: false
|
|
},
|
|
ownerId: {
|
|
type: "string",
|
|
nullable: false,
|
|
optional: false,
|
|
format: "id"
|
|
},
|
|
userIds: {
|
|
type: "array",
|
|
nullable: false,
|
|
optional: true,
|
|
items: {
|
|
type: "string",
|
|
nullable: false,
|
|
optional: false,
|
|
format: "id"
|
|
}
|
|
}
|
|
}
|
|
};
|