plugin.xsd 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: CCS
  5. (c) Copyright IBM Corp. 2010, 2010.
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.ibm.com/xmlns/intern/cognos/rdsplugin/201011" xmlns:tns="http://www.example.org/plugin" elementFormDefault="qualified" xmlns:Q1="http://www.ibm.com/xmlns/intern/cognos/rdsplugin/201011">
  9. <element name="commands" type="Q1:CommandsType"></element>
  10. <complexType name="CommandsType">
  11. <sequence>
  12. <element name="SOAPAction" type="string"></element>
  13. <element name="RESTPath" type="string"></element>
  14. <element name="restCommands" type="Q1:CommandListType" maxOccurs="1" minOccurs="0"></element>
  15. <element name="soapCommands" type="Q1:CommandListType" maxOccurs="1" minOccurs="0"></element>
  16. </sequence>
  17. </complexType>
  18. <element name="command" type="Q1:CommandType"></element>
  19. <complexType name="CommandType">
  20. <sequence>
  21. <element name="name" type="string"></element>
  22. <element name="handler" type="string"></element>
  23. </sequence>
  24. </complexType>
  25. <complexType name="CommandListType">
  26. <sequence>
  27. <element ref="Q1:command" maxOccurs="unbounded" minOccurs="1"></element>
  28. </sequence>
  29. </complexType>
  30. </schema>