CommonModuleService1.xsd 1.0 KB

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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">
  3. <xs:complexType name="ArrayOfKeyValueOfstringanyType">
  4. <xs:annotation>
  5. <xs:appinfo>
  6. <IsDictionary xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</IsDictionary>
  7. </xs:appinfo>
  8. </xs:annotation>
  9. <xs:sequence>
  10. <xs:element minOccurs="0" maxOccurs="unbounded" name="KeyValueOfstringanyType">
  11. <xs:complexType>
  12. <xs:sequence>
  13. <xs:element name="Key" nillable="true" type="xs:string" />
  14. <xs:element name="Value" nillable="true" type="xs:anyType" />
  15. </xs:sequence>
  16. </xs:complexType>
  17. </xs:element>
  18. </xs:sequence>
  19. </xs:complexType>
  20. <xs:element name="ArrayOfKeyValueOfstringanyType" nillable="true" type="tns:ArrayOfKeyValueOfstringanyType" />
  21. </xs:schema>