view.xsd 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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.0">
  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 query subject, calculation or filter.</xsd:documentation>
  19. </xsd:annotation>
  20. </xsd:element>
  21. <xsd:element name="defLink" type="defLinkType" minOccurs="0"/>
  22. </xsd:choice>
  23. </xsd:complexType>
  24. <xsd:complexType name="folderType">
  25. <xsd:complexContent>
  26. <xsd:extension base="objectType">
  27. <xsd:sequence>
  28. <xsd:element name="folderItem" type="folderItemType" minOccurs="0" maxOccurs="unbounded"/>
  29. </xsd:sequence>
  30. </xsd:extension>
  31. </xsd:complexContent>
  32. </xsd:complexType>
  33. <xsd:complexType name="defLinkType">
  34. <xsd:complexContent>
  35. <xsd:extension base="objectType">
  36. <xsd:sequence>
  37. <xsd:element name="ref" type="xsd:string"/>
  38. </xsd:sequence>
  39. </xsd:extension>
  40. </xsd:complexContent>
  41. </xsd:complexType>
  42. <xsd:complexType name="focus">
  43. <xsd:annotation>
  44. <xsd:documentation>Intent Service focus view.
  45. significant and influential are two part format reference list.
  46. </xsd:documentation>
  47. </xsd:annotation>
  48. <xsd:sequence>
  49. <xsd:element name="intent" type="xsd:string"/>
  50. <xsd:element name="significant" type="xsd:string" maxOccurs="unbounded"/>
  51. <xsd:element name="influential" type="xsd:string" maxOccurs="unbounded"/>
  52. </xsd:sequence>
  53. </xsd:complexType>
  54. </xsd:schema>