<?xml version="1.0" encoding="UTF-8"?>
  <METS:mets xmlns:METS="http://www.loc.gov/METS/" xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.loc.gov/METS/ http://www.loc.gov/mets/mets.xsd">
  <!--This bit just contains Dublin Core info. about the top level folder, e.g. 20060111ol-->
  <METS:dmdSec ID="DC">
    <METS:mdWrap MDTYPE="OTHER">
      <METS:xmlData>
        <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
          xmlns:dc="http://purl.org/dc/elements/1.1/">
          <dc:title>
            <!--Top Folder - this contains the whole accession-->
          </dc:title>
          <dc:creator>
            <!--Name of archivist responsible-->
          </dc:creator>
          <dc:subject>
            <!-- add LCSH subject -->
          </dc:subject>
          <dc:description>
            <!-- provide description -->
          </dc:description>
        </oai_dc:dc>
      </METS:xmlData>
    </METS:mdWrap>
  </METS:dmdSec>
  <METS:fileSec>
    <!--This fileGrp is a folder, so it only has a Dublin Core stream-->
    <METS:fileGrp>
      <METS:file ID="?_FOLDER_DC" MIMETYPE="text/xml">
        <METS:FContent>
          <METS:xmlData>
            <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
              xmlns:dc="http://purl.org/dc/elements/1.1/">
              <dc:title>
                <!--? Folder-->
              </dc:title>
              <dc:creator>
                <!--creator-->
              </dc:creator>
              <dc:subject>
                <!--LCSH subject-->
              </dc:subject>
              <dc:description/>
            </oai_dc:dc>
          </METS:xmlData>
        </METS:FContent>
      </METS:file>
    </METS:fileGrp>
    <!--This fileGrp is a logical object, so it has as many datastreams as we decide - we'll stick to the object stream and Dublin Core for now-->
    <METS:fileGrp>
      <METS:fileGrp>
        <!--In the METS:file tag below replace ? in the ID attribute with an id for the object; complete the mimetype in the MIMETYPE attribute-->
        <METS:file ID="?" MIMETYPE="?">
          <!--Add the exact path of the object in the xlink:href attribute of METS:Flocat below-->
          <METS:FLocat LOCTYPE="URL" xlink:href="file:///"/>
        </METS:file>
        <!--Replace the ?_DC with an ID for the object's Dublin Core stream in the METS:file tag below-->
        <METS:file ID="?_DC" MIMETYPE="text/xml">
          <METS:FContent>
            <METS:xmlData>
              <oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
                xmlns:dc="http://purl.org/dc/elements/1.1/">
                <!--Complete the Dublin Core metadata-->
                <dc:title><!--title--></dc:title>
                <dc:creator><!-- creator --></dc:creator>
                <dc:subject><!-- LCSH subject --></dc:subject>
                <dc:description><!-- description --></dc:description>
                <dc:rights><!-- rights information --></dc:rights>
              </oai_dc:dc>
            </METS:xmlData>
          </METS:FContent>
        </METS:file>
      </METS:fileGrp>
      <!-- The logical object's fileGrp ends here -->
    </METS:fileGrp>
  </METS:fileSec>  
  
  <!-- This is the beginning of the structMap -->
  <METS:structMap>
    <!-- Fill in the id of the highest level folder in the LABEL field -->
    <METS:div LABEL="?" TYPE="folder" DMDID="DC">
      <!-- This is a subfolder entry. Fill in the LABEL of the second folder and complete the FILEID -->
      <METS:div LABEL="?" TYPE="folder">
        <METS:div LABEL="Dublin Core" TYPE="dc">
          <METS:fptr FILEID="?_FOLDER_DC"/>
        </METS:div>
        <!-- This is the entry for a logical object and it has an object and a Dublin Core datastream. 
          It is nested inside the folder object so the structMap knows that the object belongs to the folder. 
          Complete the LABEL and FILEID attributes. -->
        <METS:div LABEL="?" TYPE="file">
          <METS:div LABEL="Content" TYPE="content">
            <METS:fptr FILEID="?"/>
          </METS:div>
          <METS:div LABEL="Dublin Core" TYPE="dc">
            <METS:fptr FILEID="?_DC"/>
          </METS:div>
        </METS:div>
        <!-- end entry for logical object -->
      </METS:div>
      <!-- end entry for second folder -->
    </METS:div>
    <!-- end entry for highest folder -->
  </METS:structMap>
  
</METS:mets>





