[fix] api-action "member/register": output schema

This commit is contained in:
roydfalk 2024-05-20 14:06:30 +02:00
parent aeda24c6fb
commit 0ed5457e3e

View file

@ -57,7 +57,32 @@ namespace _espe.api
]
}),
"output_schema": () => ({
"nullable": true,
"nullable": false,
"type": "array",
"items": {
"nullable": false,
"type": "object",
"properties": {
"incident": {
"nullable": false,
"type": "string"
},
"details": {
"nullable": false,
"type": "object",
"properties": {},
"additionalProperties": {
"nullable": true
},
"required": []
},
},
"additionalProperties": false,
"required": [
"incident",
"details",
]
}
}),
"query_parameters": [
{