<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema targetNamespace="http://www.state.gov/export/forms" 
	xmlns="http://www.state.gov/export/forms"
	xmlns:exp="http://www.state.gov/export/forms"
	xmlns:ifs="http://northropgrumman.com/inflowsuite/submission"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
	xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" 
	xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
	jaxb:extensionBindingPrefixes="xjc" 
	elementFormDefault="qualified">

<!--

****************************************************************************************************

	D-TRADE DSP-61 FORM XML SCHEMA DEFINITION
	VERSION 3.0
	CORRESPONDING FORM VERSION: 3.0

	Revision History 01/10/2009
	
	1. Now the Schema version number is the same as the corresponding pureEdge form version number.

****************************************************************************************************

	D-TRADE DSP-61 FORM XML SCHEMA DEFINITION
	VERSION 1.2
	CORRESPONDING FORM VERSION 1.2

	REVISION: 12/19/2006

	1. Added element DTCCompliance
	2. Added element ComplianceDisclosureNumber
	3. Updated ApplicantStatementCertificationType with two new restrictions

****************************************************************************************************

	D-TRADE DSP-61 FORM XML SCHEMA DEFINITION
	VERSION 1.0

	REVISION: 5/2/2006

	1. Quantity element definition is now an IntegerType
	2. MonetaryValue definition is now an IntegerType

****************************************************************************************************

	D-TRADE DSP-61 FORM XML SCHEMA DEFINITION
	VERSION 1.1

	INITIAL VERSION: 06/2006

****************************************************************************************************
	
