mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 09:25:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			586 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			586 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
	"$id": "roles",
 | 
						|
	"definitions": {
 | 
						|
		"admin": {
 | 
						|
			"type": "object",
 | 
						|
			"required": ["scope", "roles"],
 | 
						|
			"properties": {
 | 
						|
				"scope": {
 | 
						|
					"type": "array",
 | 
						|
					"contains": {
 | 
						|
						"type": "string",
 | 
						|
						"pattern": "^user$"
 | 
						|
					}
 | 
						|
				},
 | 
						|
				"roles": {
 | 
						|
					"type": "array",
 | 
						|
					"contains": {
 | 
						|
						"type": "string",
 | 
						|
						"pattern": "^admin$"
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
		},
 | 
						|
		"user": {
 | 
						|
			"type": "object",
 | 
						|
			"required": ["scope"],
 | 
						|
			"properties": {
 | 
						|
				"scope": {
 | 
						|
					"type": "array",
 | 
						|
					"contains": {
 | 
						|
						"type": "string",
 | 
						|
						"pattern": "^user$"
 | 
						|
					}
 | 
						|
				}
 | 
						|
			}
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |