BigCommerce · Schema

Error Response

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
status integer The HTTP status code.
title string The error title describes the particular error.
type string
detail string The detailed title describes the particular error.
View JSON Schema on GitHub

JSON Schema

bigcommerce-methodnotallowederror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MethodNotAllowedError",
  "title": "Error Response",
  "required": [
    "status",
    "title",
    "type",
    "detail"
  ],
  "type": "object",
  "properties": {
    "status": {
      "type": "integer",
      "description": "The HTTP status code.",
      "example": 405
    },
    "title": {
      "type": "string",
      "description": "The error title describes the particular error."
    },
    "type": {
      "type": "string"
    },
    "detail": {
      "title": "Detailed Errors",
      "type": "string",
      "description": "The detailed title describes the particular error."
    }
  }
}