BigCommerce · Schema

Problem

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
status integer Status code of the problem.
title string A short description of the problem.
type string A resource describing the problem.
View JSON Schema on GitHub

JSON Schema

bigcommerce-problem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Problem",
  "title": "Problem",
  "type": "object",
  "properties": {
    "status": {
      "type": "integer",
      "description": "Status code of the problem."
    },
    "title": {
      "type": "string",
      "description": "A short description of the problem."
    },
    "type": {
      "type": "string",
      "format": "url",
      "description": "A resource describing the problem."
    }
  },
  "x-internal": false
}