An opaque identifier for mapping protocol failures to service internal codes. When specified in a request, it can be used for co-relating events across services
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiErrorResponse",
"title": "ApiErrorResponse",
"description": "Response body for an API error.",
"type": "object",
"properties": {
"trackingId": {
"type": "string",
"description": "An opaque identifier for mapping protocol failures to service internal codes. \n\nWhen specified in a request, it can be used for co-relating events across services",
"example": "c1a4fcef-aee2-4dea-8977-29f594760552"
},
"error": {
"description": "An object containing details about the error.",
"$ref": "#/components/schemas/ErrorDetails"
}
}
}