BigCommerce · Schema

ItemReferenceId

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
type string The reference type.
value string The value identifying the returned item.
View JSON Schema on GitHub

JSON Schema

bigcommerce-itemreferenceid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItemReferenceId",
  "title": "ItemReferenceId",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The reference type.",
      "enum": [
        "ORDER_PRODUCT"
      ]
    },
    "value": {
      "type": "string",
      "description": "The value identifying the returned item."
    }
  },
  "required": [
    "type",
    "value"
  ],
  "x-internal": false
}