mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
47 lines
580 B
Plaintext
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: {},
|
|
} |