Types are used only to characterise special occurences of names. In most cases, types would be ommitted. Possible types are : **>Former : can be used for somebody that changed name (artist, ...) **>Maiden : Self Explanatory **>Nickname : Self Explanatory Except for Maiden, the other types can be found in multiple occurences. |
Attributes | NameLastNameType/@Type, NameType/LastName/@Type |
<xs:simpleType name="NameCodeType"> <xs:annotation> <xs:documentation>Types are used only to characterise special occurences of names. In most cases, types would be ommitted. Possible types are : **>Former : can be used for somebody that changed name (artist, ...) **>Maiden : Self Explanatory **>Nickname : Self Explanatory Except for Maiden, the other types can be found in multiple occurences.</xs:documentation> </xs:annotation> <xs:restriction base="xs:string"> <xs:enumeration value="Former"/> <xs:enumeration value="Maiden"/> <xs:enumeration value="Nickname"/> </xs:restriction> </xs:simpleType> |