mapcomplete/Docs/Schemas/AndOrTagConfigJson.schema.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
848 B
JSON
Raw Normal View History

{
"$ref": "#/definitions/AndOrTagConfigJson",
"definitions": {
"AndOrTagConfigJson": {
"type": "object",
"properties": {
"and": {
"type": "array",
"items": {
"anyOf": [
{
2021-11-07 17:52:05 +01:00
"$ref": "#/definitions/AndOrTagConfigJson"
},
{
2021-11-07 17:52:05 +01:00
"type": "string"
}
]
}
},
"or": {
"type": "array",
"items": {
"anyOf": [
{
2021-11-07 17:52:05 +01:00
"$ref": "#/definitions/AndOrTagConfigJson"
},
{
2021-11-07 17:52:05 +01:00
"type": "string"
}
]
}
}
2021-11-07 17:52:05 +01:00
},
"additionalProperties": false
}
},
2021-11-07 17:52:05 +01:00
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false
}