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