30 lines
763 B
JSON
30 lines
763 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://stellaops.io/schemas/policy-pack.schema.json",
|
|
"title": "Policy Pack Schema",
|
|
"description": "Schema for StellaOps policy pack definitions.",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"description": "The name of the policy pack."
|
|
},
|
|
"version": {
|
|
"type": "string",
|
|
"description": "The version of the policy pack."
|
|
},
|
|
"description": {
|
|
"type": "string",
|
|
"description": "A description of the policy pack."
|
|
},
|
|
"rules": {
|
|
"type": "array",
|
|
"description": "The rules in the policy pack.",
|
|
"items": {
|
|
"type": "object"
|
|
}
|
|
}
|
|
},
|
|
"required": ["name", "version"]
|
|
}
|