mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			907 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			907 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
| 	"type": "object",
 | |
| 	"description": "HostObject",
 | |
| 	"additionalProperties": false,
 | |
| 	"required": [
 | |
| 		"id",
 | |
| 		"created_at",
 | |
| 		"updated_at",
 | |
| 		"user_id",
 | |
| 		"provider",
 | |
| 		"name",
 | |
| 		"domain_names"
 | |
| 	],
 | |
| 	"properties": {
 | |
| 		"id": {
 | |
| 			"type": "integer",
 | |
| 			"minimum": 1
 | |
| 		},
 | |
| 		"created_at": {
 | |
| 			"type": "integer",
 | |
| 			"minimum": 1,
 | |
| 			"description": "Created Unix time with milliseconds"
 | |
| 		},
 | |
| 		"updated_at": {
 | |
| 			"type": "integer",
 | |
| 			"minimum": 1,
 | |
| 			"description": "Updated Unix time with milliseconds"
 | |
| 		},
 | |
| 		"user_id": {
 | |
| 			"type": "integer",
 | |
| 			"minimum": 1
 | |
| 		},
 | |
| 		"provider": {
 | |
| 			"type": "string",
 | |
| 			"minLength": 1,
 | |
| 			"maxLength": 100
 | |
| 		},
 | |
| 		"name": {
 | |
| 			"type": "string",
 | |
| 			"minLength": 1,
 | |
| 			"maxLength": 100
 | |
| 		},
 | |
| 		"domain_names": {
 | |
| 			"type": "array",
 | |
| 			"minItems": 1,
 | |
| 			"items": {
 | |
| 				"type": "string",
 | |
| 				"minLength": 4
 | |
| 			}
 | |
| 		},
 | |
| 		"user": {
 | |
| 			"$ref": "#/components/schemas/UserObject"
 | |
| 		}
 | |
| 	}
 | |
| }
 |