<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
	<!--
	Publication Date: 08/12/2025.

	These are the datatype definitions that are unique to ETran, and wouldn't be used by other SBA systems. For example,
	other systems at the SBA which allow XML updates might have use for SBA_BusPerInd, SBA_TaxId and even loan related
	types such as SBA_FixVarInd. It promotes sharing more if potentially sharable types are in SBA_SimpleTypes, not here.

	The following are alphabetical by name. A type is explained only if it isn't obvious.
	-->
	<xs:simpleType name="SBA_1416Control"><!-- Uniquely indentifies a disbursement. -->
		<xs:restriction base="xs:string">
			<xs:pattern value="\d{1,10}_\d{1,3}"/><!-- LoanAppNmb, _, disbursment sequence number -->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ActionsLoanServicing">
		<xs:restriction base="xs:string">
			<xs:minLength value="6"/>
			<xs:maxLength value="9"/>
			<xs:enumeration value="cancel"/>
			<xs:enumeration value="reinstate"/>
			<xs:enumeration value="update"/>
			<xs:enumeration value="terminate"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ActionsLocate"><!-- (May be moved to SBA_SimpleTypes if needed by other systems.) -->
		<xs:restriction base="xs:string">
			<xs:enumeration value="locate"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ActionsLocateOrUpdate"><!-- (May be moved to SBA_SimpleTypes if needed by other systems.) -->
		<xs:restriction base="xs:string">
			<xs:enumeration value="locate"/>
			<xs:enumeration value="update"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ActionsInsertOrDelete"><!-- (May be moved to SBA_SimpleTypes if needed by other systems.) -->
		<xs:restriction base="xs:string">
			<xs:enumeration value="insert"/>
			<xs:enumeration value="delete"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ActionsInsertDeleteOrDeleteAllIfUpdatingAnExistingApp"><!-- Current name, used by 5.0+. See next simpleType. -->
		<!--
		This action attribute type is used in complexTypes where all subelements are prime keys (which disallows update).
		Also, there would be no way to specify both the prime key to be updated and also its new value. The phrase "IfUpdatingAnExistingApp"
		now includes loans in the case of Servicing with XML versions 5.0 and higher. (Servicing with lower XML versions will still say
		SBA_ActionsInsertOrDelete in the older XSDs.)
		-->
		<xs:restriction base="xs:string">
			<!-- In all Origination web services (Originate3, OrigScore, OrigUpdate or Underwriting), insert may be given: -->
			<xs:enumeration value="insert"/>
			<!-- Only in updating web services (OrigUpdate or Underwriting) may delete or deleteall be given: -->
			<xs:enumeration value="delete"/>
			<!--
			If given, "deleteall" must be in only the first occurrence of the complexType within the App element,
			and all remaining occurrences of the same complexType must specify action="insert".
			-->
			<xs:enumeration value="deleteall"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ActionsInsertOrUpdateIfUpdatingAnExistingApp">
		<!-- This action attribute type is used in complexTypes that must exist for the app to be valid (presently, only LoanApplication). -->
		<xs:restriction base="xs:string">
			<!-- In all Origination web services (Originate3, OrigScore, OrigUpdate or Underwriting), insert may be given: -->
			<xs:enumeration value="insert"/>
			<!-- Only in updating web services (OrigUpdate, Underwriting or Servicing) may update be given: -->
			<xs:enumeration value="update"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ActionsInsertUpdateDeleteOrDeleteAllIfUpdatingAnExistingApp">
		<xs:restriction base="xs:string">
			<!-- In all Origination web services (Originate3, OrigScore, OrigUpdate or Underwriting), insert may be given: -->
			<xs:enumeration value="insert"/>
			<!-- Only in updating web services (OrigUpdate, Underwriting or Servicing) may update, delete or deleteall be given: -->
			<xs:enumeration value="update"/>
			<xs:enumeration value="delete"/>
			<!--
			If given, "deleteall" must be in only the first occurrence of the complexType within the App element,
			and all remaining occurrences of the same complexType must specify action="insert".
			-->
			<xs:enumeration value="deleteall"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ActionsInsertUpdateOrDeleteIfUpdatingAnExistingApp">
		<xs:restriction base="xs:string">
			<!-- In all Origination web services (Originate3, OrigScore, OrigUpdate or Underwriting), insert may be given: -->
			<xs:enumeration value="insert"/>
			<!-- Only in updating web services (OrigUpdate, Underwriting or Servicing) may update or delete be given: -->
			<xs:enumeration value="update"/>
			<xs:enumeration value="delete"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_AssocTypeCode">
		<xs:restriction base="xs:string">
			<xs:enumeration value=""  /><!-- That is, optional. -->
			<xs:enumeration value="1" /><!-- Borrower -->
			<xs:enumeration value="2" /><!-- Principal -->
			<xs:enumeration value="3" /><!-- Guarantor -->
			<xs:enumeration value="4" /><!-- Attorney -->
			<xs:enumeration value="5" /><!-- Accountant -->
			<xs:enumeration value="6" /><!-- Packager -->
			<xs:enumeration value="7" /><!-- Loss Verifier -->
			<xs:enumeration value="8" /><!-- Appraiser -->
			<xs:enumeration value="9" /><!-- Auctioneer -->
			<xs:enumeration value="10"/><!-- Other -->
			<xs:enumeration value="11"/><!-- UCC Debtor -->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_DisbClosingCode">
		<xs:restriction base="xs:string">
			<xs:enumeration value="" /><!-- That is, optional. -->
			<xs:enumeration value="1"/><!-- Initial Full.-->
			<xs:enumeration value="2"/><!-- Initial Partial.-->
			<xs:enumeration value="3"/><!-- Subsequent Partial.-->
			<xs:enumeration value="4"/><!-- Subsequent Full.-->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ETranVersions">
		<!--
		The SBA's XML parser can handle multiple formats, with no loss of performance.  Support for the 2001 WDDX format
		and for version 1.0/1.3 has been discontinued. Currently plans are to support only 2 major versions: current 3.0/3.2/3.3,
		and previous 2.0/2.3. It is your choice as to which format you implement within your system. However SBA recommends
		that all new implementation efforts utilize <SBA_ETran version="3.3">.
		-->
		<xs:restriction base="xs:string">
			<!-- <xs:enumeration value="1.0"/> -->
			<!-- Original 22 table tags version, structured on isolating independent multiple relationships, discontinued. -->
			<xs:enumeration value="2.0"/>
			<!--
			Starting with 2.0 business and person elements were eliminated, resulting in a 20 table tags version of SBA_ETran.
			As of 2.0, business and person data is passed with the borrower, guarantor or principal elements, along with the
			tag: <BusPerInd>B</BusPerInd> or <BusPerInd>P</BusPerInd>. This element replaces the prior tags BorrBusPerInd,
			GuarBusPerInd and PrinBusPerInd. The other change is simplifying the address elements to remove the prefix 'Bus'
			or 'Per'. For example, BusPhyAddrStCd is now PhyAddrStCd. This can now be inferred from BusPerInd.
			-->
			<xs:enumeration value="2.3"/>
			<!--
			2.3 further simplifies SBA_ETran, through the use of more English-like names. Otherwise, it's the same as 2.0.
			-->
			<xs:enumeration value="3.0"/>
			<!--
			For Loan Origination, 3.0 is the same as 2.3. But 3.0 is significant in that it's the first version that supports
			Loan Servicing. In Loan Servicing, there are more actions allowed a new table for Disbursement, and some behavioral
			differences: When action="update", not coding an element means "keep its value the same", but coding <tag></tag>
			means "erase its data" (in database terminology, NULL). For data elements that don't allow NULL, the Loan Servicing
			XSD uses SBA_Mand datatypes to prevent <tag></tag>.

			Since the SBA_ETran version attribute's default ("fixed") is 1.0, Loan Servicing E-Tran XML must specify the
			version attribute in the root element SBA_ETran, and that version must be at least 3.0.
			-->
			<xs:enumeration value="3.2"/>
			<!--
			3.2 simplifies the XML somewhat by moving BusinessPrincipal data to Principal. Recommended for all new development.
			-->
			<xs:enumeration value="3.3"/>
			<!--
			3.3 makes it clearer which participants are persons, adds a new type of particpant (Associate) to Loan
			Servicing and adds 3 new international address elements (country code, postal code and state name). The
			international address elements were originally for persons only. But with version 3.4's added support for
			international address elements for business, this restriction was relaxed in 3.3. Now international address
			elements may be given for both businesses and persons in 3.3. Also only in Servicing, for borrowers, guarantors
			and principals (but not associates), there are new outlaw code and description elements. Also only in Servicing,
			the Loan element now allows action="locate", meaning that the Loan element is being used only to identify which
			loan other changes apply to. (That is, you're not trying to update financial information associated with the
			loan.) When action="locate" is given, the only allowable subelements are LoanApplicNmb (SBA application number)
			or LoanNmb (SBA loan number). If both are given, they must match the same loan (optional safeguard technique).
			-->
			<xs:enumeration value="3.3x"/>
			<!--
			Servicing type for 503 Pool Loans. Colson feed only. Not for use by lenders.
			-->
			<xs:enumeration value="3.4"/>
			<!--
			3.4 adds an element for whether or not the lender is allowed to make loans outside of the their area of
			operations, ARC reasons for ARC loans in Loan Orignination, DUNS numbers for businesses, and international
			address fields (country code, postal code and state name) for both businesses and persons. (As a result,
			international address elements are now allowed for both businesses and persons in version 3.3 as well.)
			-->
			<xs:enumeration value="3.4c"/>
			<xs:enumeration value="3.4i"/>
			<xs:enumeration value="3.4p"/>
			<!--
			3.4c ("credit"), 3.4i ("internal") and 3.4p ("pool") are mostly the same as 3.4, but are used in SBA
			internal processes only. Not for use by lenders. Version specifics:
			3.4c	a superset of 3.4 that adds 6 credit scoring elements for 3.4 submissions that originate
					from within the SBA.
			3.4i	a subset of 3.4 that represent permitted optional changes that may be applied at the time
					as an SBA underwriting decision is made.
			3.4p	a very small subset of 3.4 for 503 pooled loans.
			-->
			<xs:enumeration value="3.5"/>
			<!--
			Makes certain lender-related elements optional for direct loan applications (processing methods where the SBA
			is the lender). The same elements remain mandatory for lenders and other processing methods. Adds support for
			multiple eligibility questions, change of asset ownership, Community Advantage Initiative and a more generalized
			way to specify reasons. (LoanReason elements are required for restricted processing methods to specify why that
			processing method is being used and/or justified for a given loan application, as sometimes defined by Congress.)
			-->
			<xs:enumeration value="3.6"/>
			<!--
			Fixes an orphaned complexType for change of asset ownership. Redefines Comments from multiple occurrences with
			maxLength="255" (SBA_Str255) into one big xs:string without any xs:restriction. This eliminates the previous
			need to have a sequence number, which has been removed in 3.6.
			-->
			<xs:enumeration value="3.7"/>
			<!--
			Changes to allow 2 phases of interest: LoanApplication.InterestStructureCd, Loan.InterestStructureCd, Interest
			element and subelements of Interest. Removal of old single-phase elements in LoanApplication and Loan.
			Addition of new elements: Collateral.CollateralSubtypCd, Guarantor.GuaranteeTypCd, Principal.VetCertInd and
			LoanApplication.LimitExemptionInd.
			For details, see SBA_ETran.3.7.orig.xsd and SBA_ETran.3.7.serv.xsd.
			-->
			<xs:enumeration value="3.8"/>
			<!--
			Adds LoanApplication.UnderwritingBy element to allow a lenders to renounce direct authority to approve an application.
			For use with any origination XML interface except OrigBypass, OrigUpdate or Underwriting.
			-->
			<xs:enumeration value="3.8i"/>
			<!--
			For use with the OrigUpdate and Underwriting Web Services. Contains fewer elements than 3.8.
			-->
			<xs:enumeration value="3.9"/>
			<!--
			When entering the ChangeOfOwnership element, the qualifications of the business appraiser have now been moved to a
			separate BusAppr element to represent a database-driven one-to-many relationship. Also, 3.9 contains the first
			documentation of the BorrowerRace element (for disaster loan applications only).
			Added new element LoanApplication.AgentInvolved.
			-->
			<xs:enumeration value="4.0"/>
			<!--
			This version is not yet officially supported. It represents the "grand unification" version that will be usable by ALL
			Origination web services. It's capable of being used by "new app" web services (currently, Originate3 and OrigScore),
			but can also be used by "existing app" web services (currently, OrigUpdate and Underwriting). The same XML version now
			supports them all. This implies coding differences by submission context that will be very familiar to users of the
			Servicing web services for existing loans.

			CODING DIFFERENCES ASSOCIATED WITH SUBMISSION CONTEXT AND VERSION:
			(1)	Because Underwriting may use 4.0, 4.0 must allow LiquidCredit elements (LiquidCreditScore, CreditReport and CreditScore).
				But those elements may be given ONLY by SBA Reviewers. Anyone who submits 4.0 XML with any LiquidCredit element, but
				who is NOT an SBA Reviewer, will get an error.
			(2)	Because "new app" web services may use 4.0, 4.0 must allow ProcessingMethodCd, PartnerInformation and LocationId. But
				once an app exists, they cannot be changed (neither in web pages, nor by XML). Therefore, "existing app" web services
				may not give those 3 elements. Doing so will result in an error.
			(3)	Regardless of whether due to web page or web service processing, once a lender has elected to have an app underwritten
				by the SBA, that election is irrevocable for that app. Therefore, existing app web services may not contain the
				UnderwritingBy element with the value LNDR once the app is marked as SBA underwritten. (It may, however, be given with
				the value SBA.)
			(4)	All group elements other than LoanApplication: "New app" web services never need to give action="insert" on those group
				elements (for example, Borrower, UseOfProceeds, etc), because action="insert" was assumed. That was also true of
				"existing app" web services using previous XML versions. (Those same group elements were predeleted to allow reinsertion
				from scratch.) But as of version 4.0, all group elements other than LoanApplication have "prime keys", a database term
				for data elements that uniquely specify which row in the database is to be processed. As a result, such group elements
				are NOT predeleted and, in most cases, may specify action="update" or action="delete". This is the most significant
				coding difference introduced in version 4.0. Only users of "existing app" web services who switch to version 4.0 are
				affected.
			(5)	If all elements in a group element (complexType) are part of the prime key, there's no way to accomplish action="update",
				so that action has to be disallowed. BorrowerRace, BusAppr, PrincipalRace, SpecialPurpose and UnderservedMarket fall
				into that category. That's because you can't give the same code element twice, once as a prime key and then again with a
				different value for it to contain. For those 5 complexTypes, you must give 2 instances of the complexType: Use
				action="delete" on the instance with the old code value and use action="insert" on the instance with the new code value.
			(6)	BorrPhnNmb is eliminated. (It was an old Borrower element that was made redundant by the PrimaryPhone element introduced
				in version 3.5 for Borrower, Guarantor and Principal.) This is a "breaking change". BorrPhnNmb may no longer be given.
			-->
			<xs:enumeration value="5.0"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added a new enumeration value "AD" to SBA_OrigStatCd (part of the SBA_Etran_Response).
			(2)	Added a new enumeration value "deleteall" to 2 of the SBA_Actions simpleTypes (allowing "delete-and-insert logic").
				Only useful when updating an existing app (OrigUpdate and Underwriting web services).
			(3)	Added this 5.0 enumeration.

			Changes documented in SBA_ETran.5.0.orig.xsd (Origination):
			(4)	Added many new child elements to LoanApplication, Borrower, Collateral, Guarantor, Injection, Principal and UseOfProceeds.
				Added new element StandbyAgreement with 8 child elements.
				Added new child element ControlInterestType to Borrower and Principal.
			(5)	Removed AffiliatedInd child elements from Borrower, Guarantor and Principal.
				Removed long-deprecated (for 3 years) child elements associated with street addresses (all ending in "StrtNmb" and "SuffixName").
			(6)	Renamed all existing Collateral child elements with "Collateral" prefix to remove that prefix, except CollateralSequenceNmb.
				(CollateralSequenceNmb is needed to establish the link between a Collateral item and its CollateralLiens, so it must retain prefix.)
				Shortened some other Collateral child element names with abbreviations, both for consistency and to lessen XML overhead.
				Renamed Guarantor.GuaranteeTypCd to Guarantor.GntyTypCd,                both for consistency and to lessen XML overhead.
			(7)	Better organized all container elements with child elements to list prime key elements first, then data elements alphabetically.
				Better documented how some data      elements are mandatory when action="insert" but optional  when action="update" or action="delete".
				Better documented how some prime key elements are ignored   when action="insert" but mandatory when action="update" or action="delete".
				Better documented how SequenceNmb elements are allocated (sequentially, starting from 1) when they become prime keys after insert.

			Changes documented in SBA_ETran.5.0.serv.xsd (Servicing):
			(8)	In the Loan element, added NoteDt subelement.
			-->
			<xs:enumeration value="5.1"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.1 enumeration.

			Changes documented in SBA_ETran.5.1.orig.xsd (Origination):
			(2)	In the LoanApplication element, added NoteDt subelement.
			(3)	In the LoanApplication element, added 8 new "LenderLsp" subelements.
			-->
			<xs:enumeration value="5.2"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.2 enumeration.

			Changes documented in SBA_ETran.5.2.orig.xsd (Origination) and SBA_ETran.5.2.serv.xsd (Servicing):
			(2)	In Servicing, allowed use of Borrower's AdverseChgInd subelement.
			(3)	In Origination's LoanApplication element and Servicing's Loan element, removed the EconDevObjctCd subelement.
				In Origination and Servicing, created a new EconDevObjective element and Code subelement to represent that it's now a 1-to-many relationship.
			(4)	In Origination and Servicing, added a new FirstRateAdjustDt element underInterest.
			-->
			<xs:enumeration value="5.3"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.3 enumeration.

			Changes documented in SBA_ETran.5.3.orig.xsd (Origination) and SBA_ETran.5.3.serv.xsd (Servicing):
			(2)	Added new child elements: LendrCountryCd, LendrPostalCd, and LendrStNm to PartcipatLender.
			-->
			<xs:enumeration value="5.4"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.4 enumeration.

			Changes documented in SBA_ETran.5.4.orig.xsd (Origination)
			(1)	Added new child elements: AlternateEmail, AlternatePhone, BusOutstandingDebtInd, BusPrimCntctNm, FedDisqualifiedInd, GamblingOrSexualNatureInd,
				NonFedEmpInd, NonFmrSBAEmpInd, NonGS13EmpInd, NonLegBrnchEmpInd, NonSBACEmpInd, PrevGovFinInd, and PrimaryEmail to borrower
			(2)	Added new child elements: AlternateEmail, AlternatePhone, CitznShipCntryName, CSP60DayDelnqInd, FedDisqualifiedInd, LglActnInd, PrimaryEmail, and
				PrimaryPhone to Principal
			(3)	Added new child elements: DelinqentCommentTxt to PreviousGovtFinance
			(4)	Added new child elements: LenderContactCellPhn, LenderAltContactFirstNm, LenderAltContactLastNm, LenderAltContactInitialNm, LenderAltContactTitlTxt,
				LenderAltContactPrimPhn, LenderAltContactCellPhn, LenderAltContactEmail, LenderAltContactTypCd, LoanBusinessEstDt to LoanApplication.
				Note that, for LSPs, LenderAlt tags replace earlier versions' LenderLsp tags, with LenderAltContactTypCd = "L".
			(5)	Added new child elements: IntrstGuaranteeInd to Interest.

			Changes documented in SBA_ETran.5.4.serv.xsd (Servicing):
			(1)	Added new child elements: CitznShipCntryName to Principal.
			(2)	Added new child elements: LoanBusinessEstDt, MailAddrsInvldInd to Loan.
			(3)	Added new child elements: IntrstGuaranteeInd to Interest.
			(4)	Added new action terminate for the SBA_Etran to allow voluntary termination.
			-->
			<xs:enumeration value="5.5"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.5 enumeration.

			Changes documented in SBA_ETran.5.5.orig.xsd (Origination)
			(1)	Added new child elements: Amortizing Term and Revolving Term for SBX loans
			(2)	Added new values for base rate source for 504 loans only i.e. 504 Note Rate for 10 years, 504 Note Rate for 20 years, 504 Note Rate for 25 years.

			Changes documented in SBA_ETran.5.5.serv.xsd (Servicing):
			(1)	Added new child elements: Amortizing Term and Revolving Term for SBX loans
			(2)	Added new child elements: ACHAccountNmb, ACHAccountType, ACHAttention, ACHAccountName, ACHRoutingNmb for participating lenders
			(3)	Added new values for base rate source for 504 loans only i.e. 504 Note Rate for 10 years, 504 Note Rate for 20 years, 504 Note Rate for 25 years.

			Servicing and Origination XML will ignore the Rural Urban indicator passed by the user and will determined based on the zip code entered.
			-->
			<xs:enumeration value="5.6"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.6 enumeration.

			Changes documented in SBA_ETran.5.6.orig.xsd (Origination)
			(1)	Added new child elements: InsurWorkersCompInd for Workers comp Insurance
			(2)	Added Evidence of Title and Priority of Lien based upon the codes from LOAN.LAC_ALTA_PLCY_CD_TBL
			(3)	Added Other resons for not specified in SecurTitlVrfyTypCd
			(4)	Changed to  5 digit precision instead of 3 digit precision for Base Rate and Borrower's interest rate.

			Changes documented in SBA_ETran.5.6.serv.xsd (Servicing):
			(1)	Added new child elements: InsurWorkersCompInd for Workers Comp Insurance
			(2)	Added Evidence of Title and Priority of Lien based upon the codes from LOAN.LAC_ALTA_PLCY_CD_TBL
			(3)	Added Other resons for not specified in SecurTitlVrfyTypCd
			(4)	Changed to 5 digit precision instead of 3 digit precision for Base Rate and Borrower's interest rate.
			(5) Added new child elements: ACHBnkNm and ACHDepositorNm for Borrower
			-->
			<xs:enumeration value="5.7"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.7 enumeration.
			(2)	Added parent element Agent. Added child elements LoanAgentSeqNmb, LoanAgentBusPerInd, LoanAgentFirstName,LoanAgentMI,LoanAgentLastName,LoanAgentSuffix,
				LoanAgentName,LoanAgentType,LoanAgentCntCd,LoanAgentCDCTPLFeeAmt,LoanAgentCDCTplFeeInd,LoanAgentStreet1,LoanAgentStreet2,LoanAgentCity,LoanAgentStateCD,
				LoanAgentZipCD,LoanAgentZip4CD.
			(3)	Added patrent element AgentFee. Added child elements LoanAgentSeqNmb,LoanAgentServTypCd,LoanAgentAppCNTPaidAmt,LoanAgentSbaLenderPaidAmt,LoanAgntServOtherType.
			(4)	Removed Packager details form this 5.7 version. Tags removed are LoanPackagerName,LoanPackagerCityName,LoanPackagerStrtName1,LoanPackagerStrtName2,LoanPackagerStCd,LoanPackagerZipCd
				LoanPackagerZip4Cd.
			Changes documented in SBA_ETran.5.7.serv.xsd (Servicing):
			(1)	Added new child elements: ACHBnkNm and ACHDepositorNm for Borrower
			-->
			<xs:enumeration value="5.8"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.8 enumeration.
			Changes documented in SBA_ETran.5.8.orig.xsd (Origination)
			(1)	Added new child elements: LoanExtraordinaryServFeeAmt and LoanExtraordinaryServFeeInd to Loan.
			-->
			<xs:enumeration value="5.9"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 5.9 enumeration.
			(2) Added child element CorrespondingLang to Loan.
			Changes documented in SBA_ETran.5.8.serv.xsd (Servicing)
			(1)	Added new child elements: Added child elements LendrNm,LendrStr1Nm,LendrStr2Nm,LendrCtyNm,LendrZip5Cd,LendrZip4Cd and SoldSecMarketInd to FinancialInformation .
			-->
			<xs:enumeration value="6.0"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 6.0 enumeration.
			Changes documented in SBA_ETran.6.0.orig.xsd (Origination):
			(1) Added the PARTNER's ACH information to the PartnerInformation element.
			(2) Added child elements for Average monthly payroll costs: PayrollMnthlyAvgAmt.
			Changes documented in SBA_ETran.6.0.serv.xsd (Servicing)
			(1) Added parent element Deferment.
			(2) Added child elements for Deferment: DeferActnCd, DeferAmt, DeferEndDt, DeferSeqNmb, DeferStartDt.
			-->
			<xs:enumeration value="6.3"/>
			<!--
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 6.3 enumeration.
			Changes documented in SBA_ETran.6.3.orig.xsd (Origination):
			(1) Added 7 new columns to Guarantor table in Origination as a part of Loan Authorization Modernization
			Changes documented in SBA_ETran.6.3.serv.xsd (Servicing)
			(1) Added 7 new columns to Guarantor table in Servicing as a part of Loan Authorization Modernization
			-->
			<xs:enumeration value="6.4" />
			<!--
			Upgraded credit scoring for processing methods that require it. This involved adding 8 new "CrdScrFin"
			(Credit Scoring Financials) elements. They reside in "Borrower" because they apply to the Primary Borrower Business.
			Not applicable to Servicing.
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 6.4 enumeration.
			Changes documented in SBA_ETran.6.4.orig.xsd (Origination):
			(1) Added 1 new column to the LoanAgntTbl in Origination as a part of SBA Form 159
			Changes documented in SBA_ETran.6.4.serv.xsd (Servicing)
			(1) Added 1 new column to the LoanAgntTbl in Servicing as a part of SBA Form 159
			-->
			<xs:enumeration value="6.5" />
			<!--
			Support for ACH information added. This involved adding 5 ACH fields under "Borrower".
			They reside under the "Borrower" tag because they apply to the Primary Borrower Business.
			Servicing already has this info.
			Changes documented in SBA_ETranTypes.xsd (this file):
			(1)	Added this 6.5 enumeration.
			Changes documented in SBA_ETran.6.5.orig.xsd (Origination):
			(1) Added 5 new columns to the Borrower in Origination
			-->
			<xs:enumeration value="6.6">
            <xs:annotation>
            <xs:documentation value="6.6">
			 &lt;p&gt;Publication Date: 04/29/2021.&lt;/p&gt;
           &lt;p&gt;Support for ITIN certification indicator added. XML tag EINCertInd has been replaced more generic name TaxIdCertind.
			They reside under the Borrower,Principal,Guarantor and Associate.
			Servicing will have same change.&lt;/p&gt;
			Changes documented in SBA_ETranTypes.xsd (this file):
			&lt;ol&gt;&lt;li&gt;
			Added this 6.6 enumeration.
			 &lt;/li&gt;&lt;/ol&gt;
			Changes documented in SBA_ETran.6.6.orig.xsd (Origination):
			&lt;ol&gt;&lt;li&gt;
			Changed XML tag EINCertInd to TaxIdCertInd for 4 participant types in Origination (same will be done in Servicing)
			&lt;/li&gt;&lt;/ol&gt;
             </xs:documentation>
              </xs:annotation>
              </xs:enumeration>
			<xs:enumeration value="7.0">
             <xs:annotation>
           <xs:documentation value="7.0">
			 &lt;p&gt;Publication Date: 04/29/2021.&lt;/p&gt;

			&lt;p&gt;Support for Loan Authorization - Use of Proceeds Sub
			more generic name UseofProceedsSub.
			Servicing will have same change.&lt;/p&gt;
			Changes documented in SBA_ETranTypes.xsd (this file):

			&lt;ol&gt;&lt;li&gt;
				Added this 7.0 enumeration.
			  &lt;/li&gt;&lt;/ol&gt;
			Changes documented in SBA_ETran.7.0.orig.xsd (Origination):
			   &lt;ol&gt;&lt;li&gt;
				Added new XML tag UseOfProceedsSub for 504 types in Origination
			    &lt;/li&gt;&lt;/ol&gt;
			Changes documented in SBA_ETran.7.0.serv.xsd (Origination):
			    &lt;ol&gt;&lt;li&gt;
			 Added new XML tag UseOfProceedsSub for 504 types in Servicing
			    &lt;/li&gt;&lt;/ol&gt;
            </xs:documentation>
            </xs:annotation>
             </xs:enumeration>
			<xs:enumeration value="7.1">
             <xs:annotation>
           <xs:documentation value="7.1">
			   &lt;p&gt;Publication Date: 08/01/2021.&lt;/p&gt;
			&lt;p&gt;Support for Deferment "Delete" and Regenerate Schedule actions.
			Servicing will have same change.&lt;/p&gt;
			
			&lt;ol&gt;&lt;li&gt;Added this 7.1 enumeration.&lt;/li&gt;&lt;/ol&gt;
			&#160;Changes documented in SBA_ETran.7.1.serv.xsd (Servicing):
			  &lt;ol&gt;&lt;li&gt;
			 Added few new XML tags for deferments and payment schedules in Servicing :&lt;br&gt;
				defer - NextInstlmntDueDt&lt;br&gt;
				gensched - PaymentFrequency&lt;br&gt;
				gensched - NextInstallmentDate&lt;br&gt;
				gensched - PaymentAmount
			   &lt;/li&gt;
			   &lt;li&gt;
			 Added presave validation for actions to be restricted to SBA Users,
			applicable to all Disaster + any other purchased guaranty LS/SS loans
			   &lt;/li&gt;&lt;/ol&gt;
			&lt;p&gt;Support for Loan Authorization
			Added new field Other Closing costs for the 504 debenture.  This is entered only for 504 transactions.
			Servicing will have same change.&lt;/p&gt;
			
			&#160;Changes documented in SBA_ETran.7.1.orig.xsd (Origination) and SBA_ETran.7.1.serv.xsd (Servicing):
			&lt;ol&gt;&lt;li&gt;
			New XML tag OtherClosingCostAmt
			&lt;/li&gt;&lt;/ol&gt;
			</xs:documentation>
            </xs:annotation>
            </xs:enumeration>
			<!-- Support for Standby Agreement and Collat -->
			<xs:enumeration value="7.2">
				<xs:annotation>
				<xs:documentation value="7.2">
				&lt;p&gt;Publication Date: 09/28/2023.&lt;/p&gt;
                
                &lt;ol&gt;&lt;li&gt;Added this 7.2 enumeration.&lt;/li&gt;&lt;/ol&gt;
				&#160;Added a new XML tag for 7A ApplicationS. Changes documented here in SBA_ETran.7.2.orig.xsd (Origination) and SBA_ETran.7.2.serv.xsd (Servicing) are only applicable for 7A loans: &lt;br&gt;
					app  - CalendarBasisCode&lt;br&gt;
				&lt;ol&gt;&lt;li&gt;Added this 7.2 enumeration.&lt;/li&gt;&lt;/ol&gt;
				&#160;Added new XML tags for Guarantor. Changes documented in SBA_ETran.7.2.orig.xsd (Origination) and SBA_ETran.7.2.serv.xsd (Servicing) are only applicable for 504 loans: &lt;br&gt;
					guar - LifeInsuranceInd&lt;br&gt;
					guar - LifeInsuredName&lt;br&gt;
					guar - LifeInsuranceAmt&lt;br&gt;
				&#160;Added new XML tags for StandbyAgreement for Origination and Servicing :&lt;br&gt;
					stbyagrmt - InjectionAuthInd&lt;br&gt;
				&#160;Added new XML tags for StandbyAgreement for Origination and Servicing :&lt;br&gt;
					stbyagrmt - InjectionTypeCode&lt;br&gt;
					stbyagrmt - LineOfCreditIndicator&lt;br&gt;
					stbyagrmt - TermsInYears&lt;br&gt;
				&#160;Added new XML tags for Collateral, CollateralLien and Borrower Contribution for Origination and Servicing :&lt;br&gt;
					collat - Endorsement&lt;br&gt;
					collat - FixtureEquipmentAppraisal&lt;br&gt;
					collat - MortgTaxesLiens&lt;br&gt;
					collat - NoExceptionMechLiens&lt;br&gt;
					collat - NotContMGLSec21eException&lt;br&gt;
					collat - PriorOpenEndLienInd&lt;br&gt;
					collat - RequestForNoticeInd&lt;br&gt;
					collat - SecureLienHolderVerifyInd&lt;br&gt;
					collat - StatemntNonHomesteadInd&lt;br&gt;
					collat - StatutoryCondPowerInd&lt;br&gt;
					collat - TitleAmount&lt;br&gt;
					collat - WithoutStdException&lt;br&gt;
					collat - WithoutStdSurException&lt;br&gt;
					collat - WithoutExceptionToHomestead&lt;br&gt;
					collat - WritnAgrmtPriorLienHoldInd&lt;br&gt;
					collat - WritnWaiverBusHomesteadInd&lt;br&gt;
					collat - WritnWaiverRedemptnRightInd&lt;br&gt;
					collat - WritnWaiverHomesteadInd&lt;br&gt;
					collatlien - CollatLienRevolvingInd&lt;br&gt;
					collatlien - CollatLienLimitAmount&lt;br&gt;
					borrcontrib - BorrowerContribtnSeqNmb&lt;br&gt;
					borrcontrib - BorrowerContribtnTypCd&lt;br&gt;
					borrcontrib - BorrowerContribtnAmount&lt;br&gt;
				&#160;Added presave validation for actions to be restricted to SBA Users, applicable to all 504 loans
					&lt;/li&gt;&lt;/ol&gt;
				</xs:documentation>
				</xs:annotation>
			</xs:enumeration>
			<xs:enumeration value="7.3">
				<xs:annotation>
				<xs:documentation value="7.3">
				&lt;p&gt;Publication Date: 10/12/2023.&lt;/p&gt;
				
				&lt;ol&gt;&lt;li&gt;Added this 7.3 enumeration.&lt;/li&gt;&lt;/ol&gt;
				&#160;Added new XML tags for Application and Hold Status. Changes documented in SBA_ETran.7.3.orig.xsd (Origination): &lt;br&gt;
          app - LoanApplicAppvDt&lt;br&gt;
          app - LoanApplicRecvDt&lt;br&gt;
          app - LoanApplicStatusCd&lt;br&gt;
          app - LoanEntryDt&lt;br&gt;
          app - LoanSourcTypCd&lt;br&gt;
          app - LoanStatusDt&lt;br&gt;
          app - NAICSYear&lt;br&gt;
          app - ProjectCountyCd&lt;br&gt;

          apphold - HoldStatusCd&lt;br&gt;
          apphold - HoldStatusCertDt&lt;br&gt;
					apphold - HoldStatusDescription&lt;br&gt;
					apphold - HoldStatusEndDt&lt;br&gt;
					apphold - HoldStatusStartDt&lt;br&gt;

					borr - EmployeeSize&lt;br&gt;
				    borr - RevenueAmt&lt;br&gt;

        &#160;Added new XML tag to set Controlling Interest Indicator. Changes documented in SBA_ETran.7.3.orig.xsd (Origination): &lt;br&gt;

		borr - ControlInterestInd&lt;br&gt;
		prin - ControlInterestInd&lt;br&gt;

				</xs:documentation>
				</xs:annotation>
			</xs:enumeration>
			<xs:enumeration value="7.4">
				<xs:annotation>
					<xs:documentation value="7.4">
						&lt;p&gt;Publication Date: 03/28/2024.&lt;/p&gt;
						
						&lt;ol&gt;&lt;li&gt;Added this 7.4 enumeration.&lt;/li&gt;&lt;/ol&gt;
						&lt;p&gt;Support for Terms and Condition - Blanket Lien for Collateral under Personal Property
						more generic name CollateralBlanketLien.
						Servicing will have same change.&lt;/p&gt;
						Changes documented in SBA_ETranTypes.xsd (this file):
						&#160;Added new XML tag CollatBlnktLn  &lt;&lt;br&gt;
							collatblnktln - CollateralSequenceNmb&lt;br&gt;
							collatblnktln - BlanketLienCd&lt;br&gt;

						&#160;&lt;b&gt;Added new MANDATORY Validations for 1919 Questions, effective 60 days starting from Phase 1 deployment date&lt;/b&gt;&lt;br&gt;&lt;br&gt;

						&#160;Added new XML tag LegalOrgnztnOtherTxt for Associate, Borrower, Guarantor, Principal for Origination and Servicing : &lt;br&gt;
							assoc - LegalOrgnztnOtherTxt&lt;br&gt;
							borr  - LegalOrgnztnOtherTxt&lt;br&gt;
							guar  - LegalOrgnztnOtherTxt&lt;br&gt;
							prin  - LegalOrgnztnOtherTxt&lt;br&gt;

						&#160;Added new XML tags for BusinessSpecialOwnership for Origination and Servicing : &lt;br&gt;
							busspcownrshp - TaxId&lt;br&gt;
							busspcownrshp - SpecialOwnershipCd&lt;br&gt;
							busspcownrshp - SpecialOwnershipOtherTxt&lt;br&gt;
						&#160;Added new XML tag LegalOrgnztnOtherTxt for Associate, Borrower, Guarantor, Principal for Origination and Servicing : &lt;br&gt;
							assoc - LegalOrgnztnOtherTxt&lt;br&gt;
							borr  - LegalOrgnztnOtherTxt&lt;br&gt;
							guar  - LegalOrgnztnOtherTxt&lt;br&gt;
							prin  - LegalOrgnztnOtherTxt&lt;br&gt;

						&#160;Added new XML tags for BusinessSpecialOwnership for Origination and Servicing : &lt;br&gt;
							busspcownrshp - TaxId&lt;br&gt;
							busspcownrshp - SpecialOwnershipCd&lt;br&gt;
							busspcownrshp - SpecialOwnershipOtherTxt&lt;br&gt;

						&#160;Added new XML tags for Borrower/Principal Form 1919 questions for Origination and Servicing : &lt;br&gt;
							borr - ApplicantPaidFee&lt;br&gt;
							borr - IntrstOthBusinessInd&lt;br&gt;
							borr - ExporterEstTotalSales&lt;br&gt;
							borr - ExporterPrincipalCountriesList&lt;br&gt;
						&#160;Added new XML tags for Borrower/Principal Form 1919 questions for Origination and Servicing : &lt;br&gt;
							borr - ApplicantPaidFee&lt;br&gt;
							borr - IntrstOthBusinessInd&lt;br&gt;
							borr - ExporterEstTotalSales&lt;br&gt;
							borr - ExporterPrincipalCountriesList&lt;br&gt;

							guar - ExporterEstTotalSales&lt;br&gt;
							guar - ExporterPrincipalCountriesList&lt;br&gt;

							prin - PrevGovFinInd&lt;br&gt;
							prin - ExporterEstTotalSales&lt;br&gt;
							prin - ExporterPrincipalCountriesList&lt;br&gt;

					</xs:documentation>
				</xs:annotation>
			</xs:enumeration>
			<xs:enumeration value="7.5">
				<xs:annotation>
				<xs:documentation value="7.5">
				&lt;p&gt;Publication Date: 07/05/2024.&lt;/p&gt;
				
				&lt;ol&gt;&lt;li&gt;Added this 7.5 enumeration.&lt;/li&gt;&lt;/ol&gt;
		&lt;p&gt;Support for ETRAN-Orig: SBA Form 1244 ETRAN modifications (Phase 2) - CDC related change. 
			Servicing will have same change.&lt;/p&gt;
			Changes documented in SBA_ETranTypes.xsd (this file):
			&#160;Added new XML tags for Application and Hold Status. Changes documented in SBA_ETran.7.5.orig.xsd (Origination) and SBA_ETran.7.5.serv.xsd (Servicing):  &lt;&lt;br&gt;
			app - LenderUnderwriterEmplStatus&lt;br&gt;
			app - LenderUnderwriterName&lt;br&gt;
			app - CDCorTPLDebt&lt;br&gt;
			app - CDCRequestException&lt;br&gt;
			app - CDCRequestWaiver&lt;br&gt;
			app - FedAgncyCDCReqExceptionInstallPayment&lt;br&gt;
			app - ProjFundRelocate&lt;br&gt;
			app - ProjEligCDCPortfolioJobRatio&lt;br&gt;
			app - ProjElig504DebtRefAltJobGoal&lt;br&gt;
			app - Approved4PrevSpcPurpsProj&lt;br&gt;
			&#160;Added new XML tags for 1244 professional license for Borrower for Origination and Servicing : &lt;br&gt;
			borr - ProfLicenseRequired&lt;br&gt;
			&#160;Added new XML tags for 1244 professional license for Guarantor for Origination and Servicing : &lt;br&gt;
			guar - ProfLicenseRequired&lt;br&gt;
				</xs:documentation>
				</xs:annotation>
			</xs:enumeration>			
			<xs:enumeration value="8.0">
				<xs:annotation>
				<xs:documentation value="8.0">
				&lt;p&gt;Publication Date: 07/08/2024.&lt;/p&gt;
				
				&lt;ol&gt;
				&lt;li&gt;Added this 8.0 enumeration.&lt;/li&gt;
				&lt;li&gt;Support for Beneficial Ownership Secondary Principals.&lt;/li&gt;
				&lt;li&gt;New columns for Guarantors who are an Operating Company:&lt;/li&gt;
				&lt;ul&gt;
				&lt;li&gt;guar - CrdScrFinCashAndEquiv&lt;/li&gt;
				&lt;li&gt;guar - CrdScrFinTotAsset&lt;/li&gt;
				&lt;li&gt;guar - CrdScrFinTotLiab&lt;/li&gt;
				&lt;li&gt;guar - CrdScrFinNetWorth&lt;/li&gt;
				&lt;li&gt;guar - CrdScrFinTotSales&lt;/li&gt;
				&lt;li&gt;guar - CrdScrFinEarnBefIntTx&lt;/li&gt;
				&lt;li&gt;guar - CrdScrFinAnnIntExp&lt;/li&gt;
				&lt;li&gt;guar - CrdScrFinDDABal&lt;/li&gt;
				&lt;li&gt;guar - PaymentsLessThanCCInd&lt;/li&gt;
				&lt;li&gt;guar - BooksToLenderType&lt;/li&gt;
				&lt;li&gt;guar - BooksToLenderWithinDays&lt;/li&gt;
				&lt;li&gt;guar - BusPrimCntctNm&lt;/li&gt;
				&lt;li&gt;guar - PrimaryPhone&lt;/li&gt;
				&lt;li&gt;guar - AlternatePhone&lt;/li&gt;
				&lt;li&gt;guar - PrimaryEmail&lt;/li&gt;
				&lt;li&gt;guar - AlternateEmail&lt;/li&gt;
				&lt;li&gt;guar - PrevGovFinInd&lt;/li&gt;
				&lt;li&gt;guar - BusOutstandingDebtInd&lt;/li&gt;
				&lt;li&gt;guar - FedDisqualifiedInd&lt;/li&gt;
				&lt;li&gt;guar - GamblingOrSexualNatureInd&lt;/li&gt;
				&lt;li&gt;guar - NonFmrSBAEmpInd&lt;/li&gt;
				&lt;li&gt;guar - NonLegBrnchEmpInd&lt;/li&gt;
				&lt;li&gt;guar - NonFedEmpInd&lt;/li&gt;
				&lt;li&gt;guar - NonGS13EmpInd&lt;/li&gt;
				&lt;li&gt;guar - NonSBACEmpInd&lt;/li&gt;
				&lt;li&gt;guar - IntrstOthBusinessInd&lt;/li&gt;
				&lt;li&gt;guar - IndctPrleProbatnInd&lt;/li&gt;
				&lt;li&gt;guar - ApplicantPaidFee&lt;/li&gt;
				&lt;li&gt;guar - RevenueAmt&lt;/li&gt;
				&lt;li&gt;guar - EmployeeSize&lt;/li&gt;
				&lt;/ul&gt;
				&lt;/ol&gt;
				</xs:documentation>
				</xs:annotation>
			</xs:enumeration>			
      <xs:enumeration value="8.1">
			<!-- CADEV-3327-->
			<xs:annotation>
				<xs:documentation value="8.1">
				&lt;p&gt;Publication Date: 12/16/2024.&lt;/p&gt;
				
				&lt;ol&gt;&lt;li&gt;Updated this 8.1 enumeration.&lt;/li&gt;&lt;/ol&gt;
		&lt;p&gt;Support for ETRAN-Orig and ETRAN-Servicing: Working Capital Program&lt;/p&gt;
		&lt;p&gt;LoanAppNm has a limit of 80 characters. This is causing the legal trust name to be incorrectly truncated and not correctly reflect on loan docs. Loans with this situation require a 327 to correct the trust name to the full legal name as it should be reflected on the loan docs. Request was made to expand the character limit and trust names within ETRAN-servicing from 80 to 250 chars.&lt;/p&gt;
			Changes documented in SBA_ETranTypes.xsd (this file):
				&#160;Updated existing XML tags for LoanName to accept chars upto 250. Changes documented in SBA_ETran.8.1.orig.xsd (Origination) and SBA_ETran.8.1.serv.xsd (Servicing):  &lt;&lt;br&gt;
				</xs:documentation>
        </xs:annotation>

	  			<!--CADEV-3136-->
				<xs:annotation>
				<xs:documentation value="8.1">
				&lt;p&gt;Publication Date: 08/01/2024.&lt;/p&gt;
				
				&lt;ol&gt;&lt;li&gt;Added this 8.1 enumeration.&lt;/li&gt;&lt;/ol&gt;
		&lt;p&gt;Support for ETRAN-Orig and ETRAN-Servicing: Working Capital Program&lt;/p&gt;
			Changes documented in SBA_ETranTypes.xsd (this file):
			&#160;Added new XML tags for WorkingCapitalProgram. Changes documented in SBA_ETran.8.1.orig.xsd (Origination) and SBA_ETran.8.1.serv.xsd (Servicing):  &lt;&lt;br&gt;
			wcp - DeliveryMethodAsset&lt;br&gt;
			wcp - DeliveryMethodTrans&lt;br&gt;
			wcp - DomesticAdvPct&lt;br&gt;
			wcp - ForeignAdvPct&lt;br&gt;
			wcp - InventoryAdvPct&lt;br&gt;
			wcp - SBAExpRefiInd&lt;br&gt;
				</xs:documentation>
        </xs:annotation>
			</xs:enumeration>	

		<xs:enumeration value="8.2">
			<!-- CADEV-3326-->
			<xs:annotation>
				<xs:documentation value="8.2">
					&lt;p&gt;Publication Date: 02/06/2025.&lt;/p&gt;
					
					&lt;ol&gt;&lt;li&gt;Updated this 8.2 enumeration.&lt;/li&gt;&lt;/ol&gt;
					&lt;p&gt;Support for ETRAN-Orig and ETRAN-Servicing: Working Capital Program&lt;/p&gt;
					&#160;Added new XML tags for NonStandardText. Changes documented in SBA_ETran.8.2.orig.xsd (Origination) and SBA_ETran.8.2.serv.xsd (Servicing):  &lt;&lt;br&gt;
					nonstdtext - NonStandardTextSeq&lt;br&gt;
					nonstdtext - NonStandardText&lt;br&gt;
				</xs:documentation>
	        </xs:annotation>
		</xs:enumeration>

		<xs:enumeration value="9.0">
			<!-- CADEV-3535/3548-->
			<xs:annotation>
				<xs:documentation value="9.0">
					&lt;p&gt;Publication Date: 06/04/2025.&lt;/p&gt;
					
					&lt;ol&gt;
					&lt;li&gt;Updated this 9.0 enumeration.&lt;/li&gt;
					&lt;li&gt;
					Removed the following tags from LoanApplication (ETRAN-Orig) and Loan (ETRAN-Serv):
						&lt;ul&gt;
						&lt;li&gt;app - FrnchiserBooksInd&lt;/li&gt;
						&lt;li&gt;app - FrnchiseDeferPymtInd&lt;/li&gt;
						&lt;li&gt;app - FrnchiseDeferPymtMonths&lt;/li&gt;
						&lt;li&gt;app - FrnchiseWarnTermInd&lt;/li&gt;
						&lt;li&gt;app - FrnchiseOpporCureInd&lt;/li&gt;
						&lt;/ul&gt;
					&lt;/li&gt;
					&lt;li&gt;
					Support for Principal Spousal Ownership reporting (ETRAN-Orig and ETRAN-Serv):
						&lt;ul&gt;
							&lt;li&gt;perreltn - FamMemTaxId1&lt;/li&gt;
							&lt;li&gt;perreltn - FamMemTaxId2&lt;/li&gt;
							&lt;li&gt;perreltn - RelTyp&lt;/li&gt;
						&lt;/ul&gt;
					&lt;/li&gt;
					&lt;/ol&gt;
				</xs:documentation>
	    </xs:annotation>
		</xs:enumeration>

		<xs:enumeration value="9.1">
			<!-- CADEV-3535/3548-->
			<xs:annotation>
				<xs:documentation value="9.1">
					&lt;p&gt;Publication Date: 07/21/2025.&lt;/p&gt;
					
					&lt;ol&gt;
					&lt;li&gt;Updated this 9.1 enumeration.&lt;/li&gt;
					&lt;p&gt;Support for ETRAN-Orig and ETRAN-Servicing: Working Capital Program&lt;/p&gt;
					&#160;Added new XML tags for LienHldrNameType. Changes documented in SBA_ETran.9.1.orig.xsd (Origination) and SBA_ETran.9.1.serv.xsd (Servicing):  &lt;&lt;br&gt;
					&lt;li&gt;
					Added following new tag from LoanApplication (ETRAN-Orig) and Loan (ETRAN-Serv):
						&lt;ul&gt;
						&lt;li&gt;collatlien - LienHldrNameType&lt;/li&gt;
						&lt;/ul&gt;
					&lt;/li&gt;
				</xs:documentation>
	    </xs:annotation>
		</xs:enumeration>

		<xs:enumeration value="9.2">
			<!-- CADEV-3851/3852-->
			<xs:annotation>
				<xs:documentation value="9.2">
					&lt;p&gt;Publication Date: 04/30/2026.&lt;/p&gt;
					&lt;ol&gt;
					&lt;li&gt;Updated this 9.2 enumeration.&lt;/li&gt;
					&lt;p&gt;Support for ETRAN-Orig and ETRAN-Servicing: Working Capital Program&lt;/p&gt;
					&#160;Added new XML tags for ITLQualCategory, OwnershipChgType. Changes documented in SBA_ETran.9.2.orig.xsd (Origination) and SBA_ETran.9.2.serv.xsd (Servicing):  &lt;&lt;br&gt;
					&lt;li&gt;
					Added following new tag from LoanApplication (ETRAN-Orig) and Loan (ETRAN-Serv):
						&lt;ul&gt;
						&lt;li&gt;app 	- ITLQualCategory&lt;/li&gt;
						&lt;li&gt;procd - OwnershipChgType&lt;/li&gt;
						&lt;/ul&gt;
					&lt;/li&gt;
				</xs:documentation>
		    </xs:annotation>
		</xs:enumeration>

		</xs:restriction>
		<!--
		"All Version Changes" (so all elements of the version simpleType's xs:enumeration are affected):
			Publication Date 05/15/2019:
				(1)	In both orig.xsd and serv.xsd, changed Principal's OwnrshpInBusinessPct type attribute to SBA_Dec3v2.
					This is with minOccurs="0" with the stipulation that minOccurs is 1 if Principal's action="insert".
			Future all-version changes will go here.
		-->
	</xs:simpleType>
	<xs:simpleType name="SBA_FinDataPctBasedOn1">
		<xs:restriction base="xs:string">
			<xs:pattern value="(\d.\d{0,5})?"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_FreqCode">
		<xs:restriction base="xs:string">
			<xs:enumeration value="" /><!-- That is, optional. -->
			<xs:enumeration value="A"/><!-- Annual -->
			<xs:enumeration value="M"/><!-- Manual -->
			<xs:enumeration value="Q"/><!-- Quarterly -->
			<xs:enumeration value="S"/><!-- Semi-annually -->
			<xs:enumeration value="X"/><!-- Other, SBA_FreqSchedule defines which months. -->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_FreqSchedule">
		<xs:restriction base="xs:string">
			<xs:pattern value="([0-1]\d){0,12}"/><!-- Pattern allows some values that are invalid as MM. Actual values passed must be valid. -->
			<!-- Months of the year in MM format (01 through 12), in ascending order, when payment is scheduled. -->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_GntyFee">
		<xs:restriction base="xs:decimal">
			<xs:pattern value="\d{0,5}[.]{0,1}\d{0,2}"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_OrigStatCd">
		<xs:restriction base="xs:string">
			<xs:enumeration value="AD"/><!-- Awaiting Documents -->
			<xs:enumeration value="AP"/><!-- Approved Pending Funds -->
			<xs:enumeration value="FD"/><!-- Funded -->
			<xs:enumeration value="IP"/><!-- In-Process -->
			<xs:enumeration value="R1"/><!-- Reviewer 1 -->
			<xs:enumeration value="R2"/><!-- Reviewer 2 -->
			<xs:enumeration value="R3"/><!-- Reviewer 3 -->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_OutlawCode">
		<!-- For OutlawCode in Borrower, Guarantor or Principal, but not Associate. -->
		<xs:restriction base="xs:string">
			<xs:enumeration value="" /><!-- That is, optional -->
			<xs:enumeration value="B"/><!-- Bankrupt -->
			<xs:enumeration value="C"/><!-- Compromised -->
			<xs:enumeration value="D"/><!-- Deceased -->
			<xs:enumeration value="O"/><!-- Other, implies need to provide OutlawDesc element -->
			<xs:enumeration value="S"/><!-- Statute of Limitations -->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_PartLendrTypeCode">
		<xs:restriction base="xs:string">
			<xs:enumeration value="" /><!-- That is, optional -->
			<xs:enumeration value="P"/><!-- Participating -->
			<xs:enumeration value="I"/><!-- Interim -->
			<xs:enumeration value="O"/><!-- Other -->
			<xs:enumeration value="G"/><!-- Other Government -->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ServResultInd">
		<xs:restriction base="xs:string">
			<xs:maxLength value="1"/>
			<xs:enumeration value="F"/><!-- Failure -->
			<xs:enumeration value="S"/><!-- Success -->
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_ServSchedNmbValue">
		<xs:restriction base="xs:int"/>
	</xs:simpleType>
	<xs:complexType name="SBA_ServSchedNmb">
		<xs:simpleContent>
			<xs:extension base="SBA_ServSchedNmbValue">
				<xs:attribute name="type" type="SBA_MandPaymentType"/>
			</xs:extension>
		</xs:simpleContent>
	</xs:complexType>
	<xs:simpleType name="SBA_ServStatCd">
		<xs:restriction base="xs:decimal">
			<xs:pattern value="\d[.]\d"/>
		</xs:restriction>
	</xs:simpleType>
	<xs:simpleType name="SBA_TermStartType">
		<xs:restriction base="xs:string">
			<xs:enumeration value="" /><!-- That is, optional. -->
			<xs:enumeration value="F"/><!-- Loan term starts at first disbursement date. -->
			<xs:enumeration value="N"/><!-- Loan term starts at loan note date. -->
		</xs:restriction>
	</xs:simpleType>
	<!--
	The following "Mand" datatypes are used only when action="update", where <tag></tag> means to null out the value on the
	database. If the associated column on the database is NOT NULL, allowing the XML to null it out would result in a
	database error when attempting to save the values to the database. Therefore, "Mand" types specify xs:minLength value="1"
	in the case of an xs:string, or a pattern that contains at least one digit in the case of xs:decimal, xs:int, etc.
	Also, where there's already a minLength in the base type, we don't defeat that with minLength="1". Instead, we keep the
	base's minLength.
	*** DEFINING MAND TYPES LAST, IN CASE SOME LAME PARSER REQUIRES A RESTRICTION BASE TO HAVE ALREADY BEEN DEFINED. ***
	-->
	<xs:simpleType name="SBA_MandAssocTypeCode">		<xs:restriction base="SBA_AssocTypeCode">		<xs:minLength value="1"/>	</xs:restriction></xs:simpleType>
	<xs:simpleType name="SBA_MandDisbClosingCode">		<xs:restriction base="SBA_DisbClosingCode">		<xs:minLength value="1"/>	</xs:restriction></xs:simpleType>
	<xs:simpleType name="SBA_MandFreqCode">				<xs:restriction base="SBA_FreqCode">			<xs:minLength value="1"/>	</xs:restriction></xs:simpleType>
	<xs:simpleType name="SBA_MandFreqSchedule">			<xs:restriction base="SBA_FreqSchedule">		<xs:minLength value="1"/>	</xs:restriction></xs:simpleType>
	<xs:simpleType name="SBA_MandOutlawCode">			<xs:restriction base="SBA_OutlawCode">			<xs:minLength value="1"/>	</xs:restriction></xs:simpleType>
	<xs:simpleType name="SBA_MandPartLendrTypeCode">	<xs:restriction base="SBA_PartLendrTypeCode">	<xs:minLength value="1"/>	</xs:restriction></xs:simpleType>
	<xs:simpleType name="SBA_MandTermStartType">		<xs:restriction base="SBA_TermStartType">		<xs:minLength value="1"/>	</xs:restriction></xs:simpleType>
</xs:schema>