mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			588 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			588 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
| 	"type": "object",
 | |
| 	"description": "UserAuthObject",
 | |
| 	"additionalProperties": false,
 | |
| 	"required": ["id", "user_id", "type", "created_at", "updated_at"],
 | |
| 	"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
 | |
| 		},
 | |
| 		"type": {
 | |
| 			"type": "string",
 | |
| 			"pattern": "^password$"
 | |
| 		}
 | |
| 	}
 | |
| }
 |