ProjectCreate

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
ProjectName string
ProjectDescription string
ProjectType string
ProjectOrganization string
ProjectManager string
StartDate string
EndDate string
LegalEntity string
BusinessUnit string
CurrencyCode string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-projectcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectCreate",
  "title": "ProjectCreate",
  "type": "object",
  "required": [
    "ProjectName",
    "ProjectOrganization",
    "StartDate"
  ],
  "properties": {
    "ProjectName": {
      "type": "string"
    },
    "ProjectDescription": {
      "type": "string"
    },
    "ProjectType": {
      "type": "string"
    },
    "ProjectOrganization": {
      "type": "string"
    },
    "ProjectManager": {
      "type": "string"
    },
    "StartDate": {
      "type": "string",
      "format": "date"
    },
    "EndDate": {
      "type": "string",
      "format": "date"
    },
    "LegalEntity": {
      "type": "string"
    },
    "BusinessUnit": {
      "type": "string"
    },
    "CurrencyCode": {
      "type": "string"
    }
  }
}