<xsd:element name="CourtType" minOccurs="0">
<xsd:annotation>
<xsd:documentation>Jurisdiction of court to be searched. i.e. Felony, Misdemeanor, Both.</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="type">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="felony" />
<xsd:enumeration value="misdemeanor" />
<xsd:enumeration value="felonyMisdemeanor" />
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
|