misskey/packages/misskey-js/src/schemas/id.ts

8 lines
245 B
TypeScript
Raw Normal View History

2023-05-04 19:56:24 +09:00
import type { JSONSchema7Definition } from 'schema-type';
2023-05-03 01:51:41 +09:00
export const IdSchema = {
2023-05-04 19:56:24 +09:00
$id: 'https://misskey-hub.net/api/schemas/Id',
2023-05-03 01:51:41 +09:00
type: 'string',
format: 'id',
2023-05-04 19:56:24 +09:00
examples: 'xxxxxxxxxx',
} as const satisfies JSONSchema7Definition;