infrastructure/roles/heimdall-order/cfg.schema.json

34 lines
483 B
JSON
Raw Normal View History

2026-03-31 21:12:54 +02:00
{
"nullable": false,
"type": "object",
"properties": {
"user": {
"nullable": false,
"type": "string",
"default": "heimdall"
},
"directory": {
"nullable": false,
"type": "string",
"default": "/etc/heimdall"
},
"rate": {
"nullable": false,
"type": "integer",
"default": 15
},
"name": {
"nullable": false,
"type": "string"
},
"conf": {
"type": "any"
}
},
"additionalProperties": false,
"required": [
"name",
"conf"
]
}