24 lines
		
	
	
		
			724 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			724 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
|     "$schema": "http://json-schema.org/draft-07/schema#",
 | |
|     "$id": "qmk.keymap.v1",
 | |
|     "title": "Keymap Information",
 | |
|     "type": "object",
 | |
|     "properties": {
 | |
|         "author": {"type": "string"},
 | |
|         "keyboard": {"$ref": "qmk.definitions.v1#/text_identifier"},
 | |
|         "keymap": {"$ref": "qmk.definitions.v1#/text_identifier"},
 | |
|         "layout": {"$ref": "qmk.definitions.v1#/layout_macro"},
 | |
|         "layers": {
 | |
|             "type": "array",
 | |
|             "items": {
 | |
|                 "type": "array",
 | |
|                 "items": {"type": "string"}
 | |
|             }
 | |
|         },
 | |
|         "config": {"$ref": "qmk.keyboard.v1"},
 | |
|         "notes": {
 | |
|             "type": "string",
 | |
|             "description": "asdf"
 | |
|         }
 | |
|     }
 | |
| } |