mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-15 07:04:44 +00:00
48 lines
912 B
JSON
48 lines
912 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://betternas.local/schemas/control-plane-health.schema.json",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"service",
|
|
"status",
|
|
"timestamp",
|
|
"uptimeSeconds",
|
|
"nextcloud"
|
|
],
|
|
"properties": {
|
|
"service": {
|
|
"const": "control-plane"
|
|
},
|
|
"status": {
|
|
"const": "ok"
|
|
},
|
|
"timestamp": {
|
|
"type": "string"
|
|
},
|
|
"uptimeSeconds": {
|
|
"type": "number"
|
|
},
|
|
"nextcloud": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"configured",
|
|
"baseUrl",
|
|
"provider"
|
|
],
|
|
"properties": {
|
|
"configured": {
|
|
"type": "boolean"
|
|
},
|
|
"baseUrl": {
|
|
"type": "string"
|
|
},
|
|
"provider": {
|
|
"const": "nextcloud"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|