{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaskRunErrorResponse", "title": "TaskRunErrorResponse", "type": "object", "properties": { "detail": { "type": "string", "description": "Human-readable validation error" }, "error": { "type": "string", "description": "Human-readable error message" }, "type": { "type": "string", "description": "Machine-readable error type" }, "code": { "type": "string", "description": "Machine-readable error code" }, "attr": { "type": "string", "description": "Request field associated with the error" }, "missing_artifact_ids": { "type": "array", "items": { "type": "string" }, "description": "Artifact ids that could not be resolved for the run" } } }