Workday · Schema

Currency

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSoftware-as-a-Service

Properties

Name Type Description
id string
descriptor string
currencyCode string The ISO 4217 currency code.
name string
numericCode string
View JSON Schema on GitHub

JSON Schema

workday-currency-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Currency",
  "title": "Currency",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "currencyCode": {
      "type": "string",
      "description": "The ISO 4217 currency code.",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "numericCode": {
      "type": "string",
      "example": "example_value"
    }
  }
}