mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 09:01:13 +00:00
23 lines
431 B
JSON
23 lines
431 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://ainas.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"
|
|
}
|
|
}
|
|
}
|
|
|