diff options
| author | Nick Brassel | 2025-05-26 13:41:49 +0200 |
|---|---|---|
| committer | Nick Brassel | 2025-05-26 13:41:49 +0200 |
| commit | 75a037d2f0f9c54bad8e2f68ae82134559c92f22 (patch) | |
| tree | 2b264de0e7a724c30cca511a9bac7ad29705d1a2 /lib/python/qmk/json_schema.py | |
| parent | 28720c4d343a9c5e9f5a62dbd583dbf536a2e61e (diff) | |
| parent | 3703699757b6ce938ff412aca0a8b064927c0cdb (diff) | |
Merge remote-tracking branch 'upstream/develop'
Diffstat (limited to 'lib/python/qmk/json_schema.py')
| -rw-r--r-- | lib/python/qmk/json_schema.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/qmk/json_schema.py b/lib/python/qmk/json_schema.py index b11a0ed7ea..e871598565 100644 --- a/lib/python/qmk/json_schema.py +++ b/lib/python/qmk/json_schema.py @@ -76,8 +76,13 @@ def compile_schema_store(): if not isinstance(schema_data, dict): cli.log.debug('Skipping schema file %s', schema_file) continue + + # `$id`-based references schema_store[schema_data['$id']] = schema_data + # Path-based references + schema_store[Path(schema_file).name] = schema_data + return schema_store |