Details about the error.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-marketplace/refs/heads/main/json-schema/amazon-marketplace-error-detail-schema.json", "title": "ErrorDetail", "description": "Details about the error.", "type": "object", "properties": { "ErrorCode": { "allOf": [ { "$ref": "#/components/schemas/ErrorCodeString" }, { "description": "The error code that identifies the type of error." } ] }, "ErrorMessage": { "allOf": [ { "$ref": "#/components/schemas/ExceptionMessageContent" }, { "description": "The message for the error." } ] } } }