PII Verify Fields
Sometimes, companies using GTR Solution must complete personal identity verification in advance. In order to meet the needs of due diligence, we additionally support optional fields called: Verify Fields.
For Travel Rule Request Initiator, they will bring out the fields expectVerifyFields
they want to check for verification. And put the expectVerifyFields
in request payload, for example:
*Travel Rule Request Initiator could be Originator VASP or Beneficiary VASP.
{
"requestId": "[YOUR REQUEST ID]",
"ticker": "ETC",
"address": "0x41ebF291D8BFb6481B4Ab1E26c412A96484b1454",
"tag": "-",
"verifyType": 2,
"network": "xxxxxxxx",
"beneficiaryVasp": "xxxxxxx",
"encryptedPayload": "[YOUR PAYLOAD]",
"originatorPublicKey": "[YOUR PUBLIC KEY]",
"beneficiaryPublicKey": "[BENEFICIARY PUBLIC KEY]",
"fiatName": "USD",
"amount": "1000",
"fiatPrice": "6.66",
"lawThresholdEnabled": true,
"expectVerifyFields": [
"101001", // Originator Legal Person Name
"101004", // Originator Legal Person Authority ID
"100025" // Originator Natural Person Date Of Birth
]
}
For the Target VASP, they need to verify all the fields they can verify and bring out the results. And put the results into stage 3: receive PII results callback, for example: Receiver Callback API 3: PII Verification.
{
"verifyStatus": 100000,
"verifyMessage": "Success",
"data": {
"encryptedPayload": "....",
"verifyFields": [
{
"type": "101001", // Originator Legal Person Name
"status": 1,
"message": "match"
}
]
//...
}
// ...
}
GTR will return based on the fields mentioned by Initiator instead of returning all the verification of the Beneficiary. In other words, the verification field result obtained by Initiator is an Intersection.
For the verifying fields, we provide the list that you could refer to, if the field is not in the list, you still can name it, please use UPPER snake case to name it.
Common Type Name:
Name | FATF Name | JSON Path | GTR Enum |
---|---|---|---|
Beneficiary Legal Person Name | LegalPersonName | x.ivms101.Beneficiary.beneficiaryPersons[].legalPerson.name.nameIdentifier | 111001 |
Beneficiary Natural Person Name | NaturalPersonNameID | x.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.name.nameIdentifier | 110026 |
Beneficiary Natural Person Local Name | LocalNaturalPersonNameID | x.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.name.localNameIdentifier | 110027 |
Beneficiary Natural Person Place of Birth | PlaceOfBirth | x.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.dateAndPlaceOfBirth.placeOfBirth | 110024 |
Beneficiary Natural Person Date of Birth | DateOfBirth | x.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.dateAndPlaceOfBirth.dateOfBirth | 110025 |
Beneficiary Natural Person Phonetic Name | LocalNaturalPersonNameID | x.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.name.phoneticNameIdentifier | 110028 |
Beneficiary Natural Person Country Of Residence | CountryOfResidence | x.ivms101.Beneficiary.beneficiaryPersons[].naturalPerson.countryOfResidence | 110048 |
Beneficiary Legal Person Country Of Registration | CountryOfRegistration | x.ivms101.Beneficiary.beneficiaryPersons[].legalPerson.countryOfRegistration | 111022 |
*Verify Fields code names are distinguished by Originator/Beneficiary and need to be used in different scenarios.
Status Enum Type:
Status Enum Name | Status Enum Value (Integer) | Description |
---|---|---|
SKIP | 0 | Skip verify |
MATCH / PASS | 1 | Full match Or Pass |
MISMATCH | 2 | Not match |
NOT_SUPPORT | 3 | Not support |
INFO_MISSING | 4 | Info missing |
INFO_EXISTS | 5 | Received / Exists |
The error message will also give the Travel Rule Initiator two forms of information, one is the verification result expected by the Initiator, and the other is the verification result expected by the Receiver.
In Travel Rule Request Initiator
Among them, SKIP
, MATCH/PASS
, MISMATCH
, NOT_SUPPORT
will only appear in the expectVerifyFields
required by the Initiator. In other words, only the items listed by the Initiator will be returned in the result.
*Travel Rule Request Initiator could be Originator VASP or Beneficiary VASP.
In Travel Rule Request Receiver
Among them, INFO_MISSING
and INFO_EXISTS
will appear in the information returned by the Receiver. They represent the required information required by the other party's VASP. Regardless of whether the Initiator is included in expectVerifyFields
, the results required by the fields will be returned to the Initiator.
*Travel Rule Request Receiver could be Originator VASP or Beneficiary VASP.
You can use the VASP Detail API to query which fields are required by the Receiver, which are presented in the standardVersionRequiredPiiFields
field.
You can also check standardVersionSupportedVerifyFields
to check which fields Receiver VASP can help you verify.
See: GET /api/vasp/detail
PII Verify Fields Reference Table
Update: 2024 Dec 19
Direction | Person Type | Name | GTR Enum | Description | FATF Name | JSON Path |
---|---|---|---|---|---|---|
Originator | Legal Person | Legal Person Name | 101001 | Legal Person Name | LegalPersonName | x.ivms101.Originator.originatorPersons[0].legalPerson.name.nameIdentifier |
Originator | Legal Person | Legal Person National Identifier ID Type | 101002 | Legal Person National Identifier ID Type | NationalIdentifierType | x.ivms101.Originator.originatorPersons[0].legalPerson.nationalIdentification.nationalIdentifierType |
Originator | Legal Person | Legal Person National Identifier ID | 101003 | Legal Person National Identifier ID | NationalIdentifier | x.ivms101.Originator.originatorPersons[0].legalPerson.nationalIdentification.nationalIdentifier |
Originator | Legal Person | Legal Person National Identifier Registration Authority ID | 101004 | Legal Person National Identifier Registration Authority ID | RegistrationAuthority | x.ivms101.Originator.originatorPersons[0].legalPerson.nationalIdentification.registrationAuthority |
Originator | Legal Person | Legal Person National Identifier Country of Issue | 101005 | Legal Person National Identifier Country of Issue | CountryOfIssue | x.ivms101.Originator.originatorPersons[0].legalPerson.nationalIdentification.countryOfIssuse |
Originator | Legal Person | Legal Person Customer Identification | 101006 | Legal Person Customer Identification | CustomerIdentification | x.ivms101.Originator.originatorPersons[0].legalPerson.customerIdentification |
Originator | Legal Person | Legal Person Address - Country | 101007 | Legal Person Address - Country | Country | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].country |
Originator | Legal Person | Legal Person Address - Town Name | 101008 | Legal Person Address - Town Name | TownName | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].townName |
Originator | Legal Person | Legal Person Address - Address Lines | 101009 | Legal Person Address - Address Lines | AddressLine | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].addressLine |
Originator | Legal Person | Legal Person Address - Department | 101010 | Legal Person Address - Department | Department | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].department |
Originator | Legal Person | Legal Person Address - Sub Department | 101011 | Legal Person Address - Sub Department | SubDepartment | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].subDepartment |
Originator | Legal Person | Legal Person Address - Street | 101012 | Legal Person Address - Street | Street | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].streetName |
Originator | Legal Person | Legal Person Address - Building Number | 101013 | Legal Person Address - Building Number | BuildingNumber | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].buildingNumber |
Originator | Legal Person | Legal Person Address - Building Name | 101014 | Legal Person Address - Building Name | BuildingName | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].buildingName |
Originator | Legal Person | Legal Person Address - Floor | 101015 | Legal Person Address - Floor | Floor | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].floor |
Originator | Legal Person | Legal Person Address - Postbox | 101016 | Legal Person Address - Postbox | Postbox | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].postBox |
Originator | Legal Person | Legal Person Address - Room | 101017 | Legal Person Address - Room | Room | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].room |
Originator | Legal Person | Legal Person Address - Post Code | 101018 | Legal Person Address - Post Code | PostCode | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].postCode |
Originator | Legal Person | Legal Person Address - Town Location | 101019 | Legal Person Address - Town Location | TownLocation | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].townLocationName |
Originator | Legal Person | Legal Person Address - District Name | 101020 | Legal Person Address - District Name | DistrictName | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].districtName |
Originator | Legal Person | Legal Person Address - Country of Sub Division | 101021 | Legal Person Address - Country of Sub Division | CountryOfSubDivision | x.ivms101.Originator.originatorPersons[0].legalPerson.geographicAddress[0].countrySubDivision |
Originator | Legal Person | Legal Person Country of Registration | 101022 | Legal Person Country of Registration | CountryOfRegistration | x.ivms101.Originator.originatorPersons[0].legalPerson.countryOfRegistration |
Originator | Others | Account Number | 103023 | Account Number | AccountNumber | x.ivms101.Originator.accountNumber |
Originator | Natural Person | Natural Person Place of Birth | 100024 | Natural Person Place of Birth | PlaceOfBirth | x.ivms101.Originator.originatorPersons[0].naturalPerson.dateAndPlaceOfBirth.placeOfBirth |
Originator | Natural Person | Natural Person Date of Birth | 100025 | Natural Person Date of Birth | DateOfBirth | x.ivms101.Originator.originatorPersons[0].naturalPerson.dateAndPlaceOfBirth.dateOfBirth |
Originator | Natural Person | Natural Person Name | 100026 | Natural Person Name | Name | x.ivms101.Originator.originatorPersons[0].naturalPerson.name.nameIdentifier |
Originator | Natural Person | Natural Person Local Name | 100027 | Natural Person Local Name | LocalName | x.ivms101.Originator.originatorPersons[0].naturalPerson.name.localNameIdentifier |
Originator | Natural Person | Natural Person Phonetic Name | 100028 | Natural Person Phonetic Name | PhoneticName | x.ivms101.Originator.originatorPersons[0].naturalPerson.name.phoneticNameIdentifier |
Originator | Natural Person | Natural Person Address - Country | 100029 | Natural Person Address - Country | Country | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].country |
Originator | Natural Person | Natural Person Address - Town Name | 100030 | Natural Person Address - Town Name | TownName | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].townName |
Originator | Natural Person | Natural Person Address - Address Lines | 100031 | Natural Person Address - Address Lines | AddressLine | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].addressLine |
Originator | Natural Person | Natural Person Address - Department | 100032 | Natural Person Address - Department | Department | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].department |
Originator | Natural Person | Natural Person Address - Sub Department | 100033 | Natural Person Address - Sub Department | SubDepartment | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].subDepartment |
Originator | Natural Person | Natural Person Address - Street | 100034 | Natural Person Address - Street | Street | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].streetName |
Originator | Natural Person | Natural Person Address - Building Number | 100035 | Natural Person Address - Building Number | BuildingNumber | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].buildingNumber |
Originator | Natural Person | Natural Person Address - Building Name | 100036 | Natural Person Address - Building Name | BuildingName | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].buildingName |
Originator | Natural Person | Natural Person Address - Floor | 100037 | Natural Person Address - Floor | Floor | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].floor |
Originator | Natural Person | Natural Person Address - Postbox | 100038 | Natural Person Address - Postbox | Postbox | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].postBox |
Originator | Natural Person | Natural Person Address - Room | 100039 | Natural Person Address - Room | Room | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].room |
Originator | Natural Person | Natural Person Address - Post Code | 100040 | Natural Person Address - Post Code | PostCode | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].postCode |
Originator | Natural Person | Natural Person Address - Town Location | 100041 | Natural Person Address - Town Location | TownLocation | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].townLocationName |
Originator | Natural Person | Natural Person Address - District Name | 100042 | Natural Person Address - District Name | DistrictName | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].districtName |
Originator | Natural Person | Natural Person Address - Country of Sub Division | 100043 | Natural Person Address - Country of Sub Division | CountryOfSubDivision | x.ivms101.Originator.originatorPersons[0].naturalPerson.geographicAddress[0].countrySubDivision |
Originator | Natural Person | Natural Person National ID - Type | 100044 | Natural Person National ID - Type | NationalIdentifierType | x.ivms101.Originator.originatorPersons[0].naturalPerson.nationalIdentification.nationalIdentifierType |
Originator | Natural Person | Natural Person National ID | 100045 | Natural Person National ID | NationalIdentifier | x.ivms101.Originator.originatorPersons[0].naturalPerson.nationalIdentification.nationalIdentifier |
Originator | Natural Person | Natural Person National ID - Country Of Issue | 100046 | Natural Person National ID - Country Of Issue | CountryOfIssue | x.ivms101.Originator.originatorPersons[0].naturalPerson.nationalIdentification.countryOfIssuse |
Originator | Natural Person | Natural Person Customer ID | 100047 | Natural Person Customer ID | CustomerId | x.ivms101.Originator.originatorPersons[0].naturalPerson.customerIdentification |
Originator | Natural Person | Natural Person Country of Residence | 100048 | Natural Person Country of Residence | CountryOfResidence | x.ivms101.Originator.originatorPersons[0].naturalPerson.countryOfResidence |
Beneficiary | Legal Person | Legal Person Name | 111001 | Legal Person Name | LegalPersonName | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.name.nameIdentifier |
Beneficiary | Legal Person | Legal Person National Identifier ID Type | 111002 | Legal Person National Identifier ID Type | NationalIdentifierType | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.nationalIdentification.nationalIdentifierType |
Beneficiary | Legal Person | Legal Person National Identifier ID | 111003 | Legal Person National Identifier ID | NationalIdentifier | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.nationalIdentification.nationalIdentifier |
Beneficiary | Legal Person | Legal Person National Identifier Registration Authority ID | 111004 | Legal Person National Identifier Registration Authority ID | RegistrationAuthority | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.nationalIdentification.registrationAuthority |
Beneficiary | Legal Person | Legal Person National Identifier Country of Issue | 111005 | Legal Person National Identifier Country of Issue | CountryOfIssue | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.nationalIdentification.countryOfIssuse |
Beneficiary | Legal Person | Legal Person Customer Identification | 111006 | Legal Person Customer Identification | CustomerIdentification | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.customerIdentification |
Beneficiary | Legal Person | Legal Person Address - Country | 111007 | Legal Person Address - Country | Country | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].country |
Beneficiary | Legal Person | Legal Person Address - Town Name | 111008 | Legal Person Address - Town Name | TownName | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].townName |
Beneficiary | Legal Person | Legal Person Address - Address Lines | 111009 | Legal Person Address - Address Lines | AddressLine | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].addressLine |
Beneficiary | Legal Person | Legal Person Address - Department | 111010 | Legal Person Address - Department | Department | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].department |
Beneficiary | Legal Person | Legal Person Address - Sub Department | 111011 | Legal Person Address - Sub Department | SubDepartment | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].subDepartment |
Beneficiary | Legal Person | Legal Person Address - Street | 111012 | Legal Person Address - Street | Street | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].streetName |
Beneficiary | Legal Person | Legal Person Address - Building Number | 111013 | Legal Person Address - Building Number | BuildingNumber | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].buildingNumber |
Beneficiary | Legal Person | Legal Person Address - Building Name | 111014 | Legal Person Address - Building Name | BuildingName | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].buildingName |
Beneficiary | Legal Person | Legal Person Address - Floor | 111015 | Legal Person Address - Floor | Floor | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].floor |
Beneficiary | Legal Person | Legal Person Address - Postbox | 111016 | Legal Person Address - Postbox | Postbox | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].postBox |
Beneficiary | Legal Person | Legal Person Address - Room | 111017 | Legal Person Address - Room | Room | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].room |
Beneficiary | Legal Person | Legal Person Address - Post Code | 111018 | Legal Person Address - Post Code | PostCode | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].postCode |
Beneficiary | Legal Person | Legal Person Address - Town Location | 111019 | Legal Person Address - Town Location | TownLocation | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].townLocationName |
Beneficiary | Legal Person | Legal Person Address - District Name | 111020 | Legal Person Address - District Name | DistrictName | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].districtName |
Beneficiary | Legal Person | Legal Person Address - Country of Sub Division | 111021 | Legal Person Address - Country of Sub Division | CountryOfSubDivision | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.geographicAddress[0].countrySubDivision |
Beneficiary | Legal Person | Legal Person Country of Registration | 111022 | Legal Person Country of Registration | CountryOfRegistration | x.ivms101.Beneficiary.beneficiaryPersons[0].legalPerson.countryOfRegistration |
Beneficiary | Others | Account Number | 113023 | Account Number | AccountNumber | x.ivms101.Beneficiary.accountNumber |
Beneficiary | Natural Person | Natural Person Place of Birth | 110024 | Natural Person Place of Birth | PlaceOfBirth | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.dateAndPlaceOfBirth.placeOfBirth |
Beneficiary | Natural Person | Natural Person Date of Birth | 110025 | Natural Person Date of Birth | DateOfBirth | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.dateAndPlaceOfBirth.dateOfBirth |
Beneficiary | Natural Person | Natural Person Name | 110026 | Natural Person Name | Name | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.name.nameIdentifier |
Beneficiary | Natural Person | Natural Person Local Name | 110027 | Natural Person Local Name | LocalName | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.name.localNameIdentifier |
Beneficiary | Natural Person | Natural Person Phonetic Name | 110028 | Natural Person Phonetic Name | PhoneticName | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.name.phoneticNameIdentifier |
Beneficiary | Natural Person | Natural Person Address - Country | 110029 | Natural Person Address - Country | Country | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].country |
Beneficiary | Natural Person | Natural Person Address - Town Name | 110030 | Natural Person Address - Town Name | TownName | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].townName |
Beneficiary | Natural Person | Natural Person Address - Address Lines | 110031 | Natural Person Address - Address Lines | AddressLine | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].addressLine |
Beneficiary | Natural Person | Natural Person Address - Department | 110032 | Natural Person Address - Department | Department | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].department |
Beneficiary | Natural Person | Natural Person Address - Sub Department | 110033 | Natural Person Address - Sub Department | SubDepartment | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].subDepartment |
Beneficiary | Natural Person | Natural Person Address - Street | 110034 | Natural Person Address - Street | Street | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].streetName |
Beneficiary | Natural Person | Natural Person Address - Building Number | 110035 | Natural Person Address - Building Number | BuildingNumber | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].buildingNumber |
Beneficiary | Natural Person | Natural Person Address - Building Name | 110036 | Natural Person Address - Building Name | BuildingName | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].buildingName |
Beneficiary | Natural Person | Natural Person Address - Floor | 110037 | Natural Person Address - Floor | Floor | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].floor |
Beneficiary | Natural Person | Natural Person Address - Postbox | 110038 | Natural Person Address - Postbox | Postbox | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].postBox |
Beneficiary | Natural Person | Natural Person Address - Room | 110039 | Natural Person Address - Room | Room | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].room |
Beneficiary | Natural Person | Natural Person Address - Post Code | 110040 | Natural Person Address - Post Code | PostCode | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].postCode |
Beneficiary | Natural Person | Natural Person Address - Town Location | 110041 | Natural Person Address - Town Location | TownLocation | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].townLocationName |
Beneficiary | Natural Person | Natural Person Address - District Name | 110042 | Natural Person Address - District Name | DistrictName | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].districtName |
Beneficiary | Natural Person | Natural Person Address - Country of Sub Division | 110043 | Natural Person Address - Country of Sub Division | CountryOfSubDivision | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.geographicAddress[0].countrySubDivision |
Beneficiary | Natural Person | Natural Person National ID - Type | 110044 | Natural Person National ID - Type | NationalIdentifierType | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.nationalIdentification.nationalIdentifierType |
Beneficiary | Natural Person | Natural Person National ID | 110045 | Natural Person National ID | NationalIdentifier | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.nationalIdentification.nationalIdentifier |
Beneficiary | Natural Person | Natural Person National ID - Country Of Issue | 110046 | Natural Person National ID - Country Of Issue | CountryOfIssue | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.nationalIdentification.countryOfIssuse |
Beneficiary | Natural Person | Natural Person Customer ID | 110047 | Natural Person Customer ID | CustomerId | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.customerIdentification |
Beneficiary | Natural Person | Natural Person Country of Residence | 110048 | Natural Person Country of Residence | CountryOfResidence | x.ivms101.Beneficiary.beneficiaryPersons[0].naturalPerson.countryOfResidence |