123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: relmd
- (C) Copyright IBM Corp. 2008, 2015
- 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" xmlns:relmd="http://www.ibm.com/xmlns/prod/cognos/relmd/1/0" targetNamespace="http://www.ibm.com/xmlns/prod/cognos/relmd/1/0" elementFormDefault="qualified" attributeFormDefault="qualified">
- <xs:include schemaLocation="../relmdMetadata.xsd"/>
- <!--Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.-->
- <!--Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).-->
- <xs:element name="contentStoreDatabaseConnection">
- <xs:annotation>
- <xs:documentation>Leads to a DataSourceConnection object in the IBM Cognos Content Store, which contains the required parameters for connecting to the database.</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:attributeGroup ref="relmd:cmDataSource">
- <xs:annotation>
- <xs:documentation>A data source in the Content Store.</xs:documentation>
- </xs:annotation>
- </xs:attributeGroup>
- <xs:attributeGroup ref="relmd:cmDataSourceAmbiguousConnectionResolution"/>
- <xs:attributeGroup ref="relmd:cmDataSourceAmbiguousSignonResolution"/>
- <xs:attributeGroup ref="relmd:cmDataSourceMissingSignonResolution"/>
- </xs:complexType>
- </xs:element>
- <!---->
- <xs:attributeGroup name="cmDataSourceAmbiguousConnectionResolution">
- <xs:attribute name="dataSourceConnectionName" type="xs:string" use="optional">
- <xs:annotation>
- <xs:documentation>Required if the dataSource object contains multiple dataSourceConnection objects (that are "executable" by the current user), </xs:documentation>
- </xs:annotation>
- </xs:attribute>
- </xs:attributeGroup>
- <xs:attributeGroup name="cmDataSourceAmbiguousSignonResolution">
- <xs:attribute name="dataSourceSignonName" type="xs:string" use="optional">
- <xs:annotation>
- <xs:documentation>the name of a dataSourceSignon object contained within the data source connection. Required if the dataSourceConnection object contains multiple dataSourceSignon objects (that are "executable" by the current user) </xs:documentation>
- </xs:annotation>
- </xs:attribute>
- </xs:attributeGroup>
- <xs:attributeGroup name="cmDataSourceMissingSignonResolution">
- <xs:attribute name="encryptedCredentialsXml" type="xs:string" use="optional">
- <xs:annotation>
- <xs:documentation>the database autherntication credentials, required if the dataSourceConnection object contains no dataSourceSignon objects (that are "executable" by the current user)</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- </xs:attributeGroup>
- <!---->
- <xs:group name="cmDataSourceConnectionFaults">
- <xs:choice>
- <xs:element name="cmDataSourceAmbiguousConnectionFault">
- <xs:complexType>
- <xs:group ref="relmd:cmDataSourceAmbiguousObjectsList"/>
- <xs:attributeGroup ref="relmd:cmDataSource"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="cmDataSourceAmbiguousSignonFault">
- <xs:complexType>
- <xs:group ref="relmd:cmDataSourceAmbiguousObjectsList"/>
- <xs:attributeGroup ref="relmd:cmDataSourceConnection"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="cmDataSourceMissingSignonFault">
- <xs:complexType>
- <xs:attributeGroup ref="relmd:cmDataSourceConnection"/>
- </xs:complexType>
- </xs:element>
- </xs:choice>
- </xs:group>
- <xs:group name="cmDataSourceAmbiguousObjectsList">
- <xs:sequence>
- <xs:element name="cmDataSourceAmbiguousObject" maxOccurs="unbounded">
- <xs:complexType>
- <xs:attribute name="cmObjectName" use="required"/>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:attributeGroup name="cmDataSourceConnection">
- <xs:attributeGroup ref="relmd:cmDataSource"/>
- <xs:attribute name="dataSourceConnectionName" type="xs:string" use="required"/>
- </xs:attributeGroup>
- </xs:schema>
|