Advance Auto Parts · Schema

ErrorResponse

API error response.

AutomotiveE-CommerceParts CatalogRetailSupply ChainFortune 500

Properties

Name Type Description
code string Error code.
message string Error message.
View JSON Schema on GitHub

JSON Schema

catalog-api-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorResponse",
  "description": "API error response.",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "Error code.",
      "example": "NOT_FOUND"
    },
    "message": {
      "type": "string",
      "description": "Error message.",
      "example": "The requested resource was not found."
    }
  }
}