1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: mdsrv
- (C) Copyright IBM Corp. 2008, 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- The generic specification for the Metadata Service command listing in mdsrvCommands.xml
- -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mdsrv="http://www.developer.cognos.com/schemas/mdsrv/1/0" targetNamespace="http://www.developer.cognos.com/schemas/mdsrv/1/0" elementFormDefault="unqualified" attributeFormDefault="unqualified">
- <xs:element name="mdsrvCommands">
- <xs:annotation>
- <xs:documentation>Metadata Service Command Handler specification</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element name="command" maxOccurs="unbounded">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="commandID" type="xs:string"/>
- <xs:element name="class" type="xs:string"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|