mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 09:43:09 +02:00
40 lines
737 B
TypeScript
40 lines
737 B
TypeScript
|
export const packedDriveFolderSchema = {
|
||
|
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,
|
||
|
},
|
||
|
foldersCount: {
|
||
|
type: 'number',
|
||
|
optional: true, nullable: false,
|
||
|
},
|
||
|
filesCount: {
|
||
|
type: 'number',
|
||
|
optional: true, nullable: false,
|
||
|
},
|
||
|
parentId: {
|
||
|
type: 'string',
|
||
|
optional: false, nullable: true,
|
||
|
format: 'id',
|
||
|
example: 'xxxxxxxxxx',
|
||
|
},
|
||
|
parent: {
|
||
|
type: 'object',
|
||
|
optional: true, nullable: true,
|
||
|
ref: 'DriveFolder',
|
||
|
},
|
||
|
},
|
||
|
} as const;
|