summaryrefslogtreecommitdiffstats
path: root/data/schemas/api_keyboard.jsonschema
blob: d570ee99908dafd338dba60b7c1e6daa893ac4d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"
            }
        }
    ]
}