Files
FrozenFriendsYume/packages/backend/built/models/schema/drive-folder.js
T
2026-07-26 18:25:37 +09:00

47 lines
1.1 KiB
JavaScript

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