mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-06-29 04:22:09 +00:00
19 lines
687 B
Plaintext
19 lines
687 B
Plaintext
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema#",
|
|
"$id": "qmk.community_module.v1",
|
|
"title": "Community Module Information",
|
|
"type": "object",
|
|
"required": ["module_name", "maintainer"],
|
|
"properties": {
|
|
"module_name": {"$ref": "./definitions.jsonschema#/text_identifier"},
|
|
"maintainer": {"$ref": "./definitions.jsonschema#/text_identifier"},
|
|
"license": {"type": "string"},
|
|
"url": {
|
|
"type": "string",
|
|
"format": "uri"
|
|
},
|
|
"keycodes": {"$ref": "./definitions.jsonschema#/keycode_decl_array"},
|
|
"features": {"$ref": "./keyboard.jsonschema#/definitions/features_config"}
|
|
}
|
|
}
|