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

75 lines
1.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
summary: 'ノートを検索します。',
description: 'ノートを検索します。',
tags: [
'notes',
],
requireCredential: false,
req: {
type: 'object',
properties: {
query: {
type: 'string',
description: '検索クエリ。クエリが本文に含まれるノートを検索します。',
},
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: '取得するノートの最大数。',
},
offset: {
type: 'integer',
default: 0,
description: '検索結果の先頭offset個をスキップします。',
},
host: {
type: 'string',
nullable: true,
description: 'The local host is represented with `null`.',
},
userId: {
type: 'string',
format: 'misskey:id',
nullable: true,
default: null,
description: '指定すると、そのユーザが作成したノートを検索します。',
},
channelId: {
type: 'string',
format: 'misskey:id',
nullable: true,
default: null,
description: '指定すると、そのチャンネルに属するートを検索します。userIdと併せて指定した場合、channelIdは無視されます。',
},
},
required: [
'query',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
ref: 'Note',
$ref: 'misskey://Note',
},
},
errors: {},
}