1
0
Files
mstr-schemas/mstr-config-schema.json
2026-01-26 15:20:35 +01:00

22 lines
495 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"repositories": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"commands": {
"type": "array",
"items": {
"type": "string"
}
},
"variables": {
"type": "object"
}
}
}