Fix missing and extra commas in JSON schema (#25057)

This commit is contained in:
lsh4711 2025-04-18 18:05:25 +09:00 committed by GitHub
parent 576325e2f4
commit 800bc78d26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 9 additions and 9 deletions

View file

@ -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"}
}
}