BigCommerce · Schema

Currency

This will always be the same between cart and checkout.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
code string ISO-4217 currency code. (See: http://en.wikipedia.org/wiki/ISO_4217.)
View JSON Schema on GitHub

JSON Schema

bigcommerce-responsecartcurrency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/responseCartCurrency",
  "title": "Currency",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "ISO-4217 currency code. (See: http://en.wikipedia.org/wiki/ISO_4217.)",
      "format": "ISO-4217"
    }
  },
  "description": "This will always be the same between cart and checkout.",
  "x-go-gen-location": "models",
  "x-internal": false
}