| 1234567891011121314151617181920212223 | 
							- {
 
- 	"anyOf": [
 
- 		{
 
- 			"$ref": "roles#/definitions/admin"
 
- 		},
 
- 		{
 
- 			"type": "object",
 
- 			"required": ["data", "scope"],
 
- 			"properties": {
 
- 				"data": {
 
- 					"$ref": "objects#/properties/users"
 
- 				},
 
- 				"scope": {
 
- 					"type": "array",
 
- 					"contains": {
 
- 						"type": "string",
 
- 						"pattern": "^user$"
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 	]
 
- }
 
 
  |