Oracle Fusion Cloud Applications · Schema
Person
CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM
Properties
| Name | Type | Description |
|---|---|---|
| Personid | integer | Person identifier |
| FirstName | string | First name |
| LastName | string | Last name |
| DisplayName | string | Display name |
| string | Email address | |
| PhoneNumber | string | Phone number |
| CreationDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Person",
"title": "Person",
"type": "object",
"properties": {
"Personid": {
"type": "integer",
"description": "Person identifier"
},
"FirstName": {
"type": "string",
"description": "First name"
},
"LastName": {
"type": "string",
"description": "Last name"
},
"DisplayName": {
"type": "string",
"description": "Display name"
},
"Email": {
"type": "string",
"format": "email",
"description": "Email address"
},
"PhoneNumber": {
"type": "string",
"description": "Phone number"
},
"CreationDate": {
"type": "string",
"format": "date-time"
}
}
}