Coupa · Schema

CurrencyReference

Reference to a currency

BSMBusiness Spend ManagementCloud PlatformEnterpriseFinancial ManagementInvoicingProcurementSupply Chain

Properties

Name Type Description
id integer Coupa unique identifier for the currency
code string ISO 4217 currency code
View JSON Schema on GitHub

JSON Schema

coupa-currencyreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrencyReference",
  "title": "CurrencyReference",
  "type": "object",
  "description": "Reference to a currency",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Coupa unique identifier for the currency"
    },
    "code": {
      "type": "string",
      "description": "ISO 4217 currency code",
      "example": "USD"
    }
  }
}