PostHog · Schema
TaskRunErrorResponse
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| detail | string | Human-readable validation error |
| error | string | Human-readable error message |
| type | string | Machine-readable error type |
| code | string | Machine-readable error code |
| attr | string | Request field associated with the error |
| missing_artifact_ids | array | Artifact ids that could not be resolved for the run |
JSON Schema
{
"$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"
}
}
}