view.xsd 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- edited with XMLSpy v2010 rel. 3 sp1 (x64) (http://www.altova.com) by IBM SWG CANADA (IBM SWG CANADA) -->
  3. <!--
  4. Licensed Materials - Property of IBM
  5. IBM Cognos Products: moser
  6. (C) Copyright IBM Corp. 2015
  7. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
  10. <xsd:include schemaLocation="metadata.xsd"/>
  11. <xsd:complexType name="folderItemType">
  12. <xsd:annotation>
  13. <xsd:documentation>wrapper object to support mixed folders and references in the user defined order.</xsd:documentation>
  14. </xsd:annotation>
  15. <xsd:choice>
  16. <xsd:element name="folder" type="folderType" minOccurs="0"/>
  17. <xsd:element name="ref" type="xsd:string" minOccurs="0">
  18. <xsd:annotation>
  19. <xsd:documentation>can be query subject, calculation or filter.</xsd:documentation>
  20. </xsd:annotation>
  21. </xsd:element>
  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="focus">
  34. <xsd:annotation>
  35. <xsd:documentation>Intent Service focus view.
  36. significant and influential are two part format reference list.
  37. </xsd:documentation>
  38. </xsd:annotation>
  39. <xsd:sequence>
  40. <xsd:element name="intent" type="xsd:string"/>
  41. <xsd:element name="significant" type="xsd:string" minOccurs="1" maxOccurs="unbounded"/>
  42. <xsd:element name="influential" type="xsd:string" minOccurs="1" maxOccurs="unbounded"/>
  43. </xsd:sequence>
  44. </xsd:complexType>
  45. </xsd:schema>