Oracle Fusion Cloud Applications · Schema
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 |
JSON Schema
{
"$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"
}
}
}