Skip to content

name

Identifies an individual by specifying granular information about their name.

  • Is optional
  • Type: object

Both name and its sub-values are "soft" fields. For more information, see Soft fields.

With the following properties:

PropertyTypeRequiredDescription
FirstNmStringOptionalFirst name by which the party is known and which is usually used to identify the party. Maximum length: 30 characters
LastNmStringOptionalLast name by which the party is known and which is usually used to identify the party. Maximum length: 30 characters
LastNm2StringOptionalSecondary last name by which the party is known and which is usually used to identify the party. Maximum length: 30 characters
MidNmStringOptionalMiddle name by which the party is known and which is usually used to identify the party. Maximum length: 30 characters
NtrlNmStringOptionalName in local character set or language. Maximum length: 140 characters
TitleStringOptionalTitle by which the party is known and which is usually used to identify the party. Maximum length: 20 characters

JSON schema extract

"name": {
    "type": "object",
    "properties": {
        "FirstNm": {
            "description": "First name by which the party is known and which is usually used to identify the party.",
            "type": "string",
            "maxLength": 30
        },
        "MidNm": {
            "description": "Middle name by which the party is known and which is usually used to identify the party.",
            "type": "string",
            "maxLength": 30
        },
        "LastNm": {
            "description": "Last name by which the party is known and which is usually used to identify the party.",
            "type": "string",
            "maxLength": 30
        },
        "LastNm2": {
            "description": "Secondary last name by which the party is known and which is usually used to identify the party.",
            "type": "string",
            "maxLength": 30
        },
        "NtrlNm": {
            "description": "Name in local character set or language.",
            "type": "string",
            "maxLength": 140
        },
        "Title": {
            "description": "Title by which the party is known and which is usually used to identify the party.",
            "type": "string",
            "maxLength": 20
        }
    }
}