123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?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:element name="moserInfo">
- <xsd:annotation>
- <xsd:documentation>A generic container for a Titan modeling service object's metadata info</xsd:documentation>
- </xsd:annotation>
- <xsd:complexType>
- <xsd:sequence>
- <!-- Required elements - PLEASE PRESERVE -->
- <xsd:element name="href" type="xsd:string" minOccurs="1">
- <xsd:annotation>
- <xsd:documentation>
- The href to an object, path to access this object
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="id" type="xsd:string" minOccurs="1">
- <xsd:annotation>
- <xsd:documentation>
- !!! Deprecated - Use ids !!! The id of an object, to uniquely identify this object
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="ids" type="xsd:string" minOccurs="1" maxOccurs="unbounded">
- <xsd:annotation>
- <xsd:documentation>
- The ids of objects, to uniquely identify objects created
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="state" type="State" minOccurs="1">
- <xsd:annotation>
- <xsd:documentation>
- The state of an object, to identify it's current state
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <!-- Optional elements -->
- <xsd:element name="label" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>
- Optional, the pretty label for an object to be used by the UI to display to user.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="lastModified" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>
- Optional, the last modification time of an object to know if this object has changed.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="model" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>
- Optional, the string to use as modelPath in a query against this module.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="type" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>
- Optional, Either module or lightweightOLAP.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="startTime" type="xsd:string" minOccurs="0"/>
- <xsd:element name="endTime" type="xsd:string" minOccurs="0"/>
- <xsd:element name="lastPublished" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>
- Optional, Time indicating when a package was last published.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="lastAnalysisCollection" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>
- Optional, Time indicating when smarts analysis was last performed.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="lastOverrideUpdate" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>
- Optional, Time indicating when smarts data was manually edited.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- <xsd:element name="loadOptions" type="xsd:string" minOccurs="0">
- <xsd:annotation>
- <xsd:documentation>
- Optional, The load options that were specified for metadata import or smarts analysis.
- </xsd:documentation>
- </xsd:annotation>
- </xsd:element>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
- <xsd:simpleType name="StateType">
- <xsd:restriction base="xsd:string">
- <xsd:enumeration value="NOTLOADED"/>
- <xsd:enumeration value="PENDING"/>
- <xsd:enumeration value="LOADING"/>
- <xsd:enumeration value="LOADED"/>
- <xsd:enumeration value="ERROR"/>
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:simpleType name="ActionType">
- <xsd:restriction base="xsd:string">
- <xsd:enumeration value="load"/>
- <xsd:enumeration value="cancel"/>
- <xsd:enumeration value="refresh"/>
- <xsd:enumeration value="clear"/>
- </xsd:restriction>
- </xsd:simpleType>
- <xsd:complexType name="State">
- <xsd:sequence>
- <xsd:element name="type" type="StateType" minOccurs="1"/>
- <xsd:element name="actions" type="ActionType" minOccurs="1" maxOccurs="unbounded"/>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:schema>
|