ZVON > References > Zvon Example Repository
Example repository: index | categories | search

All > Relax NG > Simplification - Constraints > Test 184

Previous sample | Next sample

Author: James Clark
Origin: Testsuite for Relax NG


ElementsAttributes
definename |
elementname |
empty
grammar
start
valuetype |

ZVON comment: The default datatype library contains defines the "token" and "string" types. There is no "tok" type.

Incorrect schema

<grammar xmlns:html="http://www.w3.org/TR/REC-html40" xmlns="http://relaxng.org/ns/structure/1.0" >
     <start>
          <element name="foo">
               <empty/>
          </element>
     </start>
     <define name="foo">
          <value type="tok"/>
     </define>
</grammar>