Oracle E-Business Suite · Schema
EmployeeCreate
Business ApplicationsE-Business SuiteEnterpriseERPOracle
Properties
| Name | Type | Description |
|---|---|---|
| title | string | |
| firstName | string | |
| middleNames | string | |
| lastName | string | |
| knownAs | string | |
| emailAddress | string | |
| sex | string | |
| dateOfBirth | string | |
| nationalIdentifier | string | |
| nationality | string | |
| maritalStatus | string | |
| hireDate | string | |
| businessGroupId | integer | |
| jobId | integer | |
| positionId | integer | |
| organizationId | integer | |
| gradeId | integer | |
| locationId | integer | |
| payrollId | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EmployeeCreate",
"type": "object",
"properties": {
"title": {
"type": "string"
},
"firstName": {
"type": "string"
},
"middleNames": {
"type": "string"
},
"lastName": {
"type": "string"
},
"knownAs": {
"type": "string"
},
"emailAddress": {
"type": "string"
},
"sex": {
"type": "string"
},
"dateOfBirth": {
"type": "string"
},
"nationalIdentifier": {
"type": "string"
},
"nationality": {
"type": "string"
},
"maritalStatus": {
"type": "string"
},
"hireDate": {
"type": "string"
},
"businessGroupId": {
"type": "integer"
},
"jobId": {
"type": "integer"
},
"positionId": {
"type": "integer"
},
"organizationId": {
"type": "integer"
},
"gradeId": {
"type": "integer"
},
"locationId": {
"type": "integer"
},
"payrollId": {
"type": "integer"
}
}
}