Adding ui-json schemas (#188)

This commit is contained in:
Daan Verstraten
2023-10-24 00:31:52 +02:00
committed by GitHub
parent 6643219664
commit 325b02b2e3
17 changed files with 1875 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "UI definitions",
"type": "object",
"properties": {
"ui_defs": {
"title": "UI definitions",
"type": "array",
"items": {
"type": "string",
"title": "UI definition path",
"description": "Path to a UI definition file.",
"examples": ["ui/button.json", "ui/checkbox.json"]
}
}
}
}