Files
2026-07-26 18:25:37 +09:00

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"
}
}
}
};