mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 16:35:33 +00:00
62 lines
1.8 KiB
Text
62 lines
1.8 KiB
Text
{"$schema": "http://json-schema.org/draft-06/schema#",
|
|
"$id": "@replace_me_with_introspection_schema_uri@",
|
|
"$comment": "© 2018 SIL International. MIT Licensed",
|
|
"title": "Keyboard Processor State object introspection",
|
|
"description": "Internal data from a Keyboard Processor State object, sufficient for debugging and diagnostics",
|
|
"type": "object",
|
|
|
|
"definitions": {
|
|
"options": {
|
|
"type": "object",
|
|
"properties": {
|
|
"scope": { "enum": ["unknown", "environment", "keyboard"] },
|
|
"options": {
|
|
"type": "object",
|
|
"default": {}
|
|
}
|
|
},
|
|
"required": ["scope", "options"]
|
|
},
|
|
"rule": {
|
|
"type": "object"
|
|
},
|
|
"keyboard" : {
|
|
"type": "object",
|
|
"properties": {
|
|
"id": { "type": "string" },
|
|
"version": { "type": "string" },
|
|
"folder": { "type": "string"},
|
|
"options": { "$ref": "#definitions/options" },
|
|
"rules": {
|
|
"type":"array",
|
|
"items": { "$ref": "#/definitions/rule" }
|
|
}
|
|
},
|
|
"required": ["id", "version", "folder", "options", "rules"]
|
|
},
|
|
"context": {
|
|
"type":"array",
|
|
"items": {"$ref": "#/definitions/context_item"},
|
|
"default": []
|
|
},
|
|
"context_item": {
|
|
"oneOf": [
|
|
{"type": "string", "minLength": 1, "maxLength": 4},
|
|
{"type": "number"}
|
|
]
|
|
}
|
|
},
|
|
"properties": {
|
|
"$schema": { "const": "keyman/keyboardprocessor/doc/introspection.schema" },
|
|
"keyboard": { "$ref": "#/definitions/keyboard" },
|
|
"options": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enviroment": { "$ref": "#/definitions/options" },
|
|
"dynamic": { "$ref": "#/definitions/options" }
|
|
},
|
|
"required": [ "enviroment","dynamic"]
|
|
},
|
|
"context": { "$ref": "#/definitions/context" }
|
|
}
|
|
}
|