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

67 lines
1.5 KiB
JavaScript

export const packedPageSchema = {
type: "object",
properties: {
id: {
type: "string",
optional: false,
nullable: false,
format: "id",
example: "xxxxxxxxxx"
},
createdAt: {
type: "string",
optional: false,
nullable: false,
format: "date-time"
},
updatedAt: {
type: "string",
optional: false,
nullable: false,
format: "date-time"
},
title: {
type: "string",
optional: false,
nullable: false
},
name: {
type: "string",
optional: false,
nullable: false
},
summary: {
type: "string",
optional: false,
nullable: true
},
content: {
type: "array",
optional: false,
nullable: false
},
variables: {
type: "array",
optional: false,
nullable: false
},
userId: {
type: "string",
optional: false,
nullable: false,
format: "id"
},
user: {
type: "object",
ref: "UserLite",
optional: false,
nullable: false
},
isPublic: {
type: "boolean",
optional: false,
nullable: false
}
}
};