iqdFileSpec.xsd 961 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: fmmd
  5. (C) Copyright IBM Corp. 2003, 2010
  6. US Government Users Restricted Rights - Use, duplication or disclosure
  7. restricted by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
  10. <xs:element name="file">
  11. <xs:complexType>
  12. <xs:sequence>
  13. <xs:element name="filePath" type="xs:string"/>
  14. <xs:element name="contents" minOccurs="0">
  15. <xs:complexType>
  16. <xs:sequence>
  17. <xs:element name="line" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
  18. </xs:sequence>
  19. </xs:complexType>
  20. </xs:element>
  21. <xs:element name="dbConnectionName" type="xs:string" minOccurs="0"/>
  22. <xs:element name="cmDataSource" type="xs:string" minOccurs="0"/>
  23. </xs:sequence>
  24. </xs:complexType>
  25. </xs:element>
  26. </xs:schema>