<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2022 (x64) (http://www.altova.com) by IGAE (Intervención Gral de la Administración del Estado (IGAE)) -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.oficinavirtual.pap.hacienda.gob.es/ficherosxsd/ESADI_Tipos.xsd" targetNamespace="http://www.oficinavirtual.pap.hacienda.gob.es/ficherosxsd/ESADI_Tipos.xsd" elementFormDefault="qualified">
	<!-- TIPOS ALFANUMÉRICOS -->
	<xs:simpleType name="alfanumerico6Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Alfanumérico de 6 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="6"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="alfanumerico10Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Alfanumérico de 10 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="10"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="alfanumerico20Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Alfanumérico de 20 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="20"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="alfanumerico50Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Alfanumérico de 50 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="50"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="alfanumerico100Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Alfanumérico de 100 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="100"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="alfanumerico255Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Alfanumérico de 255 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="255"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="alfanumerico1000Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Alfanumérico de 1000 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="1000"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:complexType name="listaTextosType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Lista de textos libres: Orden (opcional), Texto libre</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="orden" type="ordenElementoType" minOccurs="0" maxOccurs="1"/>
			<xs:element name="texto" type="alfanumerico255Type" minOccurs="1" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<!-- TIPOS NUMERICO -->
	<xs:simpleType name="numerico6Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Número de 6 dígitos </xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:decimal">
			<xs:totalDigits value="6"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="numerico10Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Número de 10 dígitos </xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:decimal">
			<xs:totalDigits value="10"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="decimal4y5Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Numérico de tamaño 9 con 4 enteros 5 decimales y punto decimal</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:decimal">
			<xs:pattern value="\d{1,4}.\d{1,5}"/>
		</xs:restriction>
	</xs:simpleType>
	<!-- TIPOS CARGO -->
	<xs:simpleType name="codigoCargoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Código del cargo administrativo. Alfanumérico de 50 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="50"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="descripcionCargoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Descripción del cargo administrativo. Alfanumérico de 255 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="255"/>
		</xs:restriction>
	</xs:simpleType>
	<!-- TIPOS CONTABLES -->
	<xs:complexType name="aplicacionPresupuestariaType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Aplicación presupuestaria: Orden, Ejercicio, Órgánica, Programa, Económica, Descripción (opcional), Importe, Importe en divisa  (opcional), Importe en moneda local (opcional)</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="orden" type="ordenElementoType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="ejercicio" type="ejercicioType"/>
			<xs:element name="organica" type="organicaType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="programa" type="programaType"/>
			<xs:element name="economica" type="economicaType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="descripcion" type="alfanumerico100Type" minOccurs="0" maxOccurs="1"/>
			<xs:element name="importe" type="ImporteType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="importeDivisa" type="ImporteType" minOccurs="0" maxOccurs="1"/>
			<xs:element name="importeLocal" type="ImporteType" minOccurs="0" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<xs:simpleType name="economicaType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Económica presupuestaria. Alfanumérico de 7 dígitos </xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="7"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="organicaType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Orgánica presupuestaria. Alfanumérico de 4 dígitos </xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="4"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="programaType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Programa presupuestario. Alfanumérico de 7 dígitos </xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="7"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="numeroOperacionType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Número de operación. Alfanumérico de 17 </xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="17"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:complexType name="descuentoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Aplicación descuento: Orden, Número de aplicación descuento, Descripción (opcional), Importe, Importe en divisa (opcional), Importe en moneda local (opcional)</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="orden" type="ordenElementoType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="aplicacionDescuento" type="aplicacion15OrganicaConceptoType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="descripcion" type="alfanumerico100Type" minOccurs="0" maxOccurs="1"/>
			<xs:element name="importe" type="ImporteType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="importeDivisa" type="ImporteType" minOccurs="0" maxOccurs="1"/>
			<xs:element name="importeLocal" type="ImporteType" minOccurs="0" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<xs:simpleType name="aplicacion15OrganicaConceptoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Código descuento. 15 caracteres que corresponden a: Orgánica (Sección (2) Orgánica libre uno (2) Orgánica libre dos (2)) y Concepto (6). Se incluirá un espacio en blanco entre los dos dígitos de la sección y la orgánica libre uno, otro espacio en blanco entre la orgánica libre uno y la orgánica libre dos y otro espacio en blanco entre la orgánica libre dos y el concepto. Si no existiese alguno de los datos se enviaran tantos espacios en blanco o ceros como tamaño tenga el dato que falta, es decir, en total se grabará una cadena de 15 caracteres. </xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:length value="15"/>
		</xs:restriction>
	</xs:simpleType>
	<!-- TIPOS DIR3 -->
	<xs:simpleType name="codigoDIR3Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Código DIR3. Alfanumérico de 9 caracteres.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="9"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="descripcionDIR3Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Descripción DIR3. Alfanumérico de 100 caracteres.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="100"/>
		</xs:restriction>
	</xs:simpleType>
	<!--DOCUMENTOS -->
	<xs:complexType name="documentoAdjuntoReferenciadoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Documento adjunto: Orden, Nombre Documento, Referencia CVS del documento</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="orden" type="ordenElementoType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="nombreDoc" type="alfanumerico100Type" minOccurs="1" maxOccurs="1"/>
			<xs:element name="referenciaDoc" type="alfanumerico100Type" minOccurs="0" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<!-- TIPOS GENERALES -->
	<xs:simpleType name="agrupacionType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Agrupación. Lista: Corriente, Posteriores, Tramitación anticipada</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:enumeration value="Corriente"/>
			<xs:enumeration value="Posteriores"/>
			<xs:enumeration value="Tramitación anticipada"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="codigoBDNSType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Código BDNS de subvenciones</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:decimal">
			<xs:totalDigits value="18"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="ejercicioType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Año/Ejercicio</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:gYear"/>
	</xs:simpleType>
	<xs:simpleType name="fechaType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Fecha. Alfanumérico de 10 caracteres. Patrón DD/MM/AAAA</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:length value="10"/>
			<xs:pattern value="\d{2}[/]\d{2}[/]\d{4}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:complexType name="firmanteType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Firmante: Rol, Cargo, Código del cargo (opcional), Nombre del Firmante (opcional), DIR3 del firmante (opcional), Descripción del DIR3 del firmante (opcional), Delegación (opcional)</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="rolFirmante" type="alfanumerico100Type" minOccurs="1" maxOccurs="1"/>
			<xs:element name="cargoFirmante" type="descripcionCargoType" minOccurs="1" maxOccurs="1"/>
			<xs:element name="codCargoFirmante" type="codigoCargoType" minOccurs="0" maxOccurs="1"/>
			<xs:element name="nombreFirmante" type="alfanumerico100Type" minOccurs="0" maxOccurs="1"/>
			<xs:element name="codDir3Firmante" type="codigoDIR3Type" minOccurs="0" maxOccurs="1"/>
			<xs:element name="descDir3Firmante" type="descripcionDIR3Type" minOccurs="0" maxOccurs="1"/>
			<xs:element name="delegacionFirmante" type="alfanumerico255Type" minOccurs="0" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<xs:simpleType name="IDDocumentoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Identificador del documento. Número de 7 dígitos</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="7"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="NEIType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Número de Expediente de la Intervención. Sistema IRIS. Alfanumérico de 11 caracteres. Sin espacios. Patrón YYYY/NNNNNN</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:whiteSpace value="collapse"/>
			<xs:pattern value="\d{4}/\d{6}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="NIFType">
		<xs:annotation>
			<xs:documentation xml:lang="es">NIF o Código de identificación. Alfanumérico de entre 9 y 14 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:minLength value="9"/>
			<xs:maxLength value="14"/>
			<xs:whiteSpace value="collapse"/>
			<xs:pattern value="\S(.*\S)?"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="numExpteGestorType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Número de Expediente Gestor. Alfanumérico de 50 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="50"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="ordenElementoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Campo orden en los campos múltiples. Numérico de 2 digitos</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:integer">
			<xs:totalDigits value="2"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="RCFType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Número de RCF. Numérico de 18 digitos, sin espacio.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:decimal">
			<xs:totalDigits value="18"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="refCOREnetType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Referencia COREnet. Numérico de 9 digitos. Los 4 primeros dígitos corresponden al año</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:decimal">
			<xs:totalDigits value="9"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="siNoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Tipo agrupación. Lista: Si, No.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:enumeration value="Si"/>
			<xs:enumeration value="No"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="tipoActaRecepcionType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Tipo de acta de la recepcion: Parcial, Final</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:enumeration value="Parcial"/>
			<xs:enumeration value="Final"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="resultadoRecepcionType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Resultado de la recepcion: F (favorable), FO (favorable con observaciones), D (desfavorable)</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:enumeration value="F"/>
			<xs:enumeration value="FO"/>
			<xs:enumeration value="D"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="tipoDocumentoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Tipo de documento estructurado. Alfanumérico de 10 caracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="10"/>
		</xs:restriction>
	</xs:simpleType>
	<!-- TIPOS IMPORTES -->
	<xs:simpleType name="ImporteType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Importe. Numérico de tamaño 19 con 2 decimales y punto decimal</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:decimal">
			<xs:pattern value="\d{1,17}.\d{2}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="impuestoIndirectoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Impuesto Indirecto. Número de 2 dígitos</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:integer">
			<xs:totalDigits value="2"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="IVAType">
		<xs:annotation>
			<xs:documentation xml:lang="es">IVA. Número de 2 dígitos</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:integer">
			<xs:totalDigits value="2"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="monedaType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Códigos de moneda. Alfanumérico de 3 cracteres</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:length value="3"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="tipoCambioType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Tipo de cambio. Numérico de tamaño 9 con 5 decimales y punto decimal</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:decimal">
			<xs:pattern value="\d{1,4}.\d{1,5}"/>
		</xs:restriction>
	</xs:simpleType>
	<!-- FISCALIZACION -->
	<xs:complexType name="observacionType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Observación: Código de la observación (opcional), Descripción de la observación</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="codigoObservacion" type="alfanumerico6Type" minOccurs="0" maxOccurs="1"/>
			<xs:element name="descripcionObservacion" type="alfanumerico1000Type" minOccurs="1" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<xs:simpleType name="regimenFiscalizacionType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Régimen de fiscalización e intervención previa. Lista: General, Requisitos básicos</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:enumeration value="General"/>
			<xs:enumeration value="Requisitos básicos"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="resultadoInformeType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Resultado del informe. Lista: Favorable, Reparo, Favorable condicionada</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:enumeration value="Favorable"/>
			<xs:enumeration value="Reparo"/>
			<xs:enumeration value="Favorable condicionada"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:complexType name="reparoType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Reparos: Código del reparo (opcional), Descripción del reparo</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="codigoReparo" type="alfanumerico6Type" minOccurs="0" maxOccurs="1"/>
			<xs:element name="descripcionReparo" type="alfanumerico1000Type" minOccurs="1" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<!-- Usado en ESADI_IV_FE_Cert_ESP_NoFinanciacion_v1.0.xsd-->
	<xs:complexType name="DIR3NIFType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Tipo DIR3: Código DIR3, Descripción DIR3, NIF</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="codigoDIR3" type="codigoDIR3Type" minOccurs="1" maxOccurs="1"/>
			<xs:element name="descripcionDIR3" minOccurs="1" maxOccurs="1">
				<xs:simpleType>
					<xs:restriction base="xs:string">
						<xs:maxLength value="100"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:element>
			<xs:element name="NIF" type="NIFType" minOccurs="1" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="DIR3Type">
		<xs:annotation>
			<xs:documentation xml:lang="es">Tipo DIR3: Código y Descripción</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="codigoDIR3" type="codigoDIR3Type" minOccurs="1" maxOccurs="1"/>
			<xs:element name="descripcionDIR3" minOccurs="1" maxOccurs="1">
				<xs:simpleType>
					<xs:restriction base="xs:string">
						<xs:maxLength value="100"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="firmanteNombreType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Tipo  Firmante: Nombre, Cargo, DIR3 al que pertenece el cargo</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="nombre" minOccurs="1" maxOccurs="1">
				<xs:simpleType>
					<xs:restriction base="xs:string">
						<xs:maxLength value="50"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:element>
			<xs:element name="cargo" minOccurs="1" maxOccurs="1">
				<xs:simpleType>
					<xs:restriction base="xs:string">
						<xs:maxLength value="255"/>
					</xs:restriction>
				</xs:simpleType>
			</xs:element>
			<xs:element name="DIR3cargo" type="DIR3Type" minOccurs="1" maxOccurs="1"/>
		</xs:sequence>
	</xs:complexType>
	<xs:simpleType name="operacionEnlaceType">
		<xs:annotation>
			<xs:documentation xml:lang="es">Número de operación. Alfanumérico de 17 </xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:string">
			<xs:maxLength value="17"/>
		</xs:restriction>
	</xs:simpleType>
</xs:schema>
