2023-11-27 21:53:43 +01:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema#",
|
|
|
|
"$id": "qmk.user_repo.v1",
|
|
|
|
"title": "User Repository Information",
|
|
|
|
"type": "object",
|
2024-08-12 14:34:22 +02:00
|
|
|
"definitions": {
|
|
|
|
"build_target": {
|
|
|
|
"oneOf": [
|
|
|
|
{"$ref": "qmk.definitions.v1#/keyboard_keymap_tuple"},
|
|
|
|
{"$ref": "qmk.definitions.v1#/json_file_path"}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
},
|
2023-11-27 21:53:43 +01:00
|
|
|
"required": [
|
|
|
|
"userspace_version",
|
|
|
|
"build_targets"
|
|
|
|
],
|
|
|
|
"properties": {
|
|
|
|
"userspace_version": {
|
|
|
|
"type": "string",
|
|
|
|
"enum": ["1.0"]
|
|
|
|
},
|
|
|
|
"build_targets": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
2024-08-12 14:34:22 +02:00
|
|
|
"$ref": "#/definitions/build_target"
|
2023-11-27 21:53:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|