Files
hunfabric/modules/project/schemas/scc-mute-config.schema.json

30 lines
559 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SCC Mute Configurations",
"type": "object",
"patternProperties": {
"^[a-zA-Z]+$": {
"type": "object",
"required": [
"filter"
],
"properties": {
"description": {
"type": "string"
},
"filter": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"DYNAMIC",
"STATIC"
],
"default": "DYNAMIC"
}
}
}
}
}