1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3.org/2007/XMLSchema-versioning">
<!-- Patched version for python-xmlschema (wrong xmlns declaration) -->
<annotation>
<documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>Simple schema for the XML Schema Versioning namespace.
27 August 2007.
</p>
<p>The conventional prefix for this namespace is "<code>vc</code>".</p>
<p>It isn't currently expected that this schema document will actually
be used to validate anything; it's intended primarily as documentation.
</p>
</div>
</documentation>
<appinfo>
</appinfo>
</annotation>
<attribute name="minVersion" type="decimal">
<annotation>
<documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>The <code>minVersion</code> attribute specifies that its parent
element should be ignored by any processor supporting a version number
lower than the <code>minVersion</code> value.</p>
</div>
</documentation>
</annotation>
</attribute>
<attribute name="maxVersion" type="decimal">
<annotation>
<documentation>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>The <code>maxVersion</code> attribute specifies that its parent
element should be ignored by any processor supporting a version number
higher than the <code>maxVersion</code> value.</p>
</div>
</documentation>
</annotation>
</attribute>
</schema>
|