Properties
| Name | Type | Description |
|---|---|---|
| error | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalara/refs/heads/main/json-schema/avatax-rest-error-result-schema.json",
"title": "ErrorResult",
"description": "ErrorResult schema from Avalara API",
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Machine-readable error code"
},
"message": {
"type": "string",
"description": "Human-readable error message"
},
"target": {
"type": "string",
"description": "The component that generated the error"
},
"details": {
"type": "array",
"items": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"number": {
"type": "integer"
},
"message": {
"type": "string"
},
"description": {
"type": "string"
},
"faultCode": {
"type": "string"
},
"helpLink": {
"type": "string"
},
"severity": {
"type": "string",
"enum": [
"Error",
"Warning",
"Exception"
]
}
}
}
}
}
}
}
}