{ "$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" ] } } }