123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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.
- -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
- <xs:element name="commands">
- <xs:annotation>
- <xs:documentation>Commands used for personal data merge feature</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:choice>
- <xs:element ref="queryModelDataSources"/>
- </xs:choice>
- </xs:complexType>
- </xs:element>
- <xs:element name="queryModelDataSources">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="input">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="cmSearchPath"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="output">
- <xs:complexType>
- <xs:sequence minOccurs="0" maxOccurs="unbounded">
- <xs:element name="dataSource">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="cmDataSource">
- <xs:annotation>
- <xs:documentation>name of the corresponding data source object stored in Content Store that contains connection information.</xs:documentation>
- </xs:annotation>
- </xs:element>
- <xs:element name="interface">
- <xs:annotation>
- <xs:documentation>Indicator of the data source type (e.g. PC for PowerCube, OR for Oracle etc.)</xs:documentation>
- </xs:annotation>
- </xs:element>
- <xs:element name="sourceType" default="regular" minOccurs="0">
- <xs:annotation>
- <xs:documentation>Indicates the type of the data source: note only 'regular' data sources are associated with a corresponding object in Content Store.</xs:documentation>
- </xs:annotation>
- <xs:simpleType>
- <xs:restriction base="xs:NMTOKEN">
- <xs:enumeration value="regular"/>
- <xs:enumeration value="personalData"/>
- <xs:enumeration value="reportExtract"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:element>
- <xs:element name="sourcePath" minOccurs="0">
- <xs:annotation>
- <xs:documentation>Populated only for personal data sources and contains a path to a file or a report in Content Store.</xs:documentation>
- </xs:annotation>
- </xs:element>
- <xs:element name="directAccess" type="xs:boolean" default="false" minOccurs="0">
- <xs:annotation>
- <xs:documentation>Populated only for personal data sources indicates if an attempt will be made to access the file directly without prompting.</xs:documentation>
- </xs:annotation>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="cmSearchPath">
- <xs:annotation>
- <xs:documentation>Path to a model stored in Content Store.</xs:documentation>
- </xs:annotation>
- </xs:element>
- </xs:schema>
|