[fix] api:group_list:output_schema
This commit is contained in:
parent
8d803cbec1
commit
cc244ad576
|
|
@ -52,20 +52,31 @@ namespace _espe.api
|
|||
"type": "intiger",
|
||||
"description": "ID"
|
||||
},
|
||||
"name": {
|
||||
"preview": {
|
||||
"nullable": false,
|
||||
"type": "string",
|
||||
"description": "Name"
|
||||
},
|
||||
"label": {
|
||||
"nullable": false,
|
||||
"type": "string",
|
||||
"description": "Beschriftung"
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"name": {
|
||||
"nullable": false,
|
||||
"type": "string",
|
||||
"description": "Name"
|
||||
},
|
||||
"label": {
|
||||
"nullable": false,
|
||||
"type": "string",
|
||||
"description": "Beschriftung"
|
||||
},
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"name",
|
||||
"label",
|
||||
]
|
||||
},
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"name",
|
||||
"preview",
|
||||
]
|
||||
}),
|
||||
"restriction": () => restriction_none,
|
||||
|
|
|
|||
Loading…
Reference in a new issue