BigCommerce · Schema

Quote

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
id string The unique identifier of the tax quote that was requested. This must match the ID of the requested quote.
documents array Represents an order quote or part of an order quote of tax-relevant items fulfilled from a single origin address to a single destination address, including arrays of shipping and handling fee objects
View JSON Schema on GitHub

JSON Schema

bigcommerce-response-quote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/response-quote",
  "title": "Quote",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the tax quote that was requested. This must match the ID of the requested quote."
    },
    "documents": {
      "type": "array",
      "description": "Represents an order quote or part of an order quote of tax-relevant items fulfilled from a single origin address to a single destination address, including arrays of shipping and handling fee objects for each item. Most order quotes contain a single document; however, BigCommerce supports \"multi-address orders\", which may come from or go to distinct sets of addresses and thus require multiple documents per quote.",
      "items": {
        "$ref": "#/components/schemas/response-document"
      }
    }
  },
  "required": [
    "id",
    "documents"
  ],
  "x-internal": false
}