12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: rsvp
- (C) Copyright IBM Corp. 2014
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <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">
- <xs:element name="configuration">
- <xs:annotation>
- <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>
- </xs:annotation>
- <xs:complexType>
- <xs:all>
- <xs:element name="rsvpExtensionLibraries">
- <xs:annotation>
- <xs:documentation>Specify the name of the extension library. Its path (relative to the configuration file) should be part of its name.</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence maxOccurs="unbounded">
- <xs:element name="rsvpExtensionLibrary">
- <xs:complexType>
- <xs:attribute name="name32"/>
- <xs:attribute name="name64"/>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:complexType>
- </xs:element>
- </xs:schema>
|