12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- edited with XMLSpy v2015 rel. 4 (http://www.altova.com) by Donna Hennigar (IBM SWG Canada) -->
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: moser
- (C) Copyright IBM Corp. 2015
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
- <xsd:include schemaLocation="metadata.xsd"/>
- <xsd:element name="module">
- <xsd:annotation>
- <xsd:documentation>The Titan module.</xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:complexContent>
- <xsd:extension base="objectType">
- <xsd:sequence>
- <xsd:element name="container" type="xsd:string">
- <xsd:annotation>
- <xsd:documentation>Specifies the location where the module resides.</xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:sequence>
- <xsd:element name="import" type="xsd:string" minOccurs="0" maxOccurs="unbounded">
- <xsd:annotation>
- <xsd:documentation>Specifies the imported module.</xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="tag" type="tagType" minOccurs="0" maxOccurs="unbounded">
- <xsd:annotation>
- <xsd:documentation>The list of tags. Each tag specifies a label tagged to a querySubject, calculation, or filter in the imported module.</xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </xsd:sequence>
- </xsd:sequence>
- </xsd:extension>
- </xsd:complexContent>
- </xsd:complexType>
- </xsd:element>
- <xsd:complexType name="tagType">
- <xsd:sequence>
- <xsd:element name="label" type="xsd:string" minOccurs="0" maxOccurs="1">
- <xsd:annotation>
- <xsd:documentation>The label associated with the object reference.</xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="ref" type="xsd:string" minOccurs="0" maxOccurs="1">
- <xsd:annotation>
- <xsd:documentation>The object reference.</xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:schema>
|