<?xml version="1.0" encoding="UTF-8"?>
<grammar xmlns="http://relaxng.org/ns/structure/1.0">
  <!--
    security_any.rnc
    
    Copyright 2011 W3C (Massachusetts Institute of Technology, 
    Institut National de Recherche en Informatique et en Automatique, 
    Keio University). All Rights Reserved.  http://www.w3.org/Consortium/Legal/
    
    Use and distribution of all schemas in this directory are permitted under the terms
    W3C Software Notice and License
    http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
    
    This RELAX NG schema defines security_anyElement, which allows any element,
    and security_anyAttribute, which allows any attribute.
  -->
  <define name="security_anyElement">
    <element>
      <anyName/>
      <mixed>
        <zeroOrMore>
          <ref name="security_anyAttribute"/>
        </zeroOrMore>
        <zeroOrMore>
          <ref name="security_anyElement"/>
        </zeroOrMore>
      </mixed>
    </element>
  </define>
  <define name="security_anyAttribute">
    <attribute>
      <anyName/>
    </attribute>
  </define>
</grammar>
