You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
753 B

  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": {"$ref": "qmk.definitions.v1#/text_identifier"},
  8. "keyboard": {"$ref": "qmk.definitions.v1#/text_identifier"},
  9. "keymap": {"$ref": "qmk.definitions.v1#/text_identifier"},
  10. "layout": {"$ref": "qmk.definitions.v1#/layout_macro"},
  11. "layers": {
  12. "type": "array",
  13. "items": {
  14. "type": "array",
  15. "items": {"type": "string"}
  16. }
  17. },
  18. "config": {"$ref": "qmk.keyboard.v1"},
  19. "notes": {
  20. "type": "string",
  21. "description": "asdf"
  22. }
  23. }
  24. }