spiegel-keyman/resources/scopes/scopes.schema.json

19 lines
No EOL
368 B
JSON

{
"$schema": "http://json-schema.org/schema#",
"$ref": "#/definitions/scopes",
"definitions": {
"scopes": {
"type": "object",
"patternProperties": {
"^[a-z]+$": {
"anyOf": [
{"$ref": "#/definitions/scopes"},
{"type": "null"}
]
}
},
"additionalProperties": false
}
}
}