BigCommerce · Schema

PreferredOutcome

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

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

JSON Schema

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