Files
hunfabric/modules/project/schemas/scc-sha-custom-modules.schema.json

51 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "SCC Security Health Analytics Custom Modules",
"type": "object",
"patternProperties": {
"^[a-z][a-zA-Z0-9_]*$": {
"type": "object",
"required": [
"predicate",
"resource_selector",
"severity"
],
"properties": {
"description": {
"type": "string"
},
"predicate": {
"type": "object",
"required": [
"expression"
],
"properties": {
"expression": {
"type": "string"
}
}
},
"recommendation": {
"type": "string"
},
"resource_selector": {
"type": "object",
"required": [
"resource_types"
],
"properties": {
"resource_types": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"severity": {
"type": "string"
}
}
}
}
}