jointrashposs/content/ja/.docs-legacy/api/endpoints/users/get-frequently-replied-users.json5

66 lines
1.6 KiB
Plaintext
Raw Normal View History

2023-07-08 10:36:02 +02:00
{
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: 'ユーザーが存在しません。',
},
},
}