mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-23 17:29:06 +01:00
44 lines
572 B
Plaintext
44 lines
572 B
Plaintext
{
|
|
summary: '',
|
|
description: '',
|
|
tags: [
|
|
'app',
|
|
],
|
|
requireCredential: false,
|
|
req: {
|
|
type: 'object',
|
|
properties: {
|
|
name: {
|
|
type: 'string',
|
|
},
|
|
description: {
|
|
type: 'string',
|
|
},
|
|
permission: {
|
|
type: 'array',
|
|
uniqueItems: true,
|
|
items: {
|
|
type: 'string',
|
|
},
|
|
},
|
|
callbackUrl: {
|
|
type: 'string',
|
|
nullable: true,
|
|
},
|
|
},
|
|
required: [
|
|
'name',
|
|
'description',
|
|
'permission',
|
|
],
|
|
},
|
|
res: {
|
|
type: 'object',
|
|
optional: false,
|
|
nullable: false,
|
|
ref: 'App',
|
|
$ref: 'misskey://App',
|
|
},
|
|
errors: {},
|
|
}
|