<?xml version="1.0"?>

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">


	<xs:element name="project">
		<xs:complexType>
			<xs:sequence>
				
				<xs:element name="archiveData">
					<xs:complexType>
						<xs:sequence>
							<xs:element name="name" type="xs:string"/>
							<xs:element name="originalUrl" type="xs:string"/>
							<xs:element name="defaultUrl" type="xs:string"/>
							
							<xs:element name="dateCatalogued">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="catalogueYear" type="xs:string"/>
										<xs:element name="catalogueMonth" type="xs:string"/>
										<xs:element name="catalogueDay" type="xs:string"/>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
							
							<xs:element name="cataloguer" maxOccurs="unbounded">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="cataloguerSurname" type="xs:string"/>
										<xs:element name="cataloguerFirstname" type="xs:string"/>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
							
							<xs:element name="keywordsUrl" type="xs:string"/>
							
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			
				<xs:element name="projectData">
					<xs:complexType>
						<xs:sequence>
						
							<xs:element name="originalUrl" type="xs:string"/>
							<xs:element name="defaultUrl" type="xs:string"/>
							<xs:element name="workTitle" type="xs:string"/>
							<xs:element name="pageTitle" type="xs:string"/>
							
							<xs:element name="creator" maxOccurs="unbounded">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="creatorSurname" type="xs:string"/>
										<xs:element name="creatorFirstname" type="xs:string"/>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
							<xs:element name="type">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="traceCategory" type="xs:string" maxOccurs="unbounded"/>
										<xs:element name="subjectKeyword" type="xs:string" maxOccurs="unbounded"/>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
							
							<xs:element name="description" type="xs:string"/>
							<xs:element name="longDescription" type="xs:string"/>
							<xs:element name="isbn" type="xs:string" maxOccurs="unbounded"/>

							<xs:element name="contributors" type="xs:string"/>

							<xs:element name="funding" type="xs:string" maxOccurs="unbounded"/>
							<xs:element name="publisher" type="xs:string"/>
							
							
							<xs:element name="date">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="workStart">
											<xs:complexType>
												<xs:sequence>
													<xs:element name="startYear" type="xs:string"/>
													<xs:element name="startMonth" type="xs:string"/>
													<xs:element name="startDay" type="xs:string"/>
												</xs:sequence>
											</xs:complexType>
										</xs:element>
										<xs:element name="workEnd">
											<xs:complexType>
												<xs:sequence>
													<xs:element name="endYear" type="xs:string"/>
													<xs:element name="endMonth" type="xs:string"/>
													<xs:element name="endDay" type="xs:string"/>
												</xs:sequence>
											</xs:complexType>
										</xs:element>
										<xs:element name="published">
											<xs:complexType>
												<xs:sequence>
													<xs:element name="publishedYear" type="xs:string"/>
													<xs:element name="publishedMonth" type="xs:string"/>
													<xs:element name="publishedDay" type="xs:string"/>
												</xs:sequence>
											</xs:complexType>
										</xs:element>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
							
							<xs:element name="format" type="xs:string" maxOccurs="unbounded"/>
							<xs:element name="language" type="xs:string"/>
							
							<xs:element name="rights">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="accessRights" type="xs:string" maxOccurs="unbounded"/>
										<xs:element name="copyright" type="xs:string" maxOccurs="unbounded"/>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
							
							<xs:element name="collection" maxOccurs="unbounded">
								<xs:complexType>
									<xs:sequence>
										<xs:element name="collectionTitle" type="xs:string"/>
									</xs:sequence>
								</xs:complexType>
							</xs:element>
							
						</xs:sequence>
					</xs:complexType>
				</xs:element>
			
			
			
			</xs:sequence>
		</xs:complexType>
	</xs:element>


</xs:schema>







