particle-os-cli/test-files/schema/module-list-v1.json
2025-01-31 22:29:31 -05:00

29 lines
No EOL
778 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "module-list-v1.json",
"type": "object",
"properties": {
"modules": {
"type": "array",
"items": {
"$ref": "#/$defs/ModuleEntry"
},
"description": "A list of [modules](https://blue-build.org/reference/module/) that is executed in order. Multiple of the same module can be included.\n\nEach item in this list should have at least a `type:` or be specified to be included from an external file in the `recipes/` directory with `from-file:`."
}
},
"required": [
"modules"
],
"$defs": {
"ModuleEntry": {
"anyOf": [
{
"$ref": "module-v1.json"
},
{
"$ref": "import-v1.json"
}
]
}
}
}