2025-02-26 22:25:41 +11:00
|
|
|
{
|
|
|
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema#",
|
|
|
|
|
"$id": "qmk.community_module.v1",
|
|
|
|
|
"title": "Community Module Information",
|
|
|
|
|
"type": "object",
|
2025-04-18 18:05:25 +09:00
|
|
|
"required": ["module_name", "maintainer"],
|
2025-02-26 22:25:41 +11:00
|
|
|
"properties": {
|
2025-05-19 22:10:39 +10:00
|
|
|
"module_name": {"$ref": "./definitions.jsonschema#/text_identifier"},
|
|
|
|
|
"maintainer": {"$ref": "./definitions.jsonschema#/text_identifier"},
|
2025-03-31 22:06:42 -07:00
|
|
|
"license": {"type": "string"},
|
2025-02-26 22:25:41 +11:00
|
|
|
"url": {
|
|
|
|
|
"type": "string",
|
|
|
|
|
"format": "uri"
|
|
|
|
|
},
|
2025-05-19 22:10:39 +10:00
|
|
|
"keycodes": {"$ref": "./definitions.jsonschema#/keycode_decl_array"},
|
|
|
|
|
"features": {"$ref": "./keyboard.jsonschema#/definitions/features_config"}
|
2025-02-26 22:25:41 +11:00
|
|
|
}
|
|
|
|
|
}
|