<?xml version="1.0" encoding="UTF-8"?>
<!-- Release: 2018-02-16 11:45 -->
<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="format_belopp">
		<xs:annotation>
			<xs:documentation>Formatering av siffror i ett belopp.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="\d{3,}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="format_datum">
		<xs:annotation>
			<xs:documentation>Formatering av datum, utan tid.</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="format_flaggkod">
		<xs:annotation>
			<xs:documentation>Formatering av flaggor, kan innehalla ett tecken.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="."/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="format_mislife_version">
		<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="format_text">
		<xs:restriction base="xs:string"/>
	</xs:simpleType>
	<xs:simpleType name="format_tidpunkt">
		<xs:annotation>
			<xs:documentation>Formatering av tidpunkt, datum och tid.</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="format_valuta_iso_kod">
		<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="format_artal">
		<xs:annotation>
			<xs:documentation>Formatering av artal.</xs:documentation>
		</xs:annotation>
		<xs:restriction base="xs:token">
			<xs:pattern value="\d{4}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="format_org_pnr">
		<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="grupp_organisation_min">
		<xs:sequence>
			<xs:element name="organisationsnummer" type="format_org_pnr"/>
			<xs:element name="namn" type="format_text" minOccurs="0"/>
		</xs:sequence>
	</xs:group>
	<xs:group name="grupp_organisation">
		<xs:sequence>
			<xs:element name="organisationsnummer" type="format_org_pnr"/>
			<xs:element name="organisationsnamn" type="format_text" minOccurs="0"/>
		</xs:sequence>
	</xs:group>
	<xs:group name="grupp_person">
		<xs:sequence>
			<xs:choice>
				<xs:sequence>
					<xs:element name="personnummer" type="format_org_pnr"/>
					<xs:choice>
						<xs:element name="personnamn" type="format_text"/>
						<xs:sequence>
							<xs:element name="fornamn" type="format_text"/>
							<xs:element name="efternamn" type="format_text"/>
						</xs:sequence>
					</xs:choice>
					<xs:element name="fodelsedatum" type="format_datum" minOccurs="0"/>
				</xs:sequence>
			</xs:choice>
		</xs:sequence>
	</xs:group>
	<!--
	Struktur
