export const packedUserListSchema = {
type: 'object',
properties: {
id: {
type: 'string',
optional: false, nullable: false,
format: 'id',
example: 'xxxxxxxxxx',
},
createdAt: {
format: 'date-time',
name: {
userIds: {
type: 'array',
nullable: false, optional: true,
items: {
nullable: false, optional: false,
isPublic: {
type: 'boolean',
nullable: false,
optional: false,
} as const;