From f5c7686d039d084f47abd6096ab6496cdbb5e14a Mon Sep 17 00:00:00 2001
From: Jens Steidl <Jens.Steidl@slub-dresden.de>
Date: Wed, 28 Sep 2022 16:53:58 +0200
Subject: [PATCH] fix: add missing xsd files

---
 .../jhove/schema.ccs-gmbh.com/alto-1-2.xsd    |  693 +++++++++++
 .../jhove/schema.ccs-gmbh.com/mets-metae.xsd  | 1081 +++++++++++++++++
 .../conf/jhove/schema.ccs-gmbh.com/xlink.xsd  |   74 ++
 vars/main.yml                                 |    6 +-
 4 files changed, 1851 insertions(+), 3 deletions(-)
 create mode 100644 files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/alto-1-2.xsd
 create mode 100644 files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/mets-metae.xsd
 create mode 100644 files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/xlink.xsd

diff --git a/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/alto-1-2.xsd b/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/alto-1-2.xsd
new file mode 100644
index 0000000..194b3e9
--- /dev/null
+++ b/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/alto-1-2.xsd
@@ -0,0 +1,693 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- ALTO: Analyzed Layout and Text Object -->
+<!-- Copyright 2004-2006 CCS Content Conversion Specialists GmbH, Germany -->
+<!-- Prepared for the Library of Congress by Ralph Tiede, CCS GmbH,
+with the assistance of Gregor Retti (Unisversity of Innsbruck), Alexander Egger (University of Graz), Justin Littman (Library of Congress).
+-->
+<!-- December 14, 2004 -->
+<!-- Version 1.2-02 -->
+<!-- Change History -->
+<!-- June 22, 2004: Version finalized for docWORKS/METAe -->
+<!-- November 19, 2004: Modifications requested by Justin Littman -->
+<!-- Modifications of November 19, 2004: 
+	1. add "Description" element
+	2. change "InnerMargin/OuterMargin" to "LeftMargin/RightMargin", add "POSITION" attribute to "PAGE" element
+	3. add "PROCESSING" attribute to "PAGE" element
+	4. internal changes to validate with Xerces parser
+	5. define fontstyles by enumerations
+	6. change "WC" (word confidence) attribute to xsd:float in range of "0" to "1".
+	7. Add "ALTERNATIVE" als childs to "STRING" element 
+	8. Add "language" attribute to "Textblock" and "STRING" element
+-->
+<!-- Modifications of December 02, 2004: 
+	1. fixed problem with multiple use of blockgroup
+	2. add measurement enumeration 'inch1200'
+-->
+<!-- Modifications of December 14, 2004:
+      1. "FILEID" (attribute of "ComposedBlock"): change type from xsd:IDREF to xsd:string
+      2. include minor changes requested by JDL
+      3. change "ZORDER" to "IDNEXT" (attribute of "BlockType")
+-->
+<!-- Modifications of February 24, 2006:
+      1. ACCURACY attribute added to PAGE element to store information on OCR accuracy
+      2. CS attribute added to TEXTLINE element to indicate manual correction status
+-->
+<!-- Modifications of June 30, 2010:
+      1. Allowed two versions of spelling of "As in original" because of spelling mistake and for compatibility reason with alto 1.4
+-->
+<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/TR/xlink" elementFormDefault="qualified" attributeFormDefault="unqualified">
+	<xsd:import namespace="http://www.w3.org/TR/xlink" schemaLocation="http://schema.ccs-gmbh.com/METAe/xlink.xsd"/>
+	<xsd:element name="alto">
+		<xsd:annotation>
+			<xsd:documentation>ALTO (analyzed layout and text object) stores layout information and 
+			OCR recognized text of pages of any kind of printed documents like books, journals and newspapers.
+			ALTO is a standardized XML format to store layout and content information.
+			It is designed to be used as an extension schema to METS (Metadata Encoding and Transmission Standard),
+			where METS provides metadata and structural information while ALTO contains content and physical information.
+			</xsd:documentation>
+		</xsd:annotation>
+		<xsd:complexType>
+			<xsd:sequence>
+				<xsd:element name="Description" minOccurs="0">
+					<xsd:annotation>
+						<xsd:documentation>Describes general settings of the alto file like measurement units and metadata</xsd:documentation>
+					</xsd:annotation>
+					<xsd:complexType>
+						<xsd:sequence>
+							<xsd:element name="MeasurementUnit" minOccurs="0">
+								<xsd:annotation>
+									<xsd:documentation>All measurement values inside the alto file except fontsize are related to this unit. The default is 1/10 of mm</xsd:documentation>
+								</xsd:annotation>
+								<xsd:simpleType>
+									<xsd:restriction base="xsd:string">
+										<xsd:enumeration value="pixel"/>
+										<xsd:enumeration value="mm10"/>
+										<xsd:enumeration value="inch1200"/>
+									</xsd:restriction>
+								</xsd:simpleType>
+							</xsd:element>
+							<xsd:element name="sourceImageInformation" type="sourceImageInformationType" minOccurs="0"/>
+							<xsd:element name="OCRProcessing" minOccurs="0" maxOccurs="unbounded">
+								<xsd:complexType>
+									<xsd:complexContent>
+										<xsd:extension base="ocrProcessingType">
+											<xsd:attribute name="ID" type="xsd:ID" use="required"/>
+										</xsd:extension>
+									</xsd:complexContent>
+								</xsd:complexType>
+							</xsd:element>
+						</xsd:sequence>
+					</xsd:complexType>
+				</xsd:element>
+				<xsd:element name="Styles" minOccurs="0">
+					<xsd:annotation>
+						<xsd:documentation>Styles define properties of layout elements. A style defined in a parent element is used as default style for all related children elements. </xsd:documentation>
+					</xsd:annotation>
+					<xsd:complexType>
+						<xsd:sequence>
+							<xsd:element name="TextStyle" minOccurs="0" maxOccurs="unbounded">
+								<xsd:annotation>
+									<xsd:documentation>A text style defines font properties of text. </xsd:documentation>
+								</xsd:annotation>
+								<xsd:complexType>
+									<xsd:attribute name="ID" type="xsd:ID"/>
+									<xsd:attributeGroup ref="formattingAttributeGroup"/>
+								</xsd:complexType>
+							</xsd:element>
+							<xsd:element name="ParagraphStyle" minOccurs="0" maxOccurs="unbounded">
+								<xsd:annotation>
+									<xsd:documentation>A paragraph style defines formatting properties of text blocks.</xsd:documentation>
+								</xsd:annotation>
+								<xsd:complexType>
+									<xsd:attribute name="ID" type="xsd:ID" use="required"/>
+									<xsd:attribute name="ALIGN" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Indicates the alignement of the paragraph. Could be left, right, center or justify.</xsd:documentation>
+										</xsd:annotation>
+										<xsd:simpleType>
+											<xsd:restriction base="xsd:string">
+												<xsd:enumeration value="Left"/>
+												<xsd:enumeration value="Right"/>
+												<xsd:enumeration value="Center"/>
+												<xsd:enumeration value="Block"/>
+											</xsd:restriction>
+										</xsd:simpleType>
+									</xsd:attribute>
+									<xsd:attribute name="LEFT" type="xsd:float" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Left indent of the paragraph in relation to the column.</xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+									<xsd:attribute name="RIGHT" type="xsd:float" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Right indent of the paragraph in relation to the column.</xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+									<xsd:attribute name="LINESPACE" type="xsd:float" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Line spacing between two lines of the paragraph. Measurement calculated from baseline to baseline.</xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+									<xsd:attribute name="FIRSTLINE" type="xsd:float" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Indent of the first line of the paragraph if this is different from the other lines. A negative value indicates an indent to the left, a positive value indicates an indent to the right.</xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+								</xsd:complexType>
+							</xsd:element>
+						</xsd:sequence>
+					</xsd:complexType>
+				</xsd:element>
+				<xsd:element name="Layout">
+					<xsd:annotation>
+						<xsd:documentation>The root layout element.</xsd:documentation>
+					</xsd:annotation>
+					<xsd:complexType>
+						<xsd:sequence>
+							<xsd:element name="Page" maxOccurs="unbounded">
+								<xsd:annotation>
+									<xsd:documentation>One page of a book or journal.</xsd:documentation>
+								</xsd:annotation>
+								<xsd:complexType>
+									<xsd:sequence>
+										<xsd:element name="TopMargin" type="PageSpaceType" minOccurs="0">
+											<xsd:annotation>
+												<xsd:documentation>The area between the top line of print and the upper edge of the leaf. It may contain page number or running title.</xsd:documentation>
+											</xsd:annotation>
+										</xsd:element>
+										<xsd:element name="LeftMargin" type="PageSpaceType" minOccurs="0">
+											<xsd:annotation>
+												<xsd:documentation>The area between the printspace and the left border of a page. May contain margin notes.</xsd:documentation>
+											</xsd:annotation>
+										</xsd:element>
+										<xsd:element name="RightMargin" type="PageSpaceType" minOccurs="0">
+											<xsd:annotation>
+												<xsd:documentation>The area between the printspace and the right border of a page. May contain margin notes.</xsd:documentation>
+											</xsd:annotation>
+										</xsd:element>
+										<xsd:element name="BottomMargin" type="PageSpaceType" minOccurs="0">
+											<xsd:annotation>
+												<xsd:documentation>The area between the bottom line of letterpress or writing and the bottom edge of the leaf. It may contain a page number, a signature number or a catch word.</xsd:documentation>
+											</xsd:annotation>
+										</xsd:element>
+										<xsd:element name="PrintSpace" type="PageSpaceType" minOccurs="0">
+											<xsd:annotation>
+												<xsd:documentation>Rectangle covering the printed area of a page. Page number and running title are not part of the print space. </xsd:documentation>
+											</xsd:annotation>
+										</xsd:element>
+									</xsd:sequence>
+									<xsd:attribute name="ID" type="xsd:ID" use="required"/>
+									<xsd:attribute name="PAGECLASS" type="xsd:string" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Any user-defined class like title page.</xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+									<xsd:attribute name="STYLEREFS" type="xsd:IDREFS" use="optional"/>
+									<xsd:attribute name="HEIGHT" type="xsd:int" use="optional"/>
+									<xsd:attribute name="WIDTH" type="xsd:int" use="optional"/>
+									<xsd:attribute name="PHYSICAL_IMG_NR" type="xsd:int" use="required">
+										<xsd:annotation>
+											<xsd:documentation>The number of the page within the document.</xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+									<xsd:attribute name="PRINTED_IMG_NR" type="xsd:string" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>The page number that is printed on the page.</xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+									<xsd:attribute name="QUALITY" use="optional">
+										<xsd:simpleType>
+											<xsd:restriction base="xsd:string">
+												<xsd:enumeration value="OK"/>
+												<xsd:enumeration value="Missing"/>
+												<xsd:enumeration value="Missing in original"/>
+												<xsd:enumeration value="Damaged"/>
+												<xsd:enumeration value="Retained"/>
+												<xsd:enumeration value="Target"/>
+												<xsd:enumeration value="As in Original"/>
+												<xsd:enumeration value="As in original"/>
+											</xsd:restriction>
+										</xsd:simpleType>
+									</xsd:attribute>
+									<xsd:attribute name="POSITION" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Position of the page. Could be lefthanded, righthanded, foldout or single if it has no special position.</xsd:documentation>
+										</xsd:annotation>
+										<xsd:simpleType>
+											<xsd:restriction base="xsd:string">
+												<xsd:enumeration value="Left"/>
+												<xsd:enumeration value="Right"/>
+												<xsd:enumeration value="Foldout"/>
+												<xsd:enumeration value="Single"/>
+											</xsd:restriction>
+										</xsd:simpleType>
+									</xsd:attribute>
+									<xsd:attribute name="PROCESSING" type="xsd:IDREF" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>A link to the processing description that has been used for this page.</xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+									<xsd:attribute name="ACCURACY" type="xsd:float" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Estimated percentage of OCR Accuracy </xsd:documentation>
+										</xsd:annotation>
+									</xsd:attribute>
+									<xsd:attribute name="PC" use="optional">
+										<xsd:annotation>
+											<xsd:documentation>Page Confidence: Confidence level of the ocr for this page. A value between 0 and 1.  </xsd:documentation>
+										</xsd:annotation>
+										<xsd:simpleType>
+											<xsd:restriction base="xsd:float">
+												<xsd:minInclusive value="0"/>
+												<xsd:maxInclusive value="1"/>
+											</xsd:restriction>
+										</xsd:simpleType>
+									</xsd:attribute>
+								</xsd:complexType>
+							</xsd:element>
+						</xsd:sequence>
+						<xsd:attribute name="STYLEREFS" type="xsd:IDREFS"/>
+					</xsd:complexType>
+				</xsd:element>
+			</xsd:sequence>
+		</xsd:complexType>
+	</xsd:element>
+	<xsd:group name="BlockGroup">
+		<xsd:annotation>
+			<xsd:documentation>Group of available block types</xsd:documentation>
+		</xsd:annotation>
+		<xsd:choice>
+			<xsd:element name="TextBlock" type="TextBlockType">
+				<xsd:annotation>
+					<xsd:documentation>A block of text.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="Illustration" type="IllustrationType">
+				<xsd:annotation>
+					<xsd:documentation>A picture or image.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="GraphicalElement" type="GraphicalElementType">
+				<xsd:annotation>
+					<xsd:documentation>A graphic used to separate blocks. Usually a line or rectangle.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="ComposedBlock" type="ComposedBlockType">
+				<xsd:annotation>
+					<xsd:documentation>A block that consists of other blocks</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+		</xsd:choice>
+	</xsd:group>
+	<xsd:complexType name="BlockType">
+		<xsd:annotation>
+			<xsd:documentation>Base type for any kind of block on the page.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence minOccurs="0">
+			<xsd:element name="Shape" type="ShapeType"/>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="required"/>
+		<xsd:attribute name="STYLEREFS" type="xsd:IDREFS"/>
+		<xsd:attribute name="HEIGHT" type="xsd:int" use="required"/>
+		<xsd:attribute name="WIDTH" type="xsd:int" use="required"/>
+		<xsd:attribute name="HPOS" type="xsd:int" use="required"/>
+		<xsd:attribute name="VPOS" type="xsd:int" use="required"/>
+		<xsd:attribute name="ROTATION" type="xsd:float" use="optional">
+			<xsd:annotation>
+				<xsd:documentation>Tells the rotation of the block e.g. text or illustration. The value is in degree counterclockwise.</xsd:documentation>
+			</xsd:annotation>
+		</xsd:attribute>
+		<xsd:attribute name="IDNEXT" type="xsd:IDREF" use="optional">
+			<xsd:annotation>
+				<xsd:documentation>The next block in reading sequence on the page.</xsd:documentation>
+			</xsd:annotation>
+		</xsd:attribute>
+		<xsd:attributeGroup ref="xlink:simpleLink"/>
+	</xsd:complexType>
+	<xsd:complexType name="StringType" mixed="false">
+		<xsd:annotation>
+			<xsd:documentation>A sequence of chars. Strings are separated by white spaces or hyphenation chars.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence minOccurs="0">
+			<xsd:element name="ALTERNATIVE" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>Any alternative for the word.</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:simpleContent>
+						<xsd:extension base="xsd:string">
+							<xsd:attribute name="PURPOSE" type="xsd:string" use="optional">
+								<xsd:annotation>
+									<xsd:documentation>Identifies the purpose of the alternative.</xsd:documentation>
+								</xsd:annotation>
+							</xsd:attribute>
+						</xsd:extension>
+					</xsd:simpleContent>
+				</xsd:complexType>
+			</xsd:element>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="STYLEREFS" type="xsd:IDREFS" use="optional"/>
+		<xsd:attribute name="HEIGHT" type="xsd:float" use="optional"/>
+		<xsd:attribute name="WIDTH" type="xsd:float" use="optional"/>
+		<xsd:attribute name="HPOS" type="xsd:float" use="optional"/>
+		<xsd:attribute name="VPOS" type="xsd:float" use="optional"/>
+		<xsd:attribute name="CONTENT" use="required">
+			<xsd:simpleType>
+				<xsd:restriction base="xsd:string">
+					<xsd:whiteSpace value="preserve"/>
+				</xsd:restriction>
+			</xsd:simpleType>
+		</xsd:attribute>
+		<xsd:attribute name="STYLE" type="fontStylesType" use="optional"/>
+		<xsd:attribute name="SUBS_TYPE" use="optional">
+			<xsd:annotation>
+				<xsd:documentation>Type of the substitution (if any).</xsd:documentation>
+			</xsd:annotation>
+			<xsd:simpleType>
+				<xsd:restriction base="xsd:string">
+					<xsd:enumeration value="HypPart1"/>
+					<xsd:enumeration value="HypPart2"/>
+					<xsd:enumeration value="Abbreviation"/>
+				</xsd:restriction>
+			</xsd:simpleType>
+		</xsd:attribute>
+		<xsd:attribute name="SUBS_CONTENT" type="xsd:string" use="optional">
+			<xsd:annotation>
+				<xsd:documentation>Content of the substiution.</xsd:documentation>
+			</xsd:annotation>
+		</xsd:attribute>
+		<xsd:attribute name="WC" use="optional">
+			<xsd:annotation>
+				<xsd:documentation>Word Confidence: Confidence level of the ocr for this string. A value between 0 and 1.  </xsd:documentation>
+			</xsd:annotation>
+			<xsd:simpleType>
+				<xsd:restriction base="xsd:float">
+					<xsd:minInclusive value="0"/>
+					<xsd:maxInclusive value="1"/>
+				</xsd:restriction>
+			</xsd:simpleType>
+		</xsd:attribute>
+		<xsd:attribute name="CC" type="xsd:string" use="optional">
+			<xsd:annotation>
+				<xsd:documentation>Confidence level of each character in that string. A list of numbers, one number between 0 and 9 for each character.</xsd:documentation>
+			</xsd:annotation>
+		</xsd:attribute>
+	</xsd:complexType>
+	<xsd:complexType name="PageSpaceType">
+		<xsd:annotation>
+			<xsd:documentation>A region on a page</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence minOccurs="0" maxOccurs="unbounded">
+			<xsd:group ref="BlockGroup"/>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="STYLEREFS" type="xsd:IDREFS" use="optional"/>
+		<xsd:attribute name="HEIGHT" type="xsd:float" use="required"/>
+		<xsd:attribute name="WIDTH" type="xsd:float" use="required"/>
+		<xsd:attribute name="HPOS" type="xsd:float" use="required"/>
+		<xsd:attribute name="VPOS" type="xsd:float" use="required"/>
+	</xsd:complexType>
+	<xsd:simpleType name="PointsType">
+		<xsd:annotation>
+			<xsd:documentation>A list of points</xsd:documentation>
+		</xsd:annotation>
+		<xsd:restriction base="xsd:string"/>
+	</xsd:simpleType>
+	<xsd:complexType name="ShapeType">
+		<xsd:annotation>
+			<xsd:documentation>Describes the bounding shape of a block, if it is not rectangular.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:choice>
+			<xsd:element name="Polygon" type="PolygonType"/>
+			<xsd:element name="Ellipse" type="EllipseType"/>
+			<xsd:element name="Circle" type="CircleType"/>
+		</xsd:choice>
+	</xsd:complexType>
+	<xsd:complexType name="PolygonType">
+		<xsd:annotation>
+			<xsd:documentation>A polygon shape.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:attribute name="POINTS" type="PointsType" use="required"/>
+	</xsd:complexType>
+	<xsd:complexType name="EllipseType">
+		<xsd:annotation>
+			<xsd:documentation>An ellipse shape.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:attribute name="HPOS"/>
+		<xsd:attribute name="VPOS"/>
+		<xsd:attribute name="HLENGTH"/>
+		<xsd:attribute name="VLENGTH"/>
+	</xsd:complexType>
+	<xsd:complexType name="CircleType">
+		<xsd:annotation>
+			<xsd:documentation>A circle shape.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:attribute name="HPOS"/>
+		<xsd:attribute name="VPOS"/>
+		<xsd:attribute name="RADIUS"/>
+	</xsd:complexType>
+	<xsd:attributeGroup name="formattingAttributeGroup">
+		<xsd:annotation>
+			<xsd:documentation>Formatting attributes. Note that these attributes are assumed to be inherited from ancestor elements of the document hierarchy.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:attribute name="FONTFAMILY" type="xsd:string" use="optional">
+			<xsd:annotation>
+				<xsd:documentation>The font name.</xsd:documentation>
+			</xsd:annotation>
+		</xsd:attribute>
+		<xsd:attribute name="FONTTYPE" type="fontTypeType" use="optional"/>
+		<xsd:attribute name="FONTWIDTH" type="fontWidthType" use="optional"/>
+		<xsd:attribute name="FONTSIZE" type="xsd:float" use="required">
+			<xsd:annotation>
+				<xsd:documentation>The font size, in points (1/72 of an inch).</xsd:documentation>
+			</xsd:annotation>
+		</xsd:attribute>
+		<xsd:attribute name="FONTCOLOR" type="xsd:hexBinary" use="optional">
+			<xsd:annotation>
+				<xsd:documentation>Font color as RGB value</xsd:documentation>
+			</xsd:annotation>
+		</xsd:attribute>
+		<xsd:attribute name="FONTSTYLE" type="fontStylesType" use="optional"/>
+	</xsd:attributeGroup>
+	<xsd:simpleType name="fontTypeType">
+		<xsd:annotation>
+			<xsd:documentation>Serif or Sans-Serif</xsd:documentation>
+		</xsd:annotation>
+		<xsd:restriction base="xsd:string">
+			<xsd:enumeration value="serif"/>
+			<xsd:enumeration value="sans-serif"/>
+		</xsd:restriction>
+	</xsd:simpleType>
+	<xsd:simpleType name="fontWidthType">
+		<xsd:annotation>
+			<xsd:documentation>fixed or proportional</xsd:documentation>
+		</xsd:annotation>
+		<xsd:restriction base="xsd:string">
+			<xsd:enumeration value="proportional"/>
+			<xsd:enumeration value="fixed"/>
+		</xsd:restriction>
+	</xsd:simpleType>
+	<xsd:complexType name="sourceImageInformationType">
+		<xsd:annotation>
+			<xsd:documentation>Information to identify the image file from which the OCR text was created.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="fileName" type="xsd:string" minOccurs="0"/>
+			<xsd:element name="fileIdentifier" type="fileIdentifierType" minOccurs="0" maxOccurs="unbounded"/>
+		</xsd:sequence>
+	</xsd:complexType>
+	<xsd:complexType name="fileIdentifierType">
+		<xsd:annotation>
+			<xsd:documentation>A unique identifier for the image file. This is drawn from MIX.</xsd:documentation>
+			<xsd:documentation> This identifier must be unique within the local system. To facilitate file sharing or interoperability with other systems, fileIdentifierLocation may be added to designate the system or application where the identifier is unique.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:simpleContent>
+			<xsd:extension base="xsd:string">
+				<xsd:attribute name="fileIdentifierLocation">
+					<xsd:annotation>
+						<xsd:documentation>A location qualifier, i.e., a namespace.</xsd:documentation>
+					</xsd:annotation>
+				</xsd:attribute>
+			</xsd:extension>
+		</xsd:simpleContent>
+	</xsd:complexType>
+	<xsd:complexType name="ocrProcessingType">
+		<xsd:annotation>
+			<xsd:documentation>Information on how the text was created, including preprocessing, OCR processing, and postprocessing steps.</xsd:documentation>
+			<xsd:documentation>Where possible, this draws from MIX's change history.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="preProcessingStep" type="processingStepType" minOccurs="0" maxOccurs="unbounded"/>
+			<xsd:element name="ocrProcessingStep" type="processingStepType"/>
+			<xsd:element name="postProcessingStep" type="processingStepType" minOccurs="0" maxOccurs="unbounded"/>
+		</xsd:sequence>
+	</xsd:complexType>
+	<xsd:complexType name="processingStepType">
+		<xsd:annotation>
+			<xsd:documentation>A processing step.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="processingDateTime" type="dateTimeType" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>Date or DateTime the image was processed.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="processingAgency" type="xsd:string" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>Identifies the organizationlevel producer(s) of the processed image.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="processingStepDescription" type="xsd:string" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>An ordinal listing of the image processing steps performed. For example, "image despeckling."</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="processingStepSettings" type="xsd:string" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>A description of any setting of the processing application. For example, for a multi-engine OCR application this might include the engines which were used. Ideally, this description should be adequate so that someone else using the same application can produce identical results.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="processingSoftware" type="processingSoftwareType" minOccurs="0"/>
+		</xsd:sequence>
+	</xsd:complexType>
+	<xsd:complexType name="processingSoftwareType">
+		<xsd:annotation>
+			<xsd:documentation>Information about a software application. Where applicable, the preferred method for determining this information is by selecting Help --> About.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="softwareCreator" type="xsd:string" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>The name of the organization or company that created the application.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="softwareName" type="xsd:string" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>The name of the application.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="softwareVersion" type="xsd:string" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>The version of the application.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="applicationDescription" type="xsd:string" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>A description of any important characteristics of the application, especially for non-commercial applications. For example, if a non-commercial application is built using commercial components, e.g., an OCR engine SDK. Those components should be mentioned here.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+		</xsd:sequence>
+	</xsd:complexType>
+	<xsd:simpleType name="dateTimeType">
+		<xsd:union memberTypes="xsd:date xsd:dateTime xsd:gYear xsd:gYearMonth"/>
+	</xsd:simpleType>
+	<xsd:simpleType name="fontStylesType">
+		<xsd:annotation>
+			<xsd:documentation>List of  any combination of font styles</xsd:documentation>
+		</xsd:annotation>
+		<xsd:restriction>
+			<xsd:simpleType>
+				<xsd:list>
+					<xsd:simpleType>
+						<xsd:restriction base="xsd:string">
+							<xsd:enumeration value="bold"/>
+							<xsd:enumeration value="italics"/>
+							<xsd:enumeration value="subscript"/>
+							<xsd:enumeration value="superscript"/>
+							<xsd:enumeration value="smallcaps"/>
+							<xsd:enumeration value="underline"/>
+						</xsd:restriction>
+					</xsd:simpleType>
+				</xsd:list>
+			</xsd:simpleType>
+			<xsd:minLength value="1"/>
+		</xsd:restriction>
+	</xsd:simpleType>
+	<xsd:complexType name="ComposedBlockType">
+		<xsd:annotation>
+			<xsd:documentation>A block that consists of other blocks</xsd:documentation>
+		</xsd:annotation>
+		<xsd:complexContent>
+			<xsd:extension base="BlockType">
+				<xsd:sequence minOccurs="0" maxOccurs="unbounded">
+					<xsd:group ref="BlockGroup"/>
+				</xsd:sequence>
+				<xsd:attribute name="TYPE" type="xsd:string" use="optional">
+					<xsd:annotation>
+						<xsd:documentation>A user defined string to identify the type of composed block (e.g. table, advertisement, ...)</xsd:documentation>
+					</xsd:annotation>
+				</xsd:attribute>
+				<xsd:attribute name="FILEID" type="xsd:string" use="optional">
+					<xsd:annotation>
+						<xsd:documentation>An ID to link to an image which contains only the composed block. The ID and the file link is defined in the related METS file.</xsd:documentation>
+					</xsd:annotation>
+				</xsd:attribute>
+			</xsd:extension>
+		</xsd:complexContent>
+	</xsd:complexType>
+	<xsd:complexType name="IllustrationType">
+		<xsd:annotation>
+			<xsd:documentation>A picture or image.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:complexContent>
+			<xsd:extension base="BlockType">
+				<xsd:attribute name="TYPE" type="xsd:string" use="optional">
+					<xsd:annotation>
+						<xsd:documentation>A user defined string to identify the type of illustration like photo, map, drawing, chart, ...</xsd:documentation>
+					</xsd:annotation>
+				</xsd:attribute>
+				<xsd:attribute name="FILEID" type="xsd:string" use="optional">
+					<xsd:annotation>
+						<xsd:documentation>A link to an image which contains only the illustration.</xsd:documentation>
+					</xsd:annotation>
+				</xsd:attribute>
+			</xsd:extension>
+		</xsd:complexContent>
+	</xsd:complexType>
+	<xsd:complexType name="GraphicalElementType">
+		<xsd:annotation>
+			<xsd:documentation>A graphic used to separate blocks. Usually a line or rectangle. </xsd:documentation>
+		</xsd:annotation>
+		<xsd:complexContent>
+			<xsd:extension base="BlockType"/>
+		</xsd:complexContent>
+	</xsd:complexType>
+	<xsd:complexType name="TextBlockType">
+		<xsd:annotation>
+			<xsd:documentation>A block of text.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:complexContent>
+			<xsd:extension base="BlockType">
+				<xsd:sequence minOccurs="0">
+					<xsd:element name="TextLine" maxOccurs="unbounded">
+						<xsd:annotation>
+							<xsd:documentation>A single line of text.</xsd:documentation>
+						</xsd:annotation>
+						<xsd:complexType>
+							<xsd:sequence>
+								<xsd:sequence maxOccurs="unbounded">
+									<xsd:element name="String" type="StringType"/>
+									<xsd:element name="SP" minOccurs="0">
+										<xsd:annotation>
+											<xsd:documentation>A white space.</xsd:documentation>
+										</xsd:annotation>
+										<xsd:complexType>
+											<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+											<xsd:attribute name="WIDTH" type="xsd:float" use="optional"/>
+											<xsd:attribute name="HPOS" type="xsd:float" use="optional"/>
+											<xsd:attribute name="VPOS" type="xsd:float" use="optional"/>
+										</xsd:complexType>
+									</xsd:element>
+								</xsd:sequence>
+								<xsd:element name="HYP" minOccurs="0">
+									<xsd:annotation>
+										<xsd:documentation>A hyphenation char. Can appear only at the end of a line.</xsd:documentation>
+									</xsd:annotation>
+									<xsd:complexType>
+										<xsd:attribute name="WIDTH" type="xsd:float" use="optional"/>
+										<xsd:attribute name="HPOS" type="xsd:float" use="optional"/>
+										<xsd:attribute name="VPOS" type="xsd:float" use="optional"/>
+										<xsd:attribute name="CONTENT" use="required"/>
+									</xsd:complexType>
+								</xsd:element>
+							</xsd:sequence>
+							<xsd:attribute name="ID" type="xsd:ID"/>
+							<xsd:attribute name="STYLEREFS" type="xsd:IDREFS" use="optional"/>
+							<xsd:attribute name="HEIGHT" type="xsd:float" use="required"/>
+							<xsd:attribute name="WIDTH" type="xsd:float" use="required"/>
+							<xsd:attribute name="HPOS" type="xsd:float" use="required"/>
+							<xsd:attribute name="VPOS" type="xsd:float" use="required"/>
+							<xsd:attribute name="BASELINE" type="xsd:float" use="optional"/>
+							<xsd:attribute name="CS" type="xsd:boolean" use="optional">
+								<xsd:annotation>
+									<xsd:documentation>Correction Status. Indicates whether manual correction has been done or not.</xsd:documentation>
+								</xsd:annotation>
+							</xsd:attribute>
+						</xsd:complexType>
+					</xsd:element>
+				</xsd:sequence>
+				<xsd:attribute name="language" type="xsd:language" use="optional"/>
+			</xsd:extension>
+		</xsd:complexContent>
+	</xsd:complexType>
+</xsd:schema>
diff --git a/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/mets-metae.xsd b/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/mets-metae.xsd
new file mode 100644
index 0000000..6d9314c
--- /dev/null
+++ b/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/mets-metae.xsd
@@ -0,0 +1,1081 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- METS: Metadata Encoding and Transmission Standard -->
+<!-- Copyright © 2001, 2002, 2003 Digital Library Federation -->
+<!-- Prepared for the Digital Library Federation by Jerome McDonough, New York University,
+with the assistance of Michael Alexander (British Library), Rick Beaubien (University of California), Morgan Cundiff (Library of Congress), Susan Dahl (University of Alberta), Markus Enders (State and University Library, Göttingen),  Richard Gartner (Bodleian Library at Oxford), Nancy Hoebelheirich (Stanford University), Mark Kornbluh (Michigan State University), Cecilia Preston (Preston & Lynch), Merrilee Proffitt (Research Libraries Group), Richard Rinehart (Berkeley Art Museum/Pacific Film Archive), Mackenzie Smith (Massachusetts Institute of Technology), Taylor Surface (OCLC), Brian Tingle (California Digital Library) and Robin Wendler (Harvard University).
+-->
+<!-- May 8, 2003 -->
+<!-- Version 1.3 -->
+<!-- Change History -->
+<!-- April 23, 2001: Alpha Draft completed -->
+<!-- June 7, 2001: Beta completed -->
+<!-- 6/7/2001 Beta Changes: 
+	1. add 'Time' as a possible time code value, as well as TCF.
+	2. Make dmdSec ID attribute required; make ID attribute optional on MDRef/MDWrap.
+	3. Add 'Label' attribute to StructMap, along with 'Type'.
+	4. Add DDI and FGDC as potential metadata schemes to enumeration.
+	5. Enable an "otherMDtype" attribute for MDWrap/MDRef and any other element where
+	    there's an 'other' in the enumerated possibilities.
+	6. Add a "profile" attribute to METS element.
+	7. Revised mptr declaration so that it's like FLocat/MDRef (and not like XLink)
+	8. Extend internal documentation of <area> attributes.
+	9. Add "other" to the possible set of LOCTYPEs.
+	10. Change ADMIDS to ADMID on FileGrp.
+	11. Change "N" to "Order" on <div> element.
+	12. Change "Number" to "order label" on <div> element
+	13. Add createdate and lastmoddate attributes to mets element.
+	14. Allow <div> and <area> elements to link to administrative metadata sections.
+	15. Normalize attribute pointing facilities for file element and mdRef.
+	16. Provide a LOCTYPE of "other" and an "otherloctype" attribute for pointing to external files.
+	17. Drop PDI from enumeration of LOCTYPES.
+	18. Make MDTYPE required in mdRef and mdWrap.
+	19. Rename preservationMD to digiprovMD.
+	20. Add optional CHECKSUM attribute to FContent element.
+	21. Modularize declarations of fileGrpType and mdSecType attributes and enumerations to
+		simplify maintenance.
+	22. Add TYPE attribute to structMap.
+	23. Declare structMap element using structMapType rather than direct declaration.
+	24. Add area element as possible subelement to <div>, along with par and seq.
+	25. Change mdSec model to ALL, to enable differing order of mdRef/mdWrap elements.
+	26. Extend documentation on <par> and <seq> elements.
+ -->
+<!-- October 22, 2001: Gamma completed -->
+<!-- 10/22/2001 Gamma changes:
+ 	1. Added optional fileSec element beneath METS root element to contain fileGrps.
+ 	2. Created subsidiary schema file xlink.xsd for XLink attributes, restored XLink attributes
+ 	to mptr element, and added XLink support to mdRef and FLocat.
+ 	3. Created new element metsHdr to handle metadata regarding METS document
+ 	itself (analogous to TEI Header).  Moved CREATEDATE and LASTMODDATE attributes
+ 	to metsHdr, and added new RECORDSTATUS attribute.  Added new subsidiary elements
+ 	agent and altRecordID to metsHdr.
+ 	4. Made CREATEDATE and LASTMODDATE attributes type xsd:dateTime to allow more precise
+ 	recording of when work was done.
+ 	5. Changed all attributes using data type of xsd:binary to xsd:base64Binary to conform to final
+ 	W3C schema recommendations.
+ 	6. Cleaned up annotations/documentation.
+ -->
+<!-- December 19, 2001: Epsilon and PROTOFINAL completed-->
+<!-- 12/19/2001 Epsilon changes:
+ 	1. Changed sequence operator for StructMap so that only 1 root div element is permitted.
+	2. Add new roles to agent element's role attribute and support for extensible 'other' role.
+	3. Add support for extensible 'other' type attribute on agent element.
+	4. Yet more documentation clean up.
+	5. Relocate CHECKSUM attribute from FContent to File element.
+	6. Change the file element's CREATED attribute and fileGroup's VERSDATE attribute to 
+	a type of xsd:dateTime
+	7. Change attribute name DMD for div element to DMDID for consistency's sake.
+	8. Added new behaviorSec for support of referencing executable code from METS object
+ -->
+<!-- February 8, 2002: Zeta bug fix to final -->
+<!-- 2/8/2002 Zeta changes:
+ 
+ 	1. Eliminated redundant VRA in metadata type enumeration.
+ 	2. Changed mdWrap content model, adding xmlData element to eliminate
+ 		ambiguous content model
+ -->
+<!-- June 3, 2002: Version 1.1 -->
+<!-- 6/3/2002 v1.1 changes:
+ 
+  	1. Add new structLink section for recording hyperlinks between media represented by structMap nodes.
+	2. Allow a <par> element to
+	contain a <seq> -->
+<!-- Dec. 27, 2002: Version 1.2 -->
+<!-- 12/27/2002 v1.2 changes:
+1. Add “USE” attribute to FileGrp, File, FLocat and FContent;
+2. Make FLocat repeatable;
+3. Have FContent mimic mdWrap in using separate binData/xmlData sections;
+4. Copyright statement added;
+5. Allow both FLocat and Fcontent in single file element;
+6. Allow behaviorSec elements to group through GROUPID attribute;
+7. allow descriptive and administrative metadata sections to be grouped through GROUPID attribute;
+8. allow <file> element to point to descriptive metadata via DMDID attribute;
+9. allow descriptive metadata and all forms of administrative metadata to point to administrative metadata via ADMID attribute;
+10. CREATED and STATUS attributes added to all desc. and adm. metadata sections; and
+11. clean up documentation in elements to reflect reality.
+-->
+<!-- May 8, 2003: Version 1.3 -->
+<!-- 05/05/2003 v1.3 changes:
+1. Change “2. OBJID: a primary identifier assigned to the original source document” to “2. OBJID: a primary identifier assigned to the METS object.”
+2. Add MODS to MDTYPEs.
+3. Modify <file> attributes so that instead of just CHECKSUM we have CHECKSUM and CHECKSUMTYPE, where CHECKSUMTYPE is a controlled vocabulary as follows:
+     HAVAL, MD5, SHA-1, SHA-256, SHA-384, SHA-512, TIGER, WHIRLPOOL
+4.Alter BehaviorSec to make it recursive, and add a new behavior element to wrap mechanism and interfaceDef elements.
+-->
+<!-- 
+JB 03/09/04: adding import for MODS schema
+-->
+<xsd:schema targetNamespace="http://www.loc.gov/METS/" xmlns="http://www.loc.gov/METS/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/TR/xlink" elementFormDefault="qualified" attributeFormDefault="unqualified">
+	<xsd:import namespace="http://www.w3.org/TR/xlink" schemaLocation="xlink.xsd"/>
+	<xsd:import namespace="http://www.loc.gov/mix/" schemaLocation="mix_jp2.xsd"/>
+	<xsd:import namespace="http://www.w3.org/1999/02/22-rdf-syntax-ns#" schemaLocation="rdf.xsd"/>
+	<xsd:import namespace="http://www.loc.gov/mods/v3" schemaLocation="mods-3-0.xsd"/>
+	<xsd:element name="mets">
+		<xsd:annotation>
+			<xsd:documentation>METS: Metadata Encoding and Transmission Standard.
+			METS is intended to provide a standardized XML format for transmission
+			of complex digital library objects between systems.  As such, it can be seen
+			as filling a role similar to that defined for the Submission Information Package
+			(SIP), Archival Information Package (AIP) and Dissemination Information 
+			Package (DIP) in the Reference Model for an Open Archival Information System.
+			</xsd:documentation>
+		</xsd:annotation>
+		<xsd:complexType>
+			<xsd:complexContent>
+				<xsd:extension base="metsType"/>
+			</xsd:complexContent>
+		</xsd:complexType>
+	</xsd:element>
+	<xsd:complexType name="metsType">
+		<xsd:annotation>
+			<xsd:documentation>mets Complex Type.
+			A METS document consists of seven possible subsidiary sections:
+			metsHdr (METS document header), dmdSec (descriptive metadata 
+			section), amdSec (administrative metadata section), fileGrp (file 
+			inventory group), structLink (structural map linking), structMap (structural map) and
+			behaviorSec (behaviors section).  It also has five possible attributes:
+			1. ID (an XML ID);
+			2. OBJID: a primary identifier assigned to the METS document;
+			3. LABEL: a title/text string identifying the document for users;
+			4. TYPE: a type for the object, e.g., book, journal, stereograph, etc.; and
+			5. PROFILE: the registered profile to which  this METS document conforms.
+			METS registry information is available from the Library of Congress at
+			http://www.loc.gov/mets.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="metsHdr" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>metsHdr: METS Header. 
+					Like a TEI Header, the METS Header element records metadata 
+					about the METS document itself (not the digital library object 
+					that the METS document encodes).  It has two possible subsidiary
+					elements, agent (document agent) and altRecordID.
+					(alternative Record ID).  It also has the following four
+					attributes:
+					1. ID (an XML ID);
+					2. CREATEDATE: the date/time the METS document was created;
+					3. LASTMODDATE: the date/time the METS document was last modified;
+					4. RECORDSTATUS: a string indicating the status of the METS document,
+					to be used mainly for internal processing purposes.
+			</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:sequence>
+						<xsd:element name="agent" minOccurs="0" maxOccurs="unbounded">
+							<xsd:annotation>
+								<xsd:documentation>agent: METS agent.
+								The agent element allows for various parties and their 
+								roles with respect to the METS document to be recorded.  
+								It has five attributes:
+								 1. ID (an XML ID);
+								  2. ROLE: one of 7 set roles with respect to the document, 
+								  CREATOR, EDITOR, ARCHIVIST, PRESERVATION,  
+								  DISSEMINATOR, CUSTODIAN and IPOWNER or the
+								  value OTHER to indicate a non-set role;
+								  3. OTHERROLE: a string to specify a non-set role if
+								  OTHER is indicated in the ROLE attribute; 
+								  4. TYPE: either the set values of INDIVIDUAL agent or ORGANIZATION,
+								  or the value OTHER to indicate a non-set value; and
+								  5. OTHERTYPE: a string to indicate the type of agent
+								  if a value of OTHER is indicated in the TYPE attribute.
+								  </xsd:documentation>
+							</xsd:annotation>
+							<xsd:complexType>
+								<xsd:sequence>
+									<xsd:element name="name" type="xsd:string"/>
+									<xsd:element name="note" type="xsd:string" minOccurs="0" maxOccurs="unbounded"/>
+								</xsd:sequence>
+								<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+								<xsd:attribute name="ROLE" use="required">
+									<xsd:simpleType>
+										<xsd:restriction base="xsd:string">
+											<xsd:enumeration value="CREATOR"/>
+											<xsd:enumeration value="EDITOR"/>
+											<xsd:enumeration value="ARCHIVIST"/>
+											<xsd:enumeration value="PRESERVATION"/>
+											<xsd:enumeration value="DISSEMINATOR"/>
+											<xsd:enumeration value="CUSTODIAN"/>
+											<xsd:enumeration value="IPOWNER"/>
+											<xsd:enumeration value="OTHER"/>
+										</xsd:restriction>
+									</xsd:simpleType>
+								</xsd:attribute>
+								<xsd:attribute name="OTHERROLE" type="xsd:string" use="optional"/>
+								<xsd:attribute name="TYPE" use="optional">
+									<xsd:simpleType>
+										<xsd:restriction base="xsd:string">
+											<xsd:enumeration value="INDIVIDUAL"/>
+											<xsd:enumeration value="ORGANIZATION"/>
+											<xsd:enumeration value="OTHER"/>
+										</xsd:restriction>
+									</xsd:simpleType>
+								</xsd:attribute>
+								<xsd:attribute name="OTHERTYPE" type="xsd:string" use="optional"/>
+							</xsd:complexType>
+						</xsd:element>
+						<xsd:element name="altRecordID" minOccurs="0" maxOccurs="unbounded">
+							<xsd:annotation>
+								<xsd:documentation>altRecordID: Alternative Record ID.  
+								This element allows for documentation of alternative ID values for 
+								the METS document in addition to the primary ID stored in the 
+								OBJID attribute in the root METS element.  It has two attributes: 
+								1. ID: an XML ID, and 
+								2. TYPE: a description of the identifier type (e.g., OCLC #, LCCN, etc.).									</xsd:documentation>
+							</xsd:annotation>
+							<xsd:complexType>
+								<xsd:simpleContent>
+									<xsd:extension base="xsd:string">
+										<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+										<xsd:attribute name="TYPE" type="xsd:string" use="optional"/>
+									</xsd:extension>
+								</xsd:simpleContent>
+							</xsd:complexType>
+						</xsd:element>
+					</xsd:sequence>
+					<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+					<xsd:attribute name="CREATEDATE" type="xsd:dateTime" use="optional"/>
+					<xsd:attribute name="LASTMODDATE" type="xsd:dateTime" use="optional"/>
+					<xsd:attribute name="RECORDSTATUS" type="xsd:string" use="optional"/>
+				</xsd:complexType>
+			</xsd:element>
+			<xsd:element name="dmdSec" type="mdSecType" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>dmdSec: Description Metadata Section.
+					This section records all of the descriptive metadata for all items in the METS object
+					(including both structural map divs and descriptive metadata for data files).
+					Metadata can be either included in the METS hub document (mdWrap) or 
+					referenced via an identifier/locator (mdRef), a la Warwick Framework.  Multiple
+					dmdSec elements are allowed so that descriptive metadata
+					can be recorded for each separate item within the METS object.
+					</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="amdSec" type="amdSecType" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>amdSec: Administrative Metadata Section.
+					This section records all of the administrative metadata for all items in the METS object
+					(including structural map divs, data files, descriptive metadata sections
+					and adminstrative metadata sections themselves),
+					and is divided into four subsections: techMD (technical metadata), rightsMD
+					(intellectual property rights metadata), sourceMD (analog/digital source metadata), and 
+					digiprovMD (digital provenance metadata).
+					Each of these subsections follows the mdSecType model, so that they can 
+					either include metadata within the METS hub document (mdWrap) or 
+					reference it via an identifier/locator (mdRef).  Multiple
+					techMD, rightsMD, sourceMD and digiprovMD elements are allowed so that 
+					administrative metadata can be recorded for each separate item within the 
+					METS object.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="fileSec" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>fileSec: Content File Section. 
+					The content file section records information regarding all of the 
+					data files which comprise the digital library object.  
+					It has a single attribute, ID.</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:sequence>
+						<xsd:element name="fileGrp" maxOccurs="unbounded">
+							<xsd:complexType>
+								<xsd:complexContent>
+									<xsd:extension base="fileGrpType"/>
+								</xsd:complexContent>
+							</xsd:complexType>
+						</xsd:element>
+					</xsd:sequence>
+					<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+				</xsd:complexType>
+			</xsd:element>
+			<xsd:element name="structMap" type="structMapType" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>structMap: Structural Map.
+					The structural map is the heart of a METS document, defining the 
+					hierarchical arrangement of a primary source document which has
+					been digitized.  This hierarchy is encoded as a tree of 'div' elements.
+					Any given 'div' can point to another METS document via the 'mptr'
+					element, or to a single file, to a group of files, or to segments of individual 
+					files or groups of files through the 'fptr' and subsidiary elements.
+					</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="structLink" type="structLinkType" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>structLink: Structural Map Linking.
+						The Structural Map Linking section allows for the specification 
+						of hyperlinks between different components of a METS 
+						structure delineated in a structural map.
+					</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="behaviorSec" type="behaviorSecType" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>behaviorSec: Behavior Section.  This section records executable 
+					behaviors that are associated with content in the METS object.</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="OBJID" type="xsd:string" use="optional"/>
+		<xsd:attribute name="LABEL" type="xsd:string" use="optional"/>
+		<xsd:attribute name="TYPE" type="xsd:string" use="optional"/>
+		<xsd:attribute name="PROFILE" type="xsd:string" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="amdSecType">
+		<xsd:annotation>
+			<xsd:documentation>amdSecType: Complex Type for Administrative Metadata.
+			The administrative metadata section consists of four possible subsidiary
+			sections: techMD (technical metadata for text/image/audio/video files), 
+			rightsMD (intellectual property rights metadata), sourceMD (analog/digital source 
+			metadata), and digiprovMD (digital provenance metadata, that is, the
+			history of migrations/translations performed on a digital library object from
+			it's original digital capture/encoding).  amdSecType has a single attribute, ID (XML ID).
+			</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="techMD" type="mdSecType" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>techMD: technical metadata.  
+						The techMD element provides a wrapper around a generic metadata section, 
+						which should contain technical metadata regarding a file or files.  It has a single 
+						attribute, ID, which file/fileGrp elements can use to reference the technical 
+						metadata that applies to them.
+					</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="rightsMD" type="mdSecType" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>rightsMD: intellectual property rights metadata.  
+						The rightsMD element provides a wrapper around a generic metadata section, 
+						which should contain IP rights metadata.  It has a single attribute, ID, which 
+						other METS elements can use to reference IP Rights metadata that applies to them.
+					</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="sourceMD" type="mdSecType" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>sourceMD: source metadata.  
+						The sourceMD element provides a wrapper around a  generic metadata section 
+						which should contain information regarding the original source.  It has a single attribute, 
+						ID, which file/fileGrp elements can use to reference the source metadata which 
+						applies to them.
+					</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="digiprovMD" type="mdSecType" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>digiprovMD: digital provenance metadata.
+						The digiprovMD element provides a wrapper around a generic metadata
+						section, which should contain information regarding the ultimate origin of a digital
+						object and the derivation of its current elements.  This includes recording 
+						master/derivative relationships between various files which currently represent
+						the object, as well recording any transformations or migrations undergone
+						by files composing the digital object subsequent to the initial digitization of
+						an item or, in the case of born digital materials, the files' creation.  In short,
+						digiprovMD should be used to record information to allow both archival/library
+						staff and scholars to understand what modifications have been performed to
+						a digital object during its life cycle in order to judge how those processes
+						might have altered or corrupted the object's ability to accurately represent
+						the original item.
+					</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="fileGrpType">
+		<xsd:annotation>
+			<xsd:documentation>fileGrp: File Group.
+					The file group is used to cluster all of the digital files composing a digital
+					library object in a hierarchical arrangement (fileGrp is recursively defined
+					to enable the creation of the hierarchy).  Any file group may contain zero or
+					more file elements.  File elements in turn can contain one or more FLocat elements
+					(a pointer to a file containing content for this object) and/or a FContent 
+					element (the contents of the file, in either XML or  Base64 encoding).  A fileGrp element
+					may have the following attributes:
+					1. ID: an XML ID for the element
+					2. VERSDATE: date this version/fileGrp of the digital object was created.
+					3. ADMID: IDREFs to administrative metadata sections in the METS document
+					that correspond with all files in this file group;
+					4. USE: a string to indicate the intended use of files within this file group
+					(e.g., master, reference, thumbnails for image files).
+				</xsd:documentation>
+		</xsd:annotation>
+		<xsd:choice>
+			<xsd:element name="fileGrp" type="fileGrpType" minOccurs="0" maxOccurs="unbounded"/>
+			<xsd:element name="file" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>file: File element.
+							The file element provides access to content files for a METS document.
+							A file element may contain one or more FLocat elements, which provide pointers to
+							a content file, and/or an FContent element, which wraps an encoded version
+							of the file. Note that ALL FLocat and FContent elements underneath a
+							singel file element should identify/contain identical copies of a single
+							file.  The file element has the following attributes:
+							1. ID: an XML ID for the element;
+							2. MIMETYPE: the MIME type for the file;
+							3. SEQ: an integer indicating the sequence of this file relative to the others in its 
+							file group;
+							4. SIZE: the size of the file in bytes; 
+							5. CREATED: the date of creation for the file; 
+							6. CHECKSUM: a checksum value for the included file;
+							7. CHECKSUMTYPE: the type of checksum contained in the
+							CHECKSUM attribute;
+							8. OWNERID: a primary identifier assigned to the file by its owner; 
+							9. ADMID: IDREFS to administrative metadata sections in the METS document 
+							that correspond with this file;
+							10. DMDID: IDREFS to descriptive metadata sections in the METS document
+							that correspond with this file;
+							11. GROUPID: an identifier that establishes a correspondence between this file 
+							and files in other file groups.  Typically, this will be used to associate a master 
+							file in one file group with derivative files in other file groups;
+							12. USE: a string indicated the intended use of this file (e.g., master,
+							reference, thumbnail for image files).
+						</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:sequence>
+						<xsd:element name="FLocat" minOccurs="0" maxOccurs="unbounded">
+							<xsd:annotation>
+								<xsd:documentation>FLocat: File Location.  
+										The FLocat element provides a pointer to the location of a content file.  
+										It uses the XLink syntax to provide linking information indicating the
+										actual location of the content file, along with a few additional attributes
+										specifying additional linking information.  The full attribute set for
+										the FLocat element is as follows:
+										1. ID (an XML ID); 
+										2. LOCTYPE: the type of locator contained in the FLocat element; and
+										3. OTHERLOCTYPE: a string to indicate an alternative LOCTYPE if
+										the LOCTYPE attribute itself has a value of "OTHER";
+										4. USE: a string indicating the intended use of the referenced file;
+										5. xlink:href: see XLink standard (http://www.w3.org/TR/xlink);
+										6. xlink:role: ""
+										7. xlink:arcrole: "" 
+										8. xlink:title: ""
+										9. xlink:show: ""
+										10. xlink:actuate: ""
+										NOTE: FLocat is an empty element.  The location of the resource
+										pointed to MUST be stored in the xlink:href element.
+									</xsd:documentation>
+							</xsd:annotation>
+							<xsd:complexType>
+								<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+								<xsd:attributeGroup ref="LOCATION"/>
+								<xsd:attribute name="USE" type="xsd:string" use="optional"/>
+								<xsd:attributeGroup ref="xlink:simpleLink"/>
+							</xsd:complexType>
+						</xsd:element>
+						<xsd:element name="FContent" minOccurs="0">
+							<xsd:annotation>
+								<xsd:documentation>FContent: file content.  
+										The FContent element is used to deliver a content file for a METS 
+										document within the METS file itself.  The content file must be 
+										either Base 64 	encoded, and contained within the subsidiary
+										binData wrapper element, or consist of XML information and
+										be contained within the subsidiary xmlData wrapper element.  The
+										FContent element has the following attribute:
+										1. ID (an XML ID)
+										2. USE: a string indicating the intended use of the embedded file.
+									</xsd:documentation>
+							</xsd:annotation>
+							<xsd:complexType>
+								<xsd:choice>
+									<xsd:element name="binData" type="xsd:base64Binary" minOccurs="0">
+										<xsd:annotation>
+											<xsd:documentation>A wrapper to contain a Base64 encoded
+											file.
+											</xsd:documentation>
+										</xsd:annotation>
+									</xsd:element>
+									<xsd:element name="xmlData" minOccurs="0">
+										<xsd:annotation>
+											<xsd:documentation>A wrapper to contain an XML encoded
+											file.
+											</xsd:documentation>
+										</xsd:annotation>
+										<xsd:complexType>
+											<xsd:sequence>
+												<xsd:any namespace="##any" maxOccurs="unbounded"/>
+											</xsd:sequence>
+										</xsd:complexType>
+									</xsd:element>
+								</xsd:choice>
+								<xsd:attribute name="USE" type="xsd:string" use="optional"/>
+							</xsd:complexType>
+						</xsd:element>
+					</xsd:sequence>
+					<xsd:attribute name="ID" type="xsd:ID" use="required"/>
+					<xsd:attribute name="MIMETYPE" type="xsd:string" use="optional"/>
+					<xsd:attribute name="SEQ" type="xsd:int" use="optional"/>
+					<xsd:attribute name="SIZE" type="xsd:long" use="optional"/>
+					<xsd:attribute name="CREATED" type="xsd:dateTime" use="optional"/>
+					<xsd:attribute name="CHECKSUM" type="xsd:string" use="optional"/>
+					<xsd:attribute name="CHECKSUMTYPE" use="optional">
+						<xsd:simpleType>
+							<xsd:restriction base="xsd:string">
+								<xsd:enumeration value="HAVAL"/>
+								<xsd:enumeration value="MD5"/>
+								<xsd:enumeration value="SHA-1"/>
+								<xsd:enumeration value="SHA-256"/>
+								<xsd:enumeration value="SHA-384"/>
+								<xsd:enumeration value="SHA-512"/>
+								<xsd:enumeration value="TIGER"/>
+								<xsd:enumeration value="WHIRLPOOL"/>
+							</xsd:restriction>
+						</xsd:simpleType>
+					</xsd:attribute>
+					<xsd:attribute name="OWNERID" type="xsd:string" use="optional"/>
+					<xsd:attribute name="ADMID" type="xsd:IDREFS" use="optional"/>
+					<xsd:attribute name="DMDID" type="xsd:IDREFS" use="optional"/>
+					<xsd:attribute name="GROUPID" type="xsd:string" use="optional"/>
+					<xsd:attribute name="USE" type="xsd:string" use="optional"/>
+				</xsd:complexType>
+			</xsd:element>
+		</xsd:choice>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="VERSDATE" type="xsd:dateTime" use="optional"/>
+		<xsd:attribute name="ADMID" type="xsd:IDREFS" use="optional"/>
+		<xsd:attribute name="USE" type="xsd:string" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="structMapType">
+		<xsd:annotation>
+			<xsd:documentation>structMap Complex Type
+			The structural map (structMap) outlines a hierarchical structure for the
+			original object being encoded, using a series of nested div elements.
+			The structMap element has the following attributes:
+			1. ID: an XML ID for the element;
+			2. TYPE: the type of structural map provided.  Typical values will be
+			"PHYSICAL" for a map which describes the physical composition of
+			the original work (a series with individual monographs with pages) and
+			"LOGICAL" for one which describes the intellectual structure of the work
+			(a monograph with TOC, forward, chapters, index., etc.);
+			3. LABEL: a string to describe the structMap to users.  This is primarily
+			useful where more than one structMap is provided for a single object
+			(e.g., both logical and physical structMap).</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="div" type="divType">
+				<xsd:annotation>
+					<xsd:documentation>div: Division.  
+						The METS standard represents a document structurally as a series of nested 
+						div elements, that is, as a hierarchy (e.g., a book, which is composed of chapters, 
+						which are composed of subchapters, which are composed of text).  Every div node 
+						in the structural map hierarchy may be connected (via subsidiary mptr or fptr 
+						elements) to content files which represent that div's portion of the whole document.  
+					</xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="TYPE" type="xsd:string" use="optional"/>
+		<xsd:attribute name="LABEL" type="xsd:string" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="divType">
+		<xsd:annotation>
+			<xsd:documentation>Div Complex Type
+					The METS standard represents a document structurally as a series of nested 
+					div elements, that is, as a hierarchy (e.g., a book, which is composed of chapters, 
+					which are composed of subchapters, which are composed of text).  Every div node 
+					in the structural map hierarchy may be connected (via subsidiary mptr or fptr 
+					elements) to content files which represent that div's portion of the whole document.  
+					The div element has the following attributes: 
+					1. ID (an XML ID); 
+					2. ORDER: an integer representation of this div's order among its siblings 
+					(e.g., its sequence); 
+					3. ORDERLABEL: a string representation of this div's order among its siblings (e.g., "xii"),
+					or a non-integer native numbering system.  It is presumed that this value will still be
+					machine-actionable (e.g., supports a page 'go to' function), and is not a replacement/
+					substitute for the LABEL attribute.
+					4. LABEL: a string label to describe this div to an end user viewing the document, as per 
+					a table of contents entry (NB: a div LABEL should be specific to its level in the structural
+					map.  In the case of a book with chapters, the book div LABEL should have the book
+					title, and the chapter div LABELS should have the individual chapter titles, rather than
+					having the chapter div LABELs combine both book title and chapter title).
+					NB: to clarify the differences between ORDER, ORDERLABEL, and LABEL, imagine
+					a text with 10 roman numbered pages followed by 10 arabic numbered pages.
+					Page iii would have an ORDER of "3", an ORDERLABEL of "iii" and a LABEL
+					of "Page iii", while page 3 would have an ORDER of "13", an ORDERLABEL of "3" and
+					a LABEL of "Page 3".
+					5. DMDID:  a set of IDREFs to descriptive metadata sections within this METS document
+					applicable to this div.
+					6. ADMID: a set of IDREFS to administrative metadata sections within this METS document
+					applicable to this div.
+					7. TYPE: a type of division (e.g., chapter, article, page, etc.).
+				</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="mptr" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>mptr: METS Pointer.  
+						The mptr element allows a div to be associated with a separate METS document 
+						containing the content corresponding with that div, rather than pointing to an 
+						internal file or file group.  A typical instance of this would be the case of a METS 
+						document for a journal run, with a div elements for each individual journal issue.  
+						The div elements for the issues might point to separate METS documents for each 
+						issue, rather than having files and file groups for every issue encoded in one 
+						document.  The mptr element may have the following attributes:
+						1. ID: an XML ID for this element;
+						2. LOCTYPE: the type of locator 	contained in the FLocat element; and
+						3. OTHERLOCTYPE: a string to indicate an alternative LOCTYPE if
+						the LOCTYPE attribute itself has a value of "OTHER."
+						4. xlink:href: see XLink standard (http://www.w3.org/TR/xlink)
+						5. xlink:role: ""
+						6. xlink:arcrole: "" 
+						7. xlink:title: ""
+						8. xlink:show: ""
+						9. xlink:actuate: ""
+						NOTE: mptr is an empty element.  The location of the resource
+						pointed to MUST be stored in the xlink:href element.
+					</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+					<xsd:attributeGroup ref="LOCATION"/>
+					<xsd:attributeGroup ref="xlink:simpleLink"/>
+				</xsd:complexType>
+			</xsd:element>
+			<xsd:element name="fptr" minOccurs="0" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>fptr: File Pointer.  
+						The fptr element associates a div element with content files that represent that div.  
+						It can either point to a file directly itself, via the FILEID attribute, or it can do more 
+						complex links to content via the subsidiary area, par and seq elements.  The fptr
+						element can have the following attributes:
+						1. ID: an XML ID for this element; and
+						2. FILEID: an IDREF to a file element which corresponds with the div containing
+						this ftpr.
+					</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:choice>
+						<xsd:element name="par" minOccurs="0">
+							<xsd:annotation>
+								<xsd:documentation>par: Parallel  files.  
+									The par element should used to link a div to a set of content files when 
+									those files should be played/displayed in unison to deliver the content to the 
+									user.  A par element has two possible subsidiary elements,
+									which should be used in different cases.  In cases where
+									each bytestream to be played in parallel can fit in a single
+									file, you should use subsidiary area elements within the
+									par element to point to those files.  However, in some cases,
+									bytestreams which should be played in parallel are too
+									large to fit in a single file (high quality multi-track audio,
+									or video).  In those cases, you should use subsidiary
+									seq elements, where each seq contains the files comprising
+									a particular bytestream in the order they should be played
+									back.
+									Par has the following attributes:
+									1. ID: an XML ID for this element.
+								</xsd:documentation>
+							</xsd:annotation>
+							<xsd:complexType>
+								<xsd:choice>
+									<xsd:element name="area" type="areaType" maxOccurs="unbounded"/>
+									<xsd:element name="seq" type="seqType" maxOccurs="unbounded"/>
+								</xsd:choice>
+								<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+							</xsd:complexType>
+						</xsd:element>
+						<xsd:element name="seq" type="seqType" minOccurs="0"/>
+						<xsd:element name="area" type="areaType" minOccurs="0">
+							<xsd:annotation>
+								<xsd:documentation>
+									The area element provides for more sophisticated linking between a div 
+									element and content files representing that div, be they text, image, 
+									audio, or video files.  An area element can link a div to a point 
+									within a file, to a one-dimension segment of a file (e.g., text screen, 
+									image line, audio/video clip), or a two-dimensional section of a file 
+									(e.g, subsection of an image, or a subsection of the  video display 
+									of a video file.  See the areaType documentation for more details.
+								</xsd:documentation>
+							</xsd:annotation>
+						</xsd:element>
+					</xsd:choice>
+					<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+					<xsd:attribute name="FILEID" type="xsd:IDREF" use="optional"/>
+				</xsd:complexType>
+			</xsd:element>
+			<xsd:element name="div" type="divType" minOccurs="0" maxOccurs="unbounded"/>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="ORDER" type="xsd:integer" use="optional"/>
+		<xsd:attribute name="ORDERLABEL" type="xsd:string" use="optional"/>
+		<xsd:attribute name="LABEL" type="xsd:string" use="optional"/>
+		<xsd:attribute name="DMDID" type="xsd:IDREFS" use="optional"/>
+		<xsd:attribute name="ADMID" type="xsd:IDREFS" use="optional"/>
+		<xsd:attribute name="TYPE" type="xsd:string" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="seqType">
+		<xsd:annotation>
+			<xsd:documentation>seq: Sequence of files.  
+					The seq element should be used to link a div to a set of content files 
+					when those files should be played/displayed sequentially to deliver 
+					content to a user.  
+					Individual area subelements within the seq element provide the links 
+					to the files or portions thereof.  Seq has the following attributes:
+					1. ID: an XML ID for this element.
+				</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="area" type="areaType" maxOccurs="unbounded"/>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="areaType">
+		<xsd:annotation>
+			<xsd:documentation>areaType: Complex Type for Area linking.
+				The area element provides for more sophisticated linking between a div 
+				element and content files representing that div, be they text, image, 
+				audio, or video files.  An area element can link a div to a point 
+				within a file, to a one-dimension segment of a file (e.g., text segment, 
+				image line, audio/video clip), or a two-dimensional section of a file 
+				(e.g, subsection of an image, or a subsection of the  video display 
+				of a video file.  The area element has no content, and the following 
+				attributes: 
+				1. ID: an XML ID; 
+				2. FILEID: an IDREF to the file element being pointed to by the div; 
+				3. SHAPE: a text string defining the shape of a two-dimensional 
+				area being referenced in a link file; 
+				4. COORDS: a text string representing a set of visual coordinates 
+				within an image (still image or video frame).  The COORDS and 
+				SHAPE attributes should be used as in HTML 4; 
+				5. BEGIN: a beginning location in a referenced file; 
+				6. END: an ending location in a referenced file; 
+				7. BETYPE: the syntax used in specifying the BEGIN and END 
+				attributes (byte offset, IDREF value, SMPTE time code, SMIL
+				time value, MIDI time code, a simple time code of the form
+				HH:MM:SS, or a TCF time code); 
+				8. EXTENT: the duration of the segment; and 
+				9. EXTTYPE: the syntax used in specifying the extent (byte length 
+				or SMPTE time value);
+				10. ADMID: IDREFs for administrative metadata regarding this area.
+			</xsd:documentation>
+		</xsd:annotation>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="FILEID" type="xsd:IDREF" use="required"/>
+		<xsd:attribute name="SHAPE" use="optional">
+			<xsd:simpleType>
+				<xsd:restriction base="xsd:string">
+					<xsd:enumeration value="RECT"/>
+					<xsd:enumeration value="CIRCLE"/>
+					<xsd:enumeration value="POLY"/>
+				</xsd:restriction>
+			</xsd:simpleType>
+		</xsd:attribute>
+		<xsd:attribute name="COORDS" type="xsd:string" use="optional"/>
+		<xsd:attribute name="BEGIN" type="xsd:string" use="optional"/>
+		<xsd:attribute name="END" type="xsd:string" use="optional"/>
+		<xsd:attribute name="BETYPE" use="optional">
+			<xsd:simpleType>
+				<xsd:restriction base="xsd:string">
+					<xsd:enumeration value="BYTE"/>
+					<xsd:enumeration value="IDREF"/>
+					<xsd:enumeration value="SMIL"/>
+					<xsd:enumeration value="MIDI"/>
+					<xsd:enumeration value="SMPTE-25"/>
+					<xsd:enumeration value="SMPTE-24"/>
+					<xsd:enumeration value="SMPTE-DF30"/>
+					<xsd:enumeration value="SMPTE-NDF30"/>
+					<xsd:enumeration value="SMPTE-DF29.97"/>
+					<xsd:enumeration value="SMPTE-NDF29.97"/>
+					<xsd:enumeration value="TIME"/>
+					<xsd:enumeration value="TCF"/>
+				</xsd:restriction>
+			</xsd:simpleType>
+		</xsd:attribute>
+		<xsd:attribute name="EXTENT" type="xsd:string" use="optional"/>
+		<xsd:attribute name="EXTTYPE" use="optional">
+			<xsd:simpleType>
+				<xsd:restriction base="xsd:string">
+					<xsd:enumeration value="BYTE"/>
+					<xsd:enumeration value="SMIL"/>
+					<xsd:enumeration value="MIDI"/>
+					<xsd:enumeration value="SMPTE-25"/>
+					<xsd:enumeration value="SMPTE-24"/>
+					<xsd:enumeration value="SMPTE-DF30"/>
+					<xsd:enumeration value="SMPTE-NDF30"/>
+					<xsd:enumeration value="SMPTE-DF29.97"/>
+					<xsd:enumeration value="SMPTE-NDF29.97"/>
+					<xsd:enumeration value="TIME"/>
+					<xsd:enumeration value="TCF"/>
+				</xsd:restriction>
+			</xsd:simpleType>
+		</xsd:attribute>
+		<xsd:attribute name="ADMID" type="xsd:IDREFS" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="structLinkType">
+		<xsd:annotation>
+			<xsd:documentation>structLink: Structural Map Linking.
+				The Structural Map Linking section allows for the specification 
+				of hyperlinks between different components of a METS 
+				structure delineated in a structural map.  structLink contains
+				a single, repeatable element, smLink.  Each smLink element
+				indicates a hyperlink between two nodes in the structMap. 
+				The nodes in smLink are identified using their XML ID attributes.
+			</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="smLink" maxOccurs="unbounded">
+				<xsd:annotation>
+					<xsd:documentation>smLink: structural map Link
+					An element linking two elements in the structural map, used
+					to indicate that a hyperlink exists between the two METS
+					components represented by the two structural map nodes.
+					You would use smLink, for example, to record the existence
+					of hypertext links between web pages, if you wish to record
+					those links' existence inside of METS.  The smLink element
+					uses six attributes:
+					1. xlink:arcrole - the role of the link, as per the xlink specification;
+					2. xlink:title - a title for the link (if needed);
+					3. xlink:show - see the xlink specification;
+					4. xlink:actuate - see the xlink specification;
+					5. to: the XML ID attribute for the element in the structMap you
+					are linking to; and
+					6. from: the XML id attribute for the element in the structMap
+					you are linking from.
+					Note that while we use the xlink 'to' and 'from' notions, we are
+					not using the actual xlink schema definitions, as we wish to
+					make these XML IDREF attributes, and not simple strings.
+				</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:attribute ref="xlink:arcrole" use="optional"/>
+					<xsd:attribute ref="xlink:title" use="optional"/>
+					<xsd:attribute ref="xlink:show" use="optional"/>
+					<xsd:attribute ref="xlink:actuate" use="optional"/>
+					<xsd:attribute name="to" type="xsd:IDREF"/>
+					<xsd:attribute name="from" type="xsd:IDREF"/>
+				</xsd:complexType>
+			</xsd:element>
+		</xsd:sequence>
+	</xsd:complexType>
+	<xsd:complexType name="behaviorSecType">
+		<xsd:annotation>
+			<xsd:documentation>behaviorSecType: Behaviors Section.
+			Behaviors are executable code which can be associated with parts of a METS
+			object.  The behaviorSec element is used to group individual behaviors within
+			a hierarchical structure.  Such grouping can be useful to organize families
+			of behaviors together or to indicate other relationships between particular
+			behaviors.  The behaviorSec element has three attributes:
+			1. ID: an XML ID attribute for a particular behaviorSec;
+			2. CREATED: a dateTime of creation for the behaviorSec; and
+			3. LABEL: a text description of the behaviorSec.
+			</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="behaviorSec" type="behaviorSecType" minOccurs="0" maxOccurs="unbounded"/>
+			<xsd:element name="behavior" type="behaviorType" minOccurs="0" maxOccurs="unbounded"/>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="CREATED" type="xsd:dateTime" use="optional"/>
+		<xsd:attribute name="LABEL" type="xsd:string" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="behaviorType">
+		<xsd:annotation>
+			<xsd:documentation>behaviorType: Complex Type for Behaviors. 
+			 A behavior can be used to associate executable behaviors with content in the METS object.  
+			 A behavior element has an interface definition element that represents an abstract definition of the set 
+			 of behaviors represented by a particular behavior.  A behavior element also has an behavior 
+			 mechanism which is a module of executable code that implements and runs the behavior defined 
+			 abstractly by the interface definition.  A behavior may have the following attributes: 	
+			 1. ID: an XML ID for the element   
+			 2. STRUCTID:  IDREFS to structMap sections or divs within a structMap in the METS document. 
+			 The content that the STRUCTID attribute points to is considered "input" to the behavior mechanism 
+			 (executable) defined for the behavior.  
+			 3. BTYPE: a behavior type identifier for a given set of related behaviors. 	
+			 4. CREATED: date this behavior was created.  
+			 5. LABEL: a description of the behavior.  
+			 6. GROUPID: an identifier that establishes a correspondence between this behavior 				and other behaviors.  Typically, this will be used to facilitate versioning of behaviors. 
+			7. ADMID: IDREFS to administrative metadata sections pertaining to this behavior.</xsd:documentation>
+		</xsd:annotation>
+		<xsd:sequence>
+			<xsd:element name="interfaceDef" type="objectType" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>interfaceDef: interface definition object. 
+					The interface definition element contains a pointer an abstract definition of a set of related behaviors.  
+					These abstract behaviors can be associated with the content of a METS object.    The interface 
+					definition element will be a pointer to another object (an interface definition object).  An interface 
+					definition object could be another METS object, or some other entity (e.g., a WSDL file).  Ideally, 
+					an interface definition object should contain metadata that describes a set of behaviors or methods.  
+					It may also contain files that describe the intended usage of the behaviors, and possibly files that 
+					represent different expressions of the interface definition.  The interfaceDef element is optional to allow 
+					for cases where an interface definition can be obtained from a behavior mechanism object (see the 
+					mechanism element of the behaviorSec). </xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+			<xsd:element name="mechanism" type="objectType">
+				<xsd:annotation>
+					<xsd:documentation>mechanism: executable mechanism.  
+					A mechanism element contains a pointer to an executable code module that implements a set 
+					of behaviors defined by an interface definition.    The mechanism element will be a pointer to 
+					another object (a mechanism object).  A mechanism object could be another METS object, or 
+					some other entity (e.g., a WSDL file).  A mechanism object should contain executable code, 
+					pointers to executable code, or specifications for binding to network services (e.g., web 
+					services).  </xsd:documentation>
+				</xsd:annotation>
+			</xsd:element>
+		</xsd:sequence>
+		<xsd:attribute name="ID" type="xsd:ID" use="required"/>
+		<xsd:attribute name="STRUCTID" type="xsd:IDREFS" use="required"/>
+		<xsd:attribute name="BTYPE" type="xsd:string" use="optional"/>
+		<xsd:attribute name="CREATED" type="xsd:dateTime" use="optional"/>
+		<xsd:attribute name="LABEL" type="xsd:string" use="optional"/>
+		<xsd:attribute name="GROUPID" type="xsd:string" use="optional"/>
+		<xsd:attribute name="ADMID" type="xsd:IDREFS" use="optional"/>
+	</xsd:complexType>
+	<xsd:complexType name="objectType">
+		<xsd:annotation>
+			<xsd:documentation>objectType: An element of type objectType may have the following attributes:   
+			1. ID: an XML ID for the element  
+			2. LABEL: a description of the object that is being linked to.
+			3. LOCTYPE: the type of locator contained in the FLocat element; and  
+			4. OTHERLOCTYPE: a string to indicate an alternative LOCTYPE if  the LOCTYPE attribute itself has 
+			a value of "OTHER."     
+			5. xlink:href: see XLink standard (http://www.w3.org/TR/xlink) 	    
+			6. xlink:role: "" 	    
+			7. xlink:arcrole: ""  	    
+			8. xlink:title: "" 	    
+			9. xlink:show: "" 	    
+			10. xlink:actuate: "" 	    
+			NOTE: objectType is an empty element.  The location of the resource pointed to MUST be stored in the xlink:href element.     </xsd:documentation>
+		</xsd:annotation>
+		<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+		<xsd:attribute name="LABEL" type="xsd:string" use="optional"/>
+		<xsd:attributeGroup ref="LOCATION"/>
+		<xsd:attributeGroup ref="xlink:simpleLink"/>
+	</xsd:complexType>
+	<xsd:complexType name="mdSecType">
+		<xsd:annotation>
+			<xsd:documentation>mdSec (metadata section) Complex Type
+			A generic framework for pointing to/including metadata within a METS document,
+			a la Warwick Framework.  An mdSec element may have the following attributes:
+			1. ID: an XML ID for this element;
+			2. GROUPID: an identifier that may be used to indicate that different metadata sections
+			may be considered as part of a single group.  Two metadata sections with the same
+			GROUPID value are to be considered part of the same group.  This facility might
+			be used, for example, to group changed versions of the same metadata if previous
+			versions are maintained in a file for tracking purposes;
+			3. ADMID: a set of IDREFS to administrative metadata elements which apply
+			to the current descriptive or administrative metadata.  Typically used to
+			reference preservation metadata which applies to the current metadata;
+			4. CREATED: the date and time of creation for the metadata; and
+			5. STATUS: a string indicating the status of this metadata (e.g., superceded,
+			current, etc.).
+			</xsd:documentation>
+		</xsd:annotation>
+		<xsd:all>
+			<xsd:element name="mdRef" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>mdRef: metadata reference.  
+						The mdRef element is a generic element used throughout the METS schema 
+						to provide a pointer to metadata which resides outside the METS document.  
+						It has the following attributes: 
+						1. ID: an XML ID; 
+						2. LOCTYPE: the type of locator contained in the body of the element; 
+						3. OTHERLOCTYPE: a string indicating an alternative LOCTYPE when the LOCTYPE
+						attribute value is set to "OTHER.";
+						4. xlink:href: see XLink standard (http://www.w3.org/TR/xlink)
+						5. xlink:role: ""
+						6. xlink:arcrole: "" 
+						7. xlink:title: ""
+						8. xlink:show: ""
+						9. xlink:actuate: ""
+						10. MIMETYPE: the MIME type for the metadata being pointed at; 
+						11. MDType: the type of metadata being pointed at (e.g., MARC, EAD, etc.); 
+						12. OTHERMDTYPE: a string indicating an alternative MDTYPE when the MDTYPE
+						attribute value is set to "OTHER.";
+						13. LABEL: a label to display to the viewer of the METS document identifying the metadata; and 
+						14. XPTR: an xptr to a location within the file pointed to by the mdRef element, if applicable.
+						NB: mdRef is an empty element.  The location of the metadata must be recorded in
+						the xlink:href attribute, supplemented by the XPTR attribute as needed.									</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+					<xsd:attributeGroup ref="LOCATION"/>
+					<xsd:attributeGroup ref="xlink:simpleLink"/>
+					<xsd:attributeGroup ref="METADATA"/>
+					<xsd:attribute name="MIMETYPE" type="xsd:string" use="optional"/>
+					<xsd:attribute name="LABEL" type="xsd:string" use="optional"/>
+					<xsd:attribute name="XPTR" type="xsd:string" use="optional"/>
+				</xsd:complexType>
+			</xsd:element>
+			<xsd:element name="mdWrap" minOccurs="0">
+				<xsd:annotation>
+					<xsd:documentation>mdWrap: metadata wrapper.  
+						The mdWrap element is a generic element used throughout the METS schema  to allow 
+						the encoder to place arbitrary metadata conforming to other standards/schema within a 
+						METS document.  The included metadata can either be encoded in XML, in which case 
+						it may be placed directly within the mdWrap element, or it can be Base64 encoded, and 
+						placed within a subsidiary binData element.  The mdWrap element can have the following
+						attributes:
+						1. ID: an XML ID for this element;
+						2. MIMETYPE: the MIME type for the metadata contained in the element;
+						3. MDType: the type of metadata contained (e.g., MARC, EAD, etc.); 
+						4. OTHERMDTYPE: a string indicating an alternative MDTYPE when the MDTYPE
+						attribute value is set to "OTHER.";
+						5. LABEL: a label to display to the viewer of the METS document identifying the metadata.
+					</xsd:documentation>
+				</xsd:annotation>
+				<xsd:complexType>
+					<xsd:choice>
+						<xsd:element name="binData" type="xsd:base64Binary" minOccurs="0">
+							<xsd:annotation>
+								<xsd:documentation>A wrapper to contain Base64 encoded metadata.											</xsd:documentation>
+							</xsd:annotation>
+						</xsd:element>
+						<xsd:element name="xmlData" minOccurs="0">
+							<xsd:complexType>
+								<xsd:sequence>
+									<xsd:any namespace="##any" maxOccurs="unbounded"/>
+								</xsd:sequence>
+							</xsd:complexType>
+						</xsd:element>
+					</xsd:choice>
+					<xsd:attribute name="ID" type="xsd:ID" use="optional"/>
+					<xsd:attribute name="MIMETYPE" type="xsd:string" use="optional"/>
+					<xsd:attributeGroup ref="METADATA"/>
+					<xsd:attribute name="LABEL" type="xsd:string" use="optional"/>
+				</xsd:complexType>
+			</xsd:element>
+		</xsd:all>
+		<xsd:attribute name="ID" type="xsd:ID" use="required"/>
+		<xsd:attribute name="GROUPID" type="xsd:string" use="optional"/>
+		<xsd:attribute name="ADMID" type="xsd:IDREFS" use="optional"/>
+		<xsd:attribute name="CREATED" type="xsd:dateTime" use="optional"/>
+		<xsd:attribute name="STATUS" type="xsd:string" use="optional"/>
+	</xsd:complexType>
+	<xsd:attributeGroup name="METADATA">
+		<xsd:attribute name="MDTYPE" use="required">
+			<xsd:simpleType>
+				<xsd:restriction base="xsd:string">
+					<xsd:enumeration value="MARC"/>
+					<xsd:enumeration value="MODS"/>
+					<xsd:enumeration value="EAD"/>
+					<xsd:enumeration value="DC"/>
+					<xsd:enumeration value="NISOIMG"/>
+					<xsd:enumeration value="LC-AV"/>
+					<xsd:enumeration value="VRA"/>
+					<xsd:enumeration value="TEIHDR"/>
+					<xsd:enumeration value="DDI"/>
+					<xsd:enumeration value="FGDC"/>
+					<xsd:enumeration value="OTHER"/>
+				</xsd:restriction>
+			</xsd:simpleType>
+		</xsd:attribute>
+		<xsd:attribute name="OTHERMDTYPE" type="xsd:string" use="optional"/>
+	</xsd:attributeGroup>
+	<xsd:attributeGroup name="LOCATION">
+		<xsd:attribute name="LOCTYPE" use="required">
+			<xsd:simpleType>
+				<xsd:restriction base="xsd:string">
+					<xsd:enumeration value="URN"/>
+					<xsd:enumeration value="URL"/>
+					<xsd:enumeration value="PURL"/>
+					<xsd:enumeration value="HANDLE"/>
+					<xsd:enumeration value="DOI"/>
+					<xsd:enumeration value="OTHER"/>
+				</xsd:restriction>
+			</xsd:simpleType>
+		</xsd:attribute>
+		<xsd:attribute name="OTHERLOCTYPE" type="xsd:string" use="optional"/>
+	</xsd:attributeGroup>
+</xsd:schema>
diff --git a/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/xlink.xsd b/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/xlink.xsd
new file mode 100644
index 0000000..c82f73a
--- /dev/null
+++ b/files/exlibris/dps/d4_1/system.dir/conf/jhove/schema.ccs-gmbh.com/xlink.xsd
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<schema targetNamespace="http://www.w3.org/TR/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/TR/xlink" elementFormDefault="qualified">
+  <!--  global attributes  --> 
+  <attribute name="href"  type="anyURI"/>
+  <attribute name="role" type="string"/>
+  <attribute name="arcrole" type="string"/>
+  <attribute name="title" type="string" /> 
+  <attribute name="show">
+    <simpleType>
+      <restriction base="string">
+	<enumeration value="new" /> 
+	<enumeration value="replace" /> 
+	<enumeration value="embed" /> 
+	<enumeration value="other" /> 
+	<enumeration value="none" /> 
+      </restriction>
+    </simpleType>
+  </attribute>
+  <attribute name="actuate">
+    <simpleType>
+      <restriction base="string">
+	<enumeration value="onLoad" /> 
+	<enumeration value="onRequest" /> 
+	<enumeration value="other" /> 
+	<enumeration value="none" /> 
+      </restriction>
+    </simpleType>
+  </attribute>
+  <attribute name="label" type="string" /> 
+  <attribute name="from" type="string" /> 
+  <attribute name="to" type="string" /> 
+  <attributeGroup name="simpleLink">
+    <attribute name="type" type="string" fixed="simple" form="qualified" /> 
+    <attribute ref="xlink:href" use="optional" /> 
+    <attribute ref="xlink:role" use="optional" /> 
+    <attribute ref="xlink:arcrole" use="optional" /> 
+    <attribute ref="xlink:title" use="optional" /> 
+    <attribute ref="xlink:show" use="optional" /> 
+    <attribute ref="xlink:actuate" use="optional" /> 
+  </attributeGroup>
+  <attributeGroup name="extendedLink">
+    <attribute name="type" type="string" fixed="extended" form="qualified" /> 
+    <attribute ref="xlink:role" use="optional" /> 
+    <attribute ref="xlink:title" use="optional" /> 
+  </attributeGroup>
+  <attributeGroup name="locatorLink">
+    <attribute name="type" type="string" fixed="locator" form="qualified" /> 
+    <attribute ref="xlink:href" use="required" /> 
+    <attribute ref="xlink:role" use="optional" /> 
+    <attribute ref="xlink:title" use="optional" /> 
+    <attribute ref="xlink:label" use="optional" /> 
+  </attributeGroup>
+  <attributeGroup name="arcLink">
+    <attribute name="type" type="string" fixed="arc" form="qualified" /> 
+    <attribute ref="xlink:arcrole" use="optional" /> 
+    <attribute ref="xlink:title" use="optional" /> 
+    <attribute ref="xlink:show" use="optional" /> 
+    <attribute ref="xlink:actuate" use="optional" /> 
+    <attribute ref="xlink:from" use="optional" /> 
+    <attribute ref="xlink:to" use="optional" /> 
+  </attributeGroup>
+  <attributeGroup name="resourceLink">
+    <attribute name="type" type="string" fixed="resource" form="qualified" /> 
+    <attribute ref="xlink:role" use="optional" /> 
+    <attribute ref="xlink:title" use="optional" /> 
+    <attribute ref="xlink:label" use="optional" /> 
+  </attributeGroup>
+  <attributeGroup name="titleLink">
+    <attribute name="type" type="string" fixed="title" form="qualified" /> 
+  </attributeGroup>
+  <attributeGroup name="emptyLink">
+    <attribute name="type" type="string" fixed="none" form="qualified" /> 
+  </attributeGroup>
+</schema>
diff --git a/vars/main.yml b/vars/main.yml
index 4f74362..b7ebab5 100644
--- a/vars/main.yml
+++ b/vars/main.yml
@@ -21,9 +21,9 @@ local_jhove_xsds:
   - { dir: "{{ xsd_base_path }}dublincore.org/schemas/xmls/qdc/", filename: "dcmitype.xsd" }
   - { dir: "{{ xsd_base_path }}dublincore.org/schemas/xmls/qdc/", filename: "dcterms.xsd" }
   - { dir: "{{ xsd_base_path }}dublincore.org/schemas/xmls/qdc/", filename: "dc.xsd" }
-#  - { dir: "{{ xsd_base_path }}schema.ccs-gmbh.com/", filename: "alto-1-2.xsd" }
-#  - { dir: "{{ xsd_base_path }}schema.ccs-gmbh.com/", filename: "mets-metae.xsd" }
-#  - { dir: "{{ xsd_base_path }}schema.ccs-gmbh.com/", filename: "xlink.xsd" }
+  - { dir: "{{ xsd_base_path }}schema.ccs-gmbh.com/", filename: "alto-1-2.xsd" }
+  - { dir: "{{ xsd_base_path }}schema.ccs-gmbh.com/", filename: "mets-metae.xsd" }
+  - { dir: "{{ xsd_base_path }}schema.ccs-gmbh.com/", filename: "xlink.xsd" }
   - { dir: "{{ xsd_base_path }}slubarchiv.slub-dresden.de/slubarchiv/standards/rights/", filename: "rights1.xsd" }
   - { dir: "{{ xsd_base_path }}tei-c.org/release/xml/tei/custom/schema/xsd/", filename: "tei_all_dcr.xsd" }
   - { dir: "{{ xsd_base_path }}tei-c.org/release/xml/tei/custom/schema/xsd/", filename: "tei_all_teix.xsd" }
-- 
GitLab