You've already forked nginx-proxy-manager
							
							
				mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-30 18:05:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			476 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			476 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
| 	"type": "object",
 | |
| 	"description": "UserAuthObject",
 | |
| 	"additionalProperties": false,
 | |
| 	"required": ["id", "user_id", "type", "created_on", "modified_on"],
 | |
| 	"properties": {
 | |
| 		"id": {
 | |
| 			"type": "integer",
 | |
| 			"minimum": 1
 | |
| 		},
 | |
| 		"user_id": {
 | |
| 			"type": "integer",
 | |
| 			"minimum": 1
 | |
| 		},
 | |
| 		"type": {
 | |
| 			"type": "string",
 | |
| 			"pattern": "^password$"
 | |
| 		},
 | |
| 		"created_on": {
 | |
| 			"type": "integer",
 | |
| 			"minimum": 1
 | |
| 		},
 | |
| 		"modified_on": {
 | |
| 			"type": "integer",
 | |
| 			"minimum": 1
 | |
| 		}
 | |
| 	}
 | |
| }
 |