﻿<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="SPF"
					 targetNamespace="http://waher.se/Schema/SPF.xsd"
					 elementFormDefault="qualified"
					 xmlns="http://waher.se/Schema/SPF.xsd"
					 xmlns:mstns="http://waher.se/Schema/SPF.xsd"
					 xmlns:xs="http://www.w3.org/2001/XMLSchema">

	<xs:element name="SpfRecords">
		<xs:complexType>
			<xs:sequence>
				<xs:element name="SpfRecord" minOccurs="0" maxOccurs="unbounded">
					<xs:complexType>
						<xs:attribute name="domain" type="xs:string" use="required"/>
						<xs:attribute name="includeSubdomains" type="xs:boolean" use="optional" default="false"/>
						<xs:attribute name="spf" type="xs:string" use="required"/>
					</xs:complexType>
				</xs:element>
			</xs:sequence>
		</xs:complexType>
	</xs:element>
</xs:schema>
