mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-25 10:19:07 +01:00
89 lines
1.1 KiB
Plaintext
89 lines
1.1 KiB
Plaintext
|
{
|
||
|
summary: '',
|
||
|
description: '',
|
||
|
tags: [
|
||
|
'charts',
|
||
|
],
|
||
|
requireCredential: false,
|
||
|
req: {
|
||
|
type: 'object',
|
||
|
properties: {
|
||
|
span: {
|
||
|
type: 'string',
|
||
|
enum: [
|
||
|
'day',
|
||
|
'hour',
|
||
|
],
|
||
|
},
|
||
|
limit: {
|
||
|
type: 'integer',
|
||
|
minimum: 1,
|
||
|
maximum: 500,
|
||
|
default: 30,
|
||
|
},
|
||
|
offset: {
|
||
|
type: 'integer',
|
||
|
nullable: true,
|
||
|
default: null,
|
||
|
},
|
||
|
userId: {
|
||
|
type: 'string',
|
||
|
format: 'misskey:id',
|
||
|
},
|
||
|
},
|
||
|
required: [
|
||
|
'span',
|
||
|
'userId',
|
||
|
],
|
||
|
},
|
||
|
res: {
|
||
|
type: 'object',
|
||
|
properties: {
|
||
|
totalCount: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
},
|
||
|
totalSize: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
},
|
||
|
incCount: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
},
|
||
|
incSize: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
},
|
||
|
decCount: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
},
|
||
|
decSize: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
type: 'number',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
required: [
|
||
|
'totalCount',
|
||
|
'totalSize',
|
||
|
'incCount',
|
||
|
'incSize',
|
||
|
'decCount',
|
||
|
'decSize',
|
||
|
],
|
||
|
},
|
||
|
errors: {},
|
||
|
}
|