Amazon Marketplace · Schema

ErrorDetail

Details about the error.

CommerceISVMarketplaceSoftware Catalog

Properties

Name Type Description
ErrorCode object
ErrorMessage object
View JSON Schema on GitHub

JSON Schema

amazon-marketplace-error-detail-schema.json Raw ↑
{
  "$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."
        }
      ]
    }
  }
}