mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 17:59:07 +01:00
66 lines
1.6 KiB
Plaintext
66 lines
1.6 KiB
Plaintext
{
|
||
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: 'ユーザーが存在しません。',
|
||
},
|
||
},
|
||
}
|