This commit is contained in:
DaanV2
2021-11-05 11:17:08 +01:00
parent bc0979b16d
commit a9ef3fc3a4
14 changed files with 60 additions and 50 deletions

View File

@@ -20,6 +20,19 @@
"title": {
"type": "string",
"pattern": "^([A-Z0-9][a-z0-9\\.]*(| ))*$"
},
"defaultSnippets": {
"type": "array",
"title": "default Snippets",
"items": {
"type": "object",
"required": ["label", "body"],
"examples": [{ "label": "example", "body": {} }],
"properties": {
"label": { "type": "string" },
"body": { "type": ["object", "string", "array", "number", "boolean", "integer"] }
}
}
}
}
},