betterNAS/packages/contracts/schemas/control-plane-version.schema.json
2026-04-01 02:40:21 +00:00

23 lines
435 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"
}
}
}