CurrencyRate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
FromCurrency string Source currency code
ToCurrency string Target currency code
ConversionDate string Date of the conversion rate
ConversionType string Rate type (Corporate, Spot, User)
ConversionRate number Exchange rate value
InverseConversionRate number Inverse of the exchange rate
View JSON Schema on GitHub

JSON Schema

oracle-fusion-currencyrate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrencyRate",
  "title": "CurrencyRate",
  "type": "object",
  "properties": {
    "FromCurrency": {
      "type": "string",
      "description": "Source currency code"
    },
    "ToCurrency": {
      "type": "string",
      "description": "Target currency code"
    },
    "ConversionDate": {
      "type": "string",
      "format": "date",
      "description": "Date of the conversion rate"
    },
    "ConversionType": {
      "type": "string",
      "description": "Rate type (Corporate, Spot, User)"
    },
    "ConversionRate": {
      "type": "number",
      "format": "double",
      "description": "Exchange rate value"
    },
    "InverseConversionRate": {
      "type": "number",
      "format": "double",
      "description": "Inverse of the exchange rate"
    }
  }
}