The IDTagged complexType is a super class for objects that require unique id attributes of type xs:ID. The id must be unique within the XML document. |
QName | Type | Fixed | Default | Use | Inheritable | Annotation | |
---|---|---|---|---|---|---|---|
about | URIorSafeCURIE | optional | |||||
id | xs:ID | required | |||||
label | xs:string | optional | |||||
xml:base | xs:anyURI | optional |
|
||||
Wildcard: ANY attribute from ANY namespace |
<xs:complexType name="IDTagged" abstract="true" mixed="false"> <xs:annotation> <xs:documentation>The IDTagged complexType is a super class for objects that require unique id attributes of type xs:ID. The id must be unique within the XML document.</xs:documentation> </xs:annotation> <xs:complexContent mixed="false"> <xs:extension base="Labelled"> <xs:sequence/> <xs:attribute name="id" type="xs:ID" use="required"/> </xs:extension> </xs:complexContent> </xs:complexType> |