mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 19:05:14 +00:00
18 lines
418 B
JSON
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"
|
|
}
|
|
}
|
|
}
|