1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: moser
- (C) Copyright IBM Corp. 2015, 2019
- 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" version="7.4">
- <xsd:include schemaLocation="metadata.xsd"/>
- <xsd:complexType name="folderItemType">
- <xsd:annotation>
- <xsd:documentation>wrapper object to support mixed folders and references in the user defined order.</xsd:documentation>
- </xsd:annotation>
- <xsd:choice>
- <xsd:element name="folder" type="folderType" minOccurs="0"/>
- <xsd:element name="ref" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>can be:
- query subject
- calculation
- filter
- parameterSet
- prompt</xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="defLink" type="defLinkType" minOccurs="0"/>
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="folderType">
- <xsd:complexContent>
- <xsd:extension base="objectType">
- <xsd:sequence>
- <xsd:element name="folderItem" type="folderItemType" minOccurs="0" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:extension>
- </xsd:complexContent>
- </xsd:complexType>
- <xsd:complexType name="defLinkType">
- <xsd:complexContent>
- <xsd:extension base="objectType">
- <xsd:sequence>
- <xsd:element name="ref" type="xsd:string"/>
- </xsd:sequence>
- </xsd:extension>
- </xsd:complexContent>
- </xsd:complexType>
- <xsd:complexType name="focus">
- <xsd:annotation>
- <xsd:documentation>Intent Service focus view.
- significant and influential are two part format reference list.
- </xsd:documentation>
- </xsd:annotation>
- <xsd:sequence>
- <xsd:element name="intent" type="xsd:string"/>
- <xsd:element name="significant" type="xsd:string" maxOccurs="unbounded"/>
- <xsd:element name="influential" type="xsd:string" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:schema>
|