jointrashposs/content/ja/.docs-legacy/api/endpoints/admin/ad/create.json5
2023-07-11 23:48:17 +09:00

47 lines
580 B
Plaintext

{
summary: '',
description: '',
tags: [
'admin',
],
requireCredential: true,
req: {
type: 'object',
properties: {
url: {
type: 'string',
minLength: 1,
},
memo: {
type: 'string',
},
place: {
type: 'string',
},
priority: {
type: 'string',
},
ratio: {
type: 'integer',
},
expiresAt: {
type: 'integer',
},
imageUrl: {
type: 'string',
minLength: 1,
},
},
required: [
'url',
'memo',
'place',
'priority',
'ratio',
'expiresAt',
'imageUrl',
],
},
res: {},
errors: {},
}