The full name of the person, with prefix (if used), first name, middle name (if any), last name and suffix (if any). Useful for displaying on reports and lists without having to expend any programming resources. |
<xsd:simpleType name="PersonFullNameType"> <xsd:annotation> <xsd:documentation xml:lang="en-US">The full name of the person, with prefix (if used), first name, middle name (if any), last name and suffix (if any). Useful for displaying on reports and lists without having to expend any programming resources.</xsd:documentation> </xsd:annotation> <xsd:restriction base="xsd:string"> <xsd:maxLength value="256"/> <xsd:whiteSpace value="preserve"/> </xsd:restriction> </xsd:simpleType> |