jointrashposs/content/ja/.docs-legacy/api/endpoints/users/get-frequently-replied-users.json5
2023-07-11 23:48:17 +09:00

66 lines
1.6 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: 'ユーザーが頻繁にリプライを送信しているユーザーを取得します。最新の1000件のートを対象に集計を行います。',
tags: [
'users',
],
requireCredential: false,
req: {
type: 'object',
properties: {
userId: {
type: 'string',
format: 'misskey:id',
description: 'ユーザーのid。',
},
limit: {
type: 'integer',
minimum: 1,
maximum: 100,
default: 10,
description: '取得するユーザーの最大数。',
},
},
required: [
'userId',
],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
properties: {
user: {
type: 'object',
optional: false,
nullable: false,
ref: 'UserDetailed',
$ref: 'misskey://UserDetailed',
},
weight: {
type: 'number',
optional: false,
nullable: false,
description: 'userに送信したリプライ数を、あるユーザーに送った最大のリプライ数で割ったもの。最大のリプライの送信先がuserである場合、weightは1になります。',
},
},
required: [
'user',
'weight',
],
},
description: 'リプライをよく送信しているユーザーの一覧。',
},
errors: {
'e6965129-7b2a-40a4-bae2-cd84cd434822': {
id: 'e6965129-7b2a-40a4-bae2-cd84cd434822',
code: 'NO_SUCH_USER',
description: 'ユーザーが存在しません。',
},
},
}