jointrashposs/content/ja-JP/.docs-legacy/api/endpoints/admin/show-moderation-logs.json5
kakkokari-gtyih a8dca2c347 migrate docs
2023-07-11 00:44:03 +09:00

85 lines
1.3 KiB
Plaintext

{
summary: '',
description: '',
tags: [
'admin',
],
requireCredential: true,
req: {
type: 'object',
properties: {
limit: {
type: 'integer',
minimum: 1,
maximum: 100,
default: 10,
},
sinceId: {
type: 'string',
format: 'misskey:id',
},
untilId: {
type: 'string',
format: 'misskey:id',
},
},
required: [],
},
res: {
type: 'array',
optional: false,
nullable: false,
items: {
type: 'object',
optional: false,
nullable: false,
properties: {
id: {
type: 'string',
optional: false,
nullable: false,
format: 'id',
},
createdAt: {
type: 'string',
optional: false,
nullable: false,
format: 'date-time',
},
type: {
type: 'string',
optional: false,
nullable: false,
},
info: {
type: 'object',
optional: false,
nullable: false,
},
userId: {
type: 'string',
optional: false,
nullable: false,
format: 'id',
},
user: {
type: 'object',
optional: false,
nullable: false,
ref: 'UserDetailed',
$ref: 'misskey://UserDetailed',
},
},
required: [
'id',
'createdAt',
'type',
'info',
'userId',
'user',
],
},
},
errors: {},
}