## 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](/products/payments-odl/api-docs/ripplenet/resources/standard-ripplenet-payment-object#soft-fields). With the following properties: | Property | Type | Required | Description | | --- | --- | --- | --- | | `FirstNm` | String | Optional | First name by which the party is known and which is usually used to identify the party. Maximum length: 30 characters | | `LastNm` | String | Optional | Last name by which the party is known and which is usually used to identify the party. Maximum length: 30 characters | | `LastNm2` | String | Optional | Secondary last name by which the party is known and which is usually used to identify the party. Maximum length: 30 characters | | `MidNm` | String | Optional | Middle name by which the party is known and which is usually used to identify the party. Maximum length: 30 characters | | `NtrlNm` | String | Optional | Name in local character set or language. Maximum length: 140 characters | | `Title` | String | Optional | Title by which the party is known and which is usually used to identify the party. Maximum length: 20 characters | ## JSON schema extract ```json "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 } } } ```