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

51 lines
954 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"additionalProperties": false,
"properties": {
"commands": {
"type": "array",
"items": {
"$ref": "#/$defs/command"
}
}
},
"required": [
"commands"
],
"$defs": {
"command": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"script": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"configs": {
"type": "array",
"items": {
"type": "string"
},
"additionalProperties": false
}
},
"required": [
"name",
"description",
"script"
]
}
}
}