jointrashposs/content/ja/.docs-legacy/api/endpoints/antennas/notes.json5
2023-07-11 23:48:17 +09:00

60 lines
895 B
Plaintext

{
summary: '',
description: '',
tags: [
'antennas',
],
requireCredential: true,
req: {
type: 'object',
properties: {
antennaId: {
type: 'string',
format: 'misskey:id',
},
limit: {
type: 'integer',
minimum: 1,
maximum: 100,
default: 10,
},
sinceId: {
type: 'string',
format: 'misskey:id',
},
untilId: {
type: 'string',
format: 'misskey:id',
},
sinceDate: {
type: 'integer',
},
untilDate: {
type: 'integer',
},
},
required: [
'antennaId',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Note',
$ref: 'misskey://Note',
},
},
errors: {
'850926e0-fd3b-49b6-b69a-b28a5dbd82fe': {
id: '850926e0-fd3b-49b6-b69a-b28a5dbd82fe',
code: 'NO_SUCH_ANTENNA',
description: '',
},
},
}