welcome.xsd 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: ps
  5. (C) Copyright IBM Corp. 2005, 2011
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <!--
  9. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. -->
  12. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  13. <xs:import namespace="http://www.w3.org/XML/1998/namespace"/>
  14. <xs:complexType name="toolType" mixed="true">
  15. <xs:choice minOccurs="0" maxOccurs="unbounded">
  16. <xs:element name="heading" minOccurs="0" maxOccurs="unbounded">
  17. <xs:complexType mixed="true">
  18. <xs:sequence>
  19. <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
  20. </xs:sequence>
  21. <xs:attribute ref="xml:lang"/>
  22. </xs:complexType>
  23. </xs:element>
  24. <xs:element name="body" minOccurs="0" maxOccurs="unbounded">
  25. <xs:complexType mixed="true">
  26. <xs:sequence>
  27. <xs:any processContents="skip" minOccurs="0" maxOccurs="unbounded"/>
  28. </xs:sequence>
  29. <xs:attribute ref="xml:lang"/>
  30. </xs:complexType>
  31. </xs:element>
  32. </xs:choice>
  33. <xs:attribute name="type" use="required">
  34. <xs:simpleType>
  35. <xs:restriction base="xs:string">
  36. <xs:enumeration value="cognos"/>
  37. <xs:enumeration value="custom"/>
  38. </xs:restriction>
  39. </xs:simpleType>
  40. </xs:attribute>
  41. <xs:attribute name="name" type="xs:string" use="required"/>
  42. <xs:attribute name="show" type="xs:string" use="optional"/>
  43. <xs:attribute name="pageID" type="xs:string" use="optional"/>
  44. <xs:attribute name="group" type="xs:string" use="optional"/>
  45. </xs:complexType>
  46. <xs:element name="welcome">
  47. <xs:complexType>
  48. <xs:sequence>
  49. <xs:element name="tool" type="toolType" minOccurs="0" maxOccurs="unbounded"/>
  50. </xs:sequence>
  51. </xs:complexType>
  52. </xs:element>
  53. </xs:schema>