20 lines
		
	
	
		
			746 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			746 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="UTF-8"?>
 | |
| <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
 | |
| 	<xs:element name="list">
 | |
| 		<xs:complexType>
 | |
| 			<xs:sequence>
 | |
| 				<xs:element name="stone" maxOccurs="unbounded" minOccurs="0">
 | |
| 					<xs:complexType mixed="true">
 | |
| 						<xs:attribute type="xs:integer" name="id" />
 | |
| 						<xs:attribute type="xs:string" name="type" />
 | |
| 						<xs:attribute type="xs:string" name="targetType" />
 | |
| 						<xs:attribute type="xs:string" name="grades" />
 | |
| 						<xs:attribute type="xs:integer" name="cost" />
 | |
| 						<xs:attribute type="xs:integer" name="visualId" />
 | |
| 						<xs:attribute type="xs:integer" name="lifeTime" />
 | |
| 					</xs:complexType>
 | |
| 				</xs:element>
 | |
| 			</xs:sequence>
 | |
| 		</xs:complexType>
 | |
| 	</xs:element>
 | |
| </xs:schema> | 
