wip
This commit is contained in:
parent
3e13bb4cd7
commit
0e08c56bc7
1 changed files with 25 additions and 25 deletions
|
@ -1,51 +1,51 @@
|
||||||
|
import type { JSONSchema7Definition } from 'schema-type';
|
||||||
|
|
||||||
export const packedPageSchema = {
|
export const packedPageSchema = {
|
||||||
|
$id: 'https://misskey-hub.net/api/schemas/Page',
|
||||||
|
|
||||||
type: 'object',
|
type: 'object',
|
||||||
properties: {
|
properties: {
|
||||||
id: {
|
id: { $ref: 'https://misskey-hub.net/api/schemas/Id' },
|
||||||
type: 'string',
|
|
||||||
optional: false, nullable: false,
|
|
||||||
format: 'id',
|
|
||||||
example: 'xxxxxxxxxx',
|
|
||||||
},
|
|
||||||
createdAt: {
|
createdAt: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
optional: false, nullable: false,
|
|
||||||
format: 'date-time',
|
format: 'date-time',
|
||||||
},
|
},
|
||||||
updatedAt: {
|
updatedAt: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
optional: false, nullable: false,
|
|
||||||
format: 'date-time',
|
format: 'date-time',
|
||||||
},
|
},
|
||||||
title: {
|
title: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
optional: false, nullable: false,
|
|
||||||
},
|
},
|
||||||
name: {
|
name: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
optional: false, nullable: false,
|
|
||||||
},
|
},
|
||||||
summary: {
|
summary: {
|
||||||
type: 'string',
|
type: ['string', 'null'],
|
||||||
optional: false, nullable: true,
|
|
||||||
},
|
},
|
||||||
content: {
|
content: {
|
||||||
type: 'array',
|
type: 'array',
|
||||||
optional: false, nullable: false,
|
|
||||||
},
|
},
|
||||||
variables: {
|
variables: {
|
||||||
type: 'array',
|
type: 'array',
|
||||||
optional: false, nullable: false,
|
items: {
|
||||||
},
|
type: 'object',
|
||||||
userId: {
|
additionalProperties: true,
|
||||||
type: 'string',
|
},
|
||||||
optional: false, nullable: false,
|
|
||||||
format: 'id',
|
|
||||||
},
|
|
||||||
user: {
|
|
||||||
type: 'object',
|
|
||||||
ref: 'UserLite',
|
|
||||||
optional: false, nullable: false,
|
|
||||||
},
|
},
|
||||||
|
userId: { $ref: 'https://misskey-hub.net/api/schemas/Id' },
|
||||||
|
user: { $ref: 'https://misskey-hub.net/api/schemas/UserLite' },
|
||||||
},
|
},
|
||||||
} as const;
|
required: [
|
||||||
|
'id',
|
||||||
|
'createdAt',
|
||||||
|
'updatedAt',
|
||||||
|
'title',
|
||||||
|
'name',
|
||||||
|
'summary',
|
||||||
|
'content',
|
||||||
|
'variables',
|
||||||
|
'userId',
|
||||||
|
'user',
|
||||||
|
],
|
||||||
|
} as const satisfies JSONSchema7Definition;
|
||||||
|
|
Loading…
Reference in a new issue