<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
	<xs:element name="image">
		<xs:annotation>
			<xs:documentation>Image src; plus recommended width and hieght; </xs:documentation>
		</xs:annotation>
		<xs:complexType>
			<xs:attribute name="height" type="xs:integer" use="optional"/>
			<xs:attribute name="width" type="xs:integer" use="optional"/>
			<xs:attribute name="src" type="xs:anyURI" use="required"/>
			<xs:attribute name="style" type="xs:string" use="optional"/>
			<xs:attribute name="class" type="xs:string" use="optional"/>
			<xs:attribute name="border" type="xs:string" use="optional"/>
			<xs:attribute name="alt" type="xs:string" use="optional"/>
			<xs:attribute name="hspace" type="xs:string" use="optional"/>
			<xs:attribute name="vspace" type="xs:string" use="optional"/>
			<xs:attribute name="title" type="xs:string" use="optional"/>
			<xs:attribute name="id" type="xs:string" use="optional"/>
		</xs:complexType>
	</xs:element>
</xs:schema>

