mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 07:43:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			808 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			808 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
| 	"type": "object",
 | |
| 	"description": "Health object",
 | |
| 	"additionalProperties": false,
 | |
| 	"required": ["status", "version"],
 | |
| 	"properties": {
 | |
| 		"status": {
 | |
| 			"type": "string",
 | |
| 			"description": "Healthy",
 | |
| 			"example": "OK"
 | |
| 		},
 | |
| 		"setup": {
 | |
| 			"type": "boolean",
 | |
| 			"description": "Whether the initial setup has been completed",
 | |
| 			"example": true
 | |
| 		},
 | |
| 		"version": {
 | |
| 			"type": "object",
 | |
| 			"description": "The version object",
 | |
| 			"example": {
 | |
| 				"major": 2,
 | |
| 				"minor": 0,
 | |
| 				"revision": 0
 | |
| 			},
 | |
| 			"additionalProperties": false,
 | |
| 			"required": ["major", "minor", "revision"],
 | |
| 			"properties": {
 | |
| 				"major": {
 | |
| 					"type": "integer",
 | |
| 					"minimum": 0
 | |
| 				},
 | |
| 				"minor": {
 | |
| 					"type": "integer",
 | |
| 					"minimum": 0
 | |
| 				},
 | |
| 				"revision": {
 | |
| 					"type": "integer",
 | |
| 					"minimum": 0
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 |