dbConnectionsSpec.xsd 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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="dbConnections">
  11. <xs:complexType>
  12. <xs:sequence>
  13. <xs:element ref="dbConnection" minOccurs="0" maxOccurs="unbounded"/>
  14. </xs:sequence>
  15. </xs:complexType>
  16. </xs:element>
  17. <xs:element name="dbConnection">
  18. <xs:complexType>
  19. <xs:sequence>
  20. <xs:element name="connectionString" type="xs:string"/>
  21. <xs:element name="schema" type="xs:string" minOccurs="0"/>
  22. <xs:element name="catalog" type="xs:string" minOccurs="0"/>
  23. <xs:element name="database" type="xs:string"/>
  24. <xs:element name="userName" type="xs:string" minOccurs="0"/>
  25. <xs:element name="password" type="xs:string" minOccurs="0"/>
  26. </xs:sequence>
  27. </xs:complexType>
  28. </xs:element>
  29. </xs:schema>