api_keyboard.jsonschema (733B)
1 { 2 "$id": "qmk.api.keyboard.v1", 3 "allOf": [ 4 {"$ref": "./keyboard.jsonschema#"}, 5 { 6 "properties": { 7 "keymaps": { 8 "type": "object", 9 "properties": { 10 "url": {"type": "string"} 11 } 12 }, 13 "parse_errors": {"$ref": "./definitions.jsonschema#/string_array"}, 14 "parse_warnings": {"$ref": "./definitions.jsonschema#/string_array"}, 15 "processor_type": {"type": "string"}, 16 "protocol": {"type": "string"}, 17 "keyboard_folder": {"type": "string"}, 18 "platform": {"type": "string"} 19 } 20 } 21 ] 22 }