HAVRC-1.8 Intake schema extensions

XSD for Intake schema extensions for HAVRC on top of 1.8 (intakes_havrc.xsd)

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<!--
    Intake schema (XSD)

    Entity  : Intake
    Part    : Local - HAVRC
    Used for: Nuxeo EP core document type

    $LastChangedRevision: 3474 $
    $LastChangedDate: 2010-11-10 22:30:30 -0800 (Wed, 10 Nov 2010) $
-->

<xs:schema
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:ns="http://collectionspace.org/services/intake/local/havrc"
    xmlns="http://collectionspace.org/services/intake/local/havrc"
      targetNamespace="http://collectionspace.org/services/intake/local/havrc"
    version="0.1">

  <xs:element name="imageSource" type="xs:string"/>
  <xs:element name="orderStatus" type="xs:string"/>
  <xs:element name="numberAccessions" type="xs:string"/>
  <xs:element name="orderItemsGroupList" type="orderItemsGroupList"/>

  <xs:complexType name="orderItemsGroupList">
		<xs:sequence>
			<xs:element name="orderItemsGroup" type="orderItemsGroup" minOccurs="0"
							maxOccurs="unbounded"/>
		</xs:sequence>
  </xs:complexType>
  <xs:complexType name="orderItemsGroup">
	    <xs:sequence>
			<xs:element name="source" type="xs:string"/>
			<xs:element name="sourceDetail" type="xs:string"/>
			<xs:element name="itemType" type="xs:string"/>
			<xs:element name="specialInstructions" type="xs:string"/>
		</xs:sequence>
  </xs:complexType>
</xs:schema>