This commit is contained in:
DaanV2
2021-06-09 11:12:18 +02:00
parent ada0815fa6
commit 13dad248b8
76 changed files with 351 additions and 327 deletions

View File

@@ -3,15 +3,22 @@
"additionalProperties": false,
"description": "The function set_data",
"title": "Set Data",
"type": "object",
"properties": {
"function": { "type": "string", "const": "set_data", "description": "UNDOCUMENTATED", "title": "TODO Title" },
"function": { "type": "string", "const": "set_data", "description": "UNDOCUMENTATED", "title": "Function" },
"data": {
"title": "Data",
"description": "UNDOCUMENTATED",
"oneOf": [
{ "type": "integer" },
{ "type": "object", "properties": { "min": { "type": "integer", "title": "Minimum" }, "max": { "type": "integer", "title": "Maximum" } } }
],
"description": "UNDOCUMENTATED"
{
"type": "object",
"properties": {
"min": { "type": "integer", "title": "Minimum", "description": "UNDOCUMENTATED" },
"max": { "type": "integer", "title": "Maximum", "description": "UNDOCUMENTATED" }
}
}
]
}
}
}