RsvpExtensionSpecification.xsd 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: rsvp
  5. (C) Copyright IBM Corp. 2014
  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="http://developer.cognos.com/schemas/rsvpExtension/1.0/" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://developer.cognos.com/schemas/rsvpExtension/1.0/" elementFormDefault="qualified" attributeFormDefault="unqualified">
  10. <xs:element name="configuration">
  11. <xs:annotation>
  12. <xs:documentation>Specifies a library that extends the Report Server processing of a v5 specification. The library will be dynamically loaded. It will take as input the v5 specification so it can be modified and returned to Report Server for further processing and rendering.</xs:documentation>
  13. </xs:annotation>
  14. <xs:complexType>
  15. <xs:all>
  16. <xs:element name="rsvpExtensionLibraries">
  17. <xs:annotation>
  18. <xs:documentation>Specify the name of the extension library. Its path (relative to the configuration file) should be part of its name.</xs:documentation>
  19. </xs:annotation>
  20. <xs:complexType>
  21. <xs:sequence maxOccurs="unbounded">
  22. <xs:element name="rsvpExtensionLibrary">
  23. <xs:complexType>
  24. <xs:attribute name="name32"/>
  25. <xs:attribute name="name64"/>
  26. </xs:complexType>
  27. </xs:element>
  28. </xs:sequence>
  29. </xs:complexType>
  30. </xs:element>
  31. </xs:all>
  32. </xs:complexType>
  33. </xs:element>
  34. </xs:schema>