7.1 Common configInfo parameter structure

The conversion applications in Section 7 expect an XML string that follows this XML schema:

 <xs:schema
     elementFormDefault="unqualified"
     xmlns:xs="http://www.w3.org/2001/XMLSchema"
 > 
   <xs:element name="RcaTransformation">
     <xs:complexType>
       <xs:sequence>
         <xs:element name="ConverterSettings">
           <xs:complexType>
             <xs:sequence minOccurs="0" maxOccurs="unbounded">
               <xs:any />
             </xs:sequence>
             <xs:attribute name="SourceDocLibUrl" type="xs:string" use="required" />
             <xs:attribute name="AllocationLimitHint" type="xs:positiveInteger" use="optional" />
           </xs:complexType>
         </xs:element>
         <xs:any />
       </xs:sequence>
     </xs:complexType>
   </xs:element>
 </xs:schema>