44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"devicePath": {
|
|
"type": "string"
|
|
},
|
|
"logLevel": {
|
|
"type": "string",
|
|
"enum": ["trace", "debug", "info", "warn", "error", "critical"],
|
|
"default": "info"
|
|
},
|
|
"keyboard_layout": {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
"^row[0-4]+": {
|
|
"type": "object",
|
|
"properties": {
|
|
"keys": {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
"^key[0-3]+$": {
|
|
"type": "object",
|
|
"properties": {
|
|
"script": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["script"],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"required": ["keys"],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"required": ["keyboard_layout", "devicePath"],
|
|
"additionalProperties": false
|
|
}
|