<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:regRic="http://insiel.it/protocollo/schemixsd/getRegistriRicerca" 
xmlns:xs="http://www.w3.org/2001/XMLSchema" 
xmlns:tgen="http://insiel.it/protocollo/schemixsd/tipiGenerali" 
targetNamespace="http://insiel.it/protocollo/schemixsd/getRegistriRicerca"
elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:import namespace="http://insiel.it/protocollo/schemixsd/tipiGenerali" schemaLocation="tipiGenerali.xsd"/>
	<xs:element name="RegistriRicercaRequest">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="utente" type="tgen:Utente"/>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
	<xs:element name="RegistriRicercaResponse">
		<xs:complexType>
			<xs:choice>
				<xs:element name="registri" type="regRic:Registro" minOccurs="0" maxOccurs="unbounded"/>
				<xs:element name="errore" type="tgen:Errore"/>
			</xs:choice>
			<xs:attribute name="esito" type="xs:boolean" use="required"/>
		</xs:complexType>
	</xs:element>
	<xs:complexType name="Registro">
		<xs:sequence>
			<xs:element name="codiceUfficio" type="xs:string"/>
			<xs:element name="descrizioneUfficio" type="xs:string"/>
			<xs:element name="codiceRegistro" type="xs:string"/>
			<xs:element name="descrizioneRegistro" type="xs:string"/>
		</xs:sequence>
	</xs:complexType>	
</xs:schema>