BudgetTransactionCreate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
BudgetName string
ControlBudgetName string
LedgerName string
PeriodName string
BudgetAmount number
CurrencyCode string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-budgettransactioncreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BudgetTransactionCreate",
  "title": "BudgetTransactionCreate",
  "type": "object",
  "required": [
    "BudgetName",
    "LedgerName",
    "PeriodName",
    "BudgetAmount",
    "CurrencyCode"
  ],
  "properties": {
    "BudgetName": {
      "type": "string"
    },
    "ControlBudgetName": {
      "type": "string"
    },
    "LedgerName": {
      "type": "string"
    },
    "PeriodName": {
      "type": "string"
    },
    "BudgetAmount": {
      "type": "number",
      "format": "double"
    },
    "CurrencyCode": {
      "type": "string"
    }
  }
}