Improve doc

This commit is contained in:
syuilo 2019-02-25 03:30:22 +09:00
parent 68d90caab7
commit 77676d18c8
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 26 additions and 0 deletions

View File

@ -13,6 +13,32 @@ export const meta = {
tags: ['meta'], tags: ['meta'],
params: { params: {
},
res: {
type: 'object',
properties: {
notesCount: {
type: 'number',
description: 'The count of all (local/remote) notes of this instance.',
},
originalNotesCount: {
type: 'number',
description: 'The count of all local notes of this instance.',
},
usersCount: {
type: 'number',
description: 'The count of all (local/remote) accounts of this instance.',
},
originalUsersCount: {
type: 'number',
description: 'The count of all local accounts of this instance.',
},
instances: {
type: 'number',
description: 'The count of federated instances.',
},
}
} }
}; };