jointrashposs/content/ja/.docs-legacy/api/endpoints/admin/ad/create.json5

47 lines
580 B
Plaintext
Raw Normal View History

2023-07-08 10:36:02 +02:00
{
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: {},
}