mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-10-31 15:53:33 +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$"
 | |
| 					}
 | |
| 				}
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| }
 |