36 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
 | |
| 
 | |
|     <xs:element name="unsignedIntegers">
 | |
|         <xs:complexType>
 | |
|             <xs:sequence>
 | |
|                 <!-- Built-in Type: UnsignedInteger -->
 | |
|                 <xs:element name="unsignedInteger" type="xs:nonNegativeInteger" minOccurs="0"
 | |
|                     maxOccurs="unbounded"/>
 | |
|                 <xs:element name="minInclusive" minOccurs="0" maxOccurs="unbounded">
 | |
|                     <xs:simpleType>
 | |
|                         <xs:restriction base="xs:integer">
 | |
|                             <xs:minInclusive value="5"/>
 | |
|                         </xs:restriction>
 | |
|                     </xs:simpleType>
 | |
|                 </xs:element>
 | |
|                 <xs:element name="minExclusive" minOccurs="0" maxOccurs="unbounded">
 | |
|                     <xs:simpleType>
 | |
|                         <xs:restriction base="xs:integer">
 | |
|                             <xs:minExclusive value="0"/>
 | |
|                         </xs:restriction>
 | |
|                     </xs:simpleType>
 | |
|                 </xs:element>
 | |
|                 <xs:element name="minExclusiveNeg" minOccurs="0" maxOccurs="unbounded">
 | |
|                     <xs:simpleType>
 | |
|                         <xs:restriction base="xs:integer">
 | |
|                             <xs:minExclusive value="-50"/>
 | |
|                         </xs:restriction>
 | |
|                     </xs:simpleType>
 | |
|                 </xs:element>
 | |
|             </xs:sequence>
 | |
|         </xs:complexType>
 | |
|     </xs:element>
 | |
| 
 | |
| </xs:schema>
 | 
