diff options
author | Nick Brassel <nick@tzarc.org> | 2023-11-28 07:53:43 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-28 07:53:43 +1100 |
commit | 5501e804ff8d41ce656061b91896c4ac8c681d78 (patch) | |
tree | 6a655fbceaeab67cf727dbe4318721407dd31824 /data/schemas/user_repo_v1.jsonschema | |
parent | 094357c40347e8a5db36578851f1af34a92e9f68 (diff) |
QMK Userspace (#22222)
Co-authored-by: Duncan Sutherland <dunk2k_2000@hotmail.com>
Diffstat (limited to 'data/schemas/user_repo_v1.jsonschema')
-rw-r--r-- | data/schemas/user_repo_v1.jsonschema | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/data/schemas/user_repo_v1.jsonschema b/data/schemas/user_repo_v1.jsonschema new file mode 100644 index 0000000000..6cdf758685 --- /dev/null +++ b/data/schemas/user_repo_v1.jsonschema @@ -0,0 +1,22 @@ +{ + "$schema": "https://json-schema.org/draft/2020-12/schema#", + "$id": "qmk.user_repo.v1", + "title": "User Repository Information", + "type": "object", + "required": [ + "userspace_version", + "build_targets" + ], + "properties": { + "userspace_version": { + "type": "string", + "enum": ["1.0"] + }, + "build_targets": { + "type": "array", + "items": { + "$ref": "qmk.definitions.v1#/build_target" + } + } + } +} |