BigCommerce · Schema

Reason

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
id integer
label string A description of the reason.
is_archived boolean Indicates whether or not the reason has been archived.
View JSON Schema on GitHub

JSON Schema

bigcommerce-reason-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Reason",
  "title": "Reason",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64"
    },
    "label": {
      "type": "string",
      "description": "A description of the reason."
    },
    "is_archived": {
      "type": "boolean",
      "description": "Indicates whether or not the reason has been archived."
    }
  },
  "x-internal": false
}