From 266a85eda0cbb63852565d0c1d7ddb24700b8c1f Mon Sep 17 00:00:00 2001 From: Zach White Date: Tue, 1 Dec 2020 12:58:00 -0800 Subject: add missing schemas --- data/schemas/api_keyboard.jsonschema | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 data/schemas/api_keyboard.jsonschema (limited to 'data/schemas/api_keyboard.jsonschema') diff --git a/data/schemas/api_keyboard.jsonschema b/data/schemas/api_keyboard.jsonschema new file mode 100644 index 0000000000..d570ee9990 --- /dev/null +++ b/data/schemas/api_keyboard.jsonschema @@ -0,0 +1,35 @@ +{ + "allOf": [ + { "$ref": "qmk.keyboard.v1" }, + { + "$id": "qmk.api.keyboard.v1", + "keymaps": { + "type": "string" + }, + "parse_errors": { + "type": "array", + "items": { + "type": "string" + } + }, + "parse_warnings": { + "type": "array", + "items": { + "type": "string" + } + }, + "processor_type": { + "type": "string" + }, + "protocol": { + "type": "string" + }, + "keyboard_folder": { + "type": "string" + }, + "platform": { + "type": "string" + } + } + ] +} -- cgit v1.2.3