<?xml version="1.0"?>

<!-- This code will be used to define the attributes of dimension for the element picture, 
     which will use a URL for the filemane and integers for dimensions of x and y-->
<xsd:schema xmlns:xsd="http://www.w3.org/2000/10/XMLSchema">
    <xsd:element name="picture" type="pictureType" />
	
    <xsd:complexType name="pictureType">
        <xsd:extension base="anyType">
            <xsd:attribute name="filename" type="xsd:uri-reference"/>
            <xsd:attribute name="x" type="xsd:integer" />
            <xsd:attribute name="y" type="xsd:integer" />
        </xsd:extension>
    </xsd:complexType>
</xsd:schema>
