RELAX NG by Eric van der Vlist will be published by O'Reilly & Associates (ISBN: 0596004214)
You are welcome to use our annotation system to give your feedback.
xsd:ID — Definition of unique identifiers.
xsd:NCName
xsd:string
none
enumeration, length, maxLength, minLength, pattern.
<xsd:simpleType name="ID" id="ID"> <xsd:restriction base="xsd:NCName"/> </xsd:simpleType> |
The purpose of the xsd:ID datatype is to define unique identifiers that are global to a document and emulate the ID attribute type available in the XML DTDs.
Unlike their DTD counterparts, W3C XML Schema ID datatypes can be used to define not only attributes, but also simple element content.
For both attributes and simple element content, the lexical domain of these datatypes is the lexical domain of XML nonqualified names (xsd:NCName).
Identifiers defined using this datatype are global to a document and provide a way to uniquely identify their containing element, whatever its type and name is.
The constraint added by this datatype, beyond the xsd:NCName datatype from which it is derived, is that the values of all the attributes and elements that have an ID datatype in a document must be unique.
Note that this datatype is more lax than the ID datatype from the RELAX NG DTD compatibility datatype library. This datatype can be used both for elements and for defining multiple type assignment to attributes defined as ID depending on their location in the schema.
Applications that need to maintain a level of compatibility with DTDs should not use this datatype for elements but should reserve it for attributes.
The lexical domain ( xsd:NCName) of this datatype doesn't allow the definition of numerical identifiers or identifiers containing whitespaces.
<element name="book"> <element name="isbn"> <data type="xsd:int"/> </element> <element name="title"> <data type="xsd:string"/> </element> <element name="author-ref"> <attribute name="ref"> <data type="xsd:IDREF"/> </attribute> </element> <element name="character-refs"> <data type="xsd:IDREFS"/> </element> <attribute name="identifier"> <data type="xsd:ID"/> </attribute> </element> |
You are welcome to use our annotation system to give your feedback.
[Annotations for this page]
All text is copyright Eric van der Vlist, Dyomedea. During development, I give permission for non-commercial copying for educational and review purposes. After publication, all text will be released under the Free Software Foundation GFDL.