SAP Commerce Cloud · Schema

Currency

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
isocode string ISO 4217 currency code
name string Currency name
symbol string Currency symbol
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-currency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Currency",
  "title": "Currency",
  "type": "object",
  "properties": {
    "isocode": {
      "type": "string",
      "description": "ISO 4217 currency code"
    },
    "name": {
      "type": "string",
      "description": "Currency name"
    },
    "symbol": {
      "type": "string",
      "description": "Currency symbol"
    }
  }
}