2.2.4.1 ArrayOfXmlNode Complex Type

The ArrayOfXmlNode complex type contains an array of XML elements. It is used exclusively for exchanging XrML certificates, each of which MUST be represented as an XML fragment. Each XML fragment is enclosed in the Certificate element. For more information on XrML, see [XRML].

 <xs:complexType name="ArrayOfXmlNode">
   <xs:sequence>
     <xs:element name="Certificate"
       minOccurs="0"
       maxOccurs="unbounded"
     >
       <xs:complexType
         mixed="true"
       >
         <xs:sequence>
           <xs:any
             namespace=""
            />
         </xs:sequence>
       </xs:complexType>
     </xs:element>
   </xs:sequence>
 </xs:complexType>