Oracle Fusion Cloud Applications · Schema
AbsenceCreate
CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM
Properties
| Name | Type | Description |
|---|---|---|
| PersonNumber | string | |
| AbsenceType | string | |
| AbsenceReason | string | |
| StartDate | string | |
| EndDate | string | |
| Duration | number | |
| UnitOfMeasure | string | |
| Comments | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AbsenceCreate",
"title": "AbsenceCreate",
"type": "object",
"required": [
"PersonNumber",
"AbsenceType",
"StartDate",
"EndDate"
],
"properties": {
"PersonNumber": {
"type": "string"
},
"AbsenceType": {
"type": "string"
},
"AbsenceReason": {
"type": "string"
},
"StartDate": {
"type": "string",
"format": "date"
},
"EndDate": {
"type": "string",
"format": "date"
},
"Duration": {
"type": "number",
"format": "double"
},
"UnitOfMeasure": {
"type": "string",
"enum": [
"Days",
"Hours"
]
},
"Comments": {
"type": "string"
}
}
}