OpportunityUpdate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
Name string
SalesStage string
WinProbability integer
Revenue number
CloseDate string
Status string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-opportunityupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OpportunityUpdate",
  "title": "OpportunityUpdate",
  "type": "object",
  "properties": {
    "Name": {
      "type": "string"
    },
    "SalesStage": {
      "type": "string"
    },
    "WinProbability": {
      "type": "integer"
    },
    "Revenue": {
      "type": "number",
      "format": "double"
    },
    "CloseDate": {
      "type": "string",
      "format": "date"
    },
    "Status": {
      "type": "string",
      "enum": [
        "Open",
        "Won",
        "Lost"
      ]
    }
  }
}