mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 19:43:09 +02:00
35 lines
627 B
TypeScript
35 lines
627 B
TypeScript
|
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',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
} as const;
|