Oracle Fusion Cloud Applications · Schema
Deliverable
CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM
Properties
| Name | Type | Description |
|---|---|---|
| DeliverableId | integer | Deliverable identifier |
| DeliverableName | string | Deliverable name |
| Description | string | Deliverable description |
| DueDate | string | Due date |
| Status | string | Deliverable status |
| CompletionDate | string | Actual completion date |
| CreationDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Deliverable",
"title": "Deliverable",
"type": "object",
"properties": {
"DeliverableId": {
"type": "integer",
"description": "Deliverable identifier"
},
"DeliverableName": {
"type": "string",
"description": "Deliverable name"
},
"Description": {
"type": "string",
"description": "Deliverable description"
},
"DueDate": {
"type": "string",
"format": "date",
"description": "Due date"
},
"Status": {
"type": "string",
"description": "Deliverable status",
"enum": [
"Not Started",
"In Progress",
"Completed",
"Overdue"
]
},
"CompletionDate": {
"type": "string",
"format": "date",
"description": "Actual completion date"
},
"CreationDate": {
"type": "string",
"format": "date-time"
}
}
}