Lines Matching full:name
4 <xs:element name="family" type="family_type">
5 <xs:key name="sibling_key">
7 <xs:field xpath="@name"/>
9 <xs:keyref name="sibling_key_ref" refer="sibling_key">
11 <xs:field xpath="@name"/>
14 <xs:complexType name="family_type">
16 <xs:element name="siblings" type="siblings_type" />
17 <xs:element name="sisters" type="sisters_type" />
19 <xs:attribute name="name" type="xs:string"/>
21 <xs:complexType name="siblings_type">
23 <xs:element name="sibling" type="sibling_type" minOccurs="0"
27 <xs:complexType name="sisters_type">
29 <xs:element name="sister" type="sister_type" minOccurs="0"
33 <xs:complexType name="sibling_type">
34 <xs:attribute name="name" type="xs:string"/>
36 <xs:complexType name="sister_type">
37 <xs:attribute name="name" type="xs:string"/>