Tuesday, August 3, 2010

Where did the Borrower first name go?

Borrower FirstName, MiddleName, LastName, SuffixName
Last time we looked at a party that was a legal entity. A Borrower is most likely an individual. The INDIVIDUAL container element has a full NAME structure. LEGAL_ENTITY, as we saw above only has a place for the entity full name.
<PARTY xlink:type="resource" xlink:title="Borrower1">
                            <INDIVIDUAL>
                              
  <NAME>
                                    <FirstName>Mickey</FirstName>
                                    <FullName>Mickey M Mouse</FullName>
                                    <LastName>Mouse</LastName>
                                    <MiddleName>Mighty</MiddleName>
                                    <SuffixName>Jr</SuffixName>
                                </NAME>
                            </INDIVIDUAL>
                        </PARTY>
NAME also has places for
Educational Achievements Description -- MD, PhD, CMT, CMB etc.
Functional Title Description-- Mayor of City of Frisco, District Attorney, etc.
Individual Title Description-- Cruse Director etc.

The XPath to the borrower first name would be:
//PARTY[ROLES/ROLE/ROLE_DETAIL/PartyRoleType='Borrower']/INDIVIDUAL/NAME/FirstName

No comments:

Post a Comment