6.34 Search Request Schema
This section contains the contents of the SearchRequest.xsd file. The additional file that this schema file requires to operate correctly is listed in the following table.
File name |
Defining section |
---|---|
Search.xsd |
-
<?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="Search" targetNamespace="Search" elementFormDefault="qualified" attributeFormDefault="unqualified"> <xs:include schemaLocation="Search.xsd"/> <xs:element name="Search"> <xs:complexType> <xs:choice maxOccurs="unbounded"> <xs:element name="Store"> <xs:complexType> <xs:all> <xs:element ref="Name"/> <xs:element name="Query" type="queryType"/> <xs:element ref="Options" minOccurs="0"/> </xs:all> </xs:complexType> </xs:element> </xs:choice> </xs:complexType> </xs:element> </xs:schema>