mdsrvCommands.xsd 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: mdsrv
  5. (C) Copyright IBM Corp. 2008, 2010
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <!--
  9. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. The generic specification for the Metadata Service command listing in mdsrvCommands.xml
  12. -->
  13. <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">
  14. <xs:element name="mdsrvCommands">
  15. <xs:annotation>
  16. <xs:documentation>Metadata Service Command Handler specification</xs:documentation>
  17. </xs:annotation>
  18. <xs:complexType>
  19. <xs:sequence>
  20. <xs:element name="command" maxOccurs="unbounded">
  21. <xs:complexType>
  22. <xs:sequence>
  23. <xs:element name="commandID" type="xs:string"/>
  24. <xs:element name="class" type="xs:string"/>
  25. </xs:sequence>
  26. </xs:complexType>
  27. </xs:element>
  28. </xs:sequence>
  29. </xs:complexType>
  30. </xs:element>
  31. </xs:schema>