-->
	<xs:complexType name="struktur_tillampningspecifikt">
		<xs:annotation>
			<xs:documentation>Beskriver hur en tillampningsspecifikt element ser ut.</xs:documentation>
		</xs:annotation>
		<xs:simpleContent>
			<xs:extension base="format_text">
				<xs:attribute name="kod" type="format_text"/>
			</xs:extension>
		</xs:simpleContent>
	</xs:complexType>
	<xs:complexType name="struktur_person">
		<xs:annotation>
			<xs:documentation>Beskriver hur en person-struktur ser ut.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:group ref="grupp_person"/>
			<xs:element name="kundnummer" type="format_text" minOccurs="0"/>
			<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="struktur_organisation">
		<xs:annotation>
			<xs:documentation>Beskriver hur en organisation-struktur ser ut.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:group ref="grupp_organisation"/>
			<xs:element name="kundnummer" type="format_text" minOccurs="0"/>
			<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="struktur_organisation_min">
		<xs:sequence>
			<xs:group ref="grupp_organisation_min"/>
			<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="struktur_part">
		<xs:annotation>
			<xs:documentation>Beskriver hur en organisation-struktur ser ut.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:choice>
				<xs:group ref="grupp_organisation"/>
				<xs:group ref="grupp_person"/>
			</xs:choice>
			<xs:element name="kundnummer" type="format_text" minOccurs="0"/>
			<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="struktur_forman">
		<xs:annotation>
			<xs:documentation>Beskriver hur en förmån-struktur ser ut.</xs:documentation>
		</xs:annotation>
		<xs:sequence>
			<xs:element name="id" type="format_text" minOccurs="0"/>
			<xs:element name="namn" type="format_text" minOccurs="0"/>
			<xs:element name="utbetalningstyp" type="format_text" minOccurs="0"/>
			<xs:element name="utbetalningstermin" type="format_text" minOccurs="0"/>
			<xs:element name="utbetalningstillfalle_relativt_termin" type="format_text" minOccurs="0"/>
			<xs:element name="har_tolftedelsomraknats" type="format_text" minOccurs="0"/>
			<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
			<xs:element name="utbetalningstidpunkt" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="z_tidpunkt" type="format_datum" minOccurs="0"/>
						<xs:element name="utbetalningsalder" type="format_text" minOccurs="0"/>
						<xs:element name="ar_fast" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="utbetalningsperiod" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="utbetalningstidstyp" type="format_text" minOccurs="0"/>
						<xs:element name="utbetalningstid" type="format_text" minOccurs="0"/>
						<xs:element name="ar_fast" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
						<xs:element name="belopp" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="formanstyp" type="format_text" minOccurs="0"/>
									<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="garanterad_del_av_belopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="belopp_ej_berakningsbart" type="format_flaggkod" minOccurs="0"/>
									<xs:element name="datum" type="format_datum" minOccurs="0"/>
									<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
									<xs:element name="indexeringstyp" type="format_text" minOccurs="0"/>
									<xs:element name="indexeringsar" type="format_artal" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="struktur_forsakringsbelopp">
		<xs:sequence>
			<xs:element name="id" type="format_text" minOccurs="0"/>
			<xs:element name="typ_av_forsakringsbelopp" type="format_text" minOccurs="0"/>
			<xs:element name="utbetalningstyp" type="format_text" minOccurs="0"/>
			<xs:element name="utbetalningstermin" type="format_text" minOccurs="0"/>
			<xs:element name="utbetalningstillfalle_relativt_termin" type="format_text" minOccurs="0"/>
			<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
			<xs:element name="alder_och_tidpunktsvillkor" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:all>
						<xs:element name="typ_av_aldersvillkor" type="format_text" minOccurs="0"/>
						<xs:element name="alder" type="format_text" minOccurs="0"/>
						<xs:element name="datum" type="format_datum" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
						<xs:element name="karenstid" type="format_text" minOccurs="0"/>
						<xs:element name="enhet_for_utbetalningstid" type="format_text" minOccurs="0"/>
						<xs:element name="utbetalningstid" type="format_text" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
						<xs:element name="belopp" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="belopp_angivet_i_basbelopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="typ_av_basbelopp" type="format_text" minOccurs="0"/>
									<xs:element name="belopp_ej_berakningsbart" type="format_flaggkod" minOccurs="0"/>
									<xs:element name="datum" type="format_datum" minOccurs="0"/>
									<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
									<xs:element name="indexeringstyp" type="format_text" minOccurs="0"/>
									<xs:element name="indexeringsar" type="format_artal" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="struktur_forsakringsmoment">
		<xs:sequence>
			<xs:element name="id" type="format_text" minOccurs="0"/>
			<xs:element name="namn" type="format_text" minOccurs="0"/>
			<xs:element name="beskrivning" type="format_text" minOccurs="0"/>
			<xs:element name="momenttypkod" type="format_text" minOccurs="0"/>
			<xs:element name="kollektivavtalsspecifik_momenttypkod" type="format_text" minOccurs="0"/>
			<xs:element name="premiebestamd_eller_formansbestamd" type="format_text" minOccurs="0"/>
			<xs:element name="status" type="format_text" minOccurs="0"/>
			<xs:element name="status_galler_fran" type="format_tidpunkt" minOccurs="0"/>
			<xs:element name="kommande_status" type="format_text" minOccurs="0"/>
			<xs:element name="kommande_status_galler_fran" type="format_tidpunkt" minOccurs="0"/>
			<xs:element name="teckningsdatum" type="format_datum" minOccurs="0"/>
			<xs:element name="datering" type="format_datum" minOccurs="0"/>
			<xs:element name="teckningstyp" type="format_text" minOccurs="0"/>
			<xs:element name="skattekategori" type="format_text" minOccurs="0"/>
			<xs:element name="ar_kapitalpension" type="format_flaggkod" minOccurs="0"/>
			<xs:element name="ar_direktpension" type="format_flaggkod" minOccurs="0"/>
			<xs:element name="ar_omdisponerad" type="format_flaggkod" minOccurs="0"/>
			<xs:element name="ar_sjalvpremiebefriande" type="format_flaggkod" minOccurs="0"/>
			<xs:element name="tabellform" type="format_text" minOccurs="0"/>
			<xs:element name="tacks_av_premiedelkod" type="format_text" minOccurs="0"/>
			<xs:element name="typ_av_forsakringshandelse" type="format_text" minOccurs="0"/>
			<xs:element name="forsakringsnummer" type="format_text" minOccurs="0"/>
			<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
			<xs:element name="parter_pa_moment" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakrad" type="struktur_person" minOccurs="0"/>
						<xs:element name="medforsakrad" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="medforsakradkategori" type="format_text" minOccurs="0"/>
									<xs:element name="icke_identifierad" type="format_text" minOccurs="0"/>
									<xs:group ref="grupp_person"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="del_av_forsakrad_grupp" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="antal_i_grupp_som_tacks_av_moment" type="format_text" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="formanstagarforordnande" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="formanstagarkod" type="format_text" minOccurs="0"/>
									<xs:element name="formanstagarforordnande_kod" type="format_text" minOccurs="0"/>
									<xs:element name="formanstagarforordnande_text" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="specifik_agare_av_moment" type="struktur_part" minOccurs="0"/>
						<xs:element name="specifik_utfardare_av_moment" type="struktur_organisation" minOccurs="0"/>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="klausul" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:all>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="avgifter_pa_moment" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="administrationsavgift" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="administrationsavgift" type="format_belopp" minOccurs="0"/>
									<xs:element name="administrationsavgift_i_procent" type="format_text" minOccurs="0"/>
									<xs:element name="periodicitet_for_avgift" type="format_text" minOccurs="0"/>
									<xs:element name="debiteringsmetod" type="format_text" minOccurs="0"/>
									<xs:element name="avgift_for_kapitalid" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="inflyttat_kapital" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="inflytt_av_kapital" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
									<xs:element name="datum" type="format_datum" minOccurs="0"/>
									<xs:element name="typ_av_inflytt" type="format_text" 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="pagaende_forsakringsfall" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="startdatum" type="format_datum" minOccurs="0"/>
									<xs:element name="grad_av_forsakringsfall" type="format_text" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="pagaende_premiebefrielse" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="startdatum" type="format_datum" minOccurs="0"/>
									<xs:element name="grad_av_premiebefrielse" type="format_text" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="forsakringsrelaterade_tjanster" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakringsrelaterad_tjanst" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="bolagsspecifik_kod" type="format_text" minOccurs="0"/>
									<xs:element name="beskrivning" type="format_text" minOccurs="0"/>
									<xs:element name="beroende_av_intraffat_forsakringsfall" type="format_datum" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="forsakringshandelse" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="datum" type="format_datum" minOccurs="0"/>
									<xs:element name="typ_av_forsakringshandelse" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
						<xs:element name="vardeforandring" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="vardeutvecklingstyp" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="forman" type="struktur_forman" minOccurs="0"/>
			<xs:element name="forsakringsbelopp" type="struktur_forsakringsbelopp" minOccurs="0" maxOccurs="unbounded"/>
			<xs:element name="detaljerad_formansinformation" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="beskriver_formansid" type="format_text" minOccurs="0"/>
						<xs:element name="beskriver_alternativt_scenario" type="format_text" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
						<xs:element name="alternativt_formansscenario" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="villkor" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="villkor" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="utbetalningsalder" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="utbetalningsalder" type="format_text" minOccurs="0"/>
												<xs:element name="ar_fast" type="format_flaggkod" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="utbetalningstid" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="utbetalningstidstyp" type="format_text" minOccurs="0"/>
												<xs:element name="utbetalningstid" type="format_text" minOccurs="0"/>
												<xs:element name="ar_fast" type="format_flaggkod" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
									<xs:element name="namn" type="format_text" minOccurs="0"/>
									<xs:element name="formanskomponentstyp" type="format_text" minOccurs="0"/>
									<xs:element name="ar_antastbar" type="format_flaggkod" minOccurs="0"/>
									<xs:element name="har_tolftedelsomraknats" type="format_flaggkod" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
									<xs:element name="belopp" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="indexeringstyp" type="format_text" minOccurs="0"/>
												<xs:element name="indexeringsar" type="format_artal" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="beraknad_tjanstetid" type="format_text" minOccurs="0"/>
												<xs:element name="intjanad_tjanstetid" type="format_text" minOccurs="0"/>
												<xs:element name="ar_aktiv" type="format_flaggkod" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="tjanstetid_intjanad_till" type="format_datum" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
												<xs:element name="tjanstetidsgrans" minOccurs="0" maxOccurs="unbounded">
													<xs:complexType>
														<xs:all>
															<xs:element name="typ_av_tjanstetidsgrans" type="format_text" minOccurs="0"/>
															<xs:element name="datumgrans" type="format_datum" minOccurs="0"/>
															<xs:element name="aldersgrans" type="format_text" minOccurs="0"/>
															<xs:element name="basbeloppsgrans" type="format_text" minOccurs="0"/>
															<xs:element name="basbeloppstyp" type="format_text" minOccurs="0"/>
														</xs:all>
													</xs:complexType>
												</xs:element>
											</xs:sequence>
										</xs:complexType>
									</xs:element>
									<xs:element name="tjanstetidsfaktor" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:sequence>
												<xs:element name="beraknad_tjanstetidsfaktor" type="format_text"/>
												<xs:element name="maximal_tjanstetid" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
												<xs:element name="tjanstetidsgrans" minOccurs="0" maxOccurs="unbounded">
													<xs:complexType>
														<xs:all>
															<xs:element name="typ_av_tjanstetidsgrans" type="format_text" minOccurs="0"/>
															<xs:element name="datumgrans" type="format_datum" minOccurs="0"/>
															<xs:element name="aldersgrans" type="format_text" minOccurs="0"/>
															<xs:element name="basbeloppsgrans" type="format_text" minOccurs="0"/>
															<xs:element name="basbeloppstyp" type="format_text" minOccurs="0"/>
															<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="ar_fullstandig" type="format_flaggkod" minOccurs="0"/>
									<xs:element name="totalt_inbetalt_premiebelopp" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="totalt_inbetalt_premiebelopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="totalt_inbetald_premieavgift" type="format_belopp" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="historisk_premie" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="inbetalt_premiebelopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="inbetald_premieavgift" type="format_belopp" minOccurs="0"/>
												<xs:element name="inbetalningstermin" type="format_text" minOccurs="0"/>
												<xs:element name="inbetalningstermin_startmanad" type="format_text" minOccurs="0"/>
												<xs:element name="inbetalningstillfalle_relativt_inbetalningstermin" type="format_text" minOccurs="0"/>
												<xs:element name="betalningsdatum" type="format_datum" minOccurs="0"/>
												<xs:element name="typ_av_premie" type="format_text" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="premieuppgifter_formansbestamd_ap" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="typ_av_premie" type="format_text" minOccurs="0"/>
						<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
						<xs:element name="inbetalningstermin" type="format_text" minOccurs="0"/>
						<xs:element name="inbetalningstermin_startmanad" type="format_text" minOccurs="0"/>
						<xs:element name="inbetalningstillfalle_relativt_inbetalningstermin" type="format_text" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
						<xs:element name="forvaltningstyp" type="format_text" minOccurs="0"/>
						<xs:element name="inkluderade_garantier" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="garanterad_avkastning" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="premiegaranti" type="format_text" minOccurs="0"/>
												<xs:element name="garanterad_procentuell_avkastning" type="format_text" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="flyttbart_belopp" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="hela_kapitalet_ar_flyttbart" type="format_text" minOccurs="0"/>
												<xs:element name="flyttbart_belopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
												<xs:element name="flyttavgift_procent_av_kapital" type="format_text" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="traditionell_forvaltning" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="retrospektivreserv" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="retrospektivreserv" type="format_belopp" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="tekniskt_aterkopsvarde" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="tekniskt_aterkopsvarde" type="format_belopp" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="individuell_forvaltning" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="totalt_innehav" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="totalt_aktuellt_innehav" type="format_belopp" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
												<xs:element name="nr" type="format_text" minOccurs="0"/>
												<xs:element name="depaavgift" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
												<xs:element name="innehavstyp" type="format_text" minOccurs="0"/>
												<xs:element name="namn" type="format_text" minOccurs="0"/>
												<xs:element name="antal" type="format_text" minOccurs="0"/>
												<xs:element name="varde" type="format_belopp" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="framtida_premieandel_i_procent" type="format_text" minOccurs="0"/>
												<xs:element name="isin" type="format_text" minOccurs="0"/>
												<xs:element name="forvaltningsavgift_i_procent" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
												<xs:element name="bolagsspecifik_produkt" minOccurs="0" maxOccurs="unbounded">
													<xs:complexType>
														<xs:all>
															<xs:element name="bolagsspecifik_kod" type="format_text" minOccurs="0"/>
															<xs:element name="bolagsspecifik_beskrivning" type="format_text" minOccurs="0"/>
															<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="inkluderade_sjukvardskostnader" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakringsbelopp" type="struktur_forsakringsbelopp" minOccurs="0"/>
						<xs:element name="inkluderat_kostnadsskydd" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="bolagsspecifik_kod" type="format_text" minOccurs="0"/>
									<xs:element name="bolagsspecifik_beskrivning" type="format_text" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="inkluderade_diagnoser" minOccurs="0" maxOccurs="unbounded">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="forsakringsbelopp" type="struktur_forsakringsbelopp" minOccurs="0"/>
						<xs:element name="inkluderad_diagnos" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="diagnoskod" type="format_text" minOccurs="0"/>
									<xs:element name="beskrivning_av_diagnos" type="format_text" 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="struktur_forsakringsbelopp" minOccurs="0"/>
						<xs:element name="detaljerat_riskmomentbelopp" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="bolagsspecifik_kod" type="format_text" minOccurs="0"/>
									<xs:element name="bolagsspecifik_beskrivning" type="format_text" 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="ar_extern_premiebefrielse" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="ar_intern_premiebefrielse" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="omfattar_hela_forsakringen" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="premiebefriat_moment" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="premiebefriat_moment" type="format_text" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="premiebefriad_premiedel" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="premiebefriad_premiedel" type="format_text" 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="aterbetalningsskydd_for_momentid" type="format_text" minOccurs="0"/>
						<xs:element name="del_av_forsakringskapital_i_procent" type="format_text" minOccurs="0"/>
						<xs:element name="eget_angiven_forman" type="format_text" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
						<xs:element name="forman" type="struktur_forman" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="formansunderlag" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="inkluderad_aterbaring" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="beraknad_aterbaring" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:sequence>
												<xs:element name="aterbaringstyp" type="format_text" minOccurs="0"/>
												<xs:element name="beraknad_aterbaring_i_procent" type="format_text" 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="overgangsbestammelse_pakfs" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="var_ansluten_20081231" type="format_flaggkod" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="overgangsbestammelse_kapkl" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="ipr_over_7_5_ibb" type="format_flaggkod" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="overgangsbestammelse_pa03" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="typ" type="format_text"/>
												<xs:element name="pensionsalder" type="format_text" 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="samordningsuppgift" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="id" type="format_text" minOccurs="0"/>
												<xs:element name="tolftedelsomraknas" type="format_text" minOccurs="0"/>
												<xs:element name="uttagsalder" type="format_text" minOccurs="0"/>
												<xs:element name="uttagstid" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
												<xs:element name="forvaltare" type="struktur_organisation" minOccurs="0"/>
												<xs:element name="samordnat_belopp" minOccurs="0">
													<xs:complexType>
														<xs:all>
															<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
															<xs:element name="datum" type="format_datum" minOccurs="0"/>
															<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
															<xs:element name="indexeringstyp" type="format_text" minOccurs="0"/>
															<xs:element name="indexeringsar" type="format_artal" minOccurs="0"/>
															<xs:element name="exkl_forman_under_7_5_ibb" type="format_text" minOccurs="0"/>
															<xs:element name="termin" type="format_text" minOccurs="0"/>
															<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="sjukforsakring_modell" type="format_text" minOccurs="0"/>
					</xs:all>
				</xs:complexType>
			</xs:element>
		</xs:sequence>
	</xs:complexType>
	<xs:complexType name="struktur_forsakring">
		<xs:sequence>
			<xs:element name="id" minOccurs="0"/>
			<xs:element name="informationstidpunkt" type="format_tidpunkt" minOccurs="0"/>
			<xs:element name="andringstidpunkt" type="format_tidpunkt" minOccurs="0"/>
			<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
			<xs:element name="parter_pa_forsakring">
				<xs:complexType>
					<xs:all>
						<xs:element name="forsakrad" type="struktur_person" minOccurs="0"/>
						<xs:element name="forsakringsgivare" type="struktur_organisation" minOccurs="0"/>
						<xs:element name="forsakringstagare" type="struktur_part" minOccurs="0"/>
						<xs:element name="panthavare" type="struktur_part" minOccurs="0"/>
						<xs:element name="valcentral" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:group ref="grupp_organisation_min"/>
									<xs:element name="forsakringsidentifikation_hos_valcentral" type="format_text" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="forsakrad_grupp" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="antal" type="xs:integer" minOccurs="0"/>
									<xs:element name="kon" type="format_text" minOccurs="0"/>
									<xs:element name="aldersintervall" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
						<xs:element name="forsakringsbeskrivning" type="format_text" minOccurs="0"/>
						<xs:element name="teckningsdatum" type="format_datum" minOccurs="0"/>
						<xs:element name="datering" type="format_tidpunkt" minOccurs="0"/>
						<xs:element name="huvudforfallodag" type="format_datum" minOccurs="0"/>
						<xs:element name="betald_till" type="format_datum" minOccurs="0"/>
						<xs:element name="fakturerad_till" type="format_datum" minOccurs="0"/>
						<xs:element name="tryggad_i_egen_regi" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="ar_nastlad" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
						<xs:element name="avtalskoppling" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="avtalsid" type="format_text" minOccurs="0"/>
									<xs:element name="avtalsnummer" type="format_text" minOccurs="0"/>
									<xs:element name="affarsnamn" type="format_text" minOccurs="0"/>
									<xs:element name="kategori_formansgrupp" type="format_text" minOccurs="0"/>
									<xs:element name="kategori_formansgrupp_nummer" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="forsakringspaketeringskoppling" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="forsakringspaketeringsnummer" type="format_text" minOccurs="0"/>
									<xs:element name="beskrivning_av_forsakringspaketering" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="kollektivavtalskoppling" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="ar_kollektivavtalad" type="format_text" minOccurs="0"/>
									<xs:element name="avtalsomrade" type="format_text" minOccurs="0"/>
									<xs:element name="avdelning" type="format_text" minOccurs="0"/>
									<xs:element name="kollektivavtal" type="format_text" minOccurs="0"/>
									<xs:element name="kollektivavtalsspecifik_anstallningskategori" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="produktkoppling" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="produktid" type="format_text" minOccurs="0"/>
									<xs:element name="produktkod" type="format_text" minOccurs="0"/>
									<xs:element name="produktnamn" type="format_text" minOccurs="0"/>
									<xs:element name="produktdelid" type="format_text" minOccurs="0"/>
									<xs:element name="produktdelkod" type="format_text" minOccurs="0"/>
									<xs:element name="produktdelnamn" type="format_text" minOccurs="0"/>
									<xs:element name="referens_till_produktbeskrivning" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="tidigare_identitet" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="forsakringsnummer" type="format_text" minOccurs="0"/>
									<xs:element name="ar_ersatt" type="format_flaggkod" minOccurs="0"/>
									<xs:element name="giltig_tom" type="format_datum" minOccurs="0"/>
									<xs:element name="anledning_till_identitetsforandring" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="underliggande_forsakring" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="forsakringsnummer" type="format_text" 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="typ_av_fullmakt" type="format_text" minOccurs="0"/>
									<xs:element name="fullmaktsniva" type="format_text" minOccurs="0"/>
									<xs:element name="forsakringsmaklarkod" type="format_text" minOccurs="0"/>
									<xs:element name="forsakringsmaklarbolagskod" type="format_text" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:all>
				</xs:complexType>
			</xs:element>
			<xs:element name="avgifter_pa_forsakring" minOccurs="0">
				<xs:complexType>
					<xs:all>
						<xs:element name="forsakringsavgift">
							<xs:complexType>
								<xs:all>
									<xs:element name="forsakringsavgift" type="format_belopp" minOccurs="0"/>
									<xs:element name="periodicitet_for_avgift" type="format_text" minOccurs="0"/>
									<xs:element name="debiteringsmetod" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="premieavgift" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="premieavgift" type="format_belopp" minOccurs="0"/>
									<xs:element name="premieavgift_procent" type="format_text" minOccurs="0"/>
									<xs:element name="galler_for_premietyp" type="format_text" minOccurs="0"/>
									<xs:element name="debiteringsmetod" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
									<xs:element name="typ_av_momentgrupp" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
									<xs:element name="ingaende_moment" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="momentid" type="format_text" minOccurs="0"/>
												<xs:element name="ordning_inom_grupp" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
									<xs:element name="typ_av_belopp_formansgrupp" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
									<xs:element name="ingaende_belopp" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="beloppid" type="format_text" minOccurs="0"/>
												<xs:element name="formansid" type="format_text" minOccurs="0"/>
												<xs:element name="ordning_inom_grupp" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
						<xs:element name="typ_av_premieforfarande" type="format_text" minOccurs="0"/>
						<xs:element name="externt_premiesatt" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="betalningssatt" type="format_text" minOccurs="0"/>
						<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
						<xs:element name="inbetalningstermin" type="format_text" minOccurs="0"/>
						<xs:element name="inbetalningstermin_startmanad" type="format_text" minOccurs="0"/>
						<xs:element name="inbetalningstillfalle_relativt_termin" type="format_text" minOccurs="0"/>
						<xs:element name="indexeringstyp" type="format_text" minOccurs="0"/>
						<xs:element name="slutdatum_premie" type="format_datum" minOccurs="0"/>
						<xs:element name="annan_premieavisat" minOccurs="0">
							<xs:complexType>
								<xs:complexContent>
									<xs:extension base="struktur_part">
										<xs:sequence>
											<xs:element name="avisat_pa_premiedelid" type="format_text"/>
										</xs:sequence>
									</xs:extension>
								</xs:complexContent>
							</xs:complexType>
						</xs:element>
						<xs:element name="extern_premiesattare" type="struktur_organisation" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
						<xs:element name="avtalad_premie" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="avtalat_premiebelopp" type="format_belopp" minOccurs="0"/>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="premiedel" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="premiedelkod" type="format_text" minOccurs="0"/>
									<xs:element name="premiedelbeskrivning" type="format_text" minOccurs="0"/>
									<xs:element name="fordelning_av_total_premie_i_procent" type="format_text" minOccurs="0"/>
									<xs:element name="fordelning_av_total_premie" type="format_belopp" minOccurs="0"/>
									<xs:element name="premiedel_fordelas_aterstaende_belopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="premieforfarande_enligt_pensionsplan" minOccurs="0">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="frilagd_premie_alternativ_itp" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="frilagd_premie" type="format_belopp" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="aktuell_premie_enligt_pensionsplan" minOccurs="0">
										<xs:complexType>
											<xs:all>
												<xs:element name="nettopremiebelopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="bruttopremiebelopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
									<xs:element name="aktuell_premiedel_enligt_pensionsplan" minOccurs="0" maxOccurs="unbounded">
										<xs:complexType>
											<xs:all>
												<xs:element name="premiedelkod" type="format_text" minOccurs="0"/>
												<xs:element name="nettopremiebelopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="bruttopremiebelopp" type="format_belopp" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="premiehistorik" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="ar_fullstandig" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="datum_for_senaste_premie" type="format_datum" minOccurs="0"/>
						<xs:element name="totalt_inbetalt_premiebelopp" minOccurs="0">
							<xs:complexType>
								<xs:all>
									<xs:element name="inbetalt_premiebelopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="inbetald_premieavgift" type="format_belopp" minOccurs="0"/>
									<xs:element name="typ_av_premie" type="format_text" minOccurs="0"/>
									<xs:element name="datum" type="format_datum" minOccurs="0"/>
									<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="historisk_premie" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="inbetalt_premiebelopp" type="format_belopp" minOccurs="0"/>
									<xs:element name="inbetald_premieavgift" type="format_belopp" minOccurs="0"/>
									<xs:element name="inbetalningstermin" type="format_text" minOccurs="0"/>
									<xs:element name="inbetalningstermin_startmanad" type="format_text" minOccurs="0"/>
									<xs:element name="inbetalningstillfalle_relativt_termin" type="format_text" minOccurs="0"/>
									<xs:element name="betalningsdatum" type="format_datum" minOccurs="0"/>
									<xs:element name="typ_av_premie" type="format_text" minOccurs="0"/>
									<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="undantag" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="uppgifter_utelamnas" type="format_flaggkod" minOccurs="0"/>
						<xs:element name="standardkod" type="format_text" minOccurs="0"/>
						<xs:element name="internkod" type="format_text" minOccurs="0"/>
						<xs:element name="extra_information" type="format_text" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
						<xs:element name="ingaende_moment" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="momentid" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="formansgrundande_uppgifter" minOccurs="0">
				<xs:complexType>
					<xs:sequence>
						<xs:element name="prognosstart" type="format_text" minOccurs="0"/>
						<xs:element name="anstalld_alla_dagar_under_prognosaret" type="format_text" minOccurs="0"/>
						<xs:element name="anslutningsar" type="format_text" minOccurs="0"/>
						<xs:element name="avtalad_pensionsalder" type="format_text" minOccurs="0"/>
						<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" 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="format_text" minOccurs="0"/>
												<xs:element name="ar" type="format_artal" minOccurs="0"/>
												<xs:element name="pensionsalder" type="format_text" minOccurs="0"/>
												<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="loneperiod" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
												<xs:element name="lonedel" minOccurs="0">
													<xs:complexType>
														<xs:all>
															<xs:element name="typ_av_lonedel" type="format_text" minOccurs="0"/>
															<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
															<xs:element name="datum" type="format_datum" minOccurs="0"/>
															<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
															<xs:element name="loneperiod" type="format_text" minOccurs="0"/>
															<xs:element name="ar_overenskommen_kapkl_pfa" type="format_flaggkod" minOccurs="0"/>
															<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
														</xs:all>
													</xs:complexType>
												</xs:element>
											</xs:sequence>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
						<xs:element name="formanspaverkande_itp_val" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:all>
									<xs:element name="avstaende_av_familjepension" type="format_text" minOccurs="0"/>
									<xs:element name="datum_for_avstaende_av_familjepension" type="format_datum" minOccurs="0"/>
									<xs:element name="alternativ_itp_vald" type="format_text" minOccurs="0"/>
									<xs:element name="itpk_premie_ingar_i_alternativ_losning" type="format_flaggkod" minOccurs="0"/>
									<xs:element name="itp_utland" type="format_text" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
								</xs:all>
							</xs:complexType>
						</xs:element>
						<xs:element name="uppgift_om_lonesankningsfribrev" minOccurs="0" maxOccurs="unbounded">
							<xs:complexType>
								<xs:sequence>
									<xs:element name="lonesankningsfribrev_finns" type="format_flaggkod" minOccurs="0"/>
									<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
									<xs:element name="lonesankningsfribrev" minOccurs="0" maxOccurs="2">
										<xs:complexType>
											<xs:all>
												<xs:element name="lonesankningsfribrev_paverkar_forman_av_typen" type="format_text" minOccurs="0"/>
												<xs:element name="belopp" type="format_belopp" minOccurs="0"/>
												<xs:element name="datum" type="format_datum" minOccurs="0"/>
												<xs:element name="valuta" type="format_valuta_iso_kod" minOccurs="0"/>
												<xs:element name="konsumeringskonstant" type="format_text" minOccurs="0"/>
												<xs:element name="tillampningsspecifikt_tillagg" type="struktur_tillampningspecifikt" minOccurs="0"/>
											</xs:all>
										</xs:complexType>
									</xs:element>
								</xs:sequence>
							</xs:complexType>
						</xs:element>
					</xs:sequence>
				</xs:complexType>
			</xs:element>
			<xs:element name="forsakringsmoment" type="struktur_forsakringsmoment" minOccurs="0" maxOccurs="unbounded"/>
		</xs:sequence>
	</xs:complexType>
	<xs:element name="mislife">
		<xs:annotation>
			<xs:documentation>Strukturens rot-element.</xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:sequence>
				<xs:element name="avsandare" type="struktur_organisation" minOccurs="1"/>
				<xs:element name="mottagare" type="struktur_organisation" minOccurs="1"/>
				<xs:element name="skapad_tidpunkt" type="format_tidpunkt" minOccurs="1"/>
				<xs:element name="transaktions_identitet" type="format_text" minOccurs="0"/>
				<xs:element name="forsakring" type="struktur_forsakring" minOccurs="0" maxOccurs="unbounded"/>
			</xs:sequence>
			<xs:attribute name="version" type="format_mislife_version" use="required"/>
		</xs:complexType>
	</xs:element>
</xs:schema>
