packagesReport.xsd 975 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: fmmd
  5. (C) Copyright IBM Corp. 2003, 2010
  6. US Government Users Restricted Rights - Use, duplication or disclosure
  7. restricted by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
  10. <xs:element name="packages">
  11. <xs:annotation>
  12. <xs:documentation>Specifies the document returned as the result of GetAllPackages action</xs:documentation>
  13. </xs:annotation>
  14. <xs:complexType>
  15. <xs:sequence minOccurs="0" maxOccurs="unbounded">
  16. <xs:element ref="package"/>
  17. </xs:sequence>
  18. </xs:complexType>
  19. </xs:element>
  20. <xs:element name="package">
  21. <xs:complexType>
  22. <xs:attribute name="defaultName" type="xs:string" use="optional"/>
  23. <xs:attribute name="cmSearchPath" type="xs:string" use="optional"/>
  24. </xs:complexType>
  25. </xs:element>
  26. </xs:schema>