
| QName | Type | Fixed | Default | Use | Inheritable | Annotation | |
|---|---|---|---|---|---|---|---|
| TEIform | xs:string | optional | |||||
| active | xs:IDREFS | optional | |||||
| desc | xs:string | optional | |||||
| id | xs:ID | optional | |||||
| lang | xs:IDREF | optional | |||||
| mutual | restriction of xs:NMTOKEN | y | optional | ||||
| n | xs:string | optional | |||||
| passive | xs:IDREFS | optional | |||||
| type | xs:string | personal | optional | ||||
| xml:lang | union of(xs:language, restriction of xs:string) | optional |
|
<xs:complexType name="relationType"> <xs:complexContent> <xs:extension base="xces:class.global"> <xs:attribute name="type" type="xs:string" default="personal"/> <xs:attribute name="desc" type="xs:string"/> <xs:attribute name="active" type="xs:IDREFS"/> <xs:attribute name="passive" type="xs:IDREFS"/> <xs:attribute name="mutual" default="y"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="y"/> <xs:enumeration value="n"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> |