mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			310 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			310 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
| 	"type": "object",
 | |
| 	"description": "TokenObject",
 | |
| 	"additionalProperties": false,
 | |
| 	"required": ["expires", "token"],
 | |
| 	"properties": {
 | |
| 		"expires": {
 | |
| 			"type": "number",
 | |
| 			"description": "Token Expiry Unix Time",
 | |
| 			"minimum": 1
 | |
| 		},
 | |
| 		"token": {
 | |
| 			"type": "string",
 | |
| 			"description": "JWT Token"
 | |
| 		}
 | |
| 	}
 | |
| }
 |