mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
19 lines
No EOL
368 B
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
|
|
}
|
|
}
|
|
} |