&lt;xsd:schema
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:quickphoto="http://quickphoto.com/xml"
  targetNamespace="http://quickphoto.com/xml"&gt;

  &lt;xsd:element name="picture" type="quickphoto:Picture" /&gt;

  &lt;xsd:complexType name="Picture"&gt;
    &lt;xsd:sequence&gt;
      &lt;xsd:element name="caption" type="xsd:string" /&gt;
      &lt;xsd:element name="who" type="xsd:string" /&gt;
      &lt;xsd:element name="cameraphone" type="xsd:string" /&gt;
      &lt;xsd:element name="datetaken" type="xsd:date" /&gt;
    &lt;/xsd:sequence&gt;
  &lt;/xsd:complexType&gt;
  
&lt;/xsd:schema&gt;
