BigCommerce · Schema

CurrencyRequiredWithChannelId

Details about currency assignments for a specific channel.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
channel_id object
enabled_currencies object
default_currency object
View JSON Schema on GitHub

JSON Schema

bigcommerce-currencyrequiredwithchannelid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrencyRequiredWithChannelId",
  "title": "CurrencyRequiredWithChannelId",
  "type": "object",
  "description": "Details about currency assignments for a specific channel.",
  "properties": {
    "channel_id": {
      "$ref": "#/components/schemas/ChannelId"
    },
    "enabled_currencies": {
      "$ref": "#/components/schemas/EnabledCurrencies"
    },
    "default_currency": {
      "$ref": "#/components/schemas/DefaultCurrency"
    }
  },
  "required": [
    "channel_id",
    "enabled_currencies",
    "default_currency"
  ],
  "x-internal": false
}