Files

24 lines
533 B
JSON
Raw Permalink Normal View History

2025-11-13 11:17:44 +10:00
{
"type": "object",
"description": "Check Version object",
"additionalProperties": false,
"required": ["current", "latest", "update_available"],
"properties": {
"current": {
2025-11-13 11:51:13 +10:00
"type": ["string", "null"],
2025-11-13 11:17:44 +10:00
"description": "Current version string",
2025-11-13 11:51:13 +10:00
"example": "v2.10.1"
2025-11-13 11:17:44 +10:00
},
"latest": {
2025-11-13 11:51:13 +10:00
"type": ["string", "null"],
2025-11-13 11:17:44 +10:00
"description": "Latest version string",
2025-11-13 11:51:13 +10:00
"example": "v2.13.4"
2025-11-13 11:17:44 +10:00
},
"update_available": {
"type": "boolean",
"description": "Whether there's an update available",
"example": true
}
}
}