Person

CloudCXEnterpriseEPMERPHCMProject ManagementREST APISaaSSCM

Properties

Name Type Description
Personid integer Person identifier
FirstName string First name
LastName string Last name
DisplayName string Display name
Email string Email address
PhoneNumber string Phone number
CreationDate string
View JSON Schema on GitHub

JSON Schema

oracle-fusion-person-schema.json Raw ↑
{
  "$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"
    }
  }
}