FinancialProjectPlan

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
PlanVersionId integer Plan version identifier
ProjectId integer Associated project identifier
PlanName string Financial plan name
PlanType string Plan type
VersionNumber integer Version number
Status string Plan status
TotalPlannedCost number Total planned cost
TotalPlannedRevenue number Total planned revenue
CurrencyCode string Plan currency
CreationDate string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-financialprojectplan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FinancialProjectPlan",
  "title": "FinancialProjectPlan",
  "type": "object",
  "properties": {
    "PlanVersionId": {
      "type": "integer",
      "description": "Plan version identifier"
    },
    "ProjectId": {
      "type": "integer",
      "description": "Associated project identifier"
    },
    "PlanName": {
      "type": "string",
      "description": "Financial plan name"
    },
    "PlanType": {
      "type": "string",
      "description": "Plan type",
      "enum": [
        "Budget",
        "Forecast"
      ]
    },
    "VersionNumber": {
      "type": "integer",
      "description": "Version number"
    },
    "Status": {
      "type": "string",
      "description": "Plan status",
      "enum": [
        "Working",
        "Submitted",
        "Baselined",
        "Rejected"
      ]
    },
    "TotalPlannedCost": {
      "type": "number",
      "format": "double",
      "description": "Total planned cost"
    },
    "TotalPlannedRevenue": {
      "type": "number",
      "format": "double",
      "description": "Total planned revenue"
    },
    "CurrencyCode": {
      "type": "string",
      "description": "Plan currency"
    },
    "CreationDate": {
      "type": "string",
      "format": "date-time"
    }
  }
}