view.xsd 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: moser
  5. (C) Copyright IBM Corp. 2015, 2019
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" version="7.4">
  9. <xsd:include schemaLocation="metadata.xsd"/>
  10. <xsd:complexType name="folderItemType">
  11. <xsd:annotation>
  12. <xsd:documentation>wrapper object to support mixed folders and references in the user defined order.</xsd:documentation>
  13. </xsd:annotation>
  14. <xsd:choice>
  15. <xsd:element name="folder" type="folderType" minOccurs="0"/>
  16. <xsd:element name="ref" type="xsd:string" minOccurs="0">
  17. <xsd:annotation>
  18. <xsd:documentation>can be:
  19. query subject
  20. calculation
  21. filter
  22. parameterSet
  23. prompt</xsd:documentation>
  24. </xsd:annotation>
  25. </xsd:element>
  26. <xsd:element name="defLink" type="defLinkType" minOccurs="0"/>
  27. </xsd:choice>
  28. </xsd:complexType>
  29. <xsd:complexType name="folderType">
  30. <xsd:complexContent>
  31. <xsd:extension base="objectType">
  32. <xsd:sequence>
  33. <xsd:element name="folderItem" type="folderItemType" minOccurs="0" maxOccurs="unbounded"/>
  34. </xsd:sequence>
  35. </xsd:extension>
  36. </xsd:complexContent>
  37. </xsd:complexType>
  38. <xsd:complexType name="defLinkType">
  39. <xsd:complexContent>
  40. <xsd:extension base="objectType">
  41. <xsd:sequence>
  42. <xsd:element name="ref" type="xsd:string"/>
  43. </xsd:sequence>
  44. </xsd:extension>
  45. </xsd:complexContent>
  46. </xsd:complexType>
  47. <xsd:complexType name="focus">
  48. <xsd:annotation>
  49. <xsd:documentation>Intent Service focus view.
  50. significant and influential are two part format reference list.
  51. </xsd:documentation>
  52. </xsd:annotation>
  53. <xsd:sequence>
  54. <xsd:element name="intent" type="xsd:string"/>
  55. <xsd:element name="significant" type="xsd:string" maxOccurs="unbounded"/>
  56. <xsd:element name="influential" type="xsd:string" maxOccurs="unbounded"/>
  57. </xsd:sequence>
  58. </xsd:complexType>
  59. </xsd:schema>