mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-11-13 13:55:14 +00:00
24 lines
533 B
JSON
24 lines
533 B
JSON
{
|
|
"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
|
|
}
|
|
}
|
|
}
|