Workday Financials · Schema

CurrencyRef

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
id string Workday ID of the currency
descriptor string Currency code (e.g., USD, EUR)
View JSON Schema on GitHub

JSON Schema

workday-financials-currencyref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrencyRef",
  "title": "CurrencyRef",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workday ID of the currency"
    },
    "descriptor": {
      "type": "string",
      "description": "Currency code (e.g., USD, EUR)"
    }
  }
}