Copyright © The Organization for the Advancement of Structured Information Standards [OASIS] 2001. All Rights Reserved.
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to OASIS, except as needed for the purpose of developing OASIS specifications, in which case the procedures for copyrights defined in the OASIS Intellectual Property Rights document must be followed, or as required to translate it into languages other than English.
The limited permissions granted above are perpetual and will not be revoked by OASIS or its successors or assigns.
This document and the information contained herein is provided on an "AS IS" basis and OASIS DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
This specification defines datatypes and annotations for use in [RELAX NG] schemas. The purpose of these datatypes and annotations is to support some of the features of XML 1.0 DTDs that are not supported directly by RELAX NG.
This Committee Specification was approved for publication by the OASIS RELAX NG technical committee. It is a stable document which represents the consensus of the committee. Comments on this document may be sent to relax-ng-comment@lists.oasis-open.org.
A list of known errors in this document is available at http://www.oasis-open.org/committees/relax-ng/compatibility-20011203-errata.html.
RELAX NG [RELAX NG] provides two mechanisms for extensibility:
The goal of this specification is to facilitate transition from XML 1.0 DTDs to RELAX NG schemas by using these extensibility mechanisms to support some of the features of XML 1.0 DTDs that are not supported by RELAX NG.
The annotations defined in this specification have the namespace URI:
http://relaxng.org/ns/compatibility/annotations/1.0
This rest of this specification follows the convention of using the prefix a to refer to this namespace URI.
Annotations with the above namespace URI can be used in conjunction with annotations with other namespace URIs. Annotations with other namespace URIs are allowed wherever [RELAX NG] specifies that they are allowed.
The following DTD
<!DOCTYPE employees [ <!-- A list of employees. --> <!ELEMENT employees (employee*)> <!-- An individual employee. --> <!ELEMENT employee (#PCDATA)> <!ATTLIST employee id ID #REQUIRED manages IDREFS #IMPLIED managedBy IDREF #IMPLIED country (US|JP) "US" > ]>
could be translated to the following RELAX NG schema:
<element name="employees" xmlns="http://relaxng.org/ns/structure/1.0" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" datatypeLibrary="http://relaxng.org/ns/compatibility/datatypes/1.0"> <a:documentation>A list of employees.</a:documentation> <zeroOrMore> <element name="employee"> <a:documentation>An individual employee.</a:documentation> <attribute name="id"> <data type="ID"/> </attribute> <optional> <attribute name="manages"> <data type="IDREFS"/> </attribute> </optional> <optional> <attribute name="managedBy"> <data type="IDREF"/> </attribute> </optional> <optional> <attribute name="country" a:defaultValue="US"> <choice> <value>US</value> <value>JP</value> </choice> </attribute> </optional> <text/> </element> </zeroOrMore> </element>
RELAX NG itself performs only validation: it does not change the infoset [XML Infoset] of an XML document. Most of the features of XML 1.0 DTDs that are not supported by RELAX NG involve modification to the infoset. In XML 1.0, validation and infoset modification are combined in a monolithic XML processor. It is a goal of this specification to provide a clean separation between validation and infoset modification, so that a wide variety of implementation scenarios are possible. In particular, it should be possible to make the infoset modifications either before performing RELAX NG validation or after performing RELAX NG validation or without performing RELAX NG validation at all. It should also be possible for an implementation of this specification not to modify the infoset at all and instead provide the application with a description of the modifications implied by the annotations, independently of any particular instance.
This specification does not provide any support for features of XML 1.0 DTDs, such as entity declarations, that cannot be cleanly separated from validation.
In an XML 1.0 document that is valid with respect to a DTD, each element or attribute in the instance has a unique corresponding element or attribute declaration in the DTD. With RELAX NG this is not always the case: it may be ambiguous which element or attribute pattern any particular element or attribute in the instance matches. In addition, it is non-trivial to determine when a RELAX NG schema is ambiguous. A further complication is that even when cases where it is not ambiguous, it may require multiple passes or lookahead to determine which element or attribute pattern a particular element or attribute matches. Detecting this situation is also non-trivial.
Some features of XML 1.0 DTDs, in particular default attribute values and ID/IDREF/IDREFS validation, depend crucially on this unambiguous correspondence between elements or attributes in the instance and their corresponding declarations. In order to support these features in RELAX NG schemas by means of datatypes and annotations, it is therefore necessary to impose restrictions on the use of these datatypes and annotations. The goals in framing these restrictions were as follows:
This specification defines three features:
Conformance is defined separately for each feature. A conformant implementation can support any combination of features. For each feature, this specification defines
For each feature, there are two levels of conformance.
The following table shows which aspects of conformance are applicable to each feature:
Feature | Compatibility | Soundness | Infoset modification |
---|---|---|---|
attribute default values | yes | no | yes |
ID/IDREF/IDREFS | yes | yes | yes |
documentation | yes | no | no |
A conformant implementation may support different features at different levels.
A conformant implementation may be an integral part of a RELAX NG validator or may be a separate software module.
Note that compatibility does not affect RELAX NG correctness. Thus, a conforming RELAX NG validator is required to be able to validate an instance against a correct RELAX NG schema even if that schema is not compatible with one or more of the features defined in this specification. Furthermore, soundness is completely independent of validity. A conforming RELAX NG validator must be able to determine whether an instance is valid with respect to a correct RELAX NG schema regardless of whether it is sound with respect to that schema for any of the features defined in this specifcation. A conforming implementation of a feature defined by this specification must be able to determine whether a instance is sound with respect to a compatible schema, regardless of whether the instance is valid with respect to that schema.
This feature is specified by an annotation attribute. An a:defaultValue attribute on a RELAX NG attribute element specifies the default value for the attribute.
A correct RELAX NG schema is compatible with this feature if after schema simplification, for each attribute element that has an a:defaultValue attribute, all of the following hold:
<define name="ln1"> <element> nc1 p1 </element> </define>
competes with a definition
<define name="ln2"> <element> nc2 p2 </element> </define>
if there is a name n that belongs to both nc1 and nc2.
Schema simplification as defined in [RELAX NG] removes all foreign attributes as well as foreign elements. However, when checking compatibility of a schema with this feature, schema simplification must preserve a:defaultValue attributes on attribute elements.
There is no soundness relationship for this feature.
The modification of the infoset for this feature adds attribute information items to element information items. An attribute information item with [local name] x, [namespace name] y and [normalized value] z is added to an element information item e, if and only if:
A RELAX NG schema makes use of this feature by using datatypes. Each datatype is associated with an ID-type, which is one of ID, IDREF or IDREFS or null. The datatype library with URI
http://relaxng.org/ns/compatibility/datatypes/1.0
contains datatypes named ID, IDREF and IDREFS associated with ID-types of ID, IDREF and IDREFS respectively. The datatypes in other datatype libraries are associated with a null ID-type, unless the datatype library specifies otherwise.
[Guidelines] recommends that the ID, IDREF and IDREFS datatypes of [W3C XML Schema Datatypes] should have ID-types ID, IDREF, and IDREFS respectively.
A RELAX NG schema is compatible with this feature if and only if, after schema simplification, for each data or value element that specifies a datatype associated with a non-null ID-type, all of the following hold:
<attribute> nc1 p1 </attribute>
and
<attribute> nc2 p2 </attribute>
compete if and only if the containing definitions compete and there is a name n that belongs to both nc1 and nc2. Note that a definition competes with itself.
Thus, a RELAX NG schema that is compatible with this feature implies a mapping from element/attribute name pairs onto an ID-type, and hence a mapping from attributes in the instance onto ID-types.
An instance is sound for this feature with respect to a compatible RELAX NG schema if and only if
The modification of the infoset for this feature changes the [attribute type] property of attribute information items to ID, IDREF or IDREFS according to the ID-type of the attribute and modifies the [normalized value] by applying the normalizeWhiteSpace function.
The semantics needed for RELAX NG validation are defined for the datatype library
http://relaxng.org/ns/compatibility/datatypes/1.0
as follows:
The a:documentation element can be used to specify human-readable documentation. The functionality provided by an a:documentation element in a RELAX NG schema would be provided by a comment in an XML 1.0 DTD. The a:documentation element contains text specifying documentation. It can also have namespace-qualified attributes such as xml:lang.
If an a:documentation element does not have a preceding sibling element from the RELAX NG namespace, then the specified documentation applies to the parent element. Otherwise, the specified documentation applies to the nearest preceding sibling element from the RELAX NG namespace. There may be multiple a:documentation elements specifying documentation that apply to the same RELAX NG element.
A correct RELAX NG schema is compatible with this feature if and only if, for each a:documentation element, all of the following hold:
There is no soundness relationship for this feature.
There is no infoset modification for this feature.
A RELAX NG schema that is compatible with the features of this specification must, in addition to being valid with respect to the RELAX NG schema for RELAX NG specified in [RELAX NG], be valid with respect to the following schema:
<grammar xmlns="http://relaxng.org/ns/structure/1.0" xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0" xmlns:rng="http://relaxng.org/ns/structure/1.0"> <start> <choice> <ref name="normal"/> <ref name="attribute"/> <ref name="atomic"/> </choice> </start> <define name="normal"> <element> <nsName ns="http://relaxng.org/ns/structure/1.0"> <except> <name>rng:attribute</name> <name>rng:value</name> <name>rng:param</name> <name>rng:name</name> </except> </nsName> <ref name="normalAtts"/> <ref name="normalContent"/> </element> </define> <define name="attribute"> <element name="rng:attribute"> <ref name="normalAtts"/> <optional> <attribute name="a:defaultValue"> <text/> </attribute> </optional> <ref name="normalContent"/> </element> </define> <define name="atomic"> <element> <choice> <name>rng:value</name> <name>rng:param</name> <name>rng:name</name> </choice> <ref name="normalAtts"/> <text/> </element> </define> <define name="normalAtts"> <zeroOrMore> <attribute> <anyName> <except> <nsName ns="http://relaxng.org/ns/compatibility/annotations/1.0"/> </except> </anyName> <text/> </attribute> </zeroOrMore> </define> <define name="normalContent"> <interleave> <zeroOrMore> <ref name="foreign"/> </zeroOrMore> <group> <zeroOrMore> <ref name="doc"/> </zeroOrMore> <zeroOrMore> <choice> <group> <ref name="atomic"/> <zeroOrMore> <ref name="doc"/> </zeroOrMore> </group> <ref name="attribute"/> <ref name="normal"/> </choice> </zeroOrMore> </group> </interleave> </define> <define name="foreign"> <element> <anyName> <except> <nsName ns="http://relaxng.org/ns/structure/1.0"/> <nsName ns="http://relaxng.org/ns/compatibility/annotations/1.0"/> </except> </anyName> <ref name="any"/> </element> </define> <define name="any"> <zeroOrMore> <choice> <attribute> <anyName/> <text/> </attribute> <element> <anyName/> <ref name="any"/> </element> <text/> </choice> </zeroOrMore> </define> <define name="doc"> <element name="a:documentation"> <zeroOrMore> <attribute> <anyName> <except> <nsName ns="http://relaxng.org/ns/structure/1.0"/> <nsName ns="http://relaxng.org/ns/compatibility/annotations/1.0"/> <nsName ns=""/> </except> </anyName> <text/> </attribute> </zeroOrMore> <text/> </element> </define> </grammar>