1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-01 20:56:06 +02:00

fix(backend): add response schema for notes/show-partial-bulk endpoint (#16093)

This commit is contained in:
zyoshoka
2025-05-25 08:38:45 +09:00
committed by GitHub
parent 0504d4399c
commit ed3a844f5d
2 changed files with 29 additions and 2 deletions

View File

@@ -19,7 +19,26 @@ export const meta = {
optional: false, nullable: false,
items: {
type: 'object',
optional: false, nullable: false,
properties: {
id: {
type: 'string',
optional: false, nullable: false,
},
reactions: {
type: 'object',
optional: false, nullable: false,
additionalProperties: {
type: 'number',
},
},
reactionEmojis: {
type: 'object',
optional: false, nullable: false,
additionalProperties: {
type: 'string',
},
},
},
},
},