BigCommerce · Schema

line_items

Request body for `PUT` or `POST` requests.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
physical_items array
digital_items array
gift_certificates array
custom_items array
View JSON Schema on GitHub

JSON Schema

bigcommerce-lineitems-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LineItems",
  "title": "line_items",
  "type": "object",
  "x-internal": false,
  "properties": {
    "physical_items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ItemPhysical"
      }
    },
    "digital_items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ItemDigital"
      }
    },
    "gift_certificates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ItemGiftCertificate"
      }
    },
    "custom_items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ItemCustom"
      }
    }
  },
  "required": [
    "physical_items",
    "digital_items"
  ],
  "description": "Request body for `PUT` or `POST` requests."
}