FinancialProjectPlanCreate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
ProjectId integer
PlanName string
PlanType string
CurrencyCode string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-financialprojectplancreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FinancialProjectPlanCreate",
  "title": "FinancialProjectPlanCreate",
  "type": "object",
  "required": [
    "ProjectId",
    "PlanName",
    "PlanType"
  ],
  "properties": {
    "ProjectId": {
      "type": "integer"
    },
    "PlanName": {
      "type": "string"
    },
    "PlanType": {
      "type": "string",
      "enum": [
        "Budget",
        "Forecast"
      ]
    },
    "CurrencyCode": {
      "type": "string"
    }
  }
}