Add json schema files for the layout-config.json

This commit is contained in:
Pieter Vander Vennet 2021-11-07 17:17:48 +01:00
parent bb283b59a4
commit e15ec387a2
25 changed files with 7340 additions and 0 deletions

View file

@ -0,0 +1,37 @@
export default {
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/AndOrTagConfigJson",
"definitions": {
"AndOrTagConfigJson": {
"type": "object",
"properties": {
"and": {
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/AndOrTagConfigJson"
}
]
}
},
"or": {
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/definitions/AndOrTagConfigJson"
}
]
}
}
}
}
}
}