<?xml version="1.0" encoding="UTF-8"?>
<!-- Release: 2018-06-28 ..:.. -->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://www.mis.sfm.se/mis20" targetNamespace="http://www.mis.sfm.se/mis20" elementFormDefault="qualified">
	<!--
	Format
-->
	<xs:simpleType name="formatVerksamhetsDatum">
		<xs:annotation>
			<xs:documentation>Formatering av datum inom verksamheten. Anges utan klockslag.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="\d{4}-\d{2}-\d{2}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="formatTeknisktDatum">
		<xs:annotation>
			<xs:documentation>Formatering av teknisk tidsstämpel.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="formatMislifeVersion">
		<xs:annotation>
			<xs:documentation>Formatering av mislifeversions-konstant.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="mislife\d{2,3}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="formatText">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:simpleType name="formatUUID">
		<xs:annotation>
			<xs:documentation>Formatering av Universally unique identifier.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="formatValutaIsoKod">
		<xs:annotation>
			<xs:documentation>Formatering av valutors iso-kod.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="[a-zA-Z]{3,3}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="formatOrgPnr">
		<xs:annotation>
			<xs:documentation>Formatering av organisations- och person-nummer.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="\d{8}-\d{4}"/>
		</xs:restriction>
	</xs:simpleType>
	<!--
	Grupp
-->
	<xs:group name="gruppOrganisationMin">
		<xs:sequence>
			<xs:element name="organisationsnummer" type="formatOrgPnr"/>
			<xs:element name="namn" type="formatText" minOccurs="0"/>
		</xs:sequence>
	</xs:group>
	<xs:group name="gruppOrganisation">
		<xs:sequence>
			<xs:element name="organisationsnummer" type="formatOrgPnr"/>
			<xs:element name="organisationsnamn" type="formatText" minOccurs="0"/>
		</xs:sequence>
	</xs:group>
	<xs:group name="gruppPerson">
		<xs:sequence>
			<xs:choice>
				<xs:sequence>
					<xs:element name="personnummer" type="formatOrgPnr"/>
					<xs:choice>
						<xs:element name="personnamn" type="formatText"/>
						<xs:sequence>
							<xs:element name="fornamn" type="formatText"/>
							<xs:element name="efternamn" type="formatText"/>
						</xs:sequence>
					</xs:choice>
					<xs:element name="fodelsedatum" type="formatVerksamhetsDatum" minOccurs="0"/>
				</xs:sequence>
			</xs:choice>
		</xs:sequence>
	</xs:group>
	<xs:group name="gruppPremie">
		<xs:sequence>
			<xs:choice>
				<xs:element name="arNetto" type="xs:boolean" minOccurs="0"/>
				<xs:element name="premiedel">
					<xs:complexType>
						<xs:all>
							<xs:element name="premiedelkod" type="formatText" minOccurs="0"/>
							<xs:element name="premiedelbeskrivning" type="formatText" minOccurs="0"/>
							<xs:element name="delAvPremiebelopp" type="xs:decimal" minOccurs="0"/>
							<xs:element name="procentuellDelAvPremiebelopp" type="xs:decimal" minOccurs="0"/>
							<xs:element name="fordelasAterstaendePremiebelopp" type="xs:boolean" minOccurs="0"/>
							<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						</xs:all>
					</xs:complexType>
				</xs:element>
			</xs:choice>
		</xs:sequence>
	</xs:group>
	<!--
	Struktur
