BigCommerce · Schema

Item

The tax liabilities calculated for a specific item. Note: Tax liabilities should be calculated with **quantity** accounted for.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
id string A unique identifier for the line item these tax liabilities are calculated for. Must match the corresponding request line item ID.
price object
View JSON Schema on GitHub

JSON Schema

bigcommerce-response-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/response-item",
  "title": "Item",
  "type": "object",
  "description": "The tax liabilities calculated for a specific item.\n\nNote: Tax liabilities should be calculated with **quantity** accounted for.",
  "properties": {
    "id": {
      "type": "string",
      "description": "A unique identifier for the line item these tax liabilities are calculated for. Must match the corresponding request line item ID."
    },
    "price": {
      "$ref": "#/components/schemas/response-taxprice"
    }
  },
  "required": [
    "id",
    "price"
  ],
  "x-internal": false
}