BigCommerce · Schema

ErrorResponse

The response object containing details of an error

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
status integer
title string
type string
instance string
errors object
View JSON Schema on GitHub

JSON Schema

bigcommerce-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "description": "The response object containing details of an error",
  "type": "object",
  "properties": {
    "status": {
      "type": "integer"
    },
    "title": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "instance": {
      "type": "string"
    },
    "errors": {
      "type": "object"
    }
  },
  "x-tags": [
    "Models"
  ]
}