mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 01:39:07 +01:00
61 lines
1.4 KiB
Plaintext
61 lines
1.4 KiB
Plaintext
|
{
|
|||
|
summary: 'サーバーの情報を取得します。',
|
|||
|
description: 'サーバーの情報を取得します。',
|
|||
|
tags: [
|
|||
|
'meta',
|
|||
|
],
|
|||
|
requireCredential: false,
|
|||
|
req: {},
|
|||
|
res: {
|
|||
|
type: 'object',
|
|||
|
optional: false, nullable: false,
|
|||
|
properties: {
|
|||
|
notesCount: {
|
|||
|
type: 'number',
|
|||
|
optional: false, nullable: false,
|
|||
|
description: '総ノート数です。',
|
|||
|
},
|
|||
|
originalNotesCount: {
|
|||
|
type: 'number',
|
|||
|
optional: false, nullable: false,
|
|||
|
description: 'サーバー内(ローカル)で作成された総ノート数です。',
|
|||
|
},
|
|||
|
usersCount: {
|
|||
|
type: 'number',
|
|||
|
optional: false, nullable: false,
|
|||
|
description: '総ユーザ数です。',
|
|||
|
},
|
|||
|
originalUsersCount: {
|
|||
|
type: 'number',
|
|||
|
optional: false, nullable: false,
|
|||
|
description: 'サーバー内(ローカル)で作成された総ユーザ数です。',
|
|||
|
},
|
|||
|
instances: {
|
|||
|
type: 'number',
|
|||
|
optional: false, nullable: false,
|
|||
|
description: '',
|
|||
|
},
|
|||
|
driveUsageLocal: {
|
|||
|
type: 'number',
|
|||
|
optional: false, nullable: false,
|
|||
|
description: '未実装:常に0を返します。',
|
|||
|
},
|
|||
|
driveUsageRemote: {
|
|||
|
type: 'number',
|
|||
|
optional: false, nullable: false,
|
|||
|
description: '未実装:常に0を返します。',
|
|||
|
},
|
|||
|
},
|
|||
|
required: [
|
|||
|
'notesCount',
|
|||
|
'originalNotesCount',
|
|||
|
'usersCount',
|
|||
|
'originalUsersCount',
|
|||
|
'instances',
|
|||
|
'driveUsageLocal',
|
|||
|
'driveUsageRemote',
|
|||
|
],
|
|||
|
},
|
|||
|
errors: {},
|
|||
|
}
|