{ "type": "object", "description": "Check Version object", "additionalProperties": false, "required": ["current", "latest", "update_available"], "properties": { "current": { "type": ["string", "null"], "description": "Current version string", "example": "v2.10.1" }, "latest": { "type": ["string", "null"], "description": "Latest version string", "example": "v2.13.4" }, "update_available": { "type": "boolean", "description": "Whether there's an update available", "example": true } } }