BigCommerce · Schema

Currency

The currency. This is the same for both the cart and its subsequent 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-currency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Currency",
  "title": "Currency",
  "type": "object",
  "description": "The currency. This is the same for both the cart and its subsequent checkout.",
  "properties": {
    "code": {
      "type": "string",
      "format": "ISO-4217",
      "description": "ISO-4217 currency code. (See: http://en.wikipedia.org/wiki/ISO_4217.)"
    }
  },
  "x-internal": false
}