27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
		
		
			
		
	
	
			27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			XML
		
	
	
	
|  | <?xml version="1.0" encoding="utf-8"?> | ||
|  | <xs:schema xmlns:tns="http://schemas.microsoft.com/2003/10/Serialization/Arrays" elementFormDefault="qualified" targetNamespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:xs="http://www.w3.org/2001/XMLSchema"> | ||
|  |   <xs:complexType name="ArrayOfKeyValueOfstringstring"> | ||
|  |     <xs:annotation> | ||
|  |       <xs:appinfo> | ||
|  |         <IsDictionary xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</IsDictionary> | ||
|  |       </xs:appinfo> | ||
|  |     </xs:annotation> | ||
|  |     <xs:sequence> | ||
|  |       <xs:element minOccurs="0" maxOccurs="unbounded" name="KeyValueOfstringstring"> | ||
|  |         <xs:complexType> | ||
|  |           <xs:sequence> | ||
|  |             <xs:element name="Key" nillable="true" type="xs:string" /> | ||
|  |             <xs:element name="Value" nillable="true" type="xs:string" /> | ||
|  |           </xs:sequence> | ||
|  |         </xs:complexType> | ||
|  |       </xs:element> | ||
|  |     </xs:sequence> | ||
|  |   </xs:complexType> | ||
|  |   <xs:element name="ArrayOfKeyValueOfstringstring" nillable="true" type="tns:ArrayOfKeyValueOfstringstring" /> | ||
|  |   <xs:complexType name="ArrayOfint"> | ||
|  |     <xs:sequence> | ||
|  |       <xs:element minOccurs="0" maxOccurs="unbounded" name="int" type="xs:int" /> | ||
|  |     </xs:sequence> | ||
|  |   </xs:complexType> | ||
|  |   <xs:element name="ArrayOfint" nillable="true" type="tns:ArrayOfint" /> | ||
|  | </xs:schema> |