<request>
<header>
...
</header>
<search start="0" limit="2" count="true" xmlns:dwc="http://tdwg.org/dwc/1.0">
<filter>
<like concept="dwc:ScientificName">Rubus*</like>
</filter>
<structure xmlns:myns="http://example.net/mysn/1.0">
<xsd:element name="myns:DataSet">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="myns:Specimen" maxOccurs="unbounded" record="dwc:record">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="myns:CatalogNum" type="xsd:string" concept="dwc:CatalogNumber" CustomSearchProposalTwo>
<xsd:element name="myns:Identification" maxOccurs="unbounded" >
<xsd:complexType>
<xsd:sequence>
<xsd:element name="myns:FullName" type="xsd:string" concept="dwc:ScientificName" CustomSearchProposalTwo>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</structure>
</search>
</request>
<response>
<header>
...
</header>
<content xmlns:myns="http://example.net/mysn/1.0">
<myns:DataSet>
<myns:Specimen>
<myns:CatalogNum>234</myns:CatalogNum>
<myns:Identification>
<myns:FullName>Rubus rosaefolius</myns:FullName>
</myns:Identification>
</myns:Specimen>
<myns:Specimen>
<myns:CatalogNum>239</myns:CatalogNum>
<myns:Identification>
<myns:FullName>Rubus brasiliensis</myns:FullName>
</myns:Identification>
</myns:Specimen>
</myns:DataSet>
</content>
</response>