<?xml version="1.0" encoding="ISO-8859-1"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xsd:simpleType name="anioType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el anio correspondiente a la informacion que esta presentando el contribuyente, consta de cuatro digitos: Ej: 2002, 2003, 2004, 2005, etc.</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="2009"/>
			<xsd:maxInclusive value="9999"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoDecType">
		<xsd:annotation>
			<xsd:documentation>Se detalla si el tipo de declaracion es INDIVIDUAL, SOCIEDAD CONYUGAL o SOCIEDAD
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:enumeration value="IND"/>
			<xsd:enumeration value="SOC"/>
			<xsd:enumeration value="SCD"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoIdentType">
		<xsd:annotation>
			<xsd:documentation>Se detalla si el tipo de tipo de identificacion: RUC, CEDULA, PASAPORTE
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:enumeration value="R"/>
			<xsd:enumeration value="C"/>
			<xsd:enumeration value="P"/>
			<xsd:enumeration value="E"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="numIdentType">
		<xsd:annotation>
			<xsd:documentation>Se detalla si numero de identificacion
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="13"/>
			<xsd:minLength value="1"/>
			<xsd:pattern value="[A-Za-z0-9]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="nombreType">
		<xsd:annotation>
			<xsd:documentation>Se detalla los nombres y apellidos completos
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="60"/>
			<xsd:minLength value="1"/>
			<xsd:pattern value="[A-Za-zñÑ\s]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="descripcionActivoType">
		<xsd:annotation>
			<xsd:documentation>Se detalla las descripciones
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="30"/>
			<xsd:minLength value="4"/>
			<xsd:pattern value="[a-zA-ZñÑ0-9\s]*[a-zA-ZñÑ\s]([a-zA-Z0-9]+)*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="valorMayorIgualCeroType">
		<xsd:annotation>
			<xsd:documentation>Valor numerico con decimales, mayor o igual a cero</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:decimal">
			<xsd:totalDigits value="14"/>
			<xsd:fractionDigits value="2"/>
			<xsd:minInclusive value="0"/>
			<xsd:maxInclusive value="999999999999.99"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="valorMayorCeroType">
		<xsd:annotation>
			<xsd:documentation>Valor numerico con decimales, mayor a cero</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:decimal">
			<xsd:totalDigits value="14"/>
			<xsd:fractionDigits value="2"/>
			<xsd:minExclusive value="0"/>
			<xsd:maxInclusive value="999999999999.99"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="valorNegativoType">
		<xsd:annotation>
			<xsd:documentation>Valor numerico que puede ser negativo con decimales</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:decimal">
			<xsd:totalDigits value="14"/>
			<xsd:fractionDigits value="2"/>
			<xsd:minInclusive value="-999999999999.99"/>
			<xsd:maxInclusive value="999999999999.99"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="dineroEnType">
		<xsd:annotation>
			<xsd:documentation>Dinero en el Ecuador o en el Exterior, se detalla si el dinero esta en: EFECTIVO, INSTITUCIONES FINANCIERAS, OTROS DEPOSITARIOS
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:enumeration value="EFE"/>
			<xsd:enumeration value="IFI"/>
			<xsd:enumeration value="OTR"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="ubicacionType">
		<xsd:annotation>
			<xsd:documentation>Se detalla si el dinero esta en: EN EL ECUADOR,EN EL EXTERIOR</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:enumeration value="ECU"/>
			<xsd:enumeration value="EXT"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="paisType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el pais en el que esta el dinero</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[0-9]{2,3}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="ifiEcuadorType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el Nombre de la Institucion Financiera en el Ecuador</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[0-9]{4}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="nombreIfiExteriorType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el Nombre de la Institucion Financiera en el Exterior u Otro Depositario</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[a-zA-ZñÑ0-9\s]*[a-zA-ZñÑ\s]([a-zA-Z0-9]+)*"/>
			<xsd:minLength value="3"/>
			<xsd:maxLength value="60"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoMonedaType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el Tipo de Moneda</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[a-zA-Z\sñÑ]{3,42}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="partesRelacionadasType">
		<xsd:annotation>
			<xsd:documentation>Partes Relacionadas (SI / NO)</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="2"/>
			<xsd:pattern value="[1-2]{1}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoInversionType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el tipo de inversion</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="9"/>
			<xsd:pattern value="[0-9]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="nombreEmpresaAdFondosOtrosType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el nombre de la Empresa / Administradora de Fondos /  Fideicomisos / Otro donde se realiza la inversion</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[a-zA-ZñÑ0-9\s]*[a-zA-ZñÑ\s]([a-zA-Z0-9]+)*"/>
			<xsd:minLength value="3"/>
			<xsd:maxLength value="60"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="porcentajeParticipacionSocDerechosType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el Porcentaje de participacion societaria / derechos representativos de capital</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:decimal">
			<xsd:minExclusive value="0"/>
			<xsd:maxInclusive value="100"/>
			<xsd:fractionDigits value="6"/>
			<xsd:pattern value="\d{1,3}\.\d{6}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="numeroAccionesParticipacionesType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el Numero de acciones / participaciones</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minExclusive value="0"/>
			<xsd:pattern value="\d{1,12}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoInversionDineroType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el tipo de inversion de dinero</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="5"/>
			<xsd:pattern value="[0-5]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoInmuebleType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el tipo de inmueble</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="20"/>
			<xsd:pattern value="[0-9]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="provinciaType">
		<xsd:annotation>
			<xsd:documentation>Se detalla la provincia
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[0-9]{3}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="cantonType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el canton
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[0-9]{5}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="fechaType">
		<xsd:annotation>
			<xsd:documentation>Se detalla una fecha
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="(0[1-9]|[12][0-9]|3[01])[/](0[1-9]|1[012])[/](19|20)\d\d"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="claveCatType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el Numero de Clave Catastral
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="35"/>
			<xsd:minLength value="1"/>
			<xsd:pattern value="[A-Za-z0-9\s,.]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="placaType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el Numero de Placa o Numero de Chasis
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="30"/>
			<xsd:minLength value="1"/>
			<xsd:pattern value="[a-zA-ZñÑ0-9]*[a-zA-ZñÑ]([a-zA-Z0-9]+)*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="descripcionType">
		<xsd:annotation>
			<xsd:documentation>Se detalla la descripcion del bien
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="60"/>
			<xsd:minLength value="1"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="numRegistroType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el numero de registro o matricula de vehiculo aereo o acuatico
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="60"/>
			<xsd:minLength value="1"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoBienType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el tipo del bien mueble</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="9"/>
			<xsd:pattern value="[0-9]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoVehiculoType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el tipo del vehiculo</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="9"/>
			<xsd:pattern value="[0-9]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="justificVariacionType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el tipo de justificacion para la variacion del patrimonio</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="20"/>
			<xsd:pattern value="[0-9]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoAcreedorType">
		<xsd:annotation>
			<xsd:documentation>Se detalla si el tipo de acredor es:  INSTITUCIONES FINANCIERAS, IESS, OTROS
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:enumeration value="IFI"/>
			<xsd:enumeration value="IES"/>
			<xsd:enumeration value="ACC"/>
			<xsd:enumeration value="DIV"/>
			<xsd:enumeration value="CRE"/>
			<xsd:enumeration value="TRA"/>
			<xsd:enumeration value="OTR"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="nombreAcreedorType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el nombre del acreedor</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[a-zA-ZñÑ0-9\s]*[a-zA-ZñÑ\s]([a-zA-Z0-9]+)*"/>
			<xsd:minLength value="3"/>
			<xsd:maxLength value="60"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="numeroRegistroBancoCentralType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el nombre del acreedor</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[a-zA-Z0-9]*"/>
			<xsd:minLength value="1"/>
			<xsd:maxLength value="12"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="nombreDeudorType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el nombre del Deudor de la Cuenta por Cobrar</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="[a-zA-ZñÑ0-9\s]*[a-zA-ZñÑ\s]([a-zA-Z0-9]+)*"/>
			<xsd:minLength value="3"/>
			<xsd:maxLength value="60"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="numeroIdentificacionType">
		<xsd:annotation>
			<xsd:documentation>Se detalla si numero de identificacion para cuentas por cobrar
            </xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="60"/>
			<xsd:minLength value="3"/>
			<xsd:pattern value="[A-Za-z0-9]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoDeudorType">
		<xsd:annotation>
			<xsd:documentation>Tipo deudor de las cuentas por cobrar (PERSONA NATURAL/ PERSONA JURIDICA)</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:enumeration value="1"/>
			<xsd:enumeration value="2"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="tipoDerechoType">
		<xsd:annotation>
			<xsd:documentation>Se detalla el tipo de derecho</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="8"/>
			<xsd:pattern value="[0-9]*"/>
		</xsd:restriction>
	</xsd:simpleType>
	<!-- Configuracion para periodo 2022 - Covid 19 -->
	<xsd:simpleType name="regularizacionActivosType">
		<xsd:annotation>
			<xsd:documentation>Pregunta de informacion de regularizacion de activos tras la pandemia COVID 19 (SI / NO)</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="1"/>
			<xsd:maxInclusive value="2"/>
			<xsd:pattern value="[1-2]{1}"/>
		</xsd:restriction>
	</xsd:simpleType>
	<xsd:simpleType name="anioFiscalAdquisicionType">
		<xsd:annotation>
			<xsd:documentation>Anio que se detalla la adquisicion del bien a ser regularizado tras la pandemia COVID 19</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:integer">
			<xsd:minInclusive value="2009"/>
			<xsd:maxInclusive value="9999"/>
		</xsd:restriction>
	</xsd:simpleType>
	<!-- Configuracion para periodo 2022 - Covid 19 -->
	<xsd:complexType name="decPatType">
		<xsd:sequence>
			<xsd:element name="anio" type="anioType"/>
			<xsd:element name="tipoDec" type="tipoDecType"/>
			<xsd:element name="tipoIdent" type="tipoIdentType"/>
			<xsd:element name="numIdent" type="numIdentType"/>
			<xsd:element name="nombre" type="nombreType"/>
			<xsd:element name="tipoIdentCony" type="tipoIdentType" minOccurs="0"/>
			<xsd:element name="numIdentCony" type="numIdentType" minOccurs="0"/>
			<xsd:element name="nombreCony" type="nombreType" minOccurs="0"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="totalCreditos" type="valorMayorIgualCeroType" minOccurs="0"/>
			<xsd:element name="totalDerechos" type="valorMayorIgualCeroType" minOccurs="0"/>
			<xsd:element name="patrimonio" type="patrimonioType"/>
			<xsd:element name="dinero" type="dineroType" minOccurs="0"/>
			<xsd:element name="inversiones" type="inversionesType" minOccurs="0"/>
			<xsd:element name="ctasXCobrar" type="ctasXCobrarType" minOccurs="0"/>
			<xsd:element name="vehiculos" type="vehiculosType" minOccurs="0"/>
			<xsd:element name="otrosBienes" type="otrosBienesType" minOccurs="0"/>
			<xsd:element name="bienesInmuebles" type="bienesInmueblesType" minOccurs="0"/>
			<xsd:element name="pasivo" type="pasivoType" minOccurs="0"/>
			<xsd:element name="otrosActivos" type="otrosActivosType" minOccurs="0"/>
			<xsd:element name="derechos" type="derechosType" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="dineroType">
		<xsd:sequence>
			<xsd:element name="detalleDinero" type="detalleDineroType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="inversionesType">
		<xsd:sequence>
			<xsd:element name="detalleInversiones" type="detalleInversionesType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="ctasXCobrarType">
		<xsd:sequence>
			<xsd:element name="detalleCtasXCobrar" type="detalleCtasXCobrarType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="bienesInmueblesType">
		<xsd:sequence>
			<xsd:element name="detalleBienesInmuebles" type="detalleBienesInmueblesType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="vehiculosType">
		<xsd:sequence>
			<xsd:element name="detalleVehiculos" type="detalleVehiculosType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="otrosBienesType">
		<xsd:sequence>
			<xsd:element name="detalleOtrosBienes" type="detalleOtrosBienesType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="pasivoType">
		<xsd:sequence>
			<xsd:element name="detallePasivo" type="detallePasivoType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="otrosActivosType">
		<xsd:sequence>
			<xsd:element name="detalleOtrosActivos" type="detalleOtrosActivosType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="derechosType">
		<xsd:sequence>
			<xsd:element name="detalleDerechos" type="detalleDerechosType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="justificacionType">
		<xsd:sequence>
			<xsd:element name="detalleJustificacion" type="detalleJustificacionType" minOccurs="0" maxOccurs="unbounded"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="patrimonioType">
		<xsd:sequence>
			<xsd:element name="totalDeclarado" type="valorNegativoType"/>
			<xsd:element name="atribuibleHijos" type="valorNegativoType"/>
			<xsd:element name="sociedadConyugal" type="valorNegativoType"/>
			<xsd:element name="individual" type="valorNegativoType"/>
			<xsd:element name="anioAnterior" type="valorNegativoType" minOccurs="0"/>
			<xsd:element name="crecimientoPat" type="valorMayorIgualCeroType" minOccurs="0"/>
			<xsd:element name="decrecimientoPat" type="valorMayorIgualCeroType" minOccurs="0"/>
			<xsd:element name="justificacion" type="justificacionType" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleDineroType">
		<xsd:sequence>
			<xsd:element name="dineroEn" type="dineroEnType"/>
			<xsd:element name="tipoInversion" type="tipoInversionDineroType" minOccurs="0"/>
			<xsd:element name="ubicacion" type="ubicacionType"/>
			<xsd:element name="pais" type="paisType" minOccurs="0"/>
			<xsd:element name="ifiEcuador" type="ifiEcuadorType" minOccurs="0"/>
			<xsd:element name="nombreIfiExterior" type="nombreIfiExteriorType" minOccurs="0"/>
			<xsd:element name="tipoMoneda" type="tipoMonedaType" minOccurs="0"/>
			<xsd:element name="saldo" type="valorMayorIgualCeroType"/>
			<xsd:element name="partesRelacionadas" type="partesRelacionadasType" minOccurs="0"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:element name="anioFiscalAdquisicion" type="anioFiscalAdquisicionType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleInversionesType">
		<xsd:sequence>
			<xsd:element name="tipoInversion" type="tipoInversionType"/>
			<xsd:element name="ubicacion" type="ubicacionType"/>
			<xsd:element name="valor" type="valorMayorIgualCeroType"/>
			<xsd:element name="codpais" type="paisType" minOccurs="0"/>
			<xsd:element name="nombempresa" type="nombreEmpresaAdFondosOtrosType" minOccurs="0"/>
			<xsd:element name="porcentpart" type="porcentajeParticipacionSocDerechosType" minOccurs="0"/>
			<xsd:element name="numAcc" type="numeroAccionesParticipacionesType" minOccurs="0"/>
			<xsd:element name="relacionadas" type="partesRelacionadasType" minOccurs="0"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:element name="anioFiscalAdquisicion" type="anioFiscalAdquisicionType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleBienesInmueblesType">
		<xsd:sequence>
			<xsd:element name="tipoInmueble" type="tipoInmuebleType"/>
			<xsd:element name="ubicacion" type="ubicacionType"/>
			<xsd:element name="codPais" type="paisType" minOccurs="0"/>
			<xsd:element name="provincia" type="provinciaType" minOccurs="0"/>
			<xsd:element name="canton" type="cantonType" minOccurs="0"/>
			<xsd:element name="fechaInscripcion" type="fechaType" minOccurs="0"/>
			<xsd:element name="claveCat" type="claveCatType" minOccurs="0"/>
			<xsd:element name="valor" type="valorMayorIgualCeroType"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:element name="anioFiscalAdquisicion" type="anioFiscalAdquisicionType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleVehiculosType">
		<xsd:sequence>
			<xsd:element name="tipoVehiculo" type="tipoVehiculoType"/>
			<xsd:element name="placa" type="placaType"/>
			<xsd:element name="ubicacion" type="ubicacionType" minOccurs="0"/>
			<xsd:element name="pais" type="paisType" minOccurs="0"/>
			<xsd:element name="valor" type="valorMayorCeroType"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:element name="anioFiscalAdquisicion" type="anioFiscalAdquisicionType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleOtrosBienesType">
		<xsd:sequence>
			<xsd:element name="tipoBien" type="tipoBienType"/>
			<xsd:element name="ubicacion" type="ubicacionType" minOccurs="0"/>
			<xsd:element name="pais" type="paisType" minOccurs="0"/>
			<xsd:element name="valor" type="valorMayorIgualCeroType"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:element name="anioFiscalAdquisicion" type="anioFiscalAdquisicionType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detallePasivoType">
		<xsd:sequence>
			<xsd:element name="tipoAcreedor" type="tipoAcreedorType"/>
			<xsd:element name="domicilioAcreedor" type="ubicacionType"/>
			<xsd:element name="valorDeuda" type="valorMayorIgualCeroType"/>
			<xsd:element name="paisAcreedor" type="paisType" minOccurs="0"/>
			<xsd:element name="nombreAcreedor" type="nombreAcreedorType" minOccurs="0"/>
			<xsd:element name="tipoIdentificacionAcreedor" type="tipoIdentType" minOccurs="0"/>
			<xsd:element name="numeroIdentificacionAcreedor" type="numeroIdentificacionType" minOccurs="0"/>
			<xsd:element name="numeroRegistroBancoCentral" type="numeroRegistroBancoCentralType" minOccurs="0"/>
			<xsd:element name="partesRelacionadas" type="partesRelacionadasType" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleOtrosActivosType">
		<xsd:sequence>
			<xsd:element name="ubicacion" type="ubicacionType"/>
			<xsd:element name="pais" type="paisType"/>
			<xsd:element name="descripcion" type="descripcionActivoType"/>
			<xsd:element name="valorTotal" type="valorMayorCeroType"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:element name="anioFiscalAdquisicion" type="anioFiscalAdquisicionType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleJustificacionType">
		<xsd:sequence>
			<xsd:element name="justificVariacion" type="justificVariacionType" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleCtasXCobrarType">
		<xsd:sequence>
			<xsd:element name="nombreDeudor" type="nombreDeudorType"/>
			<xsd:element name="tipoDeudor" type="tipoDeudorType"/>
			<xsd:element name="tipoIdentificacion" type="tipoIdentType"/>
			<xsd:element name="numeroIdentificacion" type="numeroIdentificacionType" minOccurs="0"/>
			<xsd:element name="ubicacion" type="ubicacionType" minOccurs="0"/>
			<xsd:element name="pais" type="paisType" minOccurs="0"/>
			<xsd:element name="partesRelacionadas" type="partesRelacionadasType" minOccurs="0"/>
			<xsd:element name="saldo" type="valorMayorIgualCeroType"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:element name="anioFiscalAdquisicion" type="anioFiscalAdquisicionType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
		</xsd:sequence>
	</xsd:complexType>
	<xsd:complexType name="detalleDerechosType">
		<xsd:sequence>
			<xsd:element name="tipoDerecho" type="tipoDerechoType"/>
			<xsd:element name="ubicacion" type="ubicacionType"/>
			<xsd:element name="pais" type="paisType"/>
			<xsd:element name="valor" type="valorMayorCeroType"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
			<xsd:element name="regularizacionActivos" type="regularizacionActivosType" minOccurs="0" maxOccurs="unbounded"/>
			<xsd:element name="anioFiscalAdquisicion" type="anioFiscalAdquisicionType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Configuracion para periodo 2022 - Covid 19 -->
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="decPat" type="decPatType"/>
</xsd:schema>