mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
52 lines
1.0 KiB
Plaintext
52 lines
1.0 KiB
Plaintext
|
{
|
|||
|
summary: 'ノートへの返信を取得します。',
|
|||
|
description: 'ノートへの返信を取得します。',
|
|||
|
tags: [
|
|||
|
'notes',
|
|||
|
],
|
|||
|
requireCredential: false,
|
|||
|
req: {
|
|||
|
type: 'object',
|
|||
|
properties: {
|
|||
|
noteId: {
|
|||
|
type: 'string',
|
|||
|
format: 'misskey:id',
|
|||
|
description: 'ノートのid。',
|
|||
|
},
|
|||
|
sinceId: {
|
|||
|
type: 'string',
|
|||
|
format: 'misskey:id',
|
|||
|
description: '指定すると、idがその値よりも大きいノートを返します。',
|
|||
|
},
|
|||
|
untilId: {
|
|||
|
type: 'string',
|
|||
|
format: 'misskey:id',
|
|||
|
description: '指定すると、idがその値よりも小さいノートを返します。',
|
|||
|
},
|
|||
|
limit: {
|
|||
|
type: 'integer',
|
|||
|
minimum: 1,
|
|||
|
maximum: 100,
|
|||
|
default: 10,
|
|||
|
description: '取得するノートの最大数。',
|
|||
|
},
|
|||
|
},
|
|||
|
required: [
|
|||
|
'noteId',
|
|||
|
],
|
|||
|
},
|
|||
|
res: {
|
|||
|
type: 'array',
|
|||
|
optional: false,
|
|||
|
nullable: false,
|
|||
|
items: {
|
|||
|
type: 'object',
|
|||
|
optional: false,
|
|||
|
nullable: false,
|
|||
|
ref: 'Note',
|
|||
|
$ref: 'misskey://Note',
|
|||
|
},
|
|||
|
},
|
|||
|
errors: {},
|
|||
|
}
|