FileList.xsd 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. BI and PM: QECL
  5. (C) Copyright IBM Corp. 2005, 2009
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
  9. <xs:element name="filelist">
  10. <xs:annotation>
  11. <xs:documentation>Defines the files that should be scrutinized for function definitions. There are two types of files, the one contains the function definitions in a hierarchical structure, the other has the language sensitive information in the Cognos Message file format.</xs:documentation>
  12. </xs:annotation>
  13. <xs:complexType>
  14. <xs:sequence>
  15. <xs:element name="definition" type="name" minOccurs="0" maxOccurs="unbounded">
  16. <xs:annotation>
  17. <xs:documentation>Defines the XML files that contain function definitions in a hierarchical structure.</xs:documentation>
  18. </xs:annotation>
  19. </xs:element>
  20. <xs:element name="description" minOccurs="0" maxOccurs="unbounded">
  21. <xs:annotation>
  22. <xs:documentation>Defines the XML files that contain locale-specific documentation (name, tip, syntax) for function definitions.</xs:documentation>
  23. </xs:annotation>
  24. <xs:complexType>
  25. <xs:sequence>
  26. <xs:element name="language" type="xs:language">
  27. <xs:annotation>
  28. <xs:documentation>Identifies language of the documentation.</xs:documentation>
  29. </xs:annotation>
  30. </xs:element>
  31. <xs:element name="file" type="name" maxOccurs="unbounded">
  32. <xs:annotation>
  33. <xs:documentation>Defines the XML files that contain documentation strings for given language.</xs:documentation>
  34. </xs:annotation>
  35. </xs:element>
  36. </xs:sequence>
  37. </xs:complexType>
  38. </xs:element>
  39. </xs:sequence>
  40. </xs:complexType>
  41. </xs:element>
  42. <!-- ============================================================================================== -->
  43. <xs:complexType name="name" mixed="true">
  44. <xs:annotation>
  45. <xs:documentation>A name. Context depends upon whee this type is used.</xs:documentation>
  46. </xs:annotation>
  47. <xs:simpleContent>
  48. <xs:extension base="xs:string"/>
  49. </xs:simpleContent>
  50. </xs:complexType>
  51. </xs:schema>