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

31 lines
696 B
JavaScript

export const packedBlockingSchema = {
type: "object",
properties: {
id: {
type: "string",
optional: false,
nullable: false,
format: "id",
example: "xxxxxxxxxx"
},
createdAt: {
type: "string",
optional: false,
nullable: false,
format: "date-time"
},
blockeeId: {
type: "string",
optional: false,
nullable: false,
format: "id"
},
blockee: {
type: "object",
optional: false,
nullable: false,
ref: "UserDetailed"
}
}
};