betterNAS/packages/contracts/schemas/control-plane-version.schema.json
2026-03-31 23:59:52 -04:00

18 lines
418 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://betternas.local/schemas/control-plane-version.schema.json",
"type": "object",
"additionalProperties": false,
"required": ["service", "version", "apiVersion"],
"properties": {
"service": {
"const": "control-plane"
},
"version": {
"type": "string"
},
"apiVersion": {
"const": "v1"
}
}
}