-->
	<xs:complexType name="strukturTillampningspecifikt">
		<xs:annotation>
			<xs:documentation>Beskriver hur en tillampningsspecifikt element ser ut.</xs:documentation>
		</xs:annotation>
		<xs:simpleContent>
			<xs:extension base="formatText">
				<xs:attribute name="kod" type="formatText"/>
			</xs:extension>
		</xs:simpleContent>
	</xs:complexType>
	<xs:complexType name="strukturPerson">
		<xs:annotation>
			<xs:documentation>Beskriver hur en person-struktur ser ut.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:group ref="gruppPerson"/>
			<xs:element name="kundnummer" type="formatText" minOccurs="0"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturOrganisation">
		<xs:annotation>
			<xs:documentation>Beskriver hur en organisation-struktur ser ut.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:group ref="gruppOrganisation"/>
			<xs:element name="kundnummer" type="formatText" minOccurs="0"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturOrganisationMin">
		<xs:sequence>
			<xs:group ref="gruppOrganisationMin"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturPart">
		<xs:annotation>
			<xs:documentation>Beskriver hur en organisation-struktur ser ut.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:choice>
				<xs:group ref="gruppOrganisation"/>
				<xs:group ref="gruppPerson"/>
			</xs:choice>
			<xs:element name="kundnummer" type="formatText" minOccurs="0"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturPremieKommande">
		<xs:sequence>
			<xs:choice>
				<xs:element name="premiebelopp" type="xs:decimal"/>
				<xs:element name="malpremiebelopp" type="xs:decimal"/>
			</xs:choice>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
			<xs:group ref="gruppPremie"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturPremieSenaste">
		<xs:sequence>
			<xs:element name="premiebelopp" type="xs:decimal"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
			<xs:group ref="gruppPremie"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturFilinformation">
		<xs:sequence>
			<xs:element name="avsandare" type="strukturOrganisation" minOccurs="1"/>
			<xs:element name="mottagare" type="strukturOrganisation" minOccurs="0"/>
			<xs:element name="skapadTidpunkt" type="formatTeknisktDatum" minOccurs="1"/>
			<xs:element name="transaktionsIdentitet" type="formatUUID" minOccurs="0"/>
			<xs:element name="sekvens" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="identitet" type="formatUUID" minOccurs="1"/>
						<xs:element name="ordningsfoljd" type="xs:integer" minOccurs="0"/>
						<xs:element name="totaltAntalFiler" type="xs:integer" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>	
	<xs:complexType name="strukturForman">
		<xs:annotation>
			<xs:documentation>Beskriver hur en förmån-struktur ser ut.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="id" type="formatText" minOccurs="0"/>
			<xs:element name="namn" type="formatText" minOccurs="0"/>
			<xs:element name="utbetalningstyp" type="formatText" minOccurs="0"/>
			<xs:element name="utbetalningstermin" type="formatText" minOccurs="0"/>
			<xs:element name="utbetalningstillfalleRelativtTermin" type="formatText" minOccurs="0"/>
			<xs:element name="harTolftedelsomraknats" type="formatText" minOccurs="0"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
			<xs:element name="utbetalningstidpunkt" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="zTidpunkt" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="utbetalningsalder" type="formatText" minOccurs="0"/>
						<xs:element name="arFast" type="xs:boolean" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="utbetalningsperiod" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="utbetalningstidstyp" type="formatText" minOccurs="0"/>
						<xs:element name="utbetalningstid" type="formatText" minOccurs="0"/>
						<xs:element name="arFast" type="xs:boolean" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="belopp" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="formanstyp" type="formatText" minOccurs="0"/>
									<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
									<xs:element name="garanteradDelAvBelopp" type="xs:decimal" minOccurs="0"/>
									<xs:element name="beloppEjBerakningsbart" type="xs:boolean" minOccurs="0"/>
									<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
									<xs:element name="indexeringstyp" type="formatText" minOccurs="0"/>
									<xs:element name="indexeringsar" type="xs:integer" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturForsakringsbelopp">
		<xs:sequence>
			<xs:element name="id" type="formatText" minOccurs="0"/>
			<xs:element name="typAvForsakringsbelopp" type="formatText" minOccurs="0"/>
			<xs:element name="utbetalningstyp" type="formatText" minOccurs="0"/>
			<xs:element name="utbetalningstermin" type="formatText" minOccurs="0"/>
			<xs:element name="utbetalningstillfalleRelativtTermin" type="formatText" minOccurs="0"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
			<xs:element name="alderOchTidpunktsvillkor" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:all>
						<xs:element name="typAvAldersvillkor" type="formatText" minOccurs="0"/>
						<xs:element name="alder" type="formatText" minOccurs="0"/>
						<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="utbetalningstid" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:all>
						<xs:element name="utbetalningstidstyp" type="formatText" minOccurs="0"/>
						<xs:element name="karenstid" type="formatText" minOccurs="0"/>
						<xs:element name="enhetForUtbetalningstid" type="formatText" minOccurs="0"/>
						<xs:element name="utbetalningstid" type="formatText" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="belopp" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
									<xs:element name="beloppAngivetIBasbelopp" type="xs:decimal" minOccurs="0"/>
									<xs:element name="typAvBasbelopp" type="formatText" minOccurs="0"/>
									<xs:element name="beloppEjBerakningsbart" type="xs:boolean" minOccurs="0"/>
									<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
									<xs:element name="indexeringstyp" type="formatText" minOccurs="0"/>
									<xs:element name="indexeringsar" type="xs:integer" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturPremieHistorik">
		<xs:sequence>
			<xs:element name="arFullstandig" type="xs:boolean" minOccurs="0"/>
			<xs:element name="datumForSenastePremie" type="xs:boolean" minOccurs="0"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
			<xs:element name="totaltInbetaltPremiebelopp" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="premiebelopp" type="xs:decimal" minOccurs="0"/>
						<xs:element name="premieavgift" type="xs:decimal" minOccurs="0"/>
						<xs:element name="typAvPremie" type="formatText" minOccurs="0"/>
						<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="historiskPremie" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:all>
						<xs:element name="inbetaltPremiebelopp" type="xs:decimal" minOccurs="0"/>
						<xs:element name="inbetaldPremieavgift" type="xs:decimal" minOccurs="0"/>
						<xs:element name="inbetalningstermin" type="formatText" minOccurs="0"/>
						<xs:element name="inbetalningsterminStartmanad" type="formatText" minOccurs="0"/>
						<xs:element name="inbetalningstillfalleRelativtTermin" type="formatText" minOccurs="0"/>
						<xs:element name="betalningsdatum" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="typAvPremie" type="formatText" minOccurs="0"/>
						<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturMoment">
		<xs:sequence>
			<xs:element name="id" type="formatText" minOccurs="0"/>
			<xs:element name="namn" type="formatText" minOccurs="0"/>
			<xs:element name="beskrivning" type="formatText" minOccurs="0"/>
			<xs:element name="momenttypkod" type="formatText" minOccurs="0"/>
			<xs:element name="kollektivavtalsspecifikMomenttypkod" type="formatText" minOccurs="0"/>
			<xs:element name="premiebestamdEllerFormansbestamd" type="formatText" minOccurs="0"/>
			<xs:element name="status" type="formatText" minOccurs="0"/>
			<xs:element name="statusGallerFran" type="formatVerksamhetsDatum" minOccurs="0"/>
			<xs:element name="kommandeStatus" type="formatText" minOccurs="0"/>
			<xs:element name="kommandeStatusGallerFran" type="formatVerksamhetsDatum" minOccurs="0"/>
			<xs:element name="teckningsdatum" type="formatVerksamhetsDatum" minOccurs="0"/>
			<xs:element name="datering" type="formatVerksamhetsDatum" minOccurs="0"/>
			<xs:element name="teckningstyp" type="formatText" minOccurs="0"/>
			<xs:element name="skattekategori" type="formatText" minOccurs="0"/>
			<xs:element name="arKapitalpension" type="xs:boolean" minOccurs="0"/>
			<xs:element name="arDirektpension" type="xs:boolean" minOccurs="0"/>
			<xs:element name="arOmdisponerad" type="xs:boolean" minOccurs="0"/>
			<xs:element name="arSjalvpremiebefriande" type="xs:boolean" minOccurs="0"/>
			<xs:element name="tabellform" type="formatText" minOccurs="0"/>
			<xs:element name="tacksAvPremiedelkod" type="formatText" minOccurs="0"/>
			<xs:element name="typAvForsakringshandelse" type="formatText" minOccurs="0"/>
			<xs:element name="forsakringsnummer" type="formatText" minOccurs="0"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
			<xs:element name="parter" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakrad" type="strukturPerson" minOccurs="0"/>
						<xs:element name="medforsakrad" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="kategori" type="formatText" minOccurs="0"/>
									<xs:element name="ickeIdentifierad" type="formatText" minOccurs="0"/>
									<xs:group ref="gruppPerson"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="delAvForsakradGrupp" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="antalIGruppSomTacksAvMoment" type="formatText" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="formanstagarforordnande" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="formanstagarkod" type="formatText" minOccurs="0"/>
									<xs:element name="forordnandeKod" type="formatText" minOccurs="0"/>
									<xs:element name="forordnandeText" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="specifikAgare" type="strukturPart" minOccurs="0"/>
						<xs:element name="specifikUtfardare" type="strukturOrganisation" minOccurs="0"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="klausul" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:all>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="avgifter" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="administrationsavgift" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="administrationsavgift" type="xs:decimal" minOccurs="0"/>
									<xs:element name="administrationsavgiftIProcent" type="formatText" minOccurs="0"/>
									<xs:element name="periodicitetForAvgift" type="formatText" minOccurs="0"/>
									<xs:element name="debiteringsmetod" type="formatText" minOccurs="0"/>
									<xs:element name="avgiftForKapitalid" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="inflyttatKapital" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="kapital" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
									<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
									<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="typAvInflytt" type="formatText" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="forsakringsfall" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="pagaendeForsakringsfall" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="startdatum" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="gradAvForsakringsfall" type="formatText" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="pagaendePremiebefrielse" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="startdatum" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="gradAvPremiebefrielse" type="formatText" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="forsakringsrelateradeTjanster" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="tjanst" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="bolagsspecifikKod" type="formatText" minOccurs="0"/>
									<xs:element name="beskrivning" type="formatText" minOccurs="0"/>
									<xs:element name="beroendeAvIntraffatForsakringsfall" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="forsakringshandelser" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="handelse" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="typAvForsakringshandelse" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="vardeutveckling" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="tidsperiod" type="formatText"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="vardeforandring" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
									<xs:element name="vardeutvecklingstyp" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="forman" type="strukturForman" minOccurs="0"/>
			<xs:element name="forsakringsbelopp" type="strukturForsakringsbelopp" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="detaljeradFormansinformation" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="beskriverFormansid" type="formatText" minOccurs="0"/>
						<xs:element name="beskriverAlternativtScenario" type="formatText" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="alternativtFormansscenario" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="villkor" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="villkor" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="utbetalningsalder" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="utbetalningsalder" type="formatText" minOccurs="0"/>
												<xs:element name="arFast" type="xs:boolean" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="utbetalningstid" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="utbetalningstidstyp" type="formatText" minOccurs="0"/>
												<xs:element name="utbetalningstid" type="formatText" minOccurs="0"/>
												<xs:element name="arFast" type="xs:boolean" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="formanskomponent" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="id" type="formatText" minOccurs="0"/>
									<xs:element name="namn" type="formatText" minOccurs="0"/>
									<xs:element name="formanskomponentstyp" type="formatText" minOccurs="0"/>
									<xs:element name="arAntastbar" type="xs:boolean" minOccurs="0"/>
									<xs:element name="harTolftedelsomraknats" type="xs:boolean" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
									<xs:element name="belopp" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="indexeringstyp" type="formatText" minOccurs="0"/>
												<xs:element name="indexeringsar" type="xs:integer" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="tjanstetider" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="tjanstetid" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:sequence>
												<xs:element name="beraknadTjanstetid" type="formatText" minOccurs="0"/>
												<xs:element name="intjanadTjanstetid" type="formatText" minOccurs="0"/>
												<xs:element name="arAktiv" type="xs:boolean" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="tjanstetidIntjanadTill" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
												<xs:element name="grans" minOccurs="0" maxOccurs="unbounded">
													<xs:complexType>
														<xs:all>
															<xs:element name="typAvTjanstetidsgrans" type="formatText" minOccurs="0"/>
															<xs:element name="datumgrans" type="formatVerksamhetsDatum" minOccurs="0"/>
															<xs:element name="aldersgrans" type="formatText" minOccurs="0"/>
															<xs:element name="basbeloppsgrans" type="formatText" minOccurs="0"/>
															<xs:element name="basbeloppstyp" type="formatText" minOccurs="0"/>
														</xs:all>
													</xs:complexType>
												</xs:element>
											</xs:sequence>
										</xs:complexType>
									</xs:element>
									<xs:element name="faktor" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:sequence>
												<xs:element name="beraknadTjanstetidsfaktor" type="formatText"/>
												<xs:element name="maximalTjanstetid" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
												<xs:element name="grans" minOccurs="0" maxOccurs="unbounded">
													<xs:complexType>
														<xs:all>
															<xs:element name="typAvTjanstetidsgrans" type="formatText" minOccurs="0"/>
															<xs:element name="datumgrans" type="formatVerksamhetsDatum" minOccurs="0"/>
															<xs:element name="aldersgrans" type="formatText" minOccurs="0"/>
															<xs:element name="basbeloppsgrans" type="formatText" minOccurs="0"/>
															<xs:element name="basbeloppstyp" type="formatText" minOccurs="0"/>
															<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
														</xs:all>
													</xs:complexType>
												</xs:element>
											</xs:sequence>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="premieuppgifter" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="premiehistorik" type="strukturPremieHistorik" minOccurs="0"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="premieuppgifterFormansbestamdAp" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="typAvPremie" type="formatText" minOccurs="0"/>
						<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
						<xs:element name="inbetalningstermin" type="formatText" minOccurs="0"/>
						<xs:element name="inbetalningsterminStartmanad" type="formatText" minOccurs="0"/>
						<xs:element name="inbetalningstillfalleRelativtInbetalningstermin" type="formatText" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="kapital" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="id" type="formatText" minOccurs="0"/>
						<xs:element name="forvaltningstyp" type="formatText" minOccurs="0"/>
						<xs:element name="inkluderadeGarantier" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="garanteradAvkastning" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="premiegaranti" type="formatText" minOccurs="0"/>
												<xs:element name="garanteradProcentuellAvkastning" type="formatText" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="flyttbarhet" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="flyttbartBelopp" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="helaKapitaletArFlyttbart" type="formatText" minOccurs="0"/>
												<xs:element name="flyttbartBelopp" type="xs:decimal" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="flyttavgift" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="flyttavgift" type="formatText" minOccurs="0"/>
												<xs:element name="flyttavgiftProcentAvKapital" type="formatText" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="traditionellForvaltning" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="retrospektivreserv" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="retrospektivreserv" type="xs:decimal" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="teknisktAterkopsvarde" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="teknisktAterkopsvarde" type="xs:decimal" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="individuellForvaltning" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="totaltInnehav" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="totaltAktuelltInnehav" type="xs:decimal" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="depa" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="institut" type="formatText" minOccurs="0"/>
												<xs:element name="nr" type="formatText" minOccurs="0"/>
												<xs:element name="depaavgift" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="innehav" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:sequence>
												<xs:element name="id" type="formatText" minOccurs="0"/>
												<xs:element name="innehavstyp" type="formatText" minOccurs="0"/>
												<xs:element name="namn" type="formatText" minOccurs="0"/>
												<xs:element name="antal" type="formatText" minOccurs="0"/>
												<xs:element name="varde" type="xs:decimal" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="framtidaPremieandelIProcent" type="formatText" minOccurs="0"/>
												<xs:element name="isin" type="formatText" minOccurs="0"/>
												<xs:element name="forvaltningsavgiftIProcent" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
												<xs:element name="bolagsspecifikProdukt" minOccurs="0" maxOccurs="unbounded">
													<xs:complexType>
														<xs:all>
															<xs:element name="bolagsspecifikKod" type="formatText" minOccurs="0"/>
															<xs:element name="bolagsspecifikBeskrivning" type="formatText" minOccurs="0"/>
															<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
														</xs:all>
													</xs:complexType>
												</xs:element>
											</xs:sequence>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<!-- Element att detaljera nedan -->
			<xs:element name="inkluderadeSjukvardskostnader" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakringsbelopp" type="strukturForsakringsbelopp" minOccurs="0"/>
						<xs:element name="kostnadsskydd" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="bolagsspecifikKod" type="formatText" minOccurs="0"/>
									<xs:element name="bolagsspecifikBeskrivning" type="formatText" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="inkluderadeDiagnoser" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakringsbelopp" type="strukturForsakringsbelopp" minOccurs="0"/>
						<xs:element name="diagnos" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="diagnoskod" type="formatText" minOccurs="0"/>
									<xs:element name="beskrivningAvDiagnos" type="formatText" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="ersattningsinformation" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakringsbelopp" type="strukturForsakringsbelopp" minOccurs="0"/>
						<xs:element name="detaljeratRiskmomentbelopp" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="bolagsspecifikKod" type="formatText" minOccurs="0"/>
									<xs:element name="bolagsspecifikBeskrivning" type="formatText" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="premiebefrielse" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="arExternPremiebefrielse" type="xs:boolean" minOccurs="0"/>
						<xs:element name="arInternPremiebefrielse" type="xs:boolean" minOccurs="0"/>
						<xs:element name="omfattarHelaForsakringen" type="xs:boolean" minOccurs="0"/>
						<xs:element name="premiebefriatMoment" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="momentId" type="formatText" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="premiebefriadPremiedel" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="premiedelId" type="formatText" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="aterbetalningsskydd" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:all>
						<xs:element name="aterbetalningsskyddForMomentid" type="formatText" minOccurs="0"/>
						<xs:element name="delAvForsakringskapitalIProcent" type="formatText" minOccurs="0"/>
						<xs:element name="egetAngivenForman" type="formatText" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="forman" type="strukturForman" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="formansunderlag" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="inkluderadAterbaring" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="beraknadAterbaring" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:sequence>
												<xs:element name="aterbaringstyp" type="formatText" minOccurs="0"/>
												<xs:element name="beraknadAterbaringIProcent" type="formatText" minOccurs="0"/>
											</xs:sequence>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="overgangsbestammelser" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="bestammelsePakfs" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="varAnsluten20081231" type="xs:boolean" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="bestammelseKapkl" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="iprOver75Ibb" type="xs:boolean" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="bestammelsePa03" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="typ" type="formatText"/>
												<xs:element name="pensionsalder" type="formatText" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="samordningsuppgifter" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="uppgift" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="id" type="formatText" minOccurs="0"/>
												<xs:element name="tolftedelsomraknas" type="formatText" minOccurs="0"/>
												<xs:element name="uttagsalder" type="formatText" minOccurs="0"/>
												<xs:element name="uttagstid" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
												<xs:element name="forvaltare" type="strukturOrganisation" minOccurs="0"/>
												<xs:element name="samordnatBelopp" minOccurs="0">
													<xs:complexType>
														<xs:all>
															<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
															<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
															<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
															<xs:element name="indexeringstyp" type="formatText" minOccurs="0"/>
															<xs:element name="indexeringsar" type="xs:integer" minOccurs="0"/>
															<xs:element name="exklFormanUnder75Ibb" type="formatText" minOccurs="0"/>
															<xs:element name="termin" type="formatText" minOccurs="0"/>
															<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
														</xs:all>
													</xs:complexType>
												</xs:element>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="sjukforsakringsbeskrivning" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="sjukforsakringModell" type="formatText" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="strukturForsakring">
		<xs:sequence>
			<xs:element name="id" minOccurs="0"/>
			<xs:element name="informationstidpunkt" type="formatVerksamhetsDatum" minOccurs="0"/>
			<xs:element name="andringstidpunkt" type="formatVerksamhetsDatum" minOccurs="0"/>
			<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
			<xs:element name="parter">
				<xs:complexType>
					<xs:all>
						<xs:element name="forsakrad" type="strukturPerson" minOccurs="0"/>
						<xs:element name="forsakringsgivare" type="strukturOrganisation" minOccurs="0"/>
						<xs:element name="forsakringstagare" type="strukturPart" minOccurs="0"/>
						<xs:element name="panthavare" type="strukturPart" minOccurs="0"/>
						<xs:element name="valcentral" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:group ref="gruppOrganisationMin"/>
									<xs:element name="forsakringsidentifikationHosValcentral" type="formatText" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="forsakradGrupp" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="antal" type="xs:integer" minOccurs="0"/>
									<xs:element name="kon" type="formatText" minOccurs="0"/>
									<xs:element name="aldersintervall" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="administration">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakringsnummer" type="formatText" minOccurs="0"/>
						<xs:element name="forsakringsbeskrivning" type="formatText" minOccurs="0"/>
						<xs:element name="teckningsdatum" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="datering" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="huvudforfallodag" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="betaldTill" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="faktureradTill" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="tryggadIEgenRegi" type="xs:boolean" minOccurs="0"/>
						<xs:element name="arNastlad" type="xs:boolean" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="avtalskoppling" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="avtalsid" type="formatText" minOccurs="0"/>
									<xs:element name="avtalsnummer" type="formatText" minOccurs="0"/>
									<xs:element name="affarsnamn" type="formatText" minOccurs="0"/>
									<xs:element name="kategoriFormansgrupp" type="formatText" minOccurs="0"/>
									<xs:element name="kategoriFormansgruppNummer" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="paketeringskoppling" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="forsakringspaketeringsnummer" type="formatText" minOccurs="0"/>
									<xs:element name="beskrivning" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="kollektivavtalskoppling" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="arKollektivavtalad" type="formatText" minOccurs="0"/>
									<xs:element name="avtalsomrade" type="formatText" minOccurs="0"/>
									<xs:element name="avdelning" type="formatText" minOccurs="0"/>
									<xs:element name="kollektivavtal" type="formatText" minOccurs="0"/>
									<xs:element name="kollektivavtalsspecifikAnstallningskategori" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="produktkoppling" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="produktid" type="formatText" minOccurs="0"/>
									<xs:element name="produktkod" type="formatText" minOccurs="0"/>
									<xs:element name="produktnamn" type="formatText" minOccurs="0"/>
									<xs:element name="produktdelid" type="formatText" minOccurs="0"/>
									<xs:element name="produktdelkod" type="formatText" minOccurs="0"/>
									<xs:element name="produktdelnamn" type="formatText" minOccurs="0"/>
									<xs:element name="referensTillProduktbeskrivning" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="tidigareIdentitet" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="forsakringsnummer" type="formatText" minOccurs="0"/>
									<xs:element name="arErsatt" type="xs:boolean" minOccurs="0"/>
									<xs:element name="giltigTom" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="anledningTillIdentitetsforandring" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="underliggandeForsakring" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="forsakringsnummer" type="formatText" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="fullmaktsinformation" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="fullmakt" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="typAvFullmakt" type="formatText" minOccurs="0"/>
									<xs:element name="fullmaktsniva" type="formatText" minOccurs="0"/>
									<xs:element name="forsakringsmaklarkod" type="formatText" minOccurs="0"/>
									<xs:element name="forsakringsmaklarbolagskod" type="formatText" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="avgifter" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="forsakringsavgift">
							<xs:complexType>
								<xs:all>
									<xs:element name="avgift" type="xs:decimal" minOccurs="0"/>
									<xs:element name="periodicitet" type="formatText" minOccurs="0"/>
									<xs:element name="debiteringsmetod" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="premieavgift" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="avgift" type="xs:decimal" minOccurs="0"/>
									<xs:element name="avgiftProcent" type="formatText" minOccurs="0"/>
									<xs:element name="gallerForPremietyp" type="formatText" minOccurs="0"/>
									<xs:element name="debiteringsmetod" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="grupperingar" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="momentgrupp" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="id" type="formatText" minOccurs="0"/>
									<xs:element name="typAvMomentgrupp" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
									<xs:element name="ingaendeMoment" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="momentid" type="formatText" minOccurs="0"/>
												<xs:element name="ordningInomGrupp" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="beloppgrupp">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="id" type="formatText" minOccurs="0"/>
									<xs:element name="typAvBeloppFormansgrupp" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
									<xs:element name="ingaendeBelopp" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="beloppid" type="formatText" minOccurs="0"/>
												<xs:element name="formansid" type="formatText" minOccurs="0"/>
												<xs:element name="ordningInomGrupp" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="premieforfarande" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="status" type="formatText" minOccurs="0"/>
						<xs:element name="typAvPremieforfarande" type="formatText" minOccurs="0"/>
						<xs:element name="externtPremiesatt" type="xs:boolean" minOccurs="0"/>
						<xs:element name="betalningssatt" type="formatText" minOccurs="0"/>
						<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
						<xs:element name="inbetalningstermin" type="formatText" minOccurs="0"/>
						<xs:element name="inbetalningsterminStartmanad" type="formatText" minOccurs="0"/>
						<xs:element name="inbetalningstillfalleRelativtTermin" type="formatText" minOccurs="0"/>
						<xs:element name="indexeringstyp" type="formatText" minOccurs="0"/>
						<xs:element name="slutdatumPremie" type="formatVerksamhetsDatum" minOccurs="0"/>
						<xs:element name="annanPremieavisat" minOccurs="0">
							<xs:complexType>
								<xs:complexContent>
									<xs:extension base="strukturPart">
										<xs:sequence>
											<xs:element name="avisatPaPremiedelid" type="formatText"/>
										</xs:sequence>
									</xs:extension>
								</xs:complexContent>
							</xs:complexType>
						</xs:element>
						<xs:element name="externPremiesattare" type="strukturOrganisation" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="senastePremie" type="strukturPremieKommande" minOccurs="0" maxOccurs="1"/>
						<xs:element name="kommandePremie" type="strukturPremieSenaste" minOccurs="0" maxOccurs="1"/>
						<xs:element name="premiedel" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="kod" type="formatText" minOccurs="0"/>
									<xs:element name="beskrivning" type="formatText" minOccurs="0"/>
									<xs:element name="fordelningAvTotalPremieIProcent" type="xs:decimal" minOccurs="0"/>
									<xs:element name="fordelningAvTotalPremie" type="xs:decimal" minOccurs="0"/>
									<xs:element name="premiedelFordelasAterstaendeBelopp" type="xs:boolean" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="enligtPensionsplan" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="frilagdPremieAlternativItp" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="premie" type="xs:decimal" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="aktuellPremie" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="nettopremiebelopp" type="xs:decimal" minOccurs="0"/>
												<xs:element name="bruttopremiebelopp" type="xs:decimal" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="aktuellPremiedel" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="premiedelkod" type="formatText" minOccurs="0"/>
												<xs:element name="nettopremiebelopp" type="xs:decimal" minOccurs="0"/>
												<xs:element name="bruttopremiebelopp" type="xs:decimal" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="premiehistorik" type="strukturPremieHistorik" minOccurs="0"/>
			<xs:element name="undantag" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="uppgifterUtelamnas" type="xs:boolean" minOccurs="0"/>
						<xs:element name="standardkod" type="formatText" minOccurs="0"/>
						<xs:element name="internkod" type="formatText" minOccurs="0"/>
						<xs:element name="extraInformation" type="formatText" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="ingaendeMoment" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="id" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="formansgrundandeUppgifter" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="prognosstart" type="formatText" minOccurs="0"/>
						<xs:element name="anstalldAllaDagarUnderPrognosaret" type="formatText" minOccurs="0"/>
						<xs:element name="anslutningsar" type="formatText" minOccurs="0"/>
						<xs:element name="avtaladPensionsalder" type="formatText" minOccurs="0"/>
						<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
						<xs:element name="loneuppgifter" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="loneuppgift" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:sequence>
												<xs:element name="lonetyp" type="formatText" minOccurs="0"/>
												<xs:element name="ar" type="xs:integer" minOccurs="0"/>
												<xs:element name="pensionsalder" type="formatText" minOccurs="0"/>
												<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="loneperiod" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
												<xs:element name="lonedel" minOccurs="0">
													<xs:complexType>
														<xs:all>
															<xs:element name="typAvLonedel" type="formatText" minOccurs="0"/>
															<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
															<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
															<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
															<xs:element name="loneperiod" type="formatText" minOccurs="0"/>
															<xs:element name="arOverenskommenKapklPfa" type="xs:boolean" minOccurs="0"/>
															<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
														</xs:all>
													</xs:complexType>
												</xs:element>
											</xs:sequence>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="formanspaverkandeItpVal" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="avstaendeAvFamiljepension" type="formatText" minOccurs="0"/>
									<xs:element name="datumForAvstaendeAvFamiljepension" type="formatVerksamhetsDatum" minOccurs="0"/>
									<xs:element name="alternativItpVald" type="formatText" minOccurs="0"/>
									<xs:element name="itpkPremieIngarIAlternativLosning" type="xs:boolean" minOccurs="0"/>
									<xs:element name="itpUtland" type="formatText" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="lonesankningsfribrev" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="lonesankningsfribrevFinns" type="xs:boolean" minOccurs="0"/>
									<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
									<xs:element name="lonesankningsfribrev" minOccurs="0" maxOccurs="2">
										<xs:complexType>
											<xs:all>
												<xs:element name="lonesankningsfribrevPaverkarFormanAvTypen" type="formatText" minOccurs="0"/>
												<xs:element name="belopp" type="xs:decimal" minOccurs="0"/>
												<xs:element name="datum" type="formatVerksamhetsDatum" minOccurs="0"/>
												<xs:element name="valuta" type="formatValutaIsoKod" minOccurs="0"/>
												<xs:element name="konsumeringskonstant" type="formatText" minOccurs="0"/>
												<xs:element name="tillampningsspecifiktTillagg" type="strukturTillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="moment" type="strukturMoment" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:element name="mislife">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="filinformation" type="strukturFilinformation" maxOccurs="1"/>
				<xs:element name="forsakring" type="strukturForsakring" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="version" type="formatMislifeVersion" use="required"/>
		</xs:complexType>
	</xs:element>
</xs:schema>
