mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
19 lines
629 B
XML
19 lines
629 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xs:schema targetNamespace="http://mySchema"
|
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:my="http://mySchema">
|
|
|
|
<xs:element name="myElement" type="my:TYPE"/>
|
|
<xs:simpleType name="TYPE" id="TYPE">
|
|
<xs:restriction base="x<caret>s:integer">
|
|
<xs:minInclusive value="0" id="nonNegativeInteger.minInclusive"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
<xs:simpleType name="T" id="T">
|
|
<xs:restriction base="xs:integer">
|
|
<xs:minInclusive value="0" id="id"/>
|
|
</xs:restriction>
|
|
</xs:simpleType>
|
|
</xs:schema>
|
|
|