mapcomplete/Docs/Schemas/AndOrTagConfigJsonJSC.ts

37 lines
793 B
TypeScript
Raw Normal View History

export default {
2022-02-09 03:46:50 +01:00
"$ref": "#/definitions/AndOrTagConfigJson",
"definitions": {
"AndOrTagConfigJson": {
"type": "object",
"properties": {
"and": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AndOrTagConfigJson"
},
{
"type": "string"
}
]
}
},
"or": {
"type": "array",
"items": {
"anyOf": [
{
"$ref": "#/definitions/AndOrTagConfigJson"
},
{
"type": "string"
}
]
}
}
2022-02-09 03:46:50 +01:00
}
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}