mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 13:02:30 +07:00
17 lines
627 B
XML
17 lines
627 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="xs: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>
|
|
</x<caret>s:schema> |