keymap.jsonschema 876 B

12345678910111213141516171819202122232425262728
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "$id": "qmk.keymap.v1",
  4. "title": "Keymap Information",
  5. "type": "object",
  6. "properties": {
  7. "author": {"type": "string"},
  8. "config": {"$ref": "qmk.keyboard.v1"},
  9. "custom_keycodes": {
  10. "type": "array",
  11. "items": {"$ref": "qmk.definitions.v1#/keycode"}
  12. },
  13. "keyboard": {"$ref": "qmk.definitions.v1#/text_identifier"},
  14. "keymap": {"$ref": "qmk.definitions.v1#/text_identifier"},
  15. "layout": {"$ref": "qmk.definitions.v1#/layout_macro"},
  16. "layers": {
  17. "type": "array",
  18. "items": {
  19. "type": "array",
  20. "items": {"$ref": "qmk.definitions.v1#/keycode"}
  21. }
  22. },
  23. "notes": {
  24. "type": "string",
  25. "description": "asdf"
  26. }
  27. }
  28. }