| 123456789101112131415161718192021222324252627282930313233 |
- <?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="ArrayOfKeyValueOfstringanyType">
- <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="KeyValueOfstringanyType">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="Key" nillable="true" type="xs:string" />
- <xs:element name="Value" nillable="true" type="xs:anyType" />
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- <xs:element name="ArrayOfKeyValueOfstringanyType" nillable="true" type="tns:ArrayOfKeyValueOfstringanyType" />
- <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:complexType name="ArrayOfanyType">
- <xs:sequence>
- <xs:element minOccurs="0" maxOccurs="unbounded" name="anyType" nillable="true" type="xs:anyType" />
- </xs:sequence>
- </xs:complexType>
- <xs:element name="ArrayOfanyType" nillable="true" type="tns:ArrayOfanyType" />
- </xs:schema>
|