mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
58 lines
1.3 KiB
Plaintext
58 lines
1.3 KiB
Plaintext
{
|
||
summary: 'ノートに対するRenote一覧を取得します。',
|
||
description: 'ノートに対するRenote一覧を取得します。',
|
||
tags: [
|
||
'notes',
|
||
],
|
||
requireCredential: false,
|
||
req: {
|
||
type: 'object',
|
||
properties: {
|
||
noteId: {
|
||
type: 'string',
|
||
format: 'misskey:id',
|
||
description: 'ノートのid。',
|
||
},
|
||
limit: {
|
||
type: 'integer',
|
||
minimum: 1,
|
||
maximum: 100,
|
||
default: 10,
|
||
description: '取得するノートの最大数。',
|
||
},
|
||
sinceId: {
|
||
type: 'string',
|
||
format: 'misskey:id',
|
||
description: '指定すると、idがその値よりも大きいノートを返します。',
|
||
},
|
||
untilId: {
|
||
type: 'string',
|
||
format: 'misskey:id',
|
||
description: '指定すると、idがその値よりも小さいノートを返します。',
|
||
},
|
||
},
|
||
required: [
|
||
'noteId',
|
||
],
|
||
},
|
||
res: {
|
||
type: 'array',
|
||
optional: false,
|
||
nullable: false,
|
||
items: {
|
||
type: 'object',
|
||
optional: false,
|
||
nullable: false,
|
||
ref: 'Note',
|
||
$ref: 'misskey://Note',
|
||
},
|
||
},
|
||
errors: {
|
||
'12908022-2e21-46cd-ba6a-3edaf6093f46': {
|
||
id: '12908022-2e21-46cd-ba6a-3edaf6093f46',
|
||
code: 'NO_SUCH_NOTE',
|
||
description: '指定されたノートが存在しないか、アクセスが許可されていません。',
|
||
},
|
||
},
|
||
}
|