[fix] api:group_list:output_schema

This commit is contained in:
fenris 2025-10-05 22:41:26 +02:00
parent 8d803cbec1
commit cc244ad576

View file

@ -52,20 +52,31 @@ namespace _espe.api
"type": "intiger", "type": "intiger",
"description": "ID" "description": "ID"
}, },
"name": { "preview": {
"nullable": false, "nullable": false,
"type": "string", "type": "object",
"description": "Name" "properties": {
}, "name": {
"label": { "nullable": false,
"nullable": false, "type": "string",
"type": "string", "description": "Name"
"description": "Beschriftung" },
"label": {
"nullable": false,
"type": "string",
"description": "Beschriftung"
},
},
"additionalProperties": false,
"required": [
"name",
"label",
]
}, },
}, },
"required": [ "required": [
"id", "id",
"name", "preview",
] ]
}), }),
"restriction": () => restriction_none, "restriction": () => restriction_none,