SAP Concur · Schema
ErrorResponse
Standard error response
Business TravelExpense ManagementFinancial ServicesInvoice ManagementTravel Management
Properties
| Name | Type | Description |
|---|---|---|
| errorId | string | Unique identifier for this error occurrence |
| errorMessage | string | Human-readable error description |
| httpStatus | string | The HTTP status code as a string |
| path | string | The request path that triggered the error |
| timestamp | string | When the error occurred |
| validationErrors | array | Detailed field-level validation failures |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ErrorResponse",
"type": "object",
"description": "Standard error response",
"properties": {
"errorId": {
"type": "string",
"description": "Unique identifier for this error occurrence"
},
"errorMessage": {
"type": "string",
"description": "Human-readable error description"
},
"httpStatus": {
"type": "string",
"description": "The HTTP status code as a string"
},
"path": {
"type": "string",
"description": "The request path that triggered the error"
},
"timestamp": {
"type": "string",
"description": "When the error occurred"
},
"validationErrors": {
"type": "array",
"description": "Detailed field-level validation failures"
}
}
}