{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/pipeline_command", "title": "Pipeline Command", "type": "object", "description": "An executable pipeline command.", "properties": { "name": { "type": "string", "description": "The name of the command.", "example": "Example Title" }, "command": { "type": "string", "description": "The executable command.", "example": "example_value" } } }