1234567891011121314151617181920212223242526 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: CCS
- (C) Copyright IBM Corp. 2013
- 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" xmlns:tns="http://www.ibm.com/xmlns/prod/cognos/dataSet/201006" targetNamespace="http://www.ibm.com/xmlns/prod/cognos/dataSet/201006" elementFormDefault="qualified">
- <element name="dataSet" type="tns:dataSetType"/>
- <complexType name="dataSetType">
- <sequence>
- <element name="dataTable" type="tns:dataTableType" maxOccurs="unbounded" minOccurs="0">
- </element>
- </sequence>
- </complexType>
- <complexType name="dataTableType">
- <sequence>
- <element name="id" type="string" minOccurs="0"/>
- <element name="row" type="anyType" maxOccurs="unbounded" minOccurs="1">
- </element>
- </sequence>
- </complexType>
- </schema>
|