Route Metadata
| Field | Value |
|---|---|
| Method | GET |
| Path | /v1/data-quality/incidents/{id} |
| operationId | getIncident |
| Tag | Data Quality |
| Family | Data Quality |
| Deprecated or legacy | no |
Request Parameters
Path Parameters
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getIncident path parameters",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"description": "Incident ID",
"type": "string",
"x-parameter-location": "path"
}
}
}
Response Contracts
Status 200
Incident detailsapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getIncident response 200",
"description": "Data quality incident",
"type": "object",
"properties": {
"data_types": {
"description": "Affected data types",
"type": "array",
"items": {
"type": "string"
}
},
"description": {
"type": "string",
"nullable": true
},
"duration_minutes": {
"type": "integer",
"nullable": true
},
"exchange": {
"description": "Affected venue-family key recognized by this route",
"type": "string",
"nullable": true
},
"id": {
"description": "Unique incident ID",
"type": "string"
},
"records_affected": {
"type": "integer",
"format": "int64",
"nullable": true
},
"records_recovered": {
"type": "integer",
"format": "int64",
"nullable": true
},
"resolution": {
"type": "string",
"nullable": true
},
"resolved_at": {
"type": "string",
"format": "date-time",
"nullable": true
},
"root_cause": {
"type": "string",
"nullable": true
},
"severity": {
"type": "string",
"enum": [
"minor",
"major",
"critical"
]
},
"started_at": {
"type": "string",
"format": "date-time"
},
"status": {
"type": "string",
"enum": [
"open",
"investigating",
"identified",
"monitoring",
"resolved"
]
},
"symbols_affected": {
"description": "Affected symbols",
"type": "array",
"items": {
"type": "string"
}
},
"title": {
"type": "string"
}
}
}
Status 401
Authentication requiredapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getIncident response 401",
"description": "Error response",
"type": "object",
"properties": {
"code": {
"description": "HTTP status code",
"type": "integer"
},
"error": {
"description": "Error message",
"type": "string"
},
"error_code": {
"description": "Machine-readable error code. Common values: `invalid_query_params` (a query parameter failed to parse or validate) and `invalid_path_params` (a path parameter failed to parse). Other endpoint-specific codes exist; treat unknown codes as generic errors of the given HTTP status.",
"type": "string"
},
"request_id": {
"description": "Unique request ID for support",
"type": "string",
"format": "uuid"
}
}
}
OpenAPI example
{
"code": 401,
"error": "Missing or invalid API key. Provide X-API-Key header."
}
Status 404
Resource not foundapplication/json
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "getIncident response 404",
"description": "Error response",
"type": "object",
"properties": {
"code": {
"description": "HTTP status code",
"type": "integer"
},
"error": {
"description": "Error message",
"type": "string"
},
"error_code": {
"description": "Machine-readable error code. Common values: `invalid_query_params` (a query parameter failed to parse or validate) and `invalid_path_params` (a path parameter failed to parse). Other endpoint-specific codes exist; treat unknown codes as generic errors of the given HTTP status.",
"type": "string"
},
"request_id": {
"description": "Unique request ID for support",
"type": "string",
"format": "uuid"
}
}
}
OpenAPI example
{
"code": 404,
"error": "Resource not found"
}