externalizeReport.xsd 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <!--
  10. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  11. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  12. -->
  13. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
  14. <xs:element name="externalizeReport">
  15. <xs:annotation>
  16. <xs:documentation>Comment describing your root element</xs:documentation>
  17. </xs:annotation>
  18. <xs:complexType>
  19. <xs:sequence minOccurs="0" maxOccurs="unbounded">
  20. <xs:element name="entry">
  21. <xs:complexType>
  22. <xs:sequence minOccurs="0">
  23. <xs:element name="file">
  24. <xs:complexType>
  25. <xs:attribute name="path" type="xs:string" use="required"/>
  26. </xs:complexType>
  27. </xs:element>
  28. </xs:sequence>
  29. <xs:attribute name="method" type="xs:string" use="required">
  30. <xs:annotation>
  31. <xs:documentation>The range of possible values are the same as those specified for externalizeMethod element in iBMTModelSpecification.xsd</xs:documentation>
  32. </xs:annotation>
  33. </xs:attribute>
  34. <xs:attribute name="objectID" type="xs:string" use="required"/>
  35. </xs:complexType>
  36. </xs:element>
  37. </xs:sequence>
  38. </xs:complexType>
  39. </xs:element>
  40. </xs:schema>