| 123456789101112131415161718192021 |
- <?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:schema>
|