-->
	<xsd:annotation>
		<xsd:documentation>
			This is the schema for the DSP-61 form.  It imports the CommonFormSchema.
			
			Again definitions are in alphabetical order with the exception of the DSP61 complex type
			and element definition are last.
		</xsd:documentation>
	</xsd:annotation>
	
	<xsd:annotation>
		<xsd:documentation>
			(C)Northrop Grumman Corporation. 2005. All rights reserved.  No part of this
			copyrighted work may be reproduced, modified or distributed in
			any form or by any means or stored in any database or retrieval system,
			without the prior written permission of Northrop Grumman Corporation.
			Violation of copyright carries civil and criminal penalties.
		</xsd:documentation>
	</xsd:annotation>
	
	<!-- Import the common schema, defining common data elements across different form types -->
	<xsd:import namespace="http://northropgrumman.com/inflowsuite/submission" schemaLocation="../../common/common.schema.xsd" />
	
	<!-- field type Definitions -->
	
	<!-- Simple Types -->

	<xsd:simpleType name="ApplicantIsType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an application is type.
				Allowable values are restricted to 'Government', 'Manufacturer' or 'Exporter'.
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="Government|Manufacturer|Exporter"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="ApplicantStatementCertificationType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an applicatant statememt certification type.
				Allowable values are restricted to 'AuthEligible' for authorized eligible, 'AuthNotEligible' for authorized not eligible, 'NotAuthEligible', or 'NotAuthNotEligible'
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="AuthEligible|AuthNotEligible|AuthNotEligibleException|NotAuthEligible|NotAuthNotEligible|NotAuthNotEligibleException"/>
		</xsd:restriction>
	</xsd:simpleType>
	
	<xsd:simpleType name="ComplianceDisclosureNumberType">
		<xsd:annotation>
			<xsd:documentation>
				The Compliance Disclosure field on the form.  The format is ##-#######, where the first two digits before the dash
				are supposed to be a year. 
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="\d{2}-\d{7}"/>
		</xsd:restriction>
	</xsd:simpleType>		

	<xsd:simpleType name="CommodityIsType">
		<xsd:annotation>
			<xsd:documentation>
				Defines they type of commodity (part, component, software, etc).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="Component, Major|Component, Minor|Accessory/Attachment|Part|Firmware|Software|System"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="ForeignConsigneeTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a foreign consignee.  Value must equal "ForeignConsignee".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="ForeignConsignee"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="ForeignDestinationTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a domestic Ultimate Destination.  
				Value must equal "ConsigneeUltimateDestination".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="ConsigneeUltDestination"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="ForeignEndUserTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a foreign end user.  Value must equal "ForeignEndUser".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="ForeignEndUser"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="ForeignUltimateDestinationTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a foreign ultimate destination.  
				Value must equal "ForeignEndUserUltimateDestination".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="ForeignEndUserUltDest"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="ForeignIntermediateConsigneeTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as an intermediate consignee.  Value must equal "IntermediateConsignee".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="IntermediateConsignee"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="LicenseIDType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a license id value.
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="9"/>
			<xsd:minLength value="1"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="ManufacturerTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a manufacturer.  Value must equal "Manufacturer".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="Manufacturer"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="MediumDescriptionType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a description for lengths up to 500 characters.
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="500"/>
			<xsd:minLength value="1"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="PortDescriptionType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a port description.
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="35"/>
			<xsd:minLength value="1"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="RelatedLicenseBlock3TypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a licensed country.  Value must equal "licensedcountry".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="licensedcountry"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="RelatedLicenseDeniedTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a related denied license.  Value must equal "deniedcountry".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="deniedcountry"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="RelatedLicenseFurtheranceAgreementTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a related denied license.  Value must equal "deniedcountry".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="furtheranceagreement"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="RelatedLicenseOtherTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a related license other.  Value must equal "licensedother".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="licensedother"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="RelatedLicenseSupportAgreementTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a related denied license.  Value must equal "deniedcountry".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="supportagreement"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="SourceTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a source.  Value must equal "Source".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="Source"/>
		</xsd:restriction>
	</xsd:simpleType>
	
	<xsd:simpleType name="SpecificPurposeDescriptionType">
		<xsd:annotation>
			<xsd:documentation>
				Defines the specific purpose description
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="500"/>
			<xsd:minLength value="1"/>
		</xsd:restriction>
	</xsd:simpleType>	
	
	<xsd:simpleType name="TransactionIDType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a transaction id type - unique identifier used for tracking purposes by external system submitting the case.
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:maxLength value="40"/>
			<xsd:minLength value="1"/>
		</xsd:restriction>
	</xsd:simpleType>

	<xsd:simpleType name="USIntermediateConsigneeTypeType">
		<xsd:annotation>
			<xsd:documentation>
				Fixed-value element used to identify an entity as a US Intermediate Consignee type.  
				Value must equal "USIntermediateConsignee".
			</xsd:documentation>
		</xsd:annotation>
		<xsd:restriction base="xsd:string">
			<xsd:pattern value="USIntermediateConsignee"/>
		</xsd:restriction>
	</xsd:simpleType>
	
	<!-- Complex Types -->

	<xsd:complexType name="ApplicantContactType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an application contact (name, phone, extension).
				SequenceNumber must be unique across all ApplicantContactType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Name" type="ifs:ShortNameType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="PhoneNumber" type="ifs:PhoneNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Extension" type="ifs:ExtensionType" minOccurs="0" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="CommodityCategoryType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a usml commodity category.  This common category data is inherited by CommodityType.
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType"/>
			<xsd:element name="USMLCategory" type="ifs:USMLCategoryType"/>
			<xsd:element name="USMLSubCategory" type="ifs:USMLSubCategoryType"/>
			<xsd:element name="CommodityCode" type="ifs:CommodityCodeType" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="CommodityType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a commodity.
				Inherits CommodityCategoryType fields for USML category info.  Includes additional fields for commodity information.
				SequenceNumber must be unique across all CommodityType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="exp:CommodityCategoryType">
				<xsd:sequence>
					<xsd:element name="Quantity" type="ifs:IntegerType" minOccurs="1" maxOccurs="1"/>
					<xsd:element name="UnitOfMeasure" type="ifs:UnitOfMeasureType" minOccurs="1" maxOccurs="1"/>
					<xsd:element name="CommodityDescription" type="ifs:CommmodityDescriptionType" minOccurs="1" maxOccurs="1"/>
					<xsd:element name="MonetaryValue" type="ifs:IntegerType" minOccurs="1" maxOccurs="1"/>
					<xsd:element name="UnitPrice" type="ifs:DecimalType" minOccurs="1" maxOccurs="1"/>
					<xsd:element name="CommodityIs" type="exp:CommodityIsType" minOccurs="1" maxOccurs="1"/>
					<xsd:element name="NoneIntended" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
					<xsd:element name="IntendedDescription" type="exp:MediumDescriptionType" minOccurs="0" maxOccurs="1"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="GovernmentPersonnelType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a Government Contact type.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Name" type="ifs:ShortNameType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Agency" type="ifs:AgencyType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="OtherAgency" type="ifs:OtherAgencyType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="PhoneNumber" type="ifs:PhoneNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Extension" type="ifs:ExtensionType" minOccurs="0" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="ForeignConsigneeType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an foreign consignee type. Inherits ForeignLocationType fields.  Includes one additional field, which is a fixed string value defined by ForeignConsigneeTypeType.
				SequenceNumber must be unique across all ForeignConsigneeType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="exp:ForeignLocationType">
				<xsd:sequence>
					<xsd:element name="Type" type="exp:ForeignConsigneeTypeType" minOccurs="1" maxOccurs="1"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="ForeignDestinationType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a Domestic Ultimate Destination type.
				SequenceNumber must be unique across all Domestic Ultimate Destinations entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="exp:ForeignLocationType">
				<xsd:sequence>
					<xsd:element name="Type" type="exp:ForeignDestinationTypeType" minOccurs="1" maxOccurs="1"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="ForeignEndUserType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an foreign end-user type. Inherits ForeignLocationType fields.  Includes one additional field, which is a fixed string value defined by ForeignEndUserTypeType.
				SequenceNumber must be unique across all ForeignEndUserType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="exp:ForeignLocationType">
				<xsd:sequence>
					<xsd:element name="Type" type="exp:ForeignEndUserTypeType" minOccurs="1" maxOccurs="1"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="ForeignUltimateDestinationType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an foreign intermediate consignee type. Inherits ForeignLocationType fields.  Includes one additional field, which is a fixed string value defined by ForeignIntermediateConsigneeTypeType.
				SequenceNumber must be unique across all ForeignEndUserType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="exp:ForeignLocationType">
				<xsd:sequence>
					<xsd:element name="Type" type="exp:ForeignUltimateDestinationTypeType" minOccurs="1" maxOccurs="1"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="ForeignLocationType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a foriegn location (street address, city, country).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType"/>
			<xsd:element name="Name" type="ifs:NameType"/>
			<xsd:element name="StreetAddress" type="ifs:AddressType" minOccurs="0"/>
			<xsd:element name="City" type="ifs:CityType" minOccurs="0"/>
			<xsd:element name="CountryCode" type="ifs:ForeignCountryCodeType" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="ForeignIntermediateConsigneeType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an foreign intermediate consignee type. Inherits ForeignLocationType fields.  Includes one additional field, which is a fixed string value defined by ForeignIntermediateConsigneeTypeType.
				SequenceNumber must be unique across all ForeignEndUserType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="exp:ForeignLocationType">
				<xsd:sequence>
					<xsd:element name="Type" type="exp:ForeignIntermediateConsigneeTypeType" minOccurs="1" maxOccurs="1"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="ManufacturerType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a manufacturer type.
				SequenceNumber must be unique across all Manufacturer entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="Type" type="exp:ManufacturerTypeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Name" type="ifs:NameType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="StreetAddress" type="ifs:AddressType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="City" type="ifs:CityType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="StateCode" type="ifs:StateCodeType" minOccurs="0"/>
			<xsd:element name="PostalCode" type="ifs:PostalCodeType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="CountryCode" type="ifs:CountryCodeType" minOccurs="1" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="RelatedLicenseBlock3Type">
		<xsd:annotation>
			<xsd:documentation>
				Defines an related license block 3 type.
				SequenceNumber must be unique across all RelatedLicenseBlock3Type entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Type" type="exp:RelatedLicenseBlock3TypeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="LicenseID" type="exp:LicenseIDType" minOccurs="1" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="RelatedLicenseDeniedType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an related denied license type.
				SequenceNumber must be unique across all RelatedLicenseDeniedType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Type" type="exp:RelatedLicenseDeniedTypeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="LicenseID" type="exp:LicenseIDType" minOccurs="1" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="RelatedLicenseFurtheranceAgreementType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an related license block 3 type.
				SequenceNumber must be unique across all RelatedLicenseBlock3Type entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Type" type="exp:RelatedLicenseFurtheranceAgreementTypeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="LicenseID" type="exp:LicenseIDType" minOccurs="1" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="RelatedLicenseOtherType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an related other license type.
				SequenceNumber must be unique across all RelatedLicenseOtherType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Type" type="exp:RelatedLicenseOtherTypeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="LicenseID" type="exp:LicenseIDType" minOccurs="1" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="RelatedLicenseSupportAgreementType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an related license block 3 type.
				SequenceNumber must be unique across all SupportAgreementLicenseType entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Type" type="exp:RelatedLicenseSupportAgreementTypeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="LicenseID" type="exp:LicenseIDType" minOccurs="1" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="SourceType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a source type.
				SequenceNumber must be unique across all Source entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="Type" type="exp:SourceTypeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Name" type="ifs:NameType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="StreetAddress" type="ifs:AddressType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="City" type="ifs:CityType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="StateCode" type="ifs:StateCodeType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="PostalCode" type="ifs:PostalCodeType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="CountryCode" type="ifs:CountryCodeType" minOccurs="1" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<xsd:complexType name="USIntermediateConsigneeType">
		<xsd:annotation>
			<xsd:documentation>
				Defines a Domestic Intermediate Consignee type.
				SequenceNumber must be unique across all Domestic Intermediate Consignee entries.
				This is currently not enforced via unique constraints in the schema, but is enforced by the software (duplicate SequenceNumber values will cause an error).
			</xsd:documentation>
		</xsd:annotation>
		<xsd:complexContent>
			<xsd:extension base="exp:USLocationType">
				<xsd:sequence>
					<xsd:element name="Type" type="exp:USIntermediateConsigneeTypeType" minOccurs="1" maxOccurs="1"/>
				</xsd:sequence>
			</xsd:extension>
		</xsd:complexContent>
	</xsd:complexType>

	<xsd:complexType name="USLocationType">
		<xsd:annotation>
			<xsd:documentation>
				Defines an U.S. location type (street address).
				Serves as the base type for U.S. sellers and consigners.
			</xsd:documentation>
		</xsd:annotation>
		<xsd:sequence>
			<xsd:element name="SequenceNumber" type="ifs:SequenceNumberType"/>
			<xsd:element name="Name" type="ifs:NameType"/>
			<xsd:element name="StreetAddress" type="ifs:AddressType" minOccurs="0"/>
			<xsd:element name="City" type="ifs:CityType" minOccurs="0"/>
			<xsd:element name="StateCode" type="ifs:StateCodeType" minOccurs="0"/>
			<xsd:element name="PostalCode" type="ifs:PostalCodeType" minOccurs="0"/>
		</xsd:sequence>
	</xsd:complexType>
	
	<xsd:complexType name="DSP61Type">
		<xsd:sequence>
			<!-- Cover Letter Fields -->
			<xsd:element name="TransactionID" type="exp:TransactionIDType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ClassifiedInformation" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<!-- Block 1 Fields -->
			<xsd:element name="PreparedDate" type="ifs:DateType" minOccurs="1" maxOccurs="1"/>
			<!-- Block 2 Fields -->
			<xsd:element name="ApplicantID" type="ifs:ApplicantType" minOccurs="1" maxOccurs="1"/>
			<!-- Block 3 Fields -->
			<xsd:element name="ShippedCountry" type="ifs:ForeignCountryCodeType" minOccurs="1" maxOccurs="1"/>
			<!-- Block 4 Fields -->
			<xsd:element name="ImportPort1" type="exp:PortDescriptionType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ImportPort2" type="exp:PortDescriptionType" minOccurs="0" maxOccurs="1"/>
			<!-- Block 5 Fields -->
			<xsd:element name="DestinationCountry" type="ifs:ForeignCountryCodeType" minOccurs="1" maxOccurs="1"/>
			<!-- Block 6 Fields -->
			<xsd:element name="ExportPort1" type="exp:PortDescriptionType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ExportPort2" type="exp:PortDescriptionType" minOccurs="0" maxOccurs="1"/>
			<!-- Block 7 Fields -->
			<xsd:element name="GovernmentPersonnel" type="exp:GovernmentPersonnelType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Block 8 Fields -->
			<xsd:element name="ApplicantSourceCategory" type="exp:ApplicantIsType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ApplicantName" type="ifs:NameType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ApplicantAttention" type="ifs:AttentionType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ApplicantStreetAddress" type="ifs:AddressType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ApplicantCity" type="ifs:CityType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ApplicantStateCode" type="ifs:StateCodeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ApplicantPostalCode" type="ifs:PostalCodeType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ApplicantPhoneNumber" type="ifs:PhoneNumberType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ApplicantExtension" type="ifs:ExtensionType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="HasSubsidiary" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="SubsidiaryName" type="ifs:NameType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="SubsidiaryAttention" type="ifs:AttentionType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="SubsidiaryStreetAddress" type="ifs:AddressType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="SubsidiaryCity" type="ifs:CityType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="SubsidiaryStateCode" type="ifs:StateCodeType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="SubsidiaryPostalCode" type="ifs:PostalCodeType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="SubsidiaryPhoneNumber" type="ifs:PhoneNumberType" minOccurs="0" maxOccurs="1"/>
			<xsd:element name="SubsidiaryExtension" type="ifs:ExtensionType" minOccurs="0" maxOccurs="1"/>
			<!-- Block 9 Fields -->
			<xsd:element name="ApplicantContact" type="exp:ApplicantContactType" minOccurs="1" maxOccurs="unbounded"/>
			<!-- Block 10 Fields -->
			<!-- 10A -->
			<xsd:element name="WasLicensedBlock3" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="RelatedLicenseBlock3" type="exp:RelatedLicenseBlock3Type" minOccurs="0" maxOccurs="18"/>
			<!-- 10B -->
			<xsd:element name="WasLicensedOtherCountries" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="RelatedLicenseOther" type="exp:RelatedLicenseOtherType" minOccurs="0" maxOccurs="18"/>
			<!-- 10C -->
			<xsd:element name="WasDeniedBlock3" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="RelatedLicenseDenied" type="exp:RelatedLicenseDeniedType" minOccurs="0" maxOccurs="18"/>
			<!-- 10D -->
			<xsd:element name="WasNeverLicensed" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<!-- 10E -->
			<xsd:element name="FurtheranceAgreement" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="RelatedLicenseFurtheranceAgreement" type="exp:RelatedLicenseFurtheranceAgreementType" minOccurs="0" maxOccurs="18"/>
			<!-- 10F -->
			<xsd:element name="SupportAgreement" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="RelatedLicenseSupportAgreement" type="exp:RelatedLicenseSupportAgreementType" minOccurs="0" maxOccurs="18"/>
			<!-- 10G -->			
			<xsd:element name="DTCCompliance" type="ifs:YesNoType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ComplianceDisclosureNumber" type="exp:ComplianceDisclosureNumberType" minOccurs="0" maxOccurs="1"/>			
			<!-- Block 11, 12, 13, 14 Fields -->
			<xsd:element name="Commodity" type="exp:CommodityType" minOccurs="1" maxOccurs="unbounded"/>
			<!-- Block 15 Fields -->
			<xsd:element name="TotalMonetaryValue" type="ifs:IntegerType" minOccurs="1" maxOccurs="1"/>
			<!-- Block 16 Fields -->
			<xsd:element name="ForeignEndUser" type="exp:ForeignEndUserType" minOccurs="1" maxOccurs="unbounded"/>
			<!-- Block 17 Fields -->
			<xsd:element name="ManufacturerUnknown" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="Manufacturer" type="exp:ManufacturerType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Block 18 Fields -->
			<xsd:element name="ForeignConsignee" type="exp:ForeignConsigneeType" minOccurs="1" maxOccurs="unbounded"/>
			<!-- Block 19 Fields -->
			<xsd:element name="Source" type="exp:SourceType" minOccurs="1" maxOccurs="unbounded"/>
			<!-- Block 20 Fields -->
			<xsd:element name="ForeignIntermediateConsigneeNone" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ForeignIntermediateConsignee" type="exp:ForeignIntermediateConsigneeType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Block 21 Fields -->
			<xsd:element name="USIntermediateConsignee" type="exp:USIntermediateConsigneeType" minOccurs="1" maxOccurs="unbounded"/>
			<!-- Block 22 Fields -->
			<xsd:element name="ForeignDestinationNone" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="ForeignDestination" type="exp:ForeignDestinationType" minOccurs="0" maxOccurs="unbounded"/>
			<!-- Block 23 Fields -->
			<xsd:element name="PurposeReturnBlock16" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="PurposeTransshipment" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="PurposeOverhaul" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="PurposeUpgrade" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="PurposeOther" type="ifs:BooleanType" minOccurs="1" maxOccurs="1"/>
			<xsd:element name="SpecificPurposeDescription" type="exp:SpecificPurposeDescriptionType" minOccurs="0" maxOccurs="1"/>
			<!-- Block 24 Fields -->
			<xsd:element name="ForeignUltimateDestination" type="exp:ForeignUltimateDestinationType" minOccurs="1" maxOccurs="unbounded"/>
			<!-- Block 25 Fields -->
			<xsd:element name="ApplicantStatementCertification" type="exp:ApplicantStatementCertificationType" minOccurs="1" maxOccurs="1"/>
		</xsd:sequence>
	</xsd:complexType>

	<!-- Definition of the DSP61 -->
	<xsd:element name="DSP61" type="exp:DSP61Type"/>
</xsd:schema>