Person object representation

The person object representation and fields are described below.

person was introduced in API version V1

person has not been marked for deprecation

Usages

Description

Representation of a person associated with an identity

Example create representation

{
  "birthDate" : "2025-07-14T09:00:00.000",
  "identity" : {
    "urn" : "10615807-513a-49b5-85e4-9df44a0e1ef1",
    "url" : "/n/v1/identity/10615807-513a-49b5-85e4-9df44a0e1ef1"
  }
}

Example response representation

{
  "urn" : "249456c5-c884-4ef6-96b0-30e96a73897a",
  "url" : "/n/v1/person/249456c5-c884-4ef6-96b0-30e96a73897a",
  "birthDate" : "2025-07-14T09:00:00.000",
  "identity" : {
    "urn" : "10615807-513a-49b5-85e4-9df44a0e1ef1",
    "url" : "/n/v1/identity/10615807-513a-49b5-85e4-9df44a0e1ef1"
  },
  "names" : [ {
    "urn" : "92c75454-424b-4c2a-b5c5-ca7d64fa9940",
    "url" : "/n/v1/personname/92c75454-424b-4c2a-b5c5-ca7d64fa9940"
  } ],
  "telephones" : [ ],
  "addresses" : [ ]
}

Fields

NameTypeDescriptionConstraints
urnString representation of a Unique Resource Name. Typically a UUID with 36 characters.URN for the person associated with an identity
urlURL represented as a stringURL for accessing the person
birthDateTimestamp expressed in ISO 8601 format without timezone including milliseconds. Note unless otherwise stated in UTC zone.The birthday date for the person in ISO 8601 format (UTC)
identityidentityThe identity this person is associated withRequired on create.
namespersonname[]Names associated with this personIgnored on update.
telephonestelephone[]Telephone numbers associated with the personIgnored on update.
addressesaddress[]Address associated with the personIgnored on update.