1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: ps
- (C) Copyright IBM Corp. 2005, 2011
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <!--
- Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- -->
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
- <xs:import namespace="http://www.w3.org/XML/1998/namespace"/>
- <xs:complexType name="toolType" mixed="true">
- <xs:choice minOccurs="0" maxOccurs="unbounded">
- <xs:element name="heading" minOccurs="0" maxOccurs="unbounded">
- <xs:complexType mixed="true">
- <xs:sequence>
- <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute ref="xml:lang"/>
- </xs:complexType>
- </xs:element>
- <xs:element name="body" minOccurs="0" maxOccurs="unbounded">
- <xs:complexType mixed="true">
- <xs:sequence>
- <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- <xs:attribute ref="xml:lang"/>
- </xs:complexType>
- </xs:element>
- </xs:choice>
- <xs:attribute name="type" use="required">
- <xs:simpleType>
- <xs:restriction base="xs:string">
- <xs:enumeration value="cognos"/>
- <xs:enumeration value="custom"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
- <xs:attribute name="name" type="xs:string" use="required"/>
- <xs:attribute name="show" type="xs:string" use="optional"/>
- <xs:attribute name="pageID" type="xs:string" use="optional"/>
- <xs:attribute name="group" type="xs:string" use="optional"/>
- </xs:complexType>
- <xs:element name="welcome">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="tool" type="toolType" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|