DataSetXML.xsd 984 B

1234567891011121314151617181920212223242526
  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. 2013
  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" xmlns:tns="http://www.ibm.com/xmlns/prod/cognos/dataSet/201006" targetNamespace="http://www.ibm.com/xmlns/prod/cognos/dataSet/201006" elementFormDefault="qualified">
  9. <element name="dataSet" type="tns:dataSetType"/>
  10. <complexType name="dataSetType">
  11. <sequence>
  12. <element name="dataTable" type="tns:dataTableType" maxOccurs="unbounded" minOccurs="0">
  13. </element>
  14. </sequence>
  15. </complexType>
  16. <complexType name="dataTableType">
  17. <sequence>
  18. <element name="id" type="string" minOccurs="0"/>
  19. <element name="row" type="anyType" maxOccurs="unbounded" minOccurs="1">
  20. </element>
  21. </sequence>
  22. </complexType>
  23. </schema>