aboutsummaryrefslogtreecommitdiff
path: root/data/schemas/community_module.jsonschema
diff options
context:
space:
mode:
authorlsh4711 <120231876+lsh4711@users.noreply.github.com>2025-04-18 18:05:25 +0900
committerGitHub <noreply@github.com>2025-04-18 19:05:25 +1000
commit800bc78d26ea02083be86596ab63fe7d4bf17e5c (patch)
tree924d7626f3bd81674cdab455dec7ec450b02e46b /data/schemas/community_module.jsonschema
parent576325e2f489b888fda9c74df08534856cfea5c2 (diff)
Fix missing and extra commas in JSON schema (#25057)
Diffstat (limited to 'data/schemas/community_module.jsonschema')
-rw-r--r--data/schemas/community_module.jsonschema4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/schemas/community_module.jsonschema b/data/schemas/community_module.jsonschema
index a3474476df..3cdb6d6a42 100644
--- a/data/schemas/community_module.jsonschema
+++ b/data/schemas/community_module.jsonschema
@@ -3,7 +3,7 @@
"$id": "qmk.community_module.v1",
"title": "Community Module Information",
"type": "object",
- "required": ["module_name", "maintainer"]
+ "required": ["module_name", "maintainer"],
"properties": {
"module_name": {"$ref": "qmk.definitions.v1#/text_identifier"},
"maintainer": {"$ref": "qmk.definitions.v1#/text_identifier"},
@@ -12,6 +12,6 @@
"format": "uri"
},
"keycodes": {"$ref": "qmk.definitions.v1#/keycode_decl_array"},
- "features": {"$ref": "qmk.keyboard.v1#/definitions/features_config"},
+ "features": {"$ref": "qmk.keyboard.v1#/definitions/features_config"}
}
}