12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- edited with XMLSpy v2010 rel. 3 sp1 (x64) (http://www.altova.com) by IBM SWG CANADA (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: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 or filter.</xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </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="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" minOccurs="1" maxOccurs="unbounded"/>
- <xsd:element name="influential" type="xsd:string" minOccurs="1" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:complexType>
-
- </xsd:schema>
|