12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: CCS
- (c) Copyright IBM Corp. 2010, 2010.
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <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">
- <element name="commands" type="Q1:CommandsType"></element>
- <complexType name="CommandsType">
- <sequence>
- <element name="SOAPAction" type="string"></element>
- <element name="RESTPath" type="string"></element>
- <element name="restCommands" type="Q1:CommandListType" maxOccurs="1" minOccurs="0"></element>
- <element name="soapCommands" type="Q1:CommandListType" maxOccurs="1" minOccurs="0"></element>
- </sequence>
- </complexType>
- <element name="command" type="Q1:CommandType"></element>
-
- <complexType name="CommandType">
- <sequence>
- <element name="name" type="string"></element>
- <element name="handler" type="string"></element>
- </sequence>
- </complexType>
- <complexType name="CommandListType">
- <sequence>
- <element ref="Q1:command" maxOccurs="unbounded" minOccurs="1"></element>
- </sequence>
- </complexType>
- </schema>
|