blob: 342c2261dade59202134b7847e789181f60c7282 [file] [edit]
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"$schema": {
"type": "string",
"format": "uri"
}
},
"patternProperties": {
"^[A-Za-z0-9_]+$": {
"$ref": "#/$defs/system"
}
},
"additionalProperties": false,
"$defs": {
"system": {
"type": "object",
"properties": {
"include": {
"type": "array",
"items": {
"type": "string"
}
},
"exclude": {
"type": "array",
"items": {
"type": "string"
}
},
"depends": {
"type": "array",
"items": {
"type": "string"
}
},
"fullyAffectedBy": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": ["include"]
}
}
}