diff options
| author | QMK Bot <hello@qmk.fm> | 2025-04-18 09:05:59 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2025-04-18 09:05:59 +0000 |
| commit | 988d81581dc0bb55f4edf62eaadd89c442691f83 (patch) | |
| tree | c2aab7d1ff4e688d930d49a38ec6dfd75133444c /data | |
| parent | b43fc33be3df1d8f9b0b13c43dea764adf2d70c5 (diff) | |
| parent | 800bc78d26ea02083be86596ab63fe7d4bf17e5c (diff) | |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'data')
| -rw-r--r-- | data/schemas/community_module.jsonschema | 4 | ||||
| -rw-r--r-- | data/schemas/keyboard.jsonschema | 6 | ||||
| -rw-r--r-- | data/schemas/user_repo_v0.jsonschema | 4 | ||||
| -rw-r--r-- | data/schemas/user_repo_v1.jsonschema | 2 | ||||
| -rw-r--r-- | data/schemas/user_repo_v1_1.jsonschema | 2 |
5 files changed, 9 insertions, 9 deletions
diff --git a/data/schemas/community_module.jsonschema b/data/schemas/community_module.jsonschema index a237e210ce..feced00508 100644 --- a/data/schemas/community_module.jsonschema +++ b/data/schemas/community_module.jsonschema | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | "$id": "qmk.community_module.v1", | 3 | "$id": "qmk.community_module.v1", |
| 4 | "title": "Community Module Information", | 4 | "title": "Community Module Information", |
| 5 | "type": "object", | 5 | "type": "object", |
| 6 | "required": ["module_name", "maintainer"] | 6 | "required": ["module_name", "maintainer"], |
| 7 | "properties": { | 7 | "properties": { |
| 8 | "module_name": {"$ref": "qmk.definitions.v1#/text_identifier"}, | 8 | "module_name": {"$ref": "qmk.definitions.v1#/text_identifier"}, |
| 9 | "maintainer": {"$ref": "qmk.definitions.v1#/text_identifier"}, | 9 | "maintainer": {"$ref": "qmk.definitions.v1#/text_identifier"}, |
| @@ -13,6 +13,6 @@ | |||
| 13 | "format": "uri" | 13 | "format": "uri" |
| 14 | }, | 14 | }, |
| 15 | "keycodes": {"$ref": "qmk.definitions.v1#/keycode_decl_array"}, | 15 | "keycodes": {"$ref": "qmk.definitions.v1#/keycode_decl_array"}, |
| 16 | "features": {"$ref": "qmk.keyboard.v1#/definitions/features_config"}, | 16 | "features": {"$ref": "qmk.keyboard.v1#/definitions/features_config"} |
| 17 | } | 17 | } |
| 18 | } | 18 | } |
diff --git a/data/schemas/keyboard.jsonschema b/data/schemas/keyboard.jsonschema index eee2915fcb..2314c72bdb 100644 --- a/data/schemas/keyboard.jsonschema +++ b/data/schemas/keyboard.jsonschema | |||
| @@ -30,12 +30,12 @@ | |||
| 30 | "properties": { | 30 | "properties": { |
| 31 | "pins": {"$ref": "qmk.definitions.v1#/mcu_pin_array"} | 31 | "pins": {"$ref": "qmk.definitions.v1#/mcu_pin_array"} |
| 32 | } | 32 | } |
| 33 | } | 33 | }, |
| 34 | "features_config": { | 34 | "features_config": { |
| 35 | "$ref": "qmk.definitions.v1#/boolean_array", | 35 | "$ref": "qmk.definitions.v1#/boolean_array", |
| 36 | "propertyNames": {"$ref": "qmk.definitions.v1#/snake_case"}, | 36 | "propertyNames": {"$ref": "qmk.definitions.v1#/snake_case"}, |
| 37 | "not": {"required": ["lto"]} | 37 | "not": {"required": ["lto"]} |
| 38 | }, | 38 | } |
| 39 | }, | 39 | }, |
| 40 | "type": "object", | 40 | "type": "object", |
| 41 | "not": {"required": ["vendorId", "productId"]}, // reject via keys... | 41 | "not": {"required": ["vendorId", "productId"]}, // reject via keys... |
| @@ -354,7 +354,7 @@ | |||
| 354 | "axis_resolution": {"$ref": "qmk.definitions.v1#/unsigned_int"}, | 354 | "axis_resolution": {"$ref": "qmk.definitions.v1#/unsigned_int"}, |
| 355 | "axes": { | 355 | "axes": { |
| 356 | "type": "object", | 356 | "type": "object", |
| 357 | "propertyNames": {"enum": ["x", "y", "z", "rx", "ry", "rz"]} | 357 | "propertyNames": {"enum": ["x", "y", "z", "rx", "ry", "rz"]}, |
| 358 | "additionalProperties": { | 358 | "additionalProperties": { |
| 359 | "oneOf": [ | 359 | "oneOf": [ |
| 360 | { | 360 | { |
diff --git a/data/schemas/user_repo_v0.jsonschema b/data/schemas/user_repo_v0.jsonschema index b18ac50428..58d955abe2 100644 --- a/data/schemas/user_repo_v0.jsonschema +++ b/data/schemas/user_repo_v0.jsonschema | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | ], | 8 | ], |
| 9 | "properties": { | 9 | "properties": { |
| 10 | "userspace_version": { | 10 | "userspace_version": { |
| 11 | "type": "string", | 11 | "type": "string" |
| 12 | }, | 12 | } |
| 13 | } | 13 | } |
| 14 | } | 14 | } |
diff --git a/data/schemas/user_repo_v1.jsonschema b/data/schemas/user_repo_v1.jsonschema index 69a59bce00..88b50e8a72 100644 --- a/data/schemas/user_repo_v1.jsonschema +++ b/data/schemas/user_repo_v1.jsonschema | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | {"$ref": "qmk.definitions.v1#/keyboard_keymap_tuple"}, | 9 | {"$ref": "qmk.definitions.v1#/keyboard_keymap_tuple"}, |
| 10 | {"$ref": "qmk.definitions.v1#/json_file_path"} | 10 | {"$ref": "qmk.definitions.v1#/json_file_path"} |
| 11 | ] | 11 | ] |
| 12 | }, | 12 | } |
| 13 | }, | 13 | }, |
| 14 | "required": [ | 14 | "required": [ |
| 15 | "userspace_version", | 15 | "userspace_version", |
diff --git a/data/schemas/user_repo_v1_1.jsonschema b/data/schemas/user_repo_v1_1.jsonschema index 5a7ccce063..173d8d26d6 100644 --- a/data/schemas/user_repo_v1_1.jsonschema +++ b/data/schemas/user_repo_v1_1.jsonschema | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | {"$ref": "qmk.definitions.v1#/keyboard_keymap_env"}, | 10 | {"$ref": "qmk.definitions.v1#/keyboard_keymap_env"}, |
| 11 | {"$ref": "qmk.definitions.v1#/json_file_path"} | 11 | {"$ref": "qmk.definitions.v1#/json_file_path"} |
| 12 | ] | 12 | ] |
| 13 | }, | 13 | } |
| 14 | }, | 14 | }, |
| 15 | "required": [ | 15 | "required": [ |
| 16 | "userspace_version", | 16 | "userspace_version", |
