tag.xsd 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- edited with XMLSpy v2015 rel. 4 (http://www.altova.com) by Donna Hennigar (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:element name="module">
  12. <xsd:annotation>
  13. <xsd:documentation>The Titan module.</xsd:documentation>
  14. </xsd:annotation>
  15. <xsd:complexType>
  16. <xsd:complexContent>
  17. <xsd:extension base="objectType">
  18. <xsd:sequence>
  19. <xsd:element name="container" type="xsd:string">
  20. <xsd:annotation>
  21. <xsd:documentation>Specifies the location where the module resides.</xsd:documentation>
  22. </xsd:annotation>
  23. </xsd:element>
  24. <xsd:sequence>
  25. <xsd:element name="import" type="xsd:string" minOccurs="0" maxOccurs="unbounded">
  26. <xsd:annotation>
  27. <xsd:documentation>Specifies the imported module.</xsd:documentation>
  28. </xsd:annotation>
  29. </xsd:element>
  30. <xsd:element name="tag" type="tagType" minOccurs="0" maxOccurs="unbounded">
  31. <xsd:annotation>
  32. <xsd:documentation>The list of tags. Each tag specifies a label tagged to a querySubject, calculation, or filter in the imported module.</xsd:documentation>
  33. </xsd:annotation>
  34. </xsd:element>
  35. </xsd:sequence>
  36. </xsd:sequence>
  37. </xsd:extension>
  38. </xsd:complexContent>
  39. </xsd:complexType>
  40. </xsd:element>
  41. <xsd:complexType name="tagType">
  42. <xsd:sequence>
  43. <xsd:element name="label" type="xsd:string" minOccurs="0" maxOccurs="1">
  44. <xsd:annotation>
  45. <xsd:documentation>The label associated with the object reference.</xsd:documentation>
  46. </xsd:annotation>
  47. </xsd:element>
  48. <xsd:element name="ref" type="xsd:string" minOccurs="0" maxOccurs="1">
  49. <xsd:annotation>
  50. <xsd:documentation>The object reference.</xsd:documentation>
  51. </xsd:annotation>
  52. </xsd:element>
  53. </xsd:sequence>
  54. </xsd:complexType>
  55. </xsd:schema>