Please guide me to the portion of the UML diagram containing a persons information.
Below is an example of the information NDOR requires
<xsd:complexType name="PersonType">
<xsd:annotation>
<xsd:documentation>Person in some way involved in the accident. </xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element ref="PersonName" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="BirthDate" minOccurs="0"/>
<xsd:element ref="SSN" minOccurs="0"/>
<xsd:element ref="Sex" minOccurs="0"/>
<xsd:element ref="PostalAddress" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="Location" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="PersonalIDNumber" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="LocalId" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element ref="Telephone" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
<xsd:attribute name="key" type="xsd:string" use="optional"/>
<!-- Making conversion assumption. Replacing type "sequence/choice" with "choice" -->
</xsd:complexType>
Steve B