8d06a6475e
* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
180 lines
3.3 KiB
TypeScript
180 lines
3.3 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export const packedNoteSchema = {
|
|
type: 'object',
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
createdAt: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'date-time',
|
|
},
|
|
deletedAt: {
|
|
type: 'string',
|
|
optional: true, nullable: true,
|
|
format: 'date-time',
|
|
},
|
|
text: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
cw: {
|
|
type: 'string',
|
|
optional: true, nullable: true,
|
|
},
|
|
userId: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
},
|
|
user: {
|
|
type: 'object',
|
|
ref: 'UserLite',
|
|
optional: false, nullable: false,
|
|
},
|
|
replyId: {
|
|
type: 'string',
|
|
optional: true, nullable: true,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
renoteId: {
|
|
type: 'string',
|
|
optional: true, nullable: true,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
reply: {
|
|
type: 'object',
|
|
optional: true, nullable: true,
|
|
ref: 'Note',
|
|
},
|
|
renote: {
|
|
type: 'object',
|
|
optional: true, nullable: true,
|
|
ref: 'Note',
|
|
},
|
|
isHidden: {
|
|
type: 'boolean',
|
|
optional: true, nullable: false,
|
|
},
|
|
visibility: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
mentions: {
|
|
type: 'array',
|
|
optional: true, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
},
|
|
},
|
|
visibleUserIds: {
|
|
type: 'array',
|
|
optional: true, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
},
|
|
},
|
|
fileIds: {
|
|
type: 'array',
|
|
optional: true, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
format: 'id',
|
|
},
|
|
},
|
|
files: {
|
|
type: 'array',
|
|
optional: true, nullable: false,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
ref: 'DriveFile',
|
|
},
|
|
},
|
|
tags: {
|
|
type: 'array',
|
|
optional: true, nullable: false,
|
|
items: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
},
|
|
poll: {
|
|
type: 'object',
|
|
optional: true, nullable: true,
|
|
},
|
|
channelId: {
|
|
type: 'string',
|
|
optional: true, nullable: true,
|
|
format: 'id',
|
|
example: 'xxxxxxxxxx',
|
|
},
|
|
channel: {
|
|
type: 'object',
|
|
optional: true, nullable: true,
|
|
items: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
},
|
|
name: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
localOnly: {
|
|
type: 'boolean',
|
|
optional: true, nullable: false,
|
|
},
|
|
reactionAcceptance: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
reactions: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
},
|
|
renoteCount: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
repliesCount: {
|
|
type: 'number',
|
|
optional: false, nullable: false,
|
|
},
|
|
uri: {
|
|
type: 'string',
|
|
optional: true, nullable: false,
|
|
},
|
|
url: {
|
|
type: 'string',
|
|
optional: true, nullable: false,
|
|
},
|
|
|
|
myReaction: {
|
|
type: 'object',
|
|
optional: true, nullable: true,
|
|
},
|
|
},
|
|
} as const;
|