46 lines
1.0 KiB
JavaScript
46 lines
1.0 KiB
JavaScript
export const packedClipSchema = {
|
|
type: "object",
|
|
properties: {
|
|
id: {
|
|
type: "string",
|
|
optional: false,
|
|
nullable: false,
|
|
format: "id",
|
|
example: "xxxxxxxxxx"
|
|
},
|
|
createdAt: {
|
|
type: "string",
|
|
optional: false,
|
|
nullable: false,
|
|
format: "date-time"
|
|
},
|
|
userId: {
|
|
type: "string",
|
|
optional: false,
|
|
nullable: false,
|
|
format: "id"
|
|
},
|
|
user: {
|
|
type: "object",
|
|
ref: "UserLite",
|
|
optional: false,
|
|
nullable: false
|
|
},
|
|
name: {
|
|
type: "string",
|
|
optional: false,
|
|
nullable: false
|
|
},
|
|
description: {
|
|
type: "string",
|
|
optional: false,
|
|
nullable: true
|
|
},
|
|
isPublic: {
|
|
type: "boolean",
|
|
optional: false,
|
|
nullable: false
|
|
}
|
|
}
|
|
};
|