Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

EFACT_D96A_IFTSTA_BOSMAN.cs 398KB

il y a 1 semaine
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075
  1. namespace TM.Bosman.Schemas {
  2. using Microsoft.XLANGs.BaseTypes;
  3. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.BizTalk.Schema.Compiler", "3.0.1.0")]
  4. [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
  5. [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
  6. [SchemaType(SchemaTypeEnum.Document)]
  7. [Schema(@"http://TM.KLG.com/Bosman/IFTSTA",@"EFACT_D96A_IFTSTA_EAN002")]
  8. [System.SerializableAttribute()]
  9. [SchemaRoots(new string[] {@"EFACT_D96A_IFTSTA_EAN002"})]
  10. public sealed class EFACT_D96A_IFTSTA_EAN002 : Microsoft.XLANGs.BaseTypes.SchemaBase {
  11. [System.NonSerializedAttribute()]
  12. private static object _rawSchema;
  13. [System.NonSerializedAttribute()]
  14. private const string _strSchema = @"<?xml version=""1.0"" encoding=""utf-16""?>
  15. <xs:schema xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" xmlns=""http://TM.KLG.com/Bosman/IFTSTA"" xmlns:btsedi=""http://schemas.microsoft.com/BizTalk/2005/EdiSchemaEditorExtension"" targetNamespace=""http://TM.KLG.com/Bosman/IFTSTA"" version=""1.0"" xmlns:xs=""http://www.w3.org/2001/XMLSchema"">
  16. <xs:annotation>
  17. <xs:appinfo>
  18. <schemaEditorExtension:schemaInfo namespaceAlias=""btsedi"" extensionClass=""Microsoft.BizTalk.Edi.SchemaEditorExtension.EdiSchemaExtension"" standardName=""EDI"" xmlns:schemaEditorExtension=""http://schemas.microsoft.com/BizTalk/2003/SchemaEditorExtensions"" />
  19. <b:schemaInfo is_envelope=""no"" version=""1.0"" document_type=""IFTSTA"" standard=""EDI"" standards_version=""D96A"" root_reference=""EFACT_D96A_IFTSTA_EAN002"" displayroot_reference=""EFACT_D96A_IFTSTA_EAN002"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" EdifactDependencyRule_Check=""No"" />
  20. </xs:appinfo>
  21. </xs:annotation>
  22. <xs:annotation>
  23. <xs:documentation xml:lang=""en"">copyright © Microsoft Corporation. All rights reserved.</xs:documentation>
  24. </xs:annotation>
  25. <xs:annotation>
  26. <xs:documentation>Schema name: EFACT_d96a_IFTSTA_EAN002</xs:documentation>
  27. </xs:annotation>
  28. <xs:element name=""EFACT_D96A_IFTSTA_EAN002"">
  29. <xs:annotation>
  30. <xs:appinfo>
  31. <b:recordInfo structure=""delimited"" field_order=""postfix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""International multimodal status report message"" />
  32. </xs:appinfo>
  33. </xs:annotation>
  34. <xs:complexType>
  35. <xs:sequence>
  36. <xs:element minOccurs=""0"" name=""UNH"">
  37. <xs:annotation>
  38. <xs:appinfo>
  39. <b:recordInfo notes=""Message Header"" />
  40. </xs:appinfo>
  41. </xs:annotation>
  42. <xs:complexType>
  43. <xs:sequence>
  44. <xs:element name=""UNH1"">
  45. <xs:annotation>
  46. <xs:appinfo>
  47. <b:fieldInfo notes=""Message Reference Number_0062"" />
  48. </xs:appinfo>
  49. </xs:annotation>
  50. <xs:simpleType>
  51. <xs:restriction base=""EDIFACT_AN"">
  52. <xs:minLength value=""1"" />
  53. <xs:maxLength value=""14"" />
  54. </xs:restriction>
  55. </xs:simpleType>
  56. </xs:element>
  57. <xs:element name=""UNH2"">
  58. <xs:annotation>
  59. <xs:appinfo>
  60. <b:recordInfo notes=""Message Identifier"" />
  61. </xs:appinfo>
  62. </xs:annotation>
  63. <xs:complexType>
  64. <xs:sequence>
  65. <xs:element name=""UNH2.1"">
  66. <xs:annotation>
  67. <xs:appinfo>
  68. <b:fieldInfo notes=""Message Type Identifier_0065"" />
  69. </xs:appinfo>
  70. </xs:annotation>
  71. <xs:simpleType>
  72. <xs:restriction base=""EDIFACT_AN"">
  73. <xs:minLength value=""1"" />
  74. <xs:maxLength value=""6"" />
  75. </xs:restriction>
  76. </xs:simpleType>
  77. </xs:element>
  78. <xs:element name=""UNH2.2"">
  79. <xs:annotation>
  80. <xs:appinfo>
  81. <b:fieldInfo notes=""Message Type Version Number_0052"" />
  82. </xs:appinfo>
  83. </xs:annotation>
  84. <xs:simpleType>
  85. <xs:restriction base=""EDIFACT_AN"">
  86. <xs:minLength value=""1"" />
  87. <xs:maxLength value=""3"" />
  88. </xs:restriction>
  89. </xs:simpleType>
  90. </xs:element>
  91. <xs:element name=""UNH2.3"">
  92. <xs:annotation>
  93. <xs:appinfo>
  94. <b:fieldInfo notes=""Message Type Release Number_0054"" />
  95. </xs:appinfo>
  96. </xs:annotation>
  97. <xs:simpleType>
  98. <xs:restriction base=""EDIFACT_AN"">
  99. <xs:minLength value=""1"" />
  100. <xs:maxLength value=""3"" />
  101. </xs:restriction>
  102. </xs:simpleType>
  103. </xs:element>
  104. <xs:element name=""UNH2.4"">
  105. <xs:annotation>
  106. <xs:appinfo>
  107. <b:fieldInfo notes=""Controlling Agency_0051"" />
  108. </xs:appinfo>
  109. </xs:annotation>
  110. <xs:simpleType>
  111. <xs:restriction base=""EDIFACT_AN"">
  112. <xs:minLength value=""1"" />
  113. <xs:maxLength value=""3"" />
  114. </xs:restriction>
  115. </xs:simpleType>
  116. </xs:element>
  117. <xs:element minOccurs=""0"" name=""UNH2.5"">
  118. <xs:annotation>
  119. <xs:appinfo>
  120. <b:fieldInfo notes=""Association Assigned Code_0057"" />
  121. </xs:appinfo>
  122. </xs:annotation>
  123. <xs:simpleType>
  124. <xs:restriction base=""EDIFACT_AN"">
  125. <xs:minLength value=""1"" />
  126. <xs:maxLength value=""6"" />
  127. </xs:restriction>
  128. </xs:simpleType>
  129. </xs:element>
  130. <xs:element minOccurs=""0"" name=""UNH2.6"">
  131. <xs:annotation>
  132. <xs:appinfo>
  133. <b:fieldInfo notes=""Code List Directory Version Number_0110"" />
  134. </xs:appinfo>
  135. </xs:annotation>
  136. <xs:simpleType>
  137. <xs:restriction base=""EDIFACT_AN"">
  138. <xs:minLength value=""1"" />
  139. <xs:maxLength value=""6"" />
  140. </xs:restriction>
  141. </xs:simpleType>
  142. </xs:element>
  143. <xs:element minOccurs=""0"" name=""UNH2.7"">
  144. <xs:annotation>
  145. <xs:appinfo>
  146. <b:fieldInfo notes=""Message Type Sub-function Identification"" />
  147. </xs:appinfo>
  148. </xs:annotation>
  149. <xs:simpleType>
  150. <xs:restriction base=""EDIFACT_AN"">
  151. <xs:minLength value=""1"" />
  152. <xs:maxLength value=""6"" />
  153. </xs:restriction>
  154. </xs:simpleType>
  155. </xs:element>
  156. </xs:sequence>
  157. </xs:complexType>
  158. </xs:element>
  159. <xs:element minOccurs=""0"" name=""UNH3"">
  160. <xs:annotation>
  161. <xs:appinfo>
  162. <b:fieldInfo notes=""Common Access Reference_0068"" />
  163. </xs:appinfo>
  164. </xs:annotation>
  165. <xs:simpleType>
  166. <xs:restriction base=""EDIFACT_AN"">
  167. <xs:minLength value=""1"" />
  168. <xs:maxLength value=""35"" />
  169. </xs:restriction>
  170. </xs:simpleType>
  171. </xs:element>
  172. <xs:element minOccurs=""0"" name=""UNH4"">
  173. <xs:annotation>
  174. <xs:appinfo>
  175. <b:recordInfo notes=""Status of the Transfer"" />
  176. </xs:appinfo>
  177. </xs:annotation>
  178. <xs:complexType>
  179. <xs:sequence>
  180. <xs:element name=""UNH4.1"">
  181. <xs:annotation>
  182. <xs:appinfo>
  183. <b:fieldInfo notes=""Sequence Message Transfer Number_0070"" />
  184. </xs:appinfo>
  185. </xs:annotation>
  186. <xs:simpleType>
  187. <xs:restriction base=""EDIFACT_N"">
  188. <xs:minLength value=""1"" />
  189. <xs:maxLength value=""2"" />
  190. </xs:restriction>
  191. </xs:simpleType>
  192. </xs:element>
  193. <xs:element minOccurs=""0"" name=""UNH4.2"">
  194. <xs:annotation>
  195. <xs:appinfo>
  196. <b:fieldInfo notes=""First/Last Sequence Message Transfer Indication_0073"" />
  197. </xs:appinfo>
  198. </xs:annotation>
  199. <xs:simpleType>
  200. <xs:restriction base=""EDIFACT_A"">
  201. <xs:length value=""1"" />
  202. </xs:restriction>
  203. </xs:simpleType>
  204. </xs:element>
  205. </xs:sequence>
  206. </xs:complexType>
  207. </xs:element>
  208. <xs:element minOccurs=""0"" name=""UNH5"">
  209. <xs:annotation>
  210. <xs:appinfo>
  211. <b:recordInfo notes=""Message Subset Identification"" />
  212. </xs:appinfo>
  213. </xs:annotation>
  214. <xs:complexType>
  215. <xs:sequence>
  216. <xs:element name=""UNH5.1"">
  217. <xs:annotation>
  218. <xs:appinfo>
  219. <b:fieldInfo notes=""Message Subset Identification_0115"" />
  220. </xs:appinfo>
  221. </xs:annotation>
  222. <xs:simpleType>
  223. <xs:restriction base=""EDIFACT_AN"">
  224. <xs:minLength value=""1"" />
  225. <xs:maxLength value=""14"" />
  226. </xs:restriction>
  227. </xs:simpleType>
  228. </xs:element>
  229. <xs:element minOccurs=""0"" name=""UNH5.2"">
  230. <xs:annotation>
  231. <xs:appinfo>
  232. <b:fieldInfo notes=""Message Subset Version Number_0116"" />
  233. </xs:appinfo>
  234. </xs:annotation>
  235. <xs:simpleType>
  236. <xs:restriction base=""EDIFACT_AN"">
  237. <xs:minLength value=""1"" />
  238. <xs:maxLength value=""3"" />
  239. </xs:restriction>
  240. </xs:simpleType>
  241. </xs:element>
  242. <xs:element minOccurs=""0"" name=""UNH5.3"">
  243. <xs:annotation>
  244. <xs:appinfo>
  245. <b:fieldInfo notes=""Message Subset Release Number_0118"" />
  246. </xs:appinfo>
  247. </xs:annotation>
  248. <xs:simpleType>
  249. <xs:restriction base=""EDIFACT_AN"">
  250. <xs:minLength value=""1"" />
  251. <xs:maxLength value=""3"" />
  252. </xs:restriction>
  253. </xs:simpleType>
  254. </xs:element>
  255. <xs:element minOccurs=""0"" name=""UNH5.4"">
  256. <xs:annotation>
  257. <xs:appinfo>
  258. <b:fieldInfo notes=""Controlling Agency, Coded_0051"" />
  259. </xs:appinfo>
  260. </xs:annotation>
  261. <xs:simpleType>
  262. <xs:restriction base=""EDIFACT_AN"">
  263. <xs:minLength value=""1"" />
  264. <xs:maxLength value=""3"" />
  265. </xs:restriction>
  266. </xs:simpleType>
  267. </xs:element>
  268. </xs:sequence>
  269. </xs:complexType>
  270. </xs:element>
  271. <xs:element minOccurs=""0"" name=""UNH6"">
  272. <xs:annotation>
  273. <xs:appinfo>
  274. <b:recordInfo notes=""Message Implementation Guideline Identification"" />
  275. </xs:appinfo>
  276. </xs:annotation>
  277. <xs:complexType>
  278. <xs:sequence>
  279. <xs:element name=""UNH6.1"">
  280. <xs:annotation>
  281. <xs:appinfo>
  282. <b:fieldInfo notes=""Message Implementation Guideline Identification_0121"" />
  283. </xs:appinfo>
  284. </xs:annotation>
  285. <xs:simpleType>
  286. <xs:restriction base=""EDIFACT_AN"">
  287. <xs:minLength value=""1"" />
  288. <xs:maxLength value=""14"" />
  289. </xs:restriction>
  290. </xs:simpleType>
  291. </xs:element>
  292. <xs:element minOccurs=""0"" name=""UNH6.2"">
  293. <xs:annotation>
  294. <xs:appinfo>
  295. <b:fieldInfo notes=""Message Implementation Guideline Version Number_0122"" />
  296. </xs:appinfo>
  297. </xs:annotation>
  298. <xs:simpleType>
  299. <xs:restriction base=""EDIFACT_AN"">
  300. <xs:minLength value=""1"" />
  301. <xs:maxLength value=""3"" />
  302. </xs:restriction>
  303. </xs:simpleType>
  304. </xs:element>
  305. <xs:element minOccurs=""0"" name=""UNH6.3"">
  306. <xs:annotation>
  307. <xs:appinfo>
  308. <b:fieldInfo notes=""Message Implementation Guideline Release Number_0124"" />
  309. </xs:appinfo>
  310. </xs:annotation>
  311. <xs:simpleType>
  312. <xs:restriction base=""EDIFACT_AN"">
  313. <xs:minLength value=""1"" />
  314. <xs:maxLength value=""3"" />
  315. </xs:restriction>
  316. </xs:simpleType>
  317. </xs:element>
  318. <xs:element minOccurs=""0"" name=""UNH6.4"">
  319. <xs:annotation>
  320. <xs:appinfo>
  321. <b:fieldInfo notes=""Controlling Agency, Coded_0051"" />
  322. </xs:appinfo>
  323. </xs:annotation>
  324. <xs:simpleType>
  325. <xs:restriction base=""EDIFACT_AN"">
  326. <xs:minLength value=""1"" />
  327. <xs:maxLength value=""3"" />
  328. </xs:restriction>
  329. </xs:simpleType>
  330. </xs:element>
  331. </xs:sequence>
  332. </xs:complexType>
  333. </xs:element>
  334. <xs:element minOccurs=""0"" name=""UNH7"">
  335. <xs:annotation>
  336. <xs:appinfo>
  337. <b:recordInfo notes=""Scenario Identification"" />
  338. </xs:appinfo>
  339. </xs:annotation>
  340. <xs:complexType>
  341. <xs:sequence>
  342. <xs:element name=""UNH7.1"">
  343. <xs:annotation>
  344. <xs:appinfo>
  345. <b:fieldInfo notes=""Scenario Identification_0127"" />
  346. </xs:appinfo>
  347. </xs:annotation>
  348. <xs:simpleType>
  349. <xs:restriction base=""EDIFACT_AN"">
  350. <xs:minLength value=""1"" />
  351. <xs:maxLength value=""14"" />
  352. </xs:restriction>
  353. </xs:simpleType>
  354. </xs:element>
  355. <xs:element minOccurs=""0"" name=""UNH7.2"">
  356. <xs:annotation>
  357. <xs:appinfo>
  358. <b:fieldInfo notes=""Scenario Version Number_0128"" />
  359. </xs:appinfo>
  360. </xs:annotation>
  361. <xs:simpleType>
  362. <xs:restriction base=""EDIFACT_AN"">
  363. <xs:minLength value=""1"" />
  364. <xs:maxLength value=""3"" />
  365. </xs:restriction>
  366. </xs:simpleType>
  367. </xs:element>
  368. <xs:element minOccurs=""0"" name=""UNH7.3"">
  369. <xs:annotation>
  370. <xs:appinfo>
  371. <b:fieldInfo notes=""Scenario Release Number_0130"" />
  372. </xs:appinfo>
  373. </xs:annotation>
  374. <xs:simpleType>
  375. <xs:restriction base=""EDIFACT_AN"">
  376. <xs:minLength value=""1"" />
  377. <xs:maxLength value=""3"" />
  378. </xs:restriction>
  379. </xs:simpleType>
  380. </xs:element>
  381. <xs:element minOccurs=""0"" name=""UNH7.4"">
  382. <xs:annotation>
  383. <xs:appinfo>
  384. <b:fieldInfo notes=""Controlling Agency, Coded_0051"" />
  385. </xs:appinfo>
  386. </xs:annotation>
  387. <xs:simpleType>
  388. <xs:restriction base=""EDIFACT_AN"">
  389. <xs:minLength value=""1"" />
  390. <xs:maxLength value=""3"" />
  391. </xs:restriction>
  392. </xs:simpleType>
  393. </xs:element>
  394. </xs:sequence>
  395. </xs:complexType>
  396. </xs:element>
  397. </xs:sequence>
  398. </xs:complexType>
  399. </xs:element>
  400. <xs:element ref=""BGM"">
  401. <xs:annotation>
  402. <xs:appinfo>
  403. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""BGM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""BEGINNING OF MESSAGE"" />
  404. </xs:appinfo>
  405. </xs:annotation>
  406. </xs:element>
  407. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""DTM"">
  408. <xs:annotation>
  409. <xs:appinfo>
  410. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DTM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  411. </xs:appinfo>
  412. </xs:annotation>
  413. </xs:element>
  414. <xs:element minOccurs=""0"" ref=""TSR"">
  415. <xs:annotation>
  416. <xs:appinfo>
  417. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""TSR"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TRANSPORT SERVICE REQUIREMENTS"" />
  418. </xs:appinfo>
  419. </xs:annotation>
  420. </xs:element>
  421. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""NADLoop1"">
  422. <xs:annotation>
  423. <xs:appinfo>
  424. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for NAME AND ADDRESS"" />
  425. </xs:appinfo>
  426. </xs:annotation>
  427. </xs:element>
  428. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""RFFLoop1"">
  429. <xs:annotation>
  430. <xs:appinfo>
  431. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for REFERENCE"" />
  432. </xs:appinfo>
  433. </xs:annotation>
  434. </xs:element>
  435. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""LOC"">
  436. <xs:annotation>
  437. <xs:appinfo>
  438. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""LOC"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PLACE/LOCATION IDENTIFICATION"" />
  439. </xs:appinfo>
  440. </xs:annotation>
  441. </xs:element>
  442. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""FTX"">
  443. <xs:annotation>
  444. <xs:appinfo>
  445. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""FTX"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""FREE TEXT"" />
  446. </xs:appinfo>
  447. </xs:annotation>
  448. </xs:element>
  449. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""CNT"">
  450. <xs:annotation>
  451. <xs:appinfo>
  452. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""CNT"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTROL TOTAL"" />
  453. </xs:appinfo>
  454. </xs:annotation>
  455. </xs:element>
  456. <xs:element minOccurs=""0"" maxOccurs=""999"" ref=""CNILoop1"">
  457. <xs:annotation>
  458. <xs:appinfo>
  459. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for CONSIGNMENT INFORMATION"" />
  460. </xs:appinfo>
  461. </xs:annotation>
  462. </xs:element>
  463. <xs:element minOccurs=""0"" name=""UNT"">
  464. <xs:annotation>
  465. <xs:appinfo>
  466. <b:recordInfo notes=""Message Trailer"" />
  467. </xs:appinfo>
  468. </xs:annotation>
  469. <xs:complexType>
  470. <xs:sequence>
  471. <xs:element name=""UNT1"">
  472. <xs:annotation>
  473. <xs:appinfo>
  474. <b:fieldInfo notes=""Number of Segments in a Message_0074"" />
  475. </xs:appinfo>
  476. </xs:annotation>
  477. <xs:simpleType>
  478. <xs:restriction base=""EDIFACT_N"">
  479. <xs:minLength value=""1"" />
  480. <xs:maxLength value=""10"" />
  481. </xs:restriction>
  482. </xs:simpleType>
  483. </xs:element>
  484. <xs:element name=""UNT2"">
  485. <xs:annotation>
  486. <xs:appinfo>
  487. <b:fieldInfo notes=""Message Reference Number_0062"" />
  488. </xs:appinfo>
  489. </xs:annotation>
  490. <xs:simpleType>
  491. <xs:restriction base=""EDIFACT_AN"">
  492. <xs:minLength value=""1"" />
  493. <xs:maxLength value=""14"" />
  494. </xs:restriction>
  495. </xs:simpleType>
  496. </xs:element>
  497. </xs:sequence>
  498. </xs:complexType>
  499. </xs:element>
  500. </xs:sequence>
  501. </xs:complexType>
  502. </xs:element>
  503. <xs:element name=""CTALoop1"">
  504. <xs:annotation>
  505. <xs:appinfo>
  506. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for CONTACT INFORMATION"" />
  507. </xs:appinfo>
  508. </xs:annotation>
  509. <xs:complexType>
  510. <xs:sequence>
  511. <xs:element ref=""CTA"">
  512. <xs:annotation>
  513. <xs:appinfo>
  514. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""CTA"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTACT INFORMATION"" />
  515. </xs:appinfo>
  516. </xs:annotation>
  517. </xs:element>
  518. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""COM"">
  519. <xs:annotation>
  520. <xs:appinfo>
  521. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""COM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""COMMUNICATION CONTACT"" />
  522. </xs:appinfo>
  523. </xs:annotation>
  524. </xs:element>
  525. </xs:sequence>
  526. </xs:complexType>
  527. </xs:element>
  528. <xs:element name=""NADLoop1"">
  529. <xs:annotation>
  530. <xs:appinfo>
  531. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for NAME AND ADDRESS"" />
  532. </xs:appinfo>
  533. </xs:annotation>
  534. <xs:complexType>
  535. <xs:sequence>
  536. <xs:element ref=""NAD"">
  537. <xs:annotation>
  538. <xs:appinfo>
  539. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""NAD"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NAME AND ADDRESS"" />
  540. </xs:appinfo>
  541. </xs:annotation>
  542. </xs:element>
  543. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""CTALoop1"">
  544. <xs:annotation>
  545. <xs:appinfo>
  546. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for CONTACT INFORMATION"" />
  547. </xs:appinfo>
  548. </xs:annotation>
  549. </xs:element>
  550. </xs:sequence>
  551. </xs:complexType>
  552. </xs:element>
  553. <xs:element name=""RFFLoop1"">
  554. <xs:annotation>
  555. <xs:appinfo>
  556. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for REFERENCE"" />
  557. </xs:appinfo>
  558. </xs:annotation>
  559. <xs:complexType>
  560. <xs:sequence>
  561. <xs:element ref=""RFF"">
  562. <xs:annotation>
  563. <xs:appinfo>
  564. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""RFF"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  565. </xs:appinfo>
  566. </xs:annotation>
  567. </xs:element>
  568. <xs:element minOccurs=""0"" ref=""DTM_2"">
  569. <xs:annotation>
  570. <xs:appinfo>
  571. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DTM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  572. </xs:appinfo>
  573. </xs:annotation>
  574. </xs:element>
  575. </xs:sequence>
  576. </xs:complexType>
  577. </xs:element>
  578. <xs:element name=""TDTLoop1"">
  579. <xs:annotation>
  580. <xs:appinfo>
  581. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for DETAILS OF TRANSPORT"" />
  582. </xs:appinfo>
  583. </xs:annotation>
  584. <xs:complexType>
  585. <xs:sequence>
  586. <xs:element ref=""TDT"">
  587. <xs:annotation>
  588. <xs:appinfo>
  589. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""TDT"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DETAILS OF TRANSPORT"" />
  590. </xs:appinfo>
  591. </xs:annotation>
  592. </xs:element>
  593. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""RFF_3"">
  594. <xs:annotation>
  595. <xs:appinfo>
  596. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""RFF"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  597. </xs:appinfo>
  598. </xs:annotation>
  599. </xs:element>
  600. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""LOC_4"">
  601. <xs:annotation>
  602. <xs:appinfo>
  603. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""LOC"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PLACE/LOCATION IDENTIFICATION"" />
  604. </xs:appinfo>
  605. </xs:annotation>
  606. </xs:element>
  607. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""DTM_4"">
  608. <xs:annotation>
  609. <xs:appinfo>
  610. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DTM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  611. </xs:appinfo>
  612. </xs:annotation>
  613. </xs:element>
  614. </xs:sequence>
  615. </xs:complexType>
  616. </xs:element>
  617. <xs:element name=""EQALoop1"">
  618. <xs:annotation>
  619. <xs:appinfo>
  620. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for ATTACHED EQUIPMENT"" />
  621. </xs:appinfo>
  622. </xs:annotation>
  623. <xs:complexType>
  624. <xs:sequence>
  625. <xs:element ref=""EQA"">
  626. <xs:annotation>
  627. <xs:appinfo>
  628. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""EQA"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""ATTACHED EQUIPMENT"" />
  629. </xs:appinfo>
  630. </xs:annotation>
  631. </xs:element>
  632. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""SEL_2"">
  633. <xs:annotation>
  634. <xs:appinfo>
  635. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""SEL"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SEAL NUMBER"" />
  636. </xs:appinfo>
  637. </xs:annotation>
  638. </xs:element>
  639. </xs:sequence>
  640. </xs:complexType>
  641. </xs:element>
  642. <xs:element name=""EQDLoop1"">
  643. <xs:annotation>
  644. <xs:appinfo>
  645. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for EQUIPMENT DETAILS"" />
  646. </xs:appinfo>
  647. </xs:annotation>
  648. <xs:complexType>
  649. <xs:sequence>
  650. <xs:element ref=""EQD"">
  651. <xs:annotation>
  652. <xs:appinfo>
  653. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""EQD"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EQUIPMENT DETAILS"" />
  654. </xs:appinfo>
  655. </xs:annotation>
  656. </xs:element>
  657. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""MEA"">
  658. <xs:annotation>
  659. <xs:appinfo>
  660. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""MEA"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MEASUREMENTS"" />
  661. </xs:appinfo>
  662. </xs:annotation>
  663. </xs:element>
  664. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""DIM"">
  665. <xs:annotation>
  666. <xs:appinfo>
  667. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DIM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DIMENSIONS"" />
  668. </xs:appinfo>
  669. </xs:annotation>
  670. </xs:element>
  671. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""SEL"">
  672. <xs:annotation>
  673. <xs:appinfo>
  674. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""SEL"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SEAL NUMBER"" />
  675. </xs:appinfo>
  676. </xs:annotation>
  677. </xs:element>
  678. <xs:element minOccurs=""0"" maxOccurs=""99"" ref=""EQALoop1"">
  679. <xs:annotation>
  680. <xs:appinfo>
  681. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for ATTACHED EQUIPMENT"" />
  682. </xs:appinfo>
  683. </xs:annotation>
  684. </xs:element>
  685. </xs:sequence>
  686. </xs:complexType>
  687. </xs:element>
  688. <xs:element name=""MEALoop1"">
  689. <xs:annotation>
  690. <xs:appinfo>
  691. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for MEASUREMENTS"" />
  692. </xs:appinfo>
  693. </xs:annotation>
  694. <xs:complexType>
  695. <xs:sequence>
  696. <xs:element ref=""MEA_2"">
  697. <xs:annotation>
  698. <xs:appinfo>
  699. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""MEA"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MEASUREMENTS"" />
  700. </xs:appinfo>
  701. </xs:annotation>
  702. </xs:element>
  703. <xs:element minOccurs=""0"" ref=""EQN"">
  704. <xs:annotation>
  705. <xs:appinfo>
  706. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""EQN"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER OF UNITS"" />
  707. </xs:appinfo>
  708. </xs:annotation>
  709. </xs:element>
  710. </xs:sequence>
  711. </xs:complexType>
  712. </xs:element>
  713. <xs:element name=""DIMLoop1"">
  714. <xs:annotation>
  715. <xs:appinfo>
  716. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for DIMENSIONS"" />
  717. </xs:appinfo>
  718. </xs:annotation>
  719. <xs:complexType>
  720. <xs:sequence>
  721. <xs:element ref=""DIM_2"">
  722. <xs:annotation>
  723. <xs:appinfo>
  724. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DIM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DIMENSIONS"" />
  725. </xs:appinfo>
  726. </xs:annotation>
  727. </xs:element>
  728. <xs:element minOccurs=""0"" ref=""EQN_2"">
  729. <xs:annotation>
  730. <xs:appinfo>
  731. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""EQN"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER OF UNITS"" />
  732. </xs:appinfo>
  733. </xs:annotation>
  734. </xs:element>
  735. </xs:sequence>
  736. </xs:complexType>
  737. </xs:element>
  738. <xs:element name=""PCILoop1"">
  739. <xs:annotation>
  740. <xs:appinfo>
  741. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for PACKAGE IDENTIFICATION"" />
  742. </xs:appinfo>
  743. </xs:annotation>
  744. <xs:complexType>
  745. <xs:sequence>
  746. <xs:element ref=""PCI_2"">
  747. <xs:annotation>
  748. <xs:appinfo>
  749. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""PCI"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PACKAGE IDENTIFICATION"" />
  750. </xs:appinfo>
  751. </xs:annotation>
  752. </xs:element>
  753. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""GIN"">
  754. <xs:annotation>
  755. <xs:appinfo>
  756. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""GIN"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""GOODS IDENTITY NUMBER"" />
  757. </xs:appinfo>
  758. </xs:annotation>
  759. </xs:element>
  760. </xs:sequence>
  761. </xs:complexType>
  762. </xs:element>
  763. <xs:element name=""GIDLoop1"">
  764. <xs:annotation>
  765. <xs:appinfo>
  766. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for GOODS ITEM DETAILS"" />
  767. </xs:appinfo>
  768. </xs:annotation>
  769. <xs:complexType>
  770. <xs:sequence>
  771. <xs:element ref=""GID"">
  772. <xs:annotation>
  773. <xs:appinfo>
  774. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""GID"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""GOODS ITEM DETAILS"" />
  775. </xs:appinfo>
  776. </xs:annotation>
  777. </xs:element>
  778. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""HAN"">
  779. <xs:annotation>
  780. <xs:appinfo>
  781. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""HAN"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""HANDLING INSTRUCTIONS"" />
  782. </xs:appinfo>
  783. </xs:annotation>
  784. </xs:element>
  785. <xs:element minOccurs=""0"" maxOccurs=""99"" ref=""MEALoop1"">
  786. <xs:annotation>
  787. <xs:appinfo>
  788. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for MEASUREMENTS"" />
  789. </xs:appinfo>
  790. </xs:annotation>
  791. </xs:element>
  792. <xs:element minOccurs=""0"" maxOccurs=""99"" ref=""DIMLoop1"">
  793. <xs:annotation>
  794. <xs:appinfo>
  795. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for DIMENSIONS"" />
  796. </xs:appinfo>
  797. </xs:annotation>
  798. </xs:element>
  799. <xs:element minOccurs=""0"" maxOccurs=""99"" ref=""PCILoop1"">
  800. <xs:annotation>
  801. <xs:appinfo>
  802. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for PACKAGE IDENTIFICATION"" />
  803. </xs:appinfo>
  804. </xs:annotation>
  805. </xs:element>
  806. </xs:sequence>
  807. </xs:complexType>
  808. </xs:element>
  809. <xs:element name=""STSLoop1"">
  810. <xs:annotation>
  811. <xs:appinfo>
  812. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for STATUS"" />
  813. </xs:appinfo>
  814. </xs:annotation>
  815. <xs:complexType>
  816. <xs:sequence>
  817. <xs:element ref=""STS"">
  818. <xs:annotation>
  819. <xs:appinfo>
  820. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""STS"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS"" />
  821. </xs:appinfo>
  822. </xs:annotation>
  823. </xs:element>
  824. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""RFF_2"">
  825. <xs:annotation>
  826. <xs:appinfo>
  827. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""RFF"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  828. </xs:appinfo>
  829. </xs:annotation>
  830. </xs:element>
  831. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""DTM_3"">
  832. <xs:annotation>
  833. <xs:appinfo>
  834. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DTM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  835. </xs:appinfo>
  836. </xs:annotation>
  837. </xs:element>
  838. <xs:element minOccurs=""0"" ref=""DOC"">
  839. <xs:annotation>
  840. <xs:appinfo>
  841. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DOC"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE DETAILS"" />
  842. </xs:appinfo>
  843. </xs:annotation>
  844. </xs:element>
  845. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""FTX_2"">
  846. <xs:annotation>
  847. <xs:appinfo>
  848. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""FTX"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""FREE TEXT"" />
  849. </xs:appinfo>
  850. </xs:annotation>
  851. </xs:element>
  852. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""NAD_2"">
  853. <xs:annotation>
  854. <xs:appinfo>
  855. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""NAD"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NAME AND ADDRESS"" />
  856. </xs:appinfo>
  857. </xs:annotation>
  858. </xs:element>
  859. <xs:element minOccurs=""0"" ref=""LOC_3"">
  860. <xs:annotation>
  861. <xs:appinfo>
  862. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""LOC"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PLACE/LOCATION IDENTIFICATION"" />
  863. </xs:appinfo>
  864. </xs:annotation>
  865. </xs:element>
  866. <xs:element minOccurs=""0"" maxOccurs=""99"" ref=""PCI"">
  867. <xs:annotation>
  868. <xs:appinfo>
  869. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""PCI"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PACKAGE IDENTIFICATION"" />
  870. </xs:appinfo>
  871. </xs:annotation>
  872. </xs:element>
  873. <xs:element minOccurs=""0"" maxOccurs=""99"" ref=""TDTLoop1"">
  874. <xs:annotation>
  875. <xs:appinfo>
  876. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for DETAILS OF TRANSPORT"" />
  877. </xs:appinfo>
  878. </xs:annotation>
  879. </xs:element>
  880. <xs:element minOccurs=""0"" maxOccurs=""99"" ref=""EQDLoop1"">
  881. <xs:annotation>
  882. <xs:appinfo>
  883. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for EQUIPMENT DETAILS"" />
  884. </xs:appinfo>
  885. </xs:annotation>
  886. </xs:element>
  887. <xs:element minOccurs=""0"" maxOccurs=""99"" ref=""GIDLoop1"">
  888. <xs:annotation>
  889. <xs:appinfo>
  890. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for GOODS ITEM DETAILS"" />
  891. </xs:appinfo>
  892. </xs:annotation>
  893. </xs:element>
  894. </xs:sequence>
  895. </xs:complexType>
  896. </xs:element>
  897. <xs:element name=""CNILoop1"">
  898. <xs:annotation>
  899. <xs:appinfo>
  900. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for CONSIGNMENT INFORMATION"" />
  901. </xs:appinfo>
  902. </xs:annotation>
  903. <xs:complexType>
  904. <xs:sequence>
  905. <xs:element ref=""CNI"">
  906. <xs:annotation>
  907. <xs:appinfo>
  908. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""CNI"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONSIGNMENT INFORMATION"" />
  909. </xs:appinfo>
  910. </xs:annotation>
  911. </xs:element>
  912. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""LOC_2"">
  913. <xs:annotation>
  914. <xs:appinfo>
  915. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""LOC"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PLACE/LOCATION IDENTIFICATION"" />
  916. </xs:appinfo>
  917. </xs:annotation>
  918. </xs:element>
  919. <xs:element minOccurs=""0"" maxOccurs=""9"" ref=""CNT_2"">
  920. <xs:annotation>
  921. <xs:appinfo>
  922. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""CNT"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTROL TOTAL"" />
  923. </xs:appinfo>
  924. </xs:annotation>
  925. </xs:element>
  926. <xs:element maxOccurs=""99"" ref=""STSLoop1"">
  927. <xs:annotation>
  928. <xs:appinfo>
  929. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_record"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""Loop for STATUS"" />
  930. </xs:appinfo>
  931. </xs:annotation>
  932. </xs:element>
  933. </xs:sequence>
  934. </xs:complexType>
  935. </xs:element>
  936. <xs:element name=""BGM"">
  937. <xs:annotation>
  938. <xs:appinfo>
  939. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""BGM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""BEGINNING OF MESSAGE"" />
  940. </xs:appinfo>
  941. </xs:annotation>
  942. <xs:complexType>
  943. <xs:sequence>
  944. <xs:element minOccurs=""0"" ref=""C002"">
  945. <xs:annotation>
  946. <xs:appinfo>
  947. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE NAME"" />
  948. </xs:appinfo>
  949. </xs:annotation>
  950. </xs:element>
  951. <xs:element minOccurs=""0"" name=""BGM02"">
  952. <xs:annotation>
  953. <xs:appinfo>
  954. <b:fieldInfo notes=""Document/message number_1004"" />
  955. </xs:appinfo>
  956. </xs:annotation>
  957. <xs:simpleType>
  958. <xs:restriction base=""EDIFACT_AN"">
  959. <xs:minLength value=""1"" />
  960. <xs:maxLength value=""35"" />
  961. </xs:restriction>
  962. </xs:simpleType>
  963. </xs:element>
  964. <xs:element minOccurs=""0"" name=""BGM03"" type=""EDIFACT_ID_1225"">
  965. <xs:annotation>
  966. <xs:appinfo>
  967. <b:fieldInfo notes=""Message function, coded_1225"" />
  968. </xs:appinfo>
  969. </xs:annotation>
  970. </xs:element>
  971. <xs:element minOccurs=""0"" name=""BGM04"" type=""EDIFACT_ID_4343"">
  972. <xs:annotation>
  973. <xs:appinfo>
  974. <b:fieldInfo notes=""Response type, coded_4343"" />
  975. </xs:appinfo>
  976. </xs:annotation>
  977. </xs:element>
  978. </xs:sequence>
  979. </xs:complexType>
  980. </xs:element>
  981. <xs:element name=""DTM"">
  982. <xs:annotation>
  983. <xs:appinfo>
  984. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DTM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  985. </xs:appinfo>
  986. </xs:annotation>
  987. <xs:complexType>
  988. <xs:sequence>
  989. <xs:element ref=""C507"">
  990. <xs:annotation>
  991. <xs:appinfo>
  992. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  993. </xs:appinfo>
  994. </xs:annotation>
  995. </xs:element>
  996. </xs:sequence>
  997. </xs:complexType>
  998. </xs:element>
  999. <xs:element name=""TSR"">
  1000. <xs:annotation>
  1001. <xs:appinfo>
  1002. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""TSR"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TRANSPORT SERVICE REQUIREMENTS"" />
  1003. </xs:appinfo>
  1004. </xs:annotation>
  1005. <xs:complexType>
  1006. <xs:sequence>
  1007. <xs:element minOccurs=""0"" ref=""C536"">
  1008. <xs:annotation>
  1009. <xs:appinfo>
  1010. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTRACT AND CARRIAGE CONDITION"" />
  1011. </xs:appinfo>
  1012. </xs:annotation>
  1013. </xs:element>
  1014. <xs:element minOccurs=""0"" ref=""C233"">
  1015. <xs:annotation>
  1016. <xs:appinfo>
  1017. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SERVICE"" />
  1018. </xs:appinfo>
  1019. </xs:annotation>
  1020. </xs:element>
  1021. <xs:element minOccurs=""0"" ref=""C537"">
  1022. <xs:annotation>
  1023. <xs:appinfo>
  1024. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TRANSPORT PRIORITY"" />
  1025. </xs:appinfo>
  1026. </xs:annotation>
  1027. </xs:element>
  1028. <xs:element minOccurs=""0"" ref=""C703"">
  1029. <xs:annotation>
  1030. <xs:appinfo>
  1031. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NATURE OF CARGO"" />
  1032. </xs:appinfo>
  1033. </xs:annotation>
  1034. </xs:element>
  1035. </xs:sequence>
  1036. </xs:complexType>
  1037. </xs:element>
  1038. <xs:element name=""NAD"">
  1039. <xs:annotation>
  1040. <xs:appinfo>
  1041. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""NAD"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NAME AND ADDRESS"" />
  1042. </xs:appinfo>
  1043. </xs:annotation>
  1044. <xs:complexType>
  1045. <xs:sequence>
  1046. <xs:element name=""NAD01"" type=""EDIFACT_ID_3035"">
  1047. <xs:annotation>
  1048. <xs:appinfo>
  1049. <b:fieldInfo notes=""Party qualifier_3035"" />
  1050. </xs:appinfo>
  1051. </xs:annotation>
  1052. </xs:element>
  1053. <xs:element minOccurs=""0"" ref=""C082"">
  1054. <xs:annotation>
  1055. <xs:appinfo>
  1056. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PARTY IDENTIFICATION DETAILS"" />
  1057. </xs:appinfo>
  1058. </xs:annotation>
  1059. </xs:element>
  1060. <xs:element minOccurs=""0"" ref=""C058"">
  1061. <xs:annotation>
  1062. <xs:appinfo>
  1063. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NAME AND ADDRESS"" />
  1064. </xs:appinfo>
  1065. </xs:annotation>
  1066. </xs:element>
  1067. <xs:element minOccurs=""0"" ref=""C080"">
  1068. <xs:annotation>
  1069. <xs:appinfo>
  1070. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PARTY NAME"" />
  1071. </xs:appinfo>
  1072. </xs:annotation>
  1073. </xs:element>
  1074. <xs:element minOccurs=""0"" ref=""C059"">
  1075. <xs:annotation>
  1076. <xs:appinfo>
  1077. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STREET"" />
  1078. </xs:appinfo>
  1079. </xs:annotation>
  1080. </xs:element>
  1081. <xs:element minOccurs=""0"" name=""NAD06"">
  1082. <xs:annotation>
  1083. <xs:appinfo>
  1084. <b:fieldInfo notes=""City name_3164"" />
  1085. </xs:appinfo>
  1086. </xs:annotation>
  1087. <xs:simpleType>
  1088. <xs:restriction base=""EDIFACT_AN"">
  1089. <xs:minLength value=""1"" />
  1090. <xs:maxLength value=""35"" />
  1091. </xs:restriction>
  1092. </xs:simpleType>
  1093. </xs:element>
  1094. <xs:element minOccurs=""0"" name=""NAD07"">
  1095. <xs:annotation>
  1096. <xs:appinfo>
  1097. <b:fieldInfo notes=""Country sub-entity identification_3229"" />
  1098. </xs:appinfo>
  1099. </xs:annotation>
  1100. <xs:simpleType>
  1101. <xs:restriction base=""EDIFACT_AN"">
  1102. <xs:minLength value=""1"" />
  1103. <xs:maxLength value=""9"" />
  1104. </xs:restriction>
  1105. </xs:simpleType>
  1106. </xs:element>
  1107. <xs:element minOccurs=""0"" name=""NAD08"">
  1108. <xs:annotation>
  1109. <xs:appinfo>
  1110. <b:fieldInfo notes=""Postcode identification_3251"" />
  1111. </xs:appinfo>
  1112. </xs:annotation>
  1113. <xs:simpleType>
  1114. <xs:restriction base=""EDIFACT_AN"">
  1115. <xs:minLength value=""1"" />
  1116. <xs:maxLength value=""9"" />
  1117. </xs:restriction>
  1118. </xs:simpleType>
  1119. </xs:element>
  1120. <xs:element minOccurs=""0"" name=""NAD09"">
  1121. <xs:annotation>
  1122. <xs:appinfo>
  1123. <b:fieldInfo notes=""Country, coded_3207"" />
  1124. </xs:appinfo>
  1125. </xs:annotation>
  1126. <xs:simpleType>
  1127. <xs:restriction base=""EDIFACT_AN"">
  1128. <xs:minLength value=""1"" />
  1129. <xs:maxLength value=""3"" />
  1130. </xs:restriction>
  1131. </xs:simpleType>
  1132. </xs:element>
  1133. </xs:sequence>
  1134. </xs:complexType>
  1135. </xs:element>
  1136. <xs:element name=""CTA"">
  1137. <xs:annotation>
  1138. <xs:appinfo>
  1139. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""CTA"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTACT INFORMATION"" />
  1140. </xs:appinfo>
  1141. </xs:annotation>
  1142. <xs:complexType>
  1143. <xs:sequence>
  1144. <xs:element minOccurs=""0"" name=""CTA01"" type=""EDIFACT_ID_3139"">
  1145. <xs:annotation>
  1146. <xs:appinfo>
  1147. <b:fieldInfo notes=""Contact function, coded_3139"" />
  1148. </xs:appinfo>
  1149. </xs:annotation>
  1150. </xs:element>
  1151. <xs:element minOccurs=""0"" ref=""C056"">
  1152. <xs:annotation>
  1153. <xs:appinfo>
  1154. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DEPARTMENT OR EMPLOYEE DETAILS"" />
  1155. </xs:appinfo>
  1156. </xs:annotation>
  1157. </xs:element>
  1158. </xs:sequence>
  1159. </xs:complexType>
  1160. </xs:element>
  1161. <xs:element name=""COM"">
  1162. <xs:annotation>
  1163. <xs:appinfo>
  1164. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""COM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""COMMUNICATION CONTACT"" />
  1165. </xs:appinfo>
  1166. </xs:annotation>
  1167. <xs:complexType>
  1168. <xs:sequence>
  1169. <xs:element ref=""C076"">
  1170. <xs:annotation>
  1171. <xs:appinfo>
  1172. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""COMMUNICATION CONTACT"" />
  1173. </xs:appinfo>
  1174. </xs:annotation>
  1175. </xs:element>
  1176. </xs:sequence>
  1177. </xs:complexType>
  1178. </xs:element>
  1179. <xs:element name=""RFF"">
  1180. <xs:annotation>
  1181. <xs:appinfo>
  1182. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""RFF"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  1183. </xs:appinfo>
  1184. </xs:annotation>
  1185. <xs:complexType>
  1186. <xs:sequence>
  1187. <xs:element ref=""C506"">
  1188. <xs:annotation>
  1189. <xs:appinfo>
  1190. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  1191. </xs:appinfo>
  1192. </xs:annotation>
  1193. </xs:element>
  1194. </xs:sequence>
  1195. </xs:complexType>
  1196. </xs:element>
  1197. <xs:element name=""DTM_2"">
  1198. <xs:annotation>
  1199. <xs:appinfo>
  1200. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DTM_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  1201. </xs:appinfo>
  1202. </xs:annotation>
  1203. <xs:complexType>
  1204. <xs:sequence>
  1205. <xs:element ref=""C507_2"">
  1206. <xs:annotation>
  1207. <xs:appinfo>
  1208. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  1209. </xs:appinfo>
  1210. </xs:annotation>
  1211. </xs:element>
  1212. </xs:sequence>
  1213. </xs:complexType>
  1214. </xs:element>
  1215. <xs:element name=""LOC"">
  1216. <xs:annotation>
  1217. <xs:appinfo>
  1218. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""LOC"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PLACE/LOCATION IDENTIFICATION"" />
  1219. </xs:appinfo>
  1220. </xs:annotation>
  1221. <xs:complexType>
  1222. <xs:sequence>
  1223. <xs:element name=""LOC01"" type=""EDIFACT_ID_3227"">
  1224. <xs:annotation>
  1225. <xs:appinfo>
  1226. <b:fieldInfo notes=""Place/location qualifier_3227"" />
  1227. </xs:appinfo>
  1228. </xs:annotation>
  1229. </xs:element>
  1230. <xs:element minOccurs=""0"" ref=""C517"">
  1231. <xs:annotation>
  1232. <xs:appinfo>
  1233. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""LOCATION IDENTIFICATION"" />
  1234. </xs:appinfo>
  1235. </xs:annotation>
  1236. </xs:element>
  1237. <xs:element minOccurs=""0"" ref=""C519"">
  1238. <xs:annotation>
  1239. <xs:appinfo>
  1240. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION ONE IDENTIFICATION"" />
  1241. </xs:appinfo>
  1242. </xs:annotation>
  1243. </xs:element>
  1244. <xs:element minOccurs=""0"" ref=""C553"">
  1245. <xs:annotation>
  1246. <xs:appinfo>
  1247. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION TWO IDENTIFICATION"" />
  1248. </xs:appinfo>
  1249. </xs:annotation>
  1250. </xs:element>
  1251. <xs:element minOccurs=""0"" name=""LOC05"">
  1252. <xs:annotation>
  1253. <xs:appinfo>
  1254. <b:fieldInfo notes=""Relation, coded_5479"" />
  1255. </xs:appinfo>
  1256. </xs:annotation>
  1257. <xs:simpleType>
  1258. <xs:restriction base=""EDIFACT_AN"">
  1259. <xs:minLength value=""1"" />
  1260. <xs:maxLength value=""3"" />
  1261. </xs:restriction>
  1262. </xs:simpleType>
  1263. </xs:element>
  1264. </xs:sequence>
  1265. </xs:complexType>
  1266. </xs:element>
  1267. <xs:element name=""FTX"">
  1268. <xs:annotation>
  1269. <xs:appinfo>
  1270. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""FTX"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""FREE TEXT"" />
  1271. </xs:appinfo>
  1272. </xs:annotation>
  1273. <xs:complexType>
  1274. <xs:sequence>
  1275. <xs:element name=""FTX01"" type=""EDIFACT_ID_4451"">
  1276. <xs:annotation>
  1277. <xs:appinfo>
  1278. <b:fieldInfo notes=""Text subject qualifier_4451"" />
  1279. </xs:appinfo>
  1280. </xs:annotation>
  1281. </xs:element>
  1282. <xs:element minOccurs=""0"" name=""FTX02"" type=""EDIFACT_ID_4453"">
  1283. <xs:annotation>
  1284. <xs:appinfo>
  1285. <b:fieldInfo notes=""Text function, coded_4453"" />
  1286. </xs:appinfo>
  1287. </xs:annotation>
  1288. </xs:element>
  1289. <xs:element minOccurs=""0"" ref=""C107"">
  1290. <xs:annotation>
  1291. <xs:appinfo>
  1292. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TEXT REFERENCE"" />
  1293. </xs:appinfo>
  1294. </xs:annotation>
  1295. </xs:element>
  1296. <xs:element minOccurs=""0"" ref=""C108"">
  1297. <xs:annotation>
  1298. <xs:appinfo>
  1299. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TEXT LITERAL"" />
  1300. </xs:appinfo>
  1301. </xs:annotation>
  1302. </xs:element>
  1303. <xs:element minOccurs=""0"" name=""FTX05"">
  1304. <xs:annotation>
  1305. <xs:appinfo>
  1306. <b:fieldInfo notes=""Language, coded_3453"" />
  1307. </xs:appinfo>
  1308. </xs:annotation>
  1309. <xs:simpleType>
  1310. <xs:restriction base=""EDIFACT_AN"">
  1311. <xs:minLength value=""1"" />
  1312. <xs:maxLength value=""3"" />
  1313. </xs:restriction>
  1314. </xs:simpleType>
  1315. </xs:element>
  1316. </xs:sequence>
  1317. </xs:complexType>
  1318. </xs:element>
  1319. <xs:element name=""CNT"">
  1320. <xs:annotation>
  1321. <xs:appinfo>
  1322. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""CNT"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTROL TOTAL"" />
  1323. </xs:appinfo>
  1324. </xs:annotation>
  1325. <xs:complexType>
  1326. <xs:sequence>
  1327. <xs:element ref=""C270"">
  1328. <xs:annotation>
  1329. <xs:appinfo>
  1330. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTROL"" />
  1331. </xs:appinfo>
  1332. </xs:annotation>
  1333. </xs:element>
  1334. </xs:sequence>
  1335. </xs:complexType>
  1336. </xs:element>
  1337. <xs:element name=""CNI"">
  1338. <xs:annotation>
  1339. <xs:appinfo>
  1340. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""CNI"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONSIGNMENT INFORMATION"" />
  1341. </xs:appinfo>
  1342. </xs:annotation>
  1343. <xs:complexType>
  1344. <xs:sequence>
  1345. <xs:element minOccurs=""0"" name=""CNI01"">
  1346. <xs:annotation>
  1347. <xs:appinfo>
  1348. <b:fieldInfo notes=""Consolidation item number_1490"" />
  1349. </xs:appinfo>
  1350. </xs:annotation>
  1351. <xs:simpleType>
  1352. <xs:restriction base=""EDIFACT_N"">
  1353. <xs:minLength value=""1"" />
  1354. <xs:maxLength value=""4"" />
  1355. </xs:restriction>
  1356. </xs:simpleType>
  1357. </xs:element>
  1358. <xs:element minOccurs=""0"" ref=""C503"">
  1359. <xs:annotation>
  1360. <xs:appinfo>
  1361. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE DETAILS"" />
  1362. </xs:appinfo>
  1363. </xs:annotation>
  1364. </xs:element>
  1365. <xs:element minOccurs=""0"" name=""CNI03"">
  1366. <xs:annotation>
  1367. <xs:appinfo>
  1368. <b:fieldInfo notes=""Consignment load sequence number_1312"" />
  1369. </xs:appinfo>
  1370. </xs:annotation>
  1371. <xs:simpleType>
  1372. <xs:restriction base=""EDIFACT_N"">
  1373. <xs:minLength value=""1"" />
  1374. <xs:maxLength value=""4"" />
  1375. </xs:restriction>
  1376. </xs:simpleType>
  1377. </xs:element>
  1378. </xs:sequence>
  1379. </xs:complexType>
  1380. </xs:element>
  1381. <xs:element name=""LOC_2"">
  1382. <xs:annotation>
  1383. <xs:appinfo>
  1384. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""LOC_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PLACE/LOCATION IDENTIFICATION"" />
  1385. </xs:appinfo>
  1386. </xs:annotation>
  1387. <xs:complexType>
  1388. <xs:sequence>
  1389. <xs:element name=""LOC01"" type=""EDIFACT_ID_3227"">
  1390. <xs:annotation>
  1391. <xs:appinfo>
  1392. <b:fieldInfo notes=""Place/location qualifier_3227"" />
  1393. </xs:appinfo>
  1394. </xs:annotation>
  1395. </xs:element>
  1396. <xs:element minOccurs=""0"" ref=""C517_2"">
  1397. <xs:annotation>
  1398. <xs:appinfo>
  1399. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""LOCATION IDENTIFICATION"" />
  1400. </xs:appinfo>
  1401. </xs:annotation>
  1402. </xs:element>
  1403. <xs:element minOccurs=""0"" ref=""C519_2"">
  1404. <xs:annotation>
  1405. <xs:appinfo>
  1406. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION ONE IDENTIFICATION"" />
  1407. </xs:appinfo>
  1408. </xs:annotation>
  1409. </xs:element>
  1410. <xs:element minOccurs=""0"" ref=""C553_2"">
  1411. <xs:annotation>
  1412. <xs:appinfo>
  1413. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION TWO IDENTIFICATION"" />
  1414. </xs:appinfo>
  1415. </xs:annotation>
  1416. </xs:element>
  1417. <xs:element minOccurs=""0"" name=""LOC05"">
  1418. <xs:annotation>
  1419. <xs:appinfo>
  1420. <b:fieldInfo notes=""Relation, coded_5479"" />
  1421. </xs:appinfo>
  1422. </xs:annotation>
  1423. <xs:simpleType>
  1424. <xs:restriction base=""EDIFACT_AN"">
  1425. <xs:minLength value=""1"" />
  1426. <xs:maxLength value=""3"" />
  1427. </xs:restriction>
  1428. </xs:simpleType>
  1429. </xs:element>
  1430. </xs:sequence>
  1431. </xs:complexType>
  1432. </xs:element>
  1433. <xs:element name=""CNT_2"">
  1434. <xs:annotation>
  1435. <xs:appinfo>
  1436. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""CNT_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTROL TOTAL"" />
  1437. </xs:appinfo>
  1438. </xs:annotation>
  1439. <xs:complexType>
  1440. <xs:sequence>
  1441. <xs:element ref=""C270_2"">
  1442. <xs:annotation>
  1443. <xs:appinfo>
  1444. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTROL"" />
  1445. </xs:appinfo>
  1446. </xs:annotation>
  1447. </xs:element>
  1448. </xs:sequence>
  1449. </xs:complexType>
  1450. </xs:element>
  1451. <xs:element name=""STS"">
  1452. <xs:annotation>
  1453. <xs:appinfo>
  1454. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""STS"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS"" />
  1455. </xs:appinfo>
  1456. </xs:annotation>
  1457. <xs:complexType>
  1458. <xs:sequence>
  1459. <xs:element minOccurs=""0"" ref=""C601"">
  1460. <xs:annotation>
  1461. <xs:appinfo>
  1462. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS TYPE"" />
  1463. </xs:appinfo>
  1464. </xs:annotation>
  1465. </xs:element>
  1466. <xs:element minOccurs=""0"" ref=""C555"">
  1467. <xs:annotation>
  1468. <xs:appinfo>
  1469. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS EVENT"" />
  1470. </xs:appinfo>
  1471. </xs:annotation>
  1472. </xs:element>
  1473. <xs:element minOccurs=""0"" ref=""C556"">
  1474. <xs:annotation>
  1475. <xs:appinfo>
  1476. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  1477. </xs:appinfo>
  1478. </xs:annotation>
  1479. </xs:element>
  1480. <xs:element minOccurs=""0"" ref=""C556_2"">
  1481. <xs:annotation>
  1482. <xs:appinfo>
  1483. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  1484. </xs:appinfo>
  1485. </xs:annotation>
  1486. </xs:element>
  1487. <xs:element minOccurs=""0"" ref=""C556_3"">
  1488. <xs:annotation>
  1489. <xs:appinfo>
  1490. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  1491. </xs:appinfo>
  1492. </xs:annotation>
  1493. </xs:element>
  1494. <xs:element minOccurs=""0"" ref=""C556_4"">
  1495. <xs:annotation>
  1496. <xs:appinfo>
  1497. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  1498. </xs:appinfo>
  1499. </xs:annotation>
  1500. </xs:element>
  1501. <xs:element minOccurs=""0"" ref=""C556_5"">
  1502. <xs:annotation>
  1503. <xs:appinfo>
  1504. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  1505. </xs:appinfo>
  1506. </xs:annotation>
  1507. </xs:element>
  1508. </xs:sequence>
  1509. </xs:complexType>
  1510. </xs:element>
  1511. <xs:element name=""RFF_2"">
  1512. <xs:annotation>
  1513. <xs:appinfo>
  1514. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""RFF_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  1515. </xs:appinfo>
  1516. </xs:annotation>
  1517. <xs:complexType>
  1518. <xs:sequence>
  1519. <xs:element ref=""C506_2"">
  1520. <xs:annotation>
  1521. <xs:appinfo>
  1522. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  1523. </xs:appinfo>
  1524. </xs:annotation>
  1525. </xs:element>
  1526. </xs:sequence>
  1527. </xs:complexType>
  1528. </xs:element>
  1529. <xs:element name=""DTM_3"">
  1530. <xs:annotation>
  1531. <xs:appinfo>
  1532. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DTM_3"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  1533. </xs:appinfo>
  1534. </xs:annotation>
  1535. <xs:complexType>
  1536. <xs:sequence>
  1537. <xs:element ref=""C507_3"">
  1538. <xs:annotation>
  1539. <xs:appinfo>
  1540. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  1541. </xs:appinfo>
  1542. </xs:annotation>
  1543. </xs:element>
  1544. </xs:sequence>
  1545. </xs:complexType>
  1546. </xs:element>
  1547. <xs:element name=""DOC"">
  1548. <xs:annotation>
  1549. <xs:appinfo>
  1550. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DOC"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE DETAILS"" />
  1551. </xs:appinfo>
  1552. </xs:annotation>
  1553. <xs:complexType>
  1554. <xs:sequence>
  1555. <xs:element ref=""C002_2"">
  1556. <xs:annotation>
  1557. <xs:appinfo>
  1558. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE NAME"" />
  1559. </xs:appinfo>
  1560. </xs:annotation>
  1561. </xs:element>
  1562. <xs:element minOccurs=""0"" ref=""C503_2"">
  1563. <xs:annotation>
  1564. <xs:appinfo>
  1565. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE DETAILS"" />
  1566. </xs:appinfo>
  1567. </xs:annotation>
  1568. </xs:element>
  1569. <xs:element minOccurs=""0"" name=""DOC03"" type=""EDIFACT_ID_3153"">
  1570. <xs:annotation>
  1571. <xs:appinfo>
  1572. <b:fieldInfo notes=""Communication channel identifier, coded_3153"" />
  1573. </xs:appinfo>
  1574. </xs:annotation>
  1575. </xs:element>
  1576. <xs:element minOccurs=""0"" name=""DOC04"">
  1577. <xs:annotation>
  1578. <xs:appinfo>
  1579. <b:fieldInfo notes=""Number of copies of document required_1220"" />
  1580. </xs:appinfo>
  1581. </xs:annotation>
  1582. <xs:simpleType>
  1583. <xs:restriction base=""EDIFACT_N"">
  1584. <xs:minLength value=""1"" />
  1585. <xs:maxLength value=""2"" />
  1586. </xs:restriction>
  1587. </xs:simpleType>
  1588. </xs:element>
  1589. <xs:element minOccurs=""0"" name=""DOC05"">
  1590. <xs:annotation>
  1591. <xs:appinfo>
  1592. <b:fieldInfo notes=""Number of originals of document required_1218"" />
  1593. </xs:appinfo>
  1594. </xs:annotation>
  1595. <xs:simpleType>
  1596. <xs:restriction base=""EDIFACT_N"">
  1597. <xs:minLength value=""1"" />
  1598. <xs:maxLength value=""2"" />
  1599. </xs:restriction>
  1600. </xs:simpleType>
  1601. </xs:element>
  1602. </xs:sequence>
  1603. </xs:complexType>
  1604. </xs:element>
  1605. <xs:element name=""FTX_2"">
  1606. <xs:annotation>
  1607. <xs:appinfo>
  1608. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""FTX_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""FREE TEXT"" />
  1609. </xs:appinfo>
  1610. </xs:annotation>
  1611. <xs:complexType>
  1612. <xs:sequence>
  1613. <xs:element name=""FTX01"" type=""EDIFACT_ID_4451"">
  1614. <xs:annotation>
  1615. <xs:appinfo>
  1616. <b:fieldInfo notes=""Text subject qualifier_4451"" />
  1617. </xs:appinfo>
  1618. </xs:annotation>
  1619. </xs:element>
  1620. <xs:element minOccurs=""0"" name=""FTX02"" type=""EDIFACT_ID_4453"">
  1621. <xs:annotation>
  1622. <xs:appinfo>
  1623. <b:fieldInfo notes=""Text function, coded_4453"" />
  1624. </xs:appinfo>
  1625. </xs:annotation>
  1626. </xs:element>
  1627. <xs:element minOccurs=""0"" ref=""C107_2"">
  1628. <xs:annotation>
  1629. <xs:appinfo>
  1630. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TEXT REFERENCE"" />
  1631. </xs:appinfo>
  1632. </xs:annotation>
  1633. </xs:element>
  1634. <xs:element minOccurs=""0"" ref=""C108_2"">
  1635. <xs:annotation>
  1636. <xs:appinfo>
  1637. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TEXT LITERAL"" />
  1638. </xs:appinfo>
  1639. </xs:annotation>
  1640. </xs:element>
  1641. <xs:element minOccurs=""0"" name=""FTX05"">
  1642. <xs:annotation>
  1643. <xs:appinfo>
  1644. <b:fieldInfo notes=""Language, coded_3453"" />
  1645. </xs:appinfo>
  1646. </xs:annotation>
  1647. <xs:simpleType>
  1648. <xs:restriction base=""EDIFACT_AN"">
  1649. <xs:minLength value=""1"" />
  1650. <xs:maxLength value=""3"" />
  1651. </xs:restriction>
  1652. </xs:simpleType>
  1653. </xs:element>
  1654. </xs:sequence>
  1655. </xs:complexType>
  1656. </xs:element>
  1657. <xs:element name=""NAD_2"">
  1658. <xs:annotation>
  1659. <xs:appinfo>
  1660. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""NAD_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NAME AND ADDRESS"" />
  1661. </xs:appinfo>
  1662. </xs:annotation>
  1663. <xs:complexType>
  1664. <xs:sequence>
  1665. <xs:element name=""NAD01"" type=""EDIFACT_ID_3035"">
  1666. <xs:annotation>
  1667. <xs:appinfo>
  1668. <b:fieldInfo notes=""Party qualifier_3035"" />
  1669. </xs:appinfo>
  1670. </xs:annotation>
  1671. </xs:element>
  1672. <xs:element minOccurs=""0"" ref=""C082_2"">
  1673. <xs:annotation>
  1674. <xs:appinfo>
  1675. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PARTY IDENTIFICATION DETAILS"" />
  1676. </xs:appinfo>
  1677. </xs:annotation>
  1678. </xs:element>
  1679. <xs:element minOccurs=""0"" ref=""C058_2"">
  1680. <xs:annotation>
  1681. <xs:appinfo>
  1682. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NAME AND ADDRESS"" />
  1683. </xs:appinfo>
  1684. </xs:annotation>
  1685. </xs:element>
  1686. <xs:element minOccurs=""0"" ref=""C080_2"">
  1687. <xs:annotation>
  1688. <xs:appinfo>
  1689. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PARTY NAME"" />
  1690. </xs:appinfo>
  1691. </xs:annotation>
  1692. </xs:element>
  1693. <xs:element minOccurs=""0"" ref=""C059_2"">
  1694. <xs:annotation>
  1695. <xs:appinfo>
  1696. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STREET"" />
  1697. </xs:appinfo>
  1698. </xs:annotation>
  1699. </xs:element>
  1700. <xs:element minOccurs=""0"" name=""NAD06"">
  1701. <xs:annotation>
  1702. <xs:appinfo>
  1703. <b:fieldInfo notes=""City name_3164"" />
  1704. </xs:appinfo>
  1705. </xs:annotation>
  1706. <xs:simpleType>
  1707. <xs:restriction base=""EDIFACT_AN"">
  1708. <xs:minLength value=""1"" />
  1709. <xs:maxLength value=""35"" />
  1710. </xs:restriction>
  1711. </xs:simpleType>
  1712. </xs:element>
  1713. <xs:element minOccurs=""0"" name=""NAD07"">
  1714. <xs:annotation>
  1715. <xs:appinfo>
  1716. <b:fieldInfo notes=""Country sub-entity identification_3229"" />
  1717. </xs:appinfo>
  1718. </xs:annotation>
  1719. <xs:simpleType>
  1720. <xs:restriction base=""EDIFACT_AN"">
  1721. <xs:minLength value=""1"" />
  1722. <xs:maxLength value=""9"" />
  1723. </xs:restriction>
  1724. </xs:simpleType>
  1725. </xs:element>
  1726. <xs:element minOccurs=""0"" name=""NAD08"">
  1727. <xs:annotation>
  1728. <xs:appinfo>
  1729. <b:fieldInfo notes=""Postcode identification_3251"" />
  1730. </xs:appinfo>
  1731. </xs:annotation>
  1732. <xs:simpleType>
  1733. <xs:restriction base=""EDIFACT_AN"">
  1734. <xs:minLength value=""1"" />
  1735. <xs:maxLength value=""9"" />
  1736. </xs:restriction>
  1737. </xs:simpleType>
  1738. </xs:element>
  1739. <xs:element minOccurs=""0"" name=""NAD09"">
  1740. <xs:annotation>
  1741. <xs:appinfo>
  1742. <b:fieldInfo notes=""Country, coded_3207"" />
  1743. </xs:appinfo>
  1744. </xs:annotation>
  1745. <xs:simpleType>
  1746. <xs:restriction base=""EDIFACT_AN"">
  1747. <xs:minLength value=""1"" />
  1748. <xs:maxLength value=""3"" />
  1749. </xs:restriction>
  1750. </xs:simpleType>
  1751. </xs:element>
  1752. </xs:sequence>
  1753. </xs:complexType>
  1754. </xs:element>
  1755. <xs:element name=""LOC_3"">
  1756. <xs:annotation>
  1757. <xs:appinfo>
  1758. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""LOC_3"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PLACE/LOCATION IDENTIFICATION"" />
  1759. </xs:appinfo>
  1760. </xs:annotation>
  1761. <xs:complexType>
  1762. <xs:sequence>
  1763. <xs:element name=""LOC01"" type=""EDIFACT_ID_3227"">
  1764. <xs:annotation>
  1765. <xs:appinfo>
  1766. <b:fieldInfo notes=""Place/location qualifier_3227"" />
  1767. </xs:appinfo>
  1768. </xs:annotation>
  1769. </xs:element>
  1770. <xs:element minOccurs=""0"" ref=""C517_3"">
  1771. <xs:annotation>
  1772. <xs:appinfo>
  1773. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""LOCATION IDENTIFICATION"" />
  1774. </xs:appinfo>
  1775. </xs:annotation>
  1776. </xs:element>
  1777. <xs:element minOccurs=""0"" ref=""C519_3"">
  1778. <xs:annotation>
  1779. <xs:appinfo>
  1780. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION ONE IDENTIFICATION"" />
  1781. </xs:appinfo>
  1782. </xs:annotation>
  1783. </xs:element>
  1784. <xs:element minOccurs=""0"" ref=""C553_3"">
  1785. <xs:annotation>
  1786. <xs:appinfo>
  1787. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION TWO IDENTIFICATION"" />
  1788. </xs:appinfo>
  1789. </xs:annotation>
  1790. </xs:element>
  1791. <xs:element minOccurs=""0"" name=""LOC05"">
  1792. <xs:annotation>
  1793. <xs:appinfo>
  1794. <b:fieldInfo notes=""Relation, coded_5479"" />
  1795. </xs:appinfo>
  1796. </xs:annotation>
  1797. <xs:simpleType>
  1798. <xs:restriction base=""EDIFACT_AN"">
  1799. <xs:minLength value=""1"" />
  1800. <xs:maxLength value=""3"" />
  1801. </xs:restriction>
  1802. </xs:simpleType>
  1803. </xs:element>
  1804. </xs:sequence>
  1805. </xs:complexType>
  1806. </xs:element>
  1807. <xs:element name=""PCI"">
  1808. <xs:annotation>
  1809. <xs:appinfo>
  1810. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""PCI"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PACKAGE IDENTIFICATION"" />
  1811. </xs:appinfo>
  1812. </xs:annotation>
  1813. <xs:complexType>
  1814. <xs:sequence>
  1815. <xs:element minOccurs=""0"" name=""PCI01"" type=""EDIFACT_ID_4233"">
  1816. <xs:annotation>
  1817. <xs:appinfo>
  1818. <b:fieldInfo notes=""Marking instructions, coded_4233"" />
  1819. </xs:appinfo>
  1820. </xs:annotation>
  1821. </xs:element>
  1822. <xs:element minOccurs=""0"" ref=""C210"">
  1823. <xs:annotation>
  1824. <xs:appinfo>
  1825. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MARKS &amp; LABELS"" />
  1826. </xs:appinfo>
  1827. </xs:annotation>
  1828. </xs:element>
  1829. <xs:element minOccurs=""0"" name=""PCI03"" type=""EDIFACT_ID_8275"">
  1830. <xs:annotation>
  1831. <xs:appinfo>
  1832. <b:fieldInfo notes=""Container/package status, coded_8275"" />
  1833. </xs:appinfo>
  1834. </xs:annotation>
  1835. </xs:element>
  1836. <xs:element minOccurs=""0"" ref=""C827"">
  1837. <xs:annotation>
  1838. <xs:appinfo>
  1839. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TYPE OF MARKING"" />
  1840. </xs:appinfo>
  1841. </xs:annotation>
  1842. </xs:element>
  1843. </xs:sequence>
  1844. </xs:complexType>
  1845. </xs:element>
  1846. <xs:element name=""TDT"">
  1847. <xs:annotation>
  1848. <xs:appinfo>
  1849. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""TDT"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DETAILS OF TRANSPORT"" />
  1850. </xs:appinfo>
  1851. </xs:annotation>
  1852. <xs:complexType>
  1853. <xs:sequence>
  1854. <xs:element name=""TDT01"" type=""EDIFACT_ID_8051"">
  1855. <xs:annotation>
  1856. <xs:appinfo>
  1857. <b:fieldInfo notes=""Transport stage qualifier_8051"" />
  1858. </xs:appinfo>
  1859. </xs:annotation>
  1860. </xs:element>
  1861. <xs:element minOccurs=""0"" name=""TDT02"">
  1862. <xs:annotation>
  1863. <xs:appinfo>
  1864. <b:fieldInfo notes=""Conveyance reference number_8028"" />
  1865. </xs:appinfo>
  1866. </xs:annotation>
  1867. <xs:simpleType>
  1868. <xs:restriction base=""EDIFACT_AN"">
  1869. <xs:minLength value=""1"" />
  1870. <xs:maxLength value=""17"" />
  1871. </xs:restriction>
  1872. </xs:simpleType>
  1873. </xs:element>
  1874. <xs:element minOccurs=""0"" ref=""C220"">
  1875. <xs:annotation>
  1876. <xs:appinfo>
  1877. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MODE OF TRANSPORT"" />
  1878. </xs:appinfo>
  1879. </xs:annotation>
  1880. </xs:element>
  1881. <xs:element minOccurs=""0"" ref=""C228"">
  1882. <xs:annotation>
  1883. <xs:appinfo>
  1884. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TRANSPORT MEANS"" />
  1885. </xs:appinfo>
  1886. </xs:annotation>
  1887. </xs:element>
  1888. <xs:element minOccurs=""0"" ref=""C040"">
  1889. <xs:annotation>
  1890. <xs:appinfo>
  1891. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CARRIER"" />
  1892. </xs:appinfo>
  1893. </xs:annotation>
  1894. </xs:element>
  1895. <xs:element minOccurs=""0"" name=""TDT06"" type=""EDIFACT_ID_8101"">
  1896. <xs:annotation>
  1897. <xs:appinfo>
  1898. <b:fieldInfo notes=""Transit direction, coded_8101"" />
  1899. </xs:appinfo>
  1900. </xs:annotation>
  1901. </xs:element>
  1902. <xs:element minOccurs=""0"" ref=""C401"">
  1903. <xs:annotation>
  1904. <xs:appinfo>
  1905. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EXCESS TRANSPORTATION INFORMATION"" />
  1906. </xs:appinfo>
  1907. </xs:annotation>
  1908. </xs:element>
  1909. <xs:element minOccurs=""0"" ref=""C222"">
  1910. <xs:annotation>
  1911. <xs:appinfo>
  1912. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TRANSPORT IDENTIFICATION"" />
  1913. </xs:appinfo>
  1914. </xs:annotation>
  1915. </xs:element>
  1916. <xs:element minOccurs=""0"" name=""TDT09"" type=""EDIFACT_ID_8281"">
  1917. <xs:annotation>
  1918. <xs:appinfo>
  1919. <b:fieldInfo notes=""Transport ownership, coded_8281"" />
  1920. </xs:appinfo>
  1921. </xs:annotation>
  1922. </xs:element>
  1923. </xs:sequence>
  1924. </xs:complexType>
  1925. </xs:element>
  1926. <xs:element name=""RFF_3"">
  1927. <xs:annotation>
  1928. <xs:appinfo>
  1929. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""RFF_3"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  1930. </xs:appinfo>
  1931. </xs:annotation>
  1932. <xs:complexType>
  1933. <xs:sequence>
  1934. <xs:element ref=""C506_3"">
  1935. <xs:annotation>
  1936. <xs:appinfo>
  1937. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  1938. </xs:appinfo>
  1939. </xs:annotation>
  1940. </xs:element>
  1941. </xs:sequence>
  1942. </xs:complexType>
  1943. </xs:element>
  1944. <xs:element name=""LOC_4"">
  1945. <xs:annotation>
  1946. <xs:appinfo>
  1947. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""LOC_4"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PLACE/LOCATION IDENTIFICATION"" />
  1948. </xs:appinfo>
  1949. </xs:annotation>
  1950. <xs:complexType>
  1951. <xs:sequence>
  1952. <xs:element name=""LOC01"" type=""EDIFACT_ID_3227"">
  1953. <xs:annotation>
  1954. <xs:appinfo>
  1955. <b:fieldInfo notes=""Place/location qualifier_3227"" />
  1956. </xs:appinfo>
  1957. </xs:annotation>
  1958. </xs:element>
  1959. <xs:element minOccurs=""0"" ref=""C517_4"">
  1960. <xs:annotation>
  1961. <xs:appinfo>
  1962. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""LOCATION IDENTIFICATION"" />
  1963. </xs:appinfo>
  1964. </xs:annotation>
  1965. </xs:element>
  1966. <xs:element minOccurs=""0"" ref=""C519_4"">
  1967. <xs:annotation>
  1968. <xs:appinfo>
  1969. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION ONE IDENTIFICATION"" />
  1970. </xs:appinfo>
  1971. </xs:annotation>
  1972. </xs:element>
  1973. <xs:element minOccurs=""0"" ref=""C553_4"">
  1974. <xs:annotation>
  1975. <xs:appinfo>
  1976. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION TWO IDENTIFICATION"" />
  1977. </xs:appinfo>
  1978. </xs:annotation>
  1979. </xs:element>
  1980. <xs:element minOccurs=""0"" name=""LOC05"">
  1981. <xs:annotation>
  1982. <xs:appinfo>
  1983. <b:fieldInfo notes=""Relation, coded_5479"" />
  1984. </xs:appinfo>
  1985. </xs:annotation>
  1986. <xs:simpleType>
  1987. <xs:restriction base=""EDIFACT_AN"">
  1988. <xs:minLength value=""1"" />
  1989. <xs:maxLength value=""3"" />
  1990. </xs:restriction>
  1991. </xs:simpleType>
  1992. </xs:element>
  1993. </xs:sequence>
  1994. </xs:complexType>
  1995. </xs:element>
  1996. <xs:element name=""DTM_4"">
  1997. <xs:annotation>
  1998. <xs:appinfo>
  1999. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DTM_4"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  2000. </xs:appinfo>
  2001. </xs:annotation>
  2002. <xs:complexType>
  2003. <xs:sequence>
  2004. <xs:element ref=""C507_4"">
  2005. <xs:annotation>
  2006. <xs:appinfo>
  2007. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  2008. </xs:appinfo>
  2009. </xs:annotation>
  2010. </xs:element>
  2011. </xs:sequence>
  2012. </xs:complexType>
  2013. </xs:element>
  2014. <xs:element name=""EQD"">
  2015. <xs:annotation>
  2016. <xs:appinfo>
  2017. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""EQD"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EQUIPMENT DETAILS"" />
  2018. </xs:appinfo>
  2019. </xs:annotation>
  2020. <xs:complexType>
  2021. <xs:sequence>
  2022. <xs:element name=""EQD01"" type=""EDIFACT_ID_8053"">
  2023. <xs:annotation>
  2024. <xs:appinfo>
  2025. <b:fieldInfo notes=""Equipment qualifier_8053"" />
  2026. </xs:appinfo>
  2027. </xs:annotation>
  2028. </xs:element>
  2029. <xs:element minOccurs=""0"" ref=""C237"">
  2030. <xs:annotation>
  2031. <xs:appinfo>
  2032. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EQUIPMENT IDENTIFICATION"" />
  2033. </xs:appinfo>
  2034. </xs:annotation>
  2035. </xs:element>
  2036. <xs:element minOccurs=""0"" ref=""C224"">
  2037. <xs:annotation>
  2038. <xs:appinfo>
  2039. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EQUIPMENT SIZE AND TYPE"" />
  2040. </xs:appinfo>
  2041. </xs:annotation>
  2042. </xs:element>
  2043. <xs:element minOccurs=""0"" name=""EQD04"" type=""EDIFACT_ID_8077"">
  2044. <xs:annotation>
  2045. <xs:appinfo>
  2046. <b:fieldInfo notes=""Equipment supplier, coded_8077"" />
  2047. </xs:appinfo>
  2048. </xs:annotation>
  2049. </xs:element>
  2050. <xs:element minOccurs=""0"" name=""EQD05"" type=""EDIFACT_ID_8249"">
  2051. <xs:annotation>
  2052. <xs:appinfo>
  2053. <b:fieldInfo notes=""Equipment status, coded_8249"" />
  2054. </xs:appinfo>
  2055. </xs:annotation>
  2056. </xs:element>
  2057. <xs:element minOccurs=""0"" name=""EQD06"" type=""EDIFACT_ID_8169"">
  2058. <xs:annotation>
  2059. <xs:appinfo>
  2060. <b:fieldInfo notes=""Full/empty indicator, coded_8169"" />
  2061. </xs:appinfo>
  2062. </xs:annotation>
  2063. </xs:element>
  2064. </xs:sequence>
  2065. </xs:complexType>
  2066. </xs:element>
  2067. <xs:element name=""MEA"">
  2068. <xs:annotation>
  2069. <xs:appinfo>
  2070. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""MEA"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MEASUREMENTS"" />
  2071. </xs:appinfo>
  2072. </xs:annotation>
  2073. <xs:complexType>
  2074. <xs:sequence>
  2075. <xs:element name=""MEA01"" type=""EDIFACT_ID_6311"">
  2076. <xs:annotation>
  2077. <xs:appinfo>
  2078. <b:fieldInfo notes=""Measurement application qualifier_6311"" />
  2079. </xs:appinfo>
  2080. </xs:annotation>
  2081. </xs:element>
  2082. <xs:element minOccurs=""0"" ref=""C502"">
  2083. <xs:annotation>
  2084. <xs:appinfo>
  2085. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MEASUREMENT DETAILS"" />
  2086. </xs:appinfo>
  2087. </xs:annotation>
  2088. </xs:element>
  2089. <xs:element minOccurs=""0"" ref=""C174"">
  2090. <xs:annotation>
  2091. <xs:appinfo>
  2092. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""VALUE/RANGE"" />
  2093. </xs:appinfo>
  2094. </xs:annotation>
  2095. </xs:element>
  2096. <xs:element minOccurs=""0"" name=""MEA04"" type=""EDIFACT_ID_7383"">
  2097. <xs:annotation>
  2098. <xs:appinfo>
  2099. <b:fieldInfo notes=""Surface/layer indicator, coded_7383"" />
  2100. </xs:appinfo>
  2101. </xs:annotation>
  2102. </xs:element>
  2103. </xs:sequence>
  2104. </xs:complexType>
  2105. </xs:element>
  2106. <xs:element name=""DIM"">
  2107. <xs:annotation>
  2108. <xs:appinfo>
  2109. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DIM"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DIMENSIONS"" />
  2110. </xs:appinfo>
  2111. </xs:annotation>
  2112. <xs:complexType>
  2113. <xs:sequence>
  2114. <xs:element name=""DIM01"" type=""EDIFACT_ID_6145"">
  2115. <xs:annotation>
  2116. <xs:appinfo>
  2117. <b:fieldInfo notes=""Dimension qualifier_6145"" />
  2118. </xs:appinfo>
  2119. </xs:annotation>
  2120. </xs:element>
  2121. <xs:element ref=""C211"">
  2122. <xs:annotation>
  2123. <xs:appinfo>
  2124. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DIMENSIONS"" />
  2125. </xs:appinfo>
  2126. </xs:annotation>
  2127. </xs:element>
  2128. </xs:sequence>
  2129. </xs:complexType>
  2130. </xs:element>
  2131. <xs:element name=""SEL"">
  2132. <xs:annotation>
  2133. <xs:appinfo>
  2134. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""SEL"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SEAL NUMBER"" />
  2135. </xs:appinfo>
  2136. </xs:annotation>
  2137. <xs:complexType>
  2138. <xs:sequence>
  2139. <xs:element name=""SEL01"">
  2140. <xs:annotation>
  2141. <xs:appinfo>
  2142. <b:fieldInfo notes=""Seal number_9308"" />
  2143. </xs:appinfo>
  2144. </xs:annotation>
  2145. <xs:simpleType>
  2146. <xs:restriction base=""EDIFACT_AN"">
  2147. <xs:minLength value=""1"" />
  2148. <xs:maxLength value=""10"" />
  2149. </xs:restriction>
  2150. </xs:simpleType>
  2151. </xs:element>
  2152. <xs:element minOccurs=""0"" ref=""C215"">
  2153. <xs:annotation>
  2154. <xs:appinfo>
  2155. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SEAL ISSUER"" />
  2156. </xs:appinfo>
  2157. </xs:annotation>
  2158. </xs:element>
  2159. <xs:element minOccurs=""0"" name=""SEL03"" type=""EDIFACT_ID_4517"">
  2160. <xs:annotation>
  2161. <xs:appinfo>
  2162. <b:fieldInfo notes=""Seal condition, coded_4517"" />
  2163. </xs:appinfo>
  2164. </xs:annotation>
  2165. </xs:element>
  2166. </xs:sequence>
  2167. </xs:complexType>
  2168. </xs:element>
  2169. <xs:element name=""EQA"">
  2170. <xs:annotation>
  2171. <xs:appinfo>
  2172. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""EQA"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""ATTACHED EQUIPMENT"" />
  2173. </xs:appinfo>
  2174. </xs:annotation>
  2175. <xs:complexType>
  2176. <xs:sequence>
  2177. <xs:element name=""EQA01"" type=""EDIFACT_ID_8053"">
  2178. <xs:annotation>
  2179. <xs:appinfo>
  2180. <b:fieldInfo notes=""Equipment qualifier_8053"" />
  2181. </xs:appinfo>
  2182. </xs:annotation>
  2183. </xs:element>
  2184. <xs:element minOccurs=""0"" ref=""C237_2"">
  2185. <xs:annotation>
  2186. <xs:appinfo>
  2187. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EQUIPMENT IDENTIFICATION"" />
  2188. </xs:appinfo>
  2189. </xs:annotation>
  2190. </xs:element>
  2191. </xs:sequence>
  2192. </xs:complexType>
  2193. </xs:element>
  2194. <xs:element name=""SEL_2"">
  2195. <xs:annotation>
  2196. <xs:appinfo>
  2197. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""SEL_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SEAL NUMBER"" />
  2198. </xs:appinfo>
  2199. </xs:annotation>
  2200. <xs:complexType>
  2201. <xs:sequence>
  2202. <xs:element name=""SEL01"">
  2203. <xs:annotation>
  2204. <xs:appinfo>
  2205. <b:fieldInfo notes=""Seal number_9308"" />
  2206. </xs:appinfo>
  2207. </xs:annotation>
  2208. <xs:simpleType>
  2209. <xs:restriction base=""EDIFACT_AN"">
  2210. <xs:minLength value=""1"" />
  2211. <xs:maxLength value=""10"" />
  2212. </xs:restriction>
  2213. </xs:simpleType>
  2214. </xs:element>
  2215. <xs:element minOccurs=""0"" ref=""C215_2"">
  2216. <xs:annotation>
  2217. <xs:appinfo>
  2218. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SEAL ISSUER"" />
  2219. </xs:appinfo>
  2220. </xs:annotation>
  2221. </xs:element>
  2222. <xs:element minOccurs=""0"" name=""SEL03"" type=""EDIFACT_ID_4517"">
  2223. <xs:annotation>
  2224. <xs:appinfo>
  2225. <b:fieldInfo notes=""Seal condition, coded_4517"" />
  2226. </xs:appinfo>
  2227. </xs:annotation>
  2228. </xs:element>
  2229. </xs:sequence>
  2230. </xs:complexType>
  2231. </xs:element>
  2232. <xs:element name=""GID"">
  2233. <xs:annotation>
  2234. <xs:appinfo>
  2235. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""GID"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""GOODS ITEM DETAILS"" />
  2236. </xs:appinfo>
  2237. </xs:annotation>
  2238. <xs:complexType>
  2239. <xs:sequence>
  2240. <xs:element minOccurs=""0"" name=""GID01"">
  2241. <xs:annotation>
  2242. <xs:appinfo>
  2243. <b:fieldInfo notes=""Goods item number_1496"" />
  2244. </xs:appinfo>
  2245. </xs:annotation>
  2246. <xs:simpleType>
  2247. <xs:restriction base=""EDIFACT_N"">
  2248. <xs:minLength value=""1"" />
  2249. <xs:maxLength value=""5"" />
  2250. </xs:restriction>
  2251. </xs:simpleType>
  2252. </xs:element>
  2253. <xs:element minOccurs=""0"" ref=""C213"">
  2254. <xs:annotation>
  2255. <xs:appinfo>
  2256. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER AND TYPE OF PACKAGES"" />
  2257. </xs:appinfo>
  2258. </xs:annotation>
  2259. </xs:element>
  2260. <xs:element minOccurs=""0"" ref=""C213_2"">
  2261. <xs:annotation>
  2262. <xs:appinfo>
  2263. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER AND TYPE OF PACKAGES"" />
  2264. </xs:appinfo>
  2265. </xs:annotation>
  2266. </xs:element>
  2267. <xs:element minOccurs=""0"" ref=""C213_3"">
  2268. <xs:annotation>
  2269. <xs:appinfo>
  2270. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER AND TYPE OF PACKAGES"" />
  2271. </xs:appinfo>
  2272. </xs:annotation>
  2273. </xs:element>
  2274. </xs:sequence>
  2275. </xs:complexType>
  2276. </xs:element>
  2277. <xs:element name=""HAN"">
  2278. <xs:annotation>
  2279. <xs:appinfo>
  2280. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""HAN"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""HANDLING INSTRUCTIONS"" />
  2281. </xs:appinfo>
  2282. </xs:annotation>
  2283. <xs:complexType>
  2284. <xs:sequence>
  2285. <xs:element minOccurs=""0"" ref=""C524"">
  2286. <xs:annotation>
  2287. <xs:appinfo>
  2288. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""HANDLING INSTRUCTIONS"" />
  2289. </xs:appinfo>
  2290. </xs:annotation>
  2291. </xs:element>
  2292. <xs:element minOccurs=""0"" ref=""C218"">
  2293. <xs:annotation>
  2294. <xs:appinfo>
  2295. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""HAZARDOUS MATERIAL"" />
  2296. </xs:appinfo>
  2297. </xs:annotation>
  2298. </xs:element>
  2299. </xs:sequence>
  2300. </xs:complexType>
  2301. </xs:element>
  2302. <xs:element name=""MEA_2"">
  2303. <xs:annotation>
  2304. <xs:appinfo>
  2305. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""MEA_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MEASUREMENTS"" />
  2306. </xs:appinfo>
  2307. </xs:annotation>
  2308. <xs:complexType>
  2309. <xs:sequence>
  2310. <xs:element name=""MEA01"" type=""EDIFACT_ID_6311"">
  2311. <xs:annotation>
  2312. <xs:appinfo>
  2313. <b:fieldInfo notes=""Measurement application qualifier_6311"" />
  2314. </xs:appinfo>
  2315. </xs:annotation>
  2316. </xs:element>
  2317. <xs:element minOccurs=""0"" ref=""C502_2"">
  2318. <xs:annotation>
  2319. <xs:appinfo>
  2320. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MEASUREMENT DETAILS"" />
  2321. </xs:appinfo>
  2322. </xs:annotation>
  2323. </xs:element>
  2324. <xs:element minOccurs=""0"" ref=""C174_2"">
  2325. <xs:annotation>
  2326. <xs:appinfo>
  2327. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""VALUE/RANGE"" />
  2328. </xs:appinfo>
  2329. </xs:annotation>
  2330. </xs:element>
  2331. <xs:element minOccurs=""0"" name=""MEA04"" type=""EDIFACT_ID_7383"">
  2332. <xs:annotation>
  2333. <xs:appinfo>
  2334. <b:fieldInfo notes=""Surface/layer indicator, coded_7383"" />
  2335. </xs:appinfo>
  2336. </xs:annotation>
  2337. </xs:element>
  2338. </xs:sequence>
  2339. </xs:complexType>
  2340. </xs:element>
  2341. <xs:element name=""EQN"">
  2342. <xs:annotation>
  2343. <xs:appinfo>
  2344. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""EQN"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER OF UNITS"" />
  2345. </xs:appinfo>
  2346. </xs:annotation>
  2347. <xs:complexType>
  2348. <xs:sequence>
  2349. <xs:element ref=""C523"">
  2350. <xs:annotation>
  2351. <xs:appinfo>
  2352. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER OF UNIT DETAILS"" />
  2353. </xs:appinfo>
  2354. </xs:annotation>
  2355. </xs:element>
  2356. </xs:sequence>
  2357. </xs:complexType>
  2358. </xs:element>
  2359. <xs:element name=""DIM_2"">
  2360. <xs:annotation>
  2361. <xs:appinfo>
  2362. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""DIM_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DIMENSIONS"" />
  2363. </xs:appinfo>
  2364. </xs:annotation>
  2365. <xs:complexType>
  2366. <xs:sequence>
  2367. <xs:element name=""DIM01"" type=""EDIFACT_ID_6145"">
  2368. <xs:annotation>
  2369. <xs:appinfo>
  2370. <b:fieldInfo notes=""Dimension qualifier_6145"" />
  2371. </xs:appinfo>
  2372. </xs:annotation>
  2373. </xs:element>
  2374. <xs:element ref=""C211_2"">
  2375. <xs:annotation>
  2376. <xs:appinfo>
  2377. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DIMENSIONS"" />
  2378. </xs:appinfo>
  2379. </xs:annotation>
  2380. </xs:element>
  2381. </xs:sequence>
  2382. </xs:complexType>
  2383. </xs:element>
  2384. <xs:element name=""EQN_2"">
  2385. <xs:annotation>
  2386. <xs:appinfo>
  2387. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""EQN_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER OF UNITS"" />
  2388. </xs:appinfo>
  2389. </xs:annotation>
  2390. <xs:complexType>
  2391. <xs:sequence>
  2392. <xs:element ref=""C523_2"">
  2393. <xs:annotation>
  2394. <xs:appinfo>
  2395. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER OF UNIT DETAILS"" />
  2396. </xs:appinfo>
  2397. </xs:annotation>
  2398. </xs:element>
  2399. </xs:sequence>
  2400. </xs:complexType>
  2401. </xs:element>
  2402. <xs:element name=""PCI_2"">
  2403. <xs:annotation>
  2404. <xs:appinfo>
  2405. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""PCI_2"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PACKAGE IDENTIFICATION"" />
  2406. </xs:appinfo>
  2407. </xs:annotation>
  2408. <xs:complexType>
  2409. <xs:sequence>
  2410. <xs:element minOccurs=""0"" name=""PCI01"" type=""EDIFACT_ID_4233"">
  2411. <xs:annotation>
  2412. <xs:appinfo>
  2413. <b:fieldInfo notes=""Marking instructions, coded_4233"" />
  2414. </xs:appinfo>
  2415. </xs:annotation>
  2416. </xs:element>
  2417. <xs:element minOccurs=""0"" ref=""C210_2"">
  2418. <xs:annotation>
  2419. <xs:appinfo>
  2420. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MARKS &amp; LABELS"" />
  2421. </xs:appinfo>
  2422. </xs:annotation>
  2423. </xs:element>
  2424. <xs:element minOccurs=""0"" name=""PCI03"" type=""EDIFACT_ID_8275"">
  2425. <xs:annotation>
  2426. <xs:appinfo>
  2427. <b:fieldInfo notes=""Container/package status, coded_8275"" />
  2428. </xs:appinfo>
  2429. </xs:annotation>
  2430. </xs:element>
  2431. <xs:element minOccurs=""0"" ref=""C827_2"">
  2432. <xs:annotation>
  2433. <xs:appinfo>
  2434. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TYPE OF MARKING"" />
  2435. </xs:appinfo>
  2436. </xs:annotation>
  2437. </xs:element>
  2438. </xs:sequence>
  2439. </xs:complexType>
  2440. </xs:element>
  2441. <xs:element name=""GIN"">
  2442. <xs:annotation>
  2443. <xs:appinfo>
  2444. <b:recordInfo structure=""delimited"" field_order=""prefix"" tag_name=""GIN"" delimiter_type=""inherit_field"" count_ignore=""no"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""GOODS IDENTITY NUMBER"" />
  2445. </xs:appinfo>
  2446. </xs:annotation>
  2447. <xs:complexType>
  2448. <xs:sequence>
  2449. <xs:element name=""GIN01"" type=""EDIFACT_ID_7405"">
  2450. <xs:annotation>
  2451. <xs:appinfo>
  2452. <b:fieldInfo notes=""Identity number qualifier_7405"" />
  2453. </xs:appinfo>
  2454. </xs:annotation>
  2455. </xs:element>
  2456. <xs:element ref=""C208"">
  2457. <xs:annotation>
  2458. <xs:appinfo>
  2459. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  2460. </xs:appinfo>
  2461. </xs:annotation>
  2462. </xs:element>
  2463. <xs:element minOccurs=""0"" ref=""C208_2"">
  2464. <xs:annotation>
  2465. <xs:appinfo>
  2466. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  2467. </xs:appinfo>
  2468. </xs:annotation>
  2469. </xs:element>
  2470. <xs:element minOccurs=""0"" ref=""C208_3"">
  2471. <xs:annotation>
  2472. <xs:appinfo>
  2473. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  2474. </xs:appinfo>
  2475. </xs:annotation>
  2476. </xs:element>
  2477. <xs:element minOccurs=""0"" ref=""C208_4"">
  2478. <xs:annotation>
  2479. <xs:appinfo>
  2480. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  2481. </xs:appinfo>
  2482. </xs:annotation>
  2483. </xs:element>
  2484. <xs:element minOccurs=""0"" ref=""C208_5"">
  2485. <xs:annotation>
  2486. <xs:appinfo>
  2487. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  2488. </xs:appinfo>
  2489. </xs:annotation>
  2490. </xs:element>
  2491. </xs:sequence>
  2492. </xs:complexType>
  2493. </xs:element>
  2494. <xs:element name=""C002"">
  2495. <xs:annotation>
  2496. <xs:appinfo>
  2497. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE NAME"" />
  2498. </xs:appinfo>
  2499. </xs:annotation>
  2500. <xs:complexType>
  2501. <xs:sequence>
  2502. <xs:element minOccurs=""0"" name=""C00201"" type=""xs:string"">
  2503. <xs:annotation>
  2504. <xs:appinfo>
  2505. <b:fieldInfo notes=""Document/message name, coded_1001"" />
  2506. </xs:appinfo>
  2507. </xs:annotation>
  2508. </xs:element>
  2509. <xs:element minOccurs=""0"" name=""C00202"" type=""EDIFACT_ID_1131"">
  2510. <xs:annotation>
  2511. <xs:appinfo>
  2512. <b:fieldInfo notes=""Code list qualifier_1131"" />
  2513. </xs:appinfo>
  2514. </xs:annotation>
  2515. </xs:element>
  2516. <xs:element minOccurs=""0"" name=""C00203"" type=""EDIFACT_ID_3055"">
  2517. <xs:annotation>
  2518. <xs:appinfo>
  2519. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  2520. </xs:appinfo>
  2521. </xs:annotation>
  2522. </xs:element>
  2523. <xs:element minOccurs=""0"" name=""C00204"">
  2524. <xs:annotation>
  2525. <xs:appinfo>
  2526. <b:fieldInfo notes=""Document/message name_1000"" />
  2527. </xs:appinfo>
  2528. </xs:annotation>
  2529. <xs:simpleType>
  2530. <xs:restriction base=""EDIFACT_AN"">
  2531. <xs:minLength value=""1"" />
  2532. <xs:maxLength value=""35"" />
  2533. </xs:restriction>
  2534. </xs:simpleType>
  2535. </xs:element>
  2536. </xs:sequence>
  2537. </xs:complexType>
  2538. </xs:element>
  2539. <xs:element name=""C507"">
  2540. <xs:annotation>
  2541. <xs:appinfo>
  2542. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  2543. </xs:appinfo>
  2544. </xs:annotation>
  2545. <xs:complexType>
  2546. <xs:sequence>
  2547. <xs:element name=""C50701"" type=""EDIFACT_ID_2005"">
  2548. <xs:annotation>
  2549. <xs:appinfo>
  2550. <b:fieldInfo notes=""Date/time/period qualifier_2005"" />
  2551. </xs:appinfo>
  2552. </xs:annotation>
  2553. </xs:element>
  2554. <xs:element minOccurs=""0"" name=""C50702"">
  2555. <xs:annotation>
  2556. <xs:appinfo>
  2557. <b:fieldInfo notes=""Date/time/period_2380"" />
  2558. </xs:appinfo>
  2559. </xs:annotation>
  2560. <xs:simpleType>
  2561. <xs:restriction base=""EDIFACT_AN"">
  2562. <xs:minLength value=""1"" />
  2563. <xs:maxLength value=""35"" />
  2564. </xs:restriction>
  2565. </xs:simpleType>
  2566. </xs:element>
  2567. <xs:element minOccurs=""0"" name=""C50703"" type=""EDIFACT_ID_2379"">
  2568. <xs:annotation>
  2569. <xs:appinfo>
  2570. <b:fieldInfo notes=""Date/time/period format qualifier_2379"" />
  2571. </xs:appinfo>
  2572. </xs:annotation>
  2573. </xs:element>
  2574. </xs:sequence>
  2575. </xs:complexType>
  2576. </xs:element>
  2577. <xs:element name=""C536"">
  2578. <xs:annotation>
  2579. <xs:appinfo>
  2580. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTRACT AND CARRIAGE CONDITION"" />
  2581. </xs:appinfo>
  2582. </xs:annotation>
  2583. <xs:complexType>
  2584. <xs:sequence>
  2585. <xs:element name=""C53601"" type=""EDIFACT_ID_4065"">
  2586. <xs:annotation>
  2587. <xs:appinfo>
  2588. <b:fieldInfo notes=""Contract and carriage condition, coded_4065"" />
  2589. </xs:appinfo>
  2590. </xs:annotation>
  2591. </xs:element>
  2592. <xs:element minOccurs=""0"" name=""C53602"" type=""EDIFACT_ID_1131"">
  2593. <xs:annotation>
  2594. <xs:appinfo>
  2595. <b:fieldInfo notes=""Code list qualifier_1131"" />
  2596. </xs:appinfo>
  2597. </xs:annotation>
  2598. </xs:element>
  2599. <xs:element minOccurs=""0"" name=""C53603"" type=""EDIFACT_ID_3055"">
  2600. <xs:annotation>
  2601. <xs:appinfo>
  2602. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  2603. </xs:appinfo>
  2604. </xs:annotation>
  2605. </xs:element>
  2606. </xs:sequence>
  2607. </xs:complexType>
  2608. </xs:element>
  2609. <xs:element name=""C233"">
  2610. <xs:annotation>
  2611. <xs:appinfo>
  2612. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SERVICE"" />
  2613. </xs:appinfo>
  2614. </xs:annotation>
  2615. <xs:complexType>
  2616. <xs:sequence>
  2617. <xs:element name=""C23301"" type=""EDIFACT_ID_7273"">
  2618. <xs:annotation>
  2619. <xs:appinfo>
  2620. <b:fieldInfo notes=""Service requirement, coded_7273"" />
  2621. </xs:appinfo>
  2622. </xs:annotation>
  2623. </xs:element>
  2624. <xs:element minOccurs=""0"" name=""C23302"" type=""EDIFACT_ID_1131"">
  2625. <xs:annotation>
  2626. <xs:appinfo>
  2627. <b:fieldInfo notes=""Code list qualifier_1131"" />
  2628. </xs:appinfo>
  2629. </xs:annotation>
  2630. </xs:element>
  2631. <xs:element minOccurs=""0"" name=""C23303"" type=""EDIFACT_ID_3055"">
  2632. <xs:annotation>
  2633. <xs:appinfo>
  2634. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  2635. </xs:appinfo>
  2636. </xs:annotation>
  2637. </xs:element>
  2638. <xs:element minOccurs=""0"" name=""C23304"" type=""EDIFACT_ID_7273"">
  2639. <xs:annotation>
  2640. <xs:appinfo>
  2641. <b:fieldInfo notes=""Service requirement, coded_7273"" />
  2642. </xs:appinfo>
  2643. </xs:annotation>
  2644. </xs:element>
  2645. <xs:element minOccurs=""0"" name=""C23305"" type=""EDIFACT_ID_1131"">
  2646. <xs:annotation>
  2647. <xs:appinfo>
  2648. <b:fieldInfo notes=""Code list qualifier_1131"" />
  2649. </xs:appinfo>
  2650. </xs:annotation>
  2651. </xs:element>
  2652. <xs:element minOccurs=""0"" name=""C23306"" type=""EDIFACT_ID_3055"">
  2653. <xs:annotation>
  2654. <xs:appinfo>
  2655. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  2656. </xs:appinfo>
  2657. </xs:annotation>
  2658. </xs:element>
  2659. </xs:sequence>
  2660. </xs:complexType>
  2661. </xs:element>
  2662. <xs:element name=""C537"">
  2663. <xs:annotation>
  2664. <xs:appinfo>
  2665. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TRANSPORT PRIORITY"" />
  2666. </xs:appinfo>
  2667. </xs:annotation>
  2668. <xs:complexType>
  2669. <xs:sequence>
  2670. <xs:element name=""C53701"" type=""EDIFACT_ID_4219"">
  2671. <xs:annotation>
  2672. <xs:appinfo>
  2673. <b:fieldInfo notes=""Transport priority, coded_4219"" />
  2674. </xs:appinfo>
  2675. </xs:annotation>
  2676. </xs:element>
  2677. <xs:element minOccurs=""0"" name=""C53702"" type=""EDIFACT_ID_1131"">
  2678. <xs:annotation>
  2679. <xs:appinfo>
  2680. <b:fieldInfo notes=""Code list qualifier_1131"" />
  2681. </xs:appinfo>
  2682. </xs:annotation>
  2683. </xs:element>
  2684. <xs:element minOccurs=""0"" name=""C53703"" type=""EDIFACT_ID_3055"">
  2685. <xs:annotation>
  2686. <xs:appinfo>
  2687. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  2688. </xs:appinfo>
  2689. </xs:annotation>
  2690. </xs:element>
  2691. </xs:sequence>
  2692. </xs:complexType>
  2693. </xs:element>
  2694. <xs:element name=""C703"">
  2695. <xs:annotation>
  2696. <xs:appinfo>
  2697. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NATURE OF CARGO"" />
  2698. </xs:appinfo>
  2699. </xs:annotation>
  2700. <xs:complexType>
  2701. <xs:sequence>
  2702. <xs:element name=""C70301"" type=""EDIFACT_ID_7085"">
  2703. <xs:annotation>
  2704. <xs:appinfo>
  2705. <b:fieldInfo notes=""Nature of cargo, coded_7085"" />
  2706. </xs:appinfo>
  2707. </xs:annotation>
  2708. </xs:element>
  2709. <xs:element minOccurs=""0"" name=""C70302"" type=""EDIFACT_ID_1131"">
  2710. <xs:annotation>
  2711. <xs:appinfo>
  2712. <b:fieldInfo notes=""Code list qualifier_1131"" />
  2713. </xs:appinfo>
  2714. </xs:annotation>
  2715. </xs:element>
  2716. <xs:element minOccurs=""0"" name=""C70303"" type=""EDIFACT_ID_3055"">
  2717. <xs:annotation>
  2718. <xs:appinfo>
  2719. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  2720. </xs:appinfo>
  2721. </xs:annotation>
  2722. </xs:element>
  2723. </xs:sequence>
  2724. </xs:complexType>
  2725. </xs:element>
  2726. <xs:element name=""C082"">
  2727. <xs:annotation>
  2728. <xs:appinfo>
  2729. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PARTY IDENTIFICATION DETAILS"" />
  2730. </xs:appinfo>
  2731. </xs:annotation>
  2732. <xs:complexType>
  2733. <xs:sequence>
  2734. <xs:element name=""C08201"">
  2735. <xs:annotation>
  2736. <xs:appinfo>
  2737. <b:fieldInfo notes=""Party id. identification_3039"" />
  2738. </xs:appinfo>
  2739. </xs:annotation>
  2740. <xs:simpleType>
  2741. <xs:restriction base=""EDIFACT_AN"">
  2742. <xs:minLength value=""1"" />
  2743. <xs:maxLength value=""35"" />
  2744. </xs:restriction>
  2745. </xs:simpleType>
  2746. </xs:element>
  2747. <xs:element minOccurs=""0"" name=""C08202"" type=""EDIFACT_ID_1131"">
  2748. <xs:annotation>
  2749. <xs:appinfo>
  2750. <b:fieldInfo notes=""Code list qualifier_1131"" />
  2751. </xs:appinfo>
  2752. </xs:annotation>
  2753. </xs:element>
  2754. <xs:element minOccurs=""0"" name=""C08203"" type=""EDIFACT_ID_3055"">
  2755. <xs:annotation>
  2756. <xs:appinfo>
  2757. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  2758. </xs:appinfo>
  2759. </xs:annotation>
  2760. </xs:element>
  2761. </xs:sequence>
  2762. </xs:complexType>
  2763. </xs:element>
  2764. <xs:element name=""C058"">
  2765. <xs:annotation>
  2766. <xs:appinfo>
  2767. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NAME AND ADDRESS"" />
  2768. </xs:appinfo>
  2769. </xs:annotation>
  2770. <xs:complexType>
  2771. <xs:sequence>
  2772. <xs:element name=""C05801"">
  2773. <xs:annotation>
  2774. <xs:appinfo>
  2775. <b:fieldInfo notes=""Name and address line_3124"" />
  2776. </xs:appinfo>
  2777. </xs:annotation>
  2778. <xs:simpleType>
  2779. <xs:restriction base=""EDIFACT_AN"">
  2780. <xs:minLength value=""1"" />
  2781. <xs:maxLength value=""35"" />
  2782. </xs:restriction>
  2783. </xs:simpleType>
  2784. </xs:element>
  2785. <xs:element minOccurs=""0"" name=""C05802"">
  2786. <xs:annotation>
  2787. <xs:appinfo>
  2788. <b:fieldInfo notes=""Name and address line_3124"" />
  2789. </xs:appinfo>
  2790. </xs:annotation>
  2791. <xs:simpleType>
  2792. <xs:restriction base=""EDIFACT_AN"">
  2793. <xs:minLength value=""1"" />
  2794. <xs:maxLength value=""35"" />
  2795. </xs:restriction>
  2796. </xs:simpleType>
  2797. </xs:element>
  2798. <xs:element minOccurs=""0"" name=""C05803"">
  2799. <xs:annotation>
  2800. <xs:appinfo>
  2801. <b:fieldInfo notes=""Name and address line_3124"" />
  2802. </xs:appinfo>
  2803. </xs:annotation>
  2804. <xs:simpleType>
  2805. <xs:restriction base=""EDIFACT_AN"">
  2806. <xs:minLength value=""1"" />
  2807. <xs:maxLength value=""35"" />
  2808. </xs:restriction>
  2809. </xs:simpleType>
  2810. </xs:element>
  2811. <xs:element minOccurs=""0"" name=""C05804"">
  2812. <xs:annotation>
  2813. <xs:appinfo>
  2814. <b:fieldInfo notes=""Name and address line_3124"" />
  2815. </xs:appinfo>
  2816. </xs:annotation>
  2817. <xs:simpleType>
  2818. <xs:restriction base=""EDIFACT_AN"">
  2819. <xs:minLength value=""1"" />
  2820. <xs:maxLength value=""35"" />
  2821. </xs:restriction>
  2822. </xs:simpleType>
  2823. </xs:element>
  2824. <xs:element minOccurs=""0"" name=""C05805"">
  2825. <xs:annotation>
  2826. <xs:appinfo>
  2827. <b:fieldInfo notes=""Name and address line_3124"" />
  2828. </xs:appinfo>
  2829. </xs:annotation>
  2830. <xs:simpleType>
  2831. <xs:restriction base=""EDIFACT_AN"">
  2832. <xs:minLength value=""1"" />
  2833. <xs:maxLength value=""35"" />
  2834. </xs:restriction>
  2835. </xs:simpleType>
  2836. </xs:element>
  2837. </xs:sequence>
  2838. </xs:complexType>
  2839. </xs:element>
  2840. <xs:element name=""C080"">
  2841. <xs:annotation>
  2842. <xs:appinfo>
  2843. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PARTY NAME"" />
  2844. </xs:appinfo>
  2845. </xs:annotation>
  2846. <xs:complexType>
  2847. <xs:sequence>
  2848. <xs:element name=""C08001"">
  2849. <xs:annotation>
  2850. <xs:appinfo>
  2851. <b:fieldInfo notes=""Party name_3036"" />
  2852. </xs:appinfo>
  2853. </xs:annotation>
  2854. <xs:simpleType>
  2855. <xs:restriction base=""EDIFACT_AN"">
  2856. <xs:minLength value=""1"" />
  2857. <xs:maxLength value=""35"" />
  2858. </xs:restriction>
  2859. </xs:simpleType>
  2860. </xs:element>
  2861. <xs:element minOccurs=""0"" name=""C08002"">
  2862. <xs:annotation>
  2863. <xs:appinfo>
  2864. <b:fieldInfo notes=""Party name_3036"" />
  2865. </xs:appinfo>
  2866. </xs:annotation>
  2867. <xs:simpleType>
  2868. <xs:restriction base=""EDIFACT_AN"">
  2869. <xs:minLength value=""1"" />
  2870. <xs:maxLength value=""35"" />
  2871. </xs:restriction>
  2872. </xs:simpleType>
  2873. </xs:element>
  2874. <xs:element minOccurs=""0"" name=""C08003"">
  2875. <xs:annotation>
  2876. <xs:appinfo>
  2877. <b:fieldInfo notes=""Party name_3036"" />
  2878. </xs:appinfo>
  2879. </xs:annotation>
  2880. <xs:simpleType>
  2881. <xs:restriction base=""EDIFACT_AN"">
  2882. <xs:minLength value=""1"" />
  2883. <xs:maxLength value=""35"" />
  2884. </xs:restriction>
  2885. </xs:simpleType>
  2886. </xs:element>
  2887. <xs:element minOccurs=""0"" name=""C08004"">
  2888. <xs:annotation>
  2889. <xs:appinfo>
  2890. <b:fieldInfo notes=""Party name_3036"" />
  2891. </xs:appinfo>
  2892. </xs:annotation>
  2893. <xs:simpleType>
  2894. <xs:restriction base=""EDIFACT_AN"">
  2895. <xs:minLength value=""1"" />
  2896. <xs:maxLength value=""35"" />
  2897. </xs:restriction>
  2898. </xs:simpleType>
  2899. </xs:element>
  2900. <xs:element minOccurs=""0"" name=""C08005"">
  2901. <xs:annotation>
  2902. <xs:appinfo>
  2903. <b:fieldInfo notes=""Party name_3036"" />
  2904. </xs:appinfo>
  2905. </xs:annotation>
  2906. <xs:simpleType>
  2907. <xs:restriction base=""EDIFACT_AN"">
  2908. <xs:minLength value=""1"" />
  2909. <xs:maxLength value=""35"" />
  2910. </xs:restriction>
  2911. </xs:simpleType>
  2912. </xs:element>
  2913. <xs:element minOccurs=""0"" name=""C08006"" type=""EDIFACT_ID_3045"">
  2914. <xs:annotation>
  2915. <xs:appinfo>
  2916. <b:fieldInfo notes=""Party name format, coded_3045"" />
  2917. </xs:appinfo>
  2918. </xs:annotation>
  2919. </xs:element>
  2920. </xs:sequence>
  2921. </xs:complexType>
  2922. </xs:element>
  2923. <xs:element name=""C059"">
  2924. <xs:annotation>
  2925. <xs:appinfo>
  2926. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STREET"" />
  2927. </xs:appinfo>
  2928. </xs:annotation>
  2929. <xs:complexType>
  2930. <xs:sequence>
  2931. <xs:element name=""C05901"">
  2932. <xs:annotation>
  2933. <xs:appinfo>
  2934. <b:fieldInfo notes=""Street and number/p.o. box_3042"" />
  2935. </xs:appinfo>
  2936. </xs:annotation>
  2937. <xs:simpleType>
  2938. <xs:restriction base=""EDIFACT_AN"">
  2939. <xs:minLength value=""1"" />
  2940. <xs:maxLength value=""35"" />
  2941. </xs:restriction>
  2942. </xs:simpleType>
  2943. </xs:element>
  2944. <xs:element minOccurs=""0"" name=""C05902"">
  2945. <xs:annotation>
  2946. <xs:appinfo>
  2947. <b:fieldInfo notes=""Street and number/p.o. box_3042"" />
  2948. </xs:appinfo>
  2949. </xs:annotation>
  2950. <xs:simpleType>
  2951. <xs:restriction base=""EDIFACT_AN"">
  2952. <xs:minLength value=""1"" />
  2953. <xs:maxLength value=""35"" />
  2954. </xs:restriction>
  2955. </xs:simpleType>
  2956. </xs:element>
  2957. <xs:element minOccurs=""0"" name=""C05903"">
  2958. <xs:annotation>
  2959. <xs:appinfo>
  2960. <b:fieldInfo notes=""Street and number/p.o. box_3042"" />
  2961. </xs:appinfo>
  2962. </xs:annotation>
  2963. <xs:simpleType>
  2964. <xs:restriction base=""EDIFACT_AN"">
  2965. <xs:minLength value=""1"" />
  2966. <xs:maxLength value=""35"" />
  2967. </xs:restriction>
  2968. </xs:simpleType>
  2969. </xs:element>
  2970. <xs:element minOccurs=""0"" name=""C05904"">
  2971. <xs:annotation>
  2972. <xs:appinfo>
  2973. <b:fieldInfo notes=""Street and number/p.o. box_3042"" />
  2974. </xs:appinfo>
  2975. </xs:annotation>
  2976. <xs:simpleType>
  2977. <xs:restriction base=""EDIFACT_AN"">
  2978. <xs:minLength value=""1"" />
  2979. <xs:maxLength value=""35"" />
  2980. </xs:restriction>
  2981. </xs:simpleType>
  2982. </xs:element>
  2983. </xs:sequence>
  2984. </xs:complexType>
  2985. </xs:element>
  2986. <xs:element name=""C056"">
  2987. <xs:annotation>
  2988. <xs:appinfo>
  2989. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DEPARTMENT OR EMPLOYEE DETAILS"" />
  2990. </xs:appinfo>
  2991. </xs:annotation>
  2992. <xs:complexType>
  2993. <xs:sequence>
  2994. <xs:element minOccurs=""0"" name=""C05601"">
  2995. <xs:annotation>
  2996. <xs:appinfo>
  2997. <b:fieldInfo notes=""Department or employee identification_3413"" />
  2998. </xs:appinfo>
  2999. </xs:annotation>
  3000. <xs:simpleType>
  3001. <xs:restriction base=""EDIFACT_AN"">
  3002. <xs:minLength value=""1"" />
  3003. <xs:maxLength value=""17"" />
  3004. </xs:restriction>
  3005. </xs:simpleType>
  3006. </xs:element>
  3007. <xs:element minOccurs=""0"" name=""C05602"">
  3008. <xs:annotation>
  3009. <xs:appinfo>
  3010. <b:fieldInfo notes=""Department or employee_3412"" />
  3011. </xs:appinfo>
  3012. </xs:annotation>
  3013. <xs:simpleType>
  3014. <xs:restriction base=""EDIFACT_AN"">
  3015. <xs:minLength value=""1"" />
  3016. <xs:maxLength value=""35"" />
  3017. </xs:restriction>
  3018. </xs:simpleType>
  3019. </xs:element>
  3020. </xs:sequence>
  3021. </xs:complexType>
  3022. </xs:element>
  3023. <xs:element name=""C076"">
  3024. <xs:annotation>
  3025. <xs:appinfo>
  3026. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""COMMUNICATION CONTACT"" />
  3027. </xs:appinfo>
  3028. </xs:annotation>
  3029. <xs:complexType>
  3030. <xs:sequence>
  3031. <xs:element name=""C07601"">
  3032. <xs:annotation>
  3033. <xs:appinfo>
  3034. <b:fieldInfo notes=""Communication number_3148"" />
  3035. </xs:appinfo>
  3036. </xs:annotation>
  3037. <xs:simpleType>
  3038. <xs:restriction base=""EDIFACT_AN"">
  3039. <xs:minLength value=""1"" />
  3040. <xs:maxLength value=""512"" />
  3041. </xs:restriction>
  3042. </xs:simpleType>
  3043. </xs:element>
  3044. <xs:element name=""C07602"" type=""EDIFACT_ID_3155"">
  3045. <xs:annotation>
  3046. <xs:appinfo>
  3047. <b:fieldInfo notes=""Communication channel qualifier_3155"" />
  3048. </xs:appinfo>
  3049. </xs:annotation>
  3050. </xs:element>
  3051. </xs:sequence>
  3052. </xs:complexType>
  3053. </xs:element>
  3054. <xs:element name=""C506"">
  3055. <xs:annotation>
  3056. <xs:appinfo>
  3057. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  3058. </xs:appinfo>
  3059. </xs:annotation>
  3060. <xs:complexType>
  3061. <xs:sequence>
  3062. <xs:element name=""C50601"" type=""EDIFACT_ID_1153"">
  3063. <xs:annotation>
  3064. <xs:appinfo>
  3065. <b:fieldInfo notes=""Reference qualifier_1153"" />
  3066. </xs:appinfo>
  3067. </xs:annotation>
  3068. </xs:element>
  3069. <xs:element minOccurs=""0"" name=""C50602"">
  3070. <xs:annotation>
  3071. <xs:appinfo>
  3072. <b:fieldInfo notes=""Reference number_1154"" />
  3073. </xs:appinfo>
  3074. </xs:annotation>
  3075. <xs:simpleType>
  3076. <xs:restriction base=""EDIFACT_AN"">
  3077. <xs:minLength value=""1"" />
  3078. <xs:maxLength value=""35"" />
  3079. </xs:restriction>
  3080. </xs:simpleType>
  3081. </xs:element>
  3082. <xs:element minOccurs=""0"" name=""C50603"">
  3083. <xs:annotation>
  3084. <xs:appinfo>
  3085. <b:fieldInfo notes=""Line number_1156"" />
  3086. </xs:appinfo>
  3087. </xs:annotation>
  3088. <xs:simpleType>
  3089. <xs:restriction base=""EDIFACT_AN"">
  3090. <xs:minLength value=""1"" />
  3091. <xs:maxLength value=""6"" />
  3092. </xs:restriction>
  3093. </xs:simpleType>
  3094. </xs:element>
  3095. <xs:element minOccurs=""0"" name=""C50604"">
  3096. <xs:annotation>
  3097. <xs:appinfo>
  3098. <b:fieldInfo notes=""Reference version number_4000"" />
  3099. </xs:appinfo>
  3100. </xs:annotation>
  3101. <xs:simpleType>
  3102. <xs:restriction base=""EDIFACT_AN"">
  3103. <xs:minLength value=""1"" />
  3104. <xs:maxLength value=""35"" />
  3105. </xs:restriction>
  3106. </xs:simpleType>
  3107. </xs:element>
  3108. </xs:sequence>
  3109. </xs:complexType>
  3110. </xs:element>
  3111. <xs:element name=""C507_2"">
  3112. <xs:annotation>
  3113. <xs:appinfo>
  3114. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  3115. </xs:appinfo>
  3116. </xs:annotation>
  3117. <xs:complexType>
  3118. <xs:sequence>
  3119. <xs:element name=""C50701"" type=""EDIFACT_ID_2005"">
  3120. <xs:annotation>
  3121. <xs:appinfo>
  3122. <b:fieldInfo notes=""Date/time/period qualifier_2005"" />
  3123. </xs:appinfo>
  3124. </xs:annotation>
  3125. </xs:element>
  3126. <xs:element minOccurs=""0"" name=""C50702"">
  3127. <xs:annotation>
  3128. <xs:appinfo>
  3129. <b:fieldInfo notes=""Date/time/period_2380"" />
  3130. </xs:appinfo>
  3131. </xs:annotation>
  3132. <xs:simpleType>
  3133. <xs:restriction base=""EDIFACT_AN"">
  3134. <xs:minLength value=""1"" />
  3135. <xs:maxLength value=""35"" />
  3136. </xs:restriction>
  3137. </xs:simpleType>
  3138. </xs:element>
  3139. <xs:element minOccurs=""0"" name=""C50703"" type=""EDIFACT_ID_2379"">
  3140. <xs:annotation>
  3141. <xs:appinfo>
  3142. <b:fieldInfo notes=""Date/time/period format qualifier_2379"" />
  3143. </xs:appinfo>
  3144. </xs:annotation>
  3145. </xs:element>
  3146. </xs:sequence>
  3147. </xs:complexType>
  3148. </xs:element>
  3149. <xs:element name=""C517"">
  3150. <xs:annotation>
  3151. <xs:appinfo>
  3152. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""LOCATION IDENTIFICATION"" />
  3153. </xs:appinfo>
  3154. </xs:annotation>
  3155. <xs:complexType>
  3156. <xs:sequence>
  3157. <xs:element minOccurs=""0"" name=""C51701"">
  3158. <xs:annotation>
  3159. <xs:appinfo>
  3160. <b:fieldInfo notes=""Place/location identification_3225"" />
  3161. </xs:appinfo>
  3162. </xs:annotation>
  3163. <xs:simpleType>
  3164. <xs:restriction base=""EDIFACT_AN"">
  3165. <xs:minLength value=""1"" />
  3166. <xs:maxLength value=""25"" />
  3167. </xs:restriction>
  3168. </xs:simpleType>
  3169. </xs:element>
  3170. <xs:element minOccurs=""0"" name=""C51702"" type=""EDIFACT_ID_1131"">
  3171. <xs:annotation>
  3172. <xs:appinfo>
  3173. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3174. </xs:appinfo>
  3175. </xs:annotation>
  3176. </xs:element>
  3177. <xs:element minOccurs=""0"" name=""C51703"" type=""EDIFACT_ID_3055"">
  3178. <xs:annotation>
  3179. <xs:appinfo>
  3180. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3181. </xs:appinfo>
  3182. </xs:annotation>
  3183. </xs:element>
  3184. <xs:element minOccurs=""0"" name=""C51704"">
  3185. <xs:annotation>
  3186. <xs:appinfo>
  3187. <b:fieldInfo notes=""Place/location_3224"" />
  3188. </xs:appinfo>
  3189. </xs:annotation>
  3190. <xs:simpleType>
  3191. <xs:restriction base=""EDIFACT_AN"">
  3192. <xs:minLength value=""1"" />
  3193. <xs:maxLength value=""70"" />
  3194. </xs:restriction>
  3195. </xs:simpleType>
  3196. </xs:element>
  3197. </xs:sequence>
  3198. </xs:complexType>
  3199. </xs:element>
  3200. <xs:element name=""C519"">
  3201. <xs:annotation>
  3202. <xs:appinfo>
  3203. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION ONE IDENTIFICATION"" />
  3204. </xs:appinfo>
  3205. </xs:annotation>
  3206. <xs:complexType>
  3207. <xs:sequence>
  3208. <xs:element minOccurs=""0"" name=""C51901"">
  3209. <xs:annotation>
  3210. <xs:appinfo>
  3211. <b:fieldInfo notes=""Related place/location one identification_3223"" />
  3212. </xs:appinfo>
  3213. </xs:annotation>
  3214. <xs:simpleType>
  3215. <xs:restriction base=""EDIFACT_AN"">
  3216. <xs:minLength value=""1"" />
  3217. <xs:maxLength value=""25"" />
  3218. </xs:restriction>
  3219. </xs:simpleType>
  3220. </xs:element>
  3221. <xs:element minOccurs=""0"" name=""C51902"" type=""EDIFACT_ID_1131"">
  3222. <xs:annotation>
  3223. <xs:appinfo>
  3224. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3225. </xs:appinfo>
  3226. </xs:annotation>
  3227. </xs:element>
  3228. <xs:element minOccurs=""0"" name=""C51903"" type=""EDIFACT_ID_3055"">
  3229. <xs:annotation>
  3230. <xs:appinfo>
  3231. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3232. </xs:appinfo>
  3233. </xs:annotation>
  3234. </xs:element>
  3235. <xs:element minOccurs=""0"" name=""C51904"">
  3236. <xs:annotation>
  3237. <xs:appinfo>
  3238. <b:fieldInfo notes=""Related place/location one_3222"" />
  3239. </xs:appinfo>
  3240. </xs:annotation>
  3241. <xs:simpleType>
  3242. <xs:restriction base=""EDIFACT_AN"">
  3243. <xs:minLength value=""1"" />
  3244. <xs:maxLength value=""70"" />
  3245. </xs:restriction>
  3246. </xs:simpleType>
  3247. </xs:element>
  3248. </xs:sequence>
  3249. </xs:complexType>
  3250. </xs:element>
  3251. <xs:element name=""C553"">
  3252. <xs:annotation>
  3253. <xs:appinfo>
  3254. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION TWO IDENTIFICATION"" />
  3255. </xs:appinfo>
  3256. </xs:annotation>
  3257. <xs:complexType>
  3258. <xs:sequence>
  3259. <xs:element minOccurs=""0"" name=""C55301"">
  3260. <xs:annotation>
  3261. <xs:appinfo>
  3262. <b:fieldInfo notes=""Related place/location two identification_3233"" />
  3263. </xs:appinfo>
  3264. </xs:annotation>
  3265. <xs:simpleType>
  3266. <xs:restriction base=""EDIFACT_AN"">
  3267. <xs:minLength value=""1"" />
  3268. <xs:maxLength value=""25"" />
  3269. </xs:restriction>
  3270. </xs:simpleType>
  3271. </xs:element>
  3272. <xs:element minOccurs=""0"" name=""C55302"" type=""EDIFACT_ID_1131"">
  3273. <xs:annotation>
  3274. <xs:appinfo>
  3275. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3276. </xs:appinfo>
  3277. </xs:annotation>
  3278. </xs:element>
  3279. <xs:element minOccurs=""0"" name=""C55303"" type=""EDIFACT_ID_3055"">
  3280. <xs:annotation>
  3281. <xs:appinfo>
  3282. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3283. </xs:appinfo>
  3284. </xs:annotation>
  3285. </xs:element>
  3286. <xs:element minOccurs=""0"" name=""C55304"">
  3287. <xs:annotation>
  3288. <xs:appinfo>
  3289. <b:fieldInfo notes=""Related place/location two_3232"" />
  3290. </xs:appinfo>
  3291. </xs:annotation>
  3292. <xs:simpleType>
  3293. <xs:restriction base=""EDIFACT_AN"">
  3294. <xs:minLength value=""1"" />
  3295. <xs:maxLength value=""70"" />
  3296. </xs:restriction>
  3297. </xs:simpleType>
  3298. </xs:element>
  3299. </xs:sequence>
  3300. </xs:complexType>
  3301. </xs:element>
  3302. <xs:element name=""C107"">
  3303. <xs:annotation>
  3304. <xs:appinfo>
  3305. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TEXT REFERENCE"" />
  3306. </xs:appinfo>
  3307. </xs:annotation>
  3308. <xs:complexType>
  3309. <xs:sequence>
  3310. <xs:element name=""C10701"">
  3311. <xs:annotation>
  3312. <xs:appinfo>
  3313. <b:fieldInfo notes=""Free text, coded_4441"" />
  3314. </xs:appinfo>
  3315. </xs:annotation>
  3316. <xs:simpleType>
  3317. <xs:restriction base=""EDIFACT_AN"">
  3318. <xs:minLength value=""1"" />
  3319. <xs:maxLength value=""3"" />
  3320. </xs:restriction>
  3321. </xs:simpleType>
  3322. </xs:element>
  3323. <xs:element minOccurs=""0"" name=""C10702"" type=""EDIFACT_ID_1131"">
  3324. <xs:annotation>
  3325. <xs:appinfo>
  3326. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3327. </xs:appinfo>
  3328. </xs:annotation>
  3329. </xs:element>
  3330. <xs:element minOccurs=""0"" name=""C10703"" type=""EDIFACT_ID_3055"">
  3331. <xs:annotation>
  3332. <xs:appinfo>
  3333. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3334. </xs:appinfo>
  3335. </xs:annotation>
  3336. </xs:element>
  3337. </xs:sequence>
  3338. </xs:complexType>
  3339. </xs:element>
  3340. <xs:element name=""C108"">
  3341. <xs:annotation>
  3342. <xs:appinfo>
  3343. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TEXT LITERAL"" />
  3344. </xs:appinfo>
  3345. </xs:annotation>
  3346. <xs:complexType>
  3347. <xs:sequence>
  3348. <xs:element name=""C10801"">
  3349. <xs:annotation>
  3350. <xs:appinfo>
  3351. <b:fieldInfo notes=""Free text_4440"" />
  3352. </xs:appinfo>
  3353. </xs:annotation>
  3354. <xs:simpleType>
  3355. <xs:restriction base=""EDIFACT_AN"">
  3356. <xs:minLength value=""1"" />
  3357. <xs:maxLength value=""70"" />
  3358. </xs:restriction>
  3359. </xs:simpleType>
  3360. </xs:element>
  3361. <xs:element minOccurs=""0"" name=""C10802"">
  3362. <xs:annotation>
  3363. <xs:appinfo>
  3364. <b:fieldInfo notes=""Free text_4440"" />
  3365. </xs:appinfo>
  3366. </xs:annotation>
  3367. <xs:simpleType>
  3368. <xs:restriction base=""EDIFACT_AN"">
  3369. <xs:minLength value=""1"" />
  3370. <xs:maxLength value=""70"" />
  3371. </xs:restriction>
  3372. </xs:simpleType>
  3373. </xs:element>
  3374. <xs:element minOccurs=""0"" name=""C10803"">
  3375. <xs:annotation>
  3376. <xs:appinfo>
  3377. <b:fieldInfo notes=""Free text_4440"" />
  3378. </xs:appinfo>
  3379. </xs:annotation>
  3380. <xs:simpleType>
  3381. <xs:restriction base=""EDIFACT_AN"">
  3382. <xs:minLength value=""1"" />
  3383. <xs:maxLength value=""70"" />
  3384. </xs:restriction>
  3385. </xs:simpleType>
  3386. </xs:element>
  3387. <xs:element minOccurs=""0"" name=""C10804"">
  3388. <xs:annotation>
  3389. <xs:appinfo>
  3390. <b:fieldInfo notes=""Free text_4440"" />
  3391. </xs:appinfo>
  3392. </xs:annotation>
  3393. <xs:simpleType>
  3394. <xs:restriction base=""EDIFACT_AN"">
  3395. <xs:minLength value=""1"" />
  3396. <xs:maxLength value=""70"" />
  3397. </xs:restriction>
  3398. </xs:simpleType>
  3399. </xs:element>
  3400. <xs:element minOccurs=""0"" name=""C10805"">
  3401. <xs:annotation>
  3402. <xs:appinfo>
  3403. <b:fieldInfo notes=""Free text_4440"" />
  3404. </xs:appinfo>
  3405. </xs:annotation>
  3406. <xs:simpleType>
  3407. <xs:restriction base=""EDIFACT_AN"">
  3408. <xs:minLength value=""1"" />
  3409. <xs:maxLength value=""70"" />
  3410. </xs:restriction>
  3411. </xs:simpleType>
  3412. </xs:element>
  3413. </xs:sequence>
  3414. </xs:complexType>
  3415. </xs:element>
  3416. <xs:element name=""C270"">
  3417. <xs:annotation>
  3418. <xs:appinfo>
  3419. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTROL"" />
  3420. </xs:appinfo>
  3421. </xs:annotation>
  3422. <xs:complexType>
  3423. <xs:sequence>
  3424. <xs:element name=""C27001"" type=""EDIFACT_ID_6069"">
  3425. <xs:annotation>
  3426. <xs:appinfo>
  3427. <b:fieldInfo notes=""Control qualifier_6069"" />
  3428. </xs:appinfo>
  3429. </xs:annotation>
  3430. </xs:element>
  3431. <xs:element name=""C27002"">
  3432. <xs:annotation>
  3433. <xs:appinfo>
  3434. <b:fieldInfo notes=""Control value_6066"" />
  3435. </xs:appinfo>
  3436. </xs:annotation>
  3437. <xs:simpleType>
  3438. <xs:restriction base=""EDIFACT_N"">
  3439. <xs:minLength value=""1"" />
  3440. <xs:maxLength value=""18"" />
  3441. </xs:restriction>
  3442. </xs:simpleType>
  3443. </xs:element>
  3444. <xs:element minOccurs=""0"" name=""C27003"">
  3445. <xs:annotation>
  3446. <xs:appinfo>
  3447. <b:fieldInfo notes=""Measure unit qualifier_6411"" />
  3448. </xs:appinfo>
  3449. </xs:annotation>
  3450. <xs:simpleType>
  3451. <xs:restriction base=""EDIFACT_AN"">
  3452. <xs:minLength value=""1"" />
  3453. <xs:maxLength value=""3"" />
  3454. </xs:restriction>
  3455. </xs:simpleType>
  3456. </xs:element>
  3457. </xs:sequence>
  3458. </xs:complexType>
  3459. </xs:element>
  3460. <xs:element name=""C503"">
  3461. <xs:annotation>
  3462. <xs:appinfo>
  3463. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE DETAILS"" />
  3464. </xs:appinfo>
  3465. </xs:annotation>
  3466. <xs:complexType>
  3467. <xs:sequence>
  3468. <xs:element minOccurs=""0"" name=""C50301"">
  3469. <xs:annotation>
  3470. <xs:appinfo>
  3471. <b:fieldInfo notes=""Document/message number_1004"" />
  3472. </xs:appinfo>
  3473. </xs:annotation>
  3474. <xs:simpleType>
  3475. <xs:restriction base=""EDIFACT_AN"">
  3476. <xs:minLength value=""1"" />
  3477. <xs:maxLength value=""35"" />
  3478. </xs:restriction>
  3479. </xs:simpleType>
  3480. </xs:element>
  3481. <xs:element minOccurs=""0"" name=""C50302"" type=""EDIFACT_ID_1373"">
  3482. <xs:annotation>
  3483. <xs:appinfo>
  3484. <b:fieldInfo notes=""Document/message status, coded_1373"" />
  3485. </xs:appinfo>
  3486. </xs:annotation>
  3487. </xs:element>
  3488. <xs:element minOccurs=""0"" name=""C50303"">
  3489. <xs:annotation>
  3490. <xs:appinfo>
  3491. <b:fieldInfo notes=""Document/message source_1366"" />
  3492. </xs:appinfo>
  3493. </xs:annotation>
  3494. <xs:simpleType>
  3495. <xs:restriction base=""EDIFACT_AN"">
  3496. <xs:minLength value=""1"" />
  3497. <xs:maxLength value=""35"" />
  3498. </xs:restriction>
  3499. </xs:simpleType>
  3500. </xs:element>
  3501. <xs:element minOccurs=""0"" name=""C50304"">
  3502. <xs:annotation>
  3503. <xs:appinfo>
  3504. <b:fieldInfo notes=""Language, coded_3453"" />
  3505. </xs:appinfo>
  3506. </xs:annotation>
  3507. <xs:simpleType>
  3508. <xs:restriction base=""EDIFACT_AN"">
  3509. <xs:minLength value=""1"" />
  3510. <xs:maxLength value=""3"" />
  3511. </xs:restriction>
  3512. </xs:simpleType>
  3513. </xs:element>
  3514. </xs:sequence>
  3515. </xs:complexType>
  3516. </xs:element>
  3517. <xs:element name=""C517_2"">
  3518. <xs:annotation>
  3519. <xs:appinfo>
  3520. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""LOCATION IDENTIFICATION"" />
  3521. </xs:appinfo>
  3522. </xs:annotation>
  3523. <xs:complexType>
  3524. <xs:sequence>
  3525. <xs:element minOccurs=""0"" name=""C51701"">
  3526. <xs:annotation>
  3527. <xs:appinfo>
  3528. <b:fieldInfo notes=""Place/location identification_3225"" />
  3529. </xs:appinfo>
  3530. </xs:annotation>
  3531. <xs:simpleType>
  3532. <xs:restriction base=""EDIFACT_AN"">
  3533. <xs:minLength value=""1"" />
  3534. <xs:maxLength value=""25"" />
  3535. </xs:restriction>
  3536. </xs:simpleType>
  3537. </xs:element>
  3538. <xs:element minOccurs=""0"" name=""C51702"" type=""EDIFACT_ID_1131"">
  3539. <xs:annotation>
  3540. <xs:appinfo>
  3541. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3542. </xs:appinfo>
  3543. </xs:annotation>
  3544. </xs:element>
  3545. <xs:element minOccurs=""0"" name=""C51703"" type=""EDIFACT_ID_3055"">
  3546. <xs:annotation>
  3547. <xs:appinfo>
  3548. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3549. </xs:appinfo>
  3550. </xs:annotation>
  3551. </xs:element>
  3552. <xs:element minOccurs=""0"" name=""C51704"">
  3553. <xs:annotation>
  3554. <xs:appinfo>
  3555. <b:fieldInfo notes=""Place/location_3224"" />
  3556. </xs:appinfo>
  3557. </xs:annotation>
  3558. <xs:simpleType>
  3559. <xs:restriction base=""EDIFACT_AN"">
  3560. <xs:minLength value=""1"" />
  3561. <xs:maxLength value=""70"" />
  3562. </xs:restriction>
  3563. </xs:simpleType>
  3564. </xs:element>
  3565. </xs:sequence>
  3566. </xs:complexType>
  3567. </xs:element>
  3568. <xs:element name=""C519_2"">
  3569. <xs:annotation>
  3570. <xs:appinfo>
  3571. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION ONE IDENTIFICATION"" />
  3572. </xs:appinfo>
  3573. </xs:annotation>
  3574. <xs:complexType>
  3575. <xs:sequence>
  3576. <xs:element minOccurs=""0"" name=""C51901"">
  3577. <xs:annotation>
  3578. <xs:appinfo>
  3579. <b:fieldInfo notes=""Related place/location one identification_3223"" />
  3580. </xs:appinfo>
  3581. </xs:annotation>
  3582. <xs:simpleType>
  3583. <xs:restriction base=""EDIFACT_AN"">
  3584. <xs:minLength value=""1"" />
  3585. <xs:maxLength value=""25"" />
  3586. </xs:restriction>
  3587. </xs:simpleType>
  3588. </xs:element>
  3589. <xs:element minOccurs=""0"" name=""C51902"" type=""EDIFACT_ID_1131"">
  3590. <xs:annotation>
  3591. <xs:appinfo>
  3592. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3593. </xs:appinfo>
  3594. </xs:annotation>
  3595. </xs:element>
  3596. <xs:element minOccurs=""0"" name=""C51903"" type=""EDIFACT_ID_3055"">
  3597. <xs:annotation>
  3598. <xs:appinfo>
  3599. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3600. </xs:appinfo>
  3601. </xs:annotation>
  3602. </xs:element>
  3603. <xs:element minOccurs=""0"" name=""C51904"">
  3604. <xs:annotation>
  3605. <xs:appinfo>
  3606. <b:fieldInfo notes=""Related place/location one_3222"" />
  3607. </xs:appinfo>
  3608. </xs:annotation>
  3609. <xs:simpleType>
  3610. <xs:restriction base=""EDIFACT_AN"">
  3611. <xs:minLength value=""1"" />
  3612. <xs:maxLength value=""70"" />
  3613. </xs:restriction>
  3614. </xs:simpleType>
  3615. </xs:element>
  3616. </xs:sequence>
  3617. </xs:complexType>
  3618. </xs:element>
  3619. <xs:element name=""C553_2"">
  3620. <xs:annotation>
  3621. <xs:appinfo>
  3622. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION TWO IDENTIFICATION"" />
  3623. </xs:appinfo>
  3624. </xs:annotation>
  3625. <xs:complexType>
  3626. <xs:sequence>
  3627. <xs:element minOccurs=""0"" name=""C55301"">
  3628. <xs:annotation>
  3629. <xs:appinfo>
  3630. <b:fieldInfo notes=""Related place/location two identification_3233"" />
  3631. </xs:appinfo>
  3632. </xs:annotation>
  3633. <xs:simpleType>
  3634. <xs:restriction base=""EDIFACT_AN"">
  3635. <xs:minLength value=""1"" />
  3636. <xs:maxLength value=""25"" />
  3637. </xs:restriction>
  3638. </xs:simpleType>
  3639. </xs:element>
  3640. <xs:element minOccurs=""0"" name=""C55302"" type=""EDIFACT_ID_1131"">
  3641. <xs:annotation>
  3642. <xs:appinfo>
  3643. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3644. </xs:appinfo>
  3645. </xs:annotation>
  3646. </xs:element>
  3647. <xs:element minOccurs=""0"" name=""C55303"" type=""EDIFACT_ID_3055"">
  3648. <xs:annotation>
  3649. <xs:appinfo>
  3650. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3651. </xs:appinfo>
  3652. </xs:annotation>
  3653. </xs:element>
  3654. <xs:element minOccurs=""0"" name=""C55304"">
  3655. <xs:annotation>
  3656. <xs:appinfo>
  3657. <b:fieldInfo notes=""Related place/location two_3232"" />
  3658. </xs:appinfo>
  3659. </xs:annotation>
  3660. <xs:simpleType>
  3661. <xs:restriction base=""EDIFACT_AN"">
  3662. <xs:minLength value=""1"" />
  3663. <xs:maxLength value=""70"" />
  3664. </xs:restriction>
  3665. </xs:simpleType>
  3666. </xs:element>
  3667. </xs:sequence>
  3668. </xs:complexType>
  3669. </xs:element>
  3670. <xs:element name=""C270_2"">
  3671. <xs:annotation>
  3672. <xs:appinfo>
  3673. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CONTROL"" />
  3674. </xs:appinfo>
  3675. </xs:annotation>
  3676. <xs:complexType>
  3677. <xs:sequence>
  3678. <xs:element name=""C27001"" type=""EDIFACT_ID_6069"">
  3679. <xs:annotation>
  3680. <xs:appinfo>
  3681. <b:fieldInfo notes=""Control qualifier_6069"" />
  3682. </xs:appinfo>
  3683. </xs:annotation>
  3684. </xs:element>
  3685. <xs:element name=""C27002"">
  3686. <xs:annotation>
  3687. <xs:appinfo>
  3688. <b:fieldInfo notes=""Control value_6066"" />
  3689. </xs:appinfo>
  3690. </xs:annotation>
  3691. <xs:simpleType>
  3692. <xs:restriction base=""EDIFACT_N"">
  3693. <xs:minLength value=""1"" />
  3694. <xs:maxLength value=""18"" />
  3695. </xs:restriction>
  3696. </xs:simpleType>
  3697. </xs:element>
  3698. <xs:element minOccurs=""0"" name=""C27003"">
  3699. <xs:annotation>
  3700. <xs:appinfo>
  3701. <b:fieldInfo notes=""Measure unit qualifier_6411"" />
  3702. </xs:appinfo>
  3703. </xs:annotation>
  3704. <xs:simpleType>
  3705. <xs:restriction base=""EDIFACT_AN"">
  3706. <xs:minLength value=""1"" />
  3707. <xs:maxLength value=""3"" />
  3708. </xs:restriction>
  3709. </xs:simpleType>
  3710. </xs:element>
  3711. </xs:sequence>
  3712. </xs:complexType>
  3713. </xs:element>
  3714. <xs:element name=""C601"">
  3715. <xs:annotation>
  3716. <xs:appinfo>
  3717. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS TYPE"" />
  3718. </xs:appinfo>
  3719. </xs:annotation>
  3720. <xs:complexType>
  3721. <xs:sequence>
  3722. <xs:element name=""C60101"" type=""EDIFACT_ID_9015"">
  3723. <xs:annotation>
  3724. <xs:appinfo>
  3725. <b:fieldInfo notes=""Status type, coded_9015"" />
  3726. </xs:appinfo>
  3727. </xs:annotation>
  3728. </xs:element>
  3729. <xs:element minOccurs=""0"" name=""C60102"" type=""EDIFACT_ID_1131"">
  3730. <xs:annotation>
  3731. <xs:appinfo>
  3732. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3733. </xs:appinfo>
  3734. </xs:annotation>
  3735. </xs:element>
  3736. <xs:element minOccurs=""0"" name=""C60103"" type=""EDIFACT_ID_3055"">
  3737. <xs:annotation>
  3738. <xs:appinfo>
  3739. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3740. </xs:appinfo>
  3741. </xs:annotation>
  3742. </xs:element>
  3743. </xs:sequence>
  3744. </xs:complexType>
  3745. </xs:element>
  3746. <xs:element name=""C555"">
  3747. <xs:annotation>
  3748. <xs:appinfo>
  3749. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS EVENT"" />
  3750. </xs:appinfo>
  3751. </xs:annotation>
  3752. <xs:complexType>
  3753. <xs:sequence>
  3754. <xs:element name=""C55501"" type=""EDIFACT_ID_9011"">
  3755. <xs:annotation>
  3756. <xs:appinfo>
  3757. <b:fieldInfo notes=""Status event, coded_9011"" />
  3758. </xs:appinfo>
  3759. </xs:annotation>
  3760. </xs:element>
  3761. <xs:element minOccurs=""0"" name=""C55502"" type=""EDIFACT_ID_1131"">
  3762. <xs:annotation>
  3763. <xs:appinfo>
  3764. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3765. </xs:appinfo>
  3766. </xs:annotation>
  3767. </xs:element>
  3768. <xs:element minOccurs=""0"" name=""C55503"" type=""EDIFACT_ID_3055"">
  3769. <xs:annotation>
  3770. <xs:appinfo>
  3771. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3772. </xs:appinfo>
  3773. </xs:annotation>
  3774. </xs:element>
  3775. <xs:element minOccurs=""0"" name=""C55504"">
  3776. <xs:annotation>
  3777. <xs:appinfo>
  3778. <b:fieldInfo notes=""Status event_9010"" />
  3779. </xs:appinfo>
  3780. </xs:annotation>
  3781. <xs:simpleType>
  3782. <xs:restriction base=""EDIFACT_AN"">
  3783. <xs:minLength value=""1"" />
  3784. <xs:maxLength value=""35"" />
  3785. </xs:restriction>
  3786. </xs:simpleType>
  3787. </xs:element>
  3788. </xs:sequence>
  3789. </xs:complexType>
  3790. </xs:element>
  3791. <xs:element name=""C556"">
  3792. <xs:annotation>
  3793. <xs:appinfo>
  3794. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  3795. </xs:appinfo>
  3796. </xs:annotation>
  3797. <xs:complexType>
  3798. <xs:sequence>
  3799. <xs:element name=""C55601"" type=""EDIFACT_ID_9013"">
  3800. <xs:annotation>
  3801. <xs:appinfo>
  3802. <b:fieldInfo notes=""Status reason, coded_9013"" />
  3803. </xs:appinfo>
  3804. </xs:annotation>
  3805. </xs:element>
  3806. <xs:element minOccurs=""0"" name=""C55602"" type=""EDIFACT_ID_1131"">
  3807. <xs:annotation>
  3808. <xs:appinfo>
  3809. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3810. </xs:appinfo>
  3811. </xs:annotation>
  3812. </xs:element>
  3813. <xs:element minOccurs=""0"" name=""C55603"" type=""EDIFACT_ID_3055"">
  3814. <xs:annotation>
  3815. <xs:appinfo>
  3816. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3817. </xs:appinfo>
  3818. </xs:annotation>
  3819. </xs:element>
  3820. <xs:element minOccurs=""0"" name=""C55604"">
  3821. <xs:annotation>
  3822. <xs:appinfo>
  3823. <b:fieldInfo notes=""Status reason_9012"" />
  3824. </xs:appinfo>
  3825. </xs:annotation>
  3826. <xs:simpleType>
  3827. <xs:restriction base=""EDIFACT_AN"">
  3828. <xs:minLength value=""1"" />
  3829. <xs:maxLength value=""35"" />
  3830. </xs:restriction>
  3831. </xs:simpleType>
  3832. </xs:element>
  3833. </xs:sequence>
  3834. </xs:complexType>
  3835. </xs:element>
  3836. <xs:element name=""C556_2"">
  3837. <xs:annotation>
  3838. <xs:appinfo>
  3839. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  3840. </xs:appinfo>
  3841. </xs:annotation>
  3842. <xs:complexType>
  3843. <xs:sequence>
  3844. <xs:element name=""C55601"" type=""EDIFACT_ID_9013"">
  3845. <xs:annotation>
  3846. <xs:appinfo>
  3847. <b:fieldInfo notes=""Status reason, coded_9013"" />
  3848. </xs:appinfo>
  3849. </xs:annotation>
  3850. </xs:element>
  3851. <xs:element minOccurs=""0"" name=""C55602"" type=""EDIFACT_ID_1131"">
  3852. <xs:annotation>
  3853. <xs:appinfo>
  3854. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3855. </xs:appinfo>
  3856. </xs:annotation>
  3857. </xs:element>
  3858. <xs:element minOccurs=""0"" name=""C55603"" type=""EDIFACT_ID_3055"">
  3859. <xs:annotation>
  3860. <xs:appinfo>
  3861. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3862. </xs:appinfo>
  3863. </xs:annotation>
  3864. </xs:element>
  3865. <xs:element minOccurs=""0"" name=""C55604"">
  3866. <xs:annotation>
  3867. <xs:appinfo>
  3868. <b:fieldInfo notes=""Status reason_9012"" />
  3869. </xs:appinfo>
  3870. </xs:annotation>
  3871. <xs:simpleType>
  3872. <xs:restriction base=""EDIFACT_AN"">
  3873. <xs:minLength value=""1"" />
  3874. <xs:maxLength value=""35"" />
  3875. </xs:restriction>
  3876. </xs:simpleType>
  3877. </xs:element>
  3878. </xs:sequence>
  3879. </xs:complexType>
  3880. </xs:element>
  3881. <xs:element name=""C556_3"">
  3882. <xs:annotation>
  3883. <xs:appinfo>
  3884. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  3885. </xs:appinfo>
  3886. </xs:annotation>
  3887. <xs:complexType>
  3888. <xs:sequence>
  3889. <xs:element name=""C55601"" type=""EDIFACT_ID_9013"">
  3890. <xs:annotation>
  3891. <xs:appinfo>
  3892. <b:fieldInfo notes=""Status reason, coded_9013"" />
  3893. </xs:appinfo>
  3894. </xs:annotation>
  3895. </xs:element>
  3896. <xs:element minOccurs=""0"" name=""C55602"" type=""EDIFACT_ID_1131"">
  3897. <xs:annotation>
  3898. <xs:appinfo>
  3899. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3900. </xs:appinfo>
  3901. </xs:annotation>
  3902. </xs:element>
  3903. <xs:element minOccurs=""0"" name=""C55603"" type=""EDIFACT_ID_3055"">
  3904. <xs:annotation>
  3905. <xs:appinfo>
  3906. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3907. </xs:appinfo>
  3908. </xs:annotation>
  3909. </xs:element>
  3910. <xs:element minOccurs=""0"" name=""C55604"">
  3911. <xs:annotation>
  3912. <xs:appinfo>
  3913. <b:fieldInfo notes=""Status reason_9012"" />
  3914. </xs:appinfo>
  3915. </xs:annotation>
  3916. <xs:simpleType>
  3917. <xs:restriction base=""EDIFACT_AN"">
  3918. <xs:minLength value=""1"" />
  3919. <xs:maxLength value=""35"" />
  3920. </xs:restriction>
  3921. </xs:simpleType>
  3922. </xs:element>
  3923. </xs:sequence>
  3924. </xs:complexType>
  3925. </xs:element>
  3926. <xs:element name=""C556_4"">
  3927. <xs:annotation>
  3928. <xs:appinfo>
  3929. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  3930. </xs:appinfo>
  3931. </xs:annotation>
  3932. <xs:complexType>
  3933. <xs:sequence>
  3934. <xs:element name=""C55601"" type=""EDIFACT_ID_9013"">
  3935. <xs:annotation>
  3936. <xs:appinfo>
  3937. <b:fieldInfo notes=""Status reason, coded_9013"" />
  3938. </xs:appinfo>
  3939. </xs:annotation>
  3940. </xs:element>
  3941. <xs:element minOccurs=""0"" name=""C55602"" type=""EDIFACT_ID_1131"">
  3942. <xs:annotation>
  3943. <xs:appinfo>
  3944. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3945. </xs:appinfo>
  3946. </xs:annotation>
  3947. </xs:element>
  3948. <xs:element minOccurs=""0"" name=""C55603"" type=""EDIFACT_ID_3055"">
  3949. <xs:annotation>
  3950. <xs:appinfo>
  3951. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3952. </xs:appinfo>
  3953. </xs:annotation>
  3954. </xs:element>
  3955. <xs:element minOccurs=""0"" name=""C55604"">
  3956. <xs:annotation>
  3957. <xs:appinfo>
  3958. <b:fieldInfo notes=""Status reason_9012"" />
  3959. </xs:appinfo>
  3960. </xs:annotation>
  3961. <xs:simpleType>
  3962. <xs:restriction base=""EDIFACT_AN"">
  3963. <xs:minLength value=""1"" />
  3964. <xs:maxLength value=""35"" />
  3965. </xs:restriction>
  3966. </xs:simpleType>
  3967. </xs:element>
  3968. </xs:sequence>
  3969. </xs:complexType>
  3970. </xs:element>
  3971. <xs:element name=""C556_5"">
  3972. <xs:annotation>
  3973. <xs:appinfo>
  3974. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STATUS REASON"" />
  3975. </xs:appinfo>
  3976. </xs:annotation>
  3977. <xs:complexType>
  3978. <xs:sequence>
  3979. <xs:element name=""C55601"" type=""EDIFACT_ID_9013"">
  3980. <xs:annotation>
  3981. <xs:appinfo>
  3982. <b:fieldInfo notes=""Status reason, coded_9013"" />
  3983. </xs:appinfo>
  3984. </xs:annotation>
  3985. </xs:element>
  3986. <xs:element minOccurs=""0"" name=""C55602"" type=""EDIFACT_ID_1131"">
  3987. <xs:annotation>
  3988. <xs:appinfo>
  3989. <b:fieldInfo notes=""Code list qualifier_1131"" />
  3990. </xs:appinfo>
  3991. </xs:annotation>
  3992. </xs:element>
  3993. <xs:element minOccurs=""0"" name=""C55603"" type=""EDIFACT_ID_3055"">
  3994. <xs:annotation>
  3995. <xs:appinfo>
  3996. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  3997. </xs:appinfo>
  3998. </xs:annotation>
  3999. </xs:element>
  4000. <xs:element minOccurs=""0"" name=""C55604"">
  4001. <xs:annotation>
  4002. <xs:appinfo>
  4003. <b:fieldInfo notes=""Status reason_9012"" />
  4004. </xs:appinfo>
  4005. </xs:annotation>
  4006. <xs:simpleType>
  4007. <xs:restriction base=""EDIFACT_AN"">
  4008. <xs:minLength value=""1"" />
  4009. <xs:maxLength value=""35"" />
  4010. </xs:restriction>
  4011. </xs:simpleType>
  4012. </xs:element>
  4013. </xs:sequence>
  4014. </xs:complexType>
  4015. </xs:element>
  4016. <xs:element name=""C506_2"">
  4017. <xs:annotation>
  4018. <xs:appinfo>
  4019. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  4020. </xs:appinfo>
  4021. </xs:annotation>
  4022. <xs:complexType>
  4023. <xs:sequence>
  4024. <xs:element name=""C50601"" type=""EDIFACT_ID_1153"">
  4025. <xs:annotation>
  4026. <xs:appinfo>
  4027. <b:fieldInfo notes=""Reference qualifier_1153"" />
  4028. </xs:appinfo>
  4029. </xs:annotation>
  4030. </xs:element>
  4031. <xs:element minOccurs=""0"" name=""C50602"">
  4032. <xs:annotation>
  4033. <xs:appinfo>
  4034. <b:fieldInfo notes=""Reference number_1154"" />
  4035. </xs:appinfo>
  4036. </xs:annotation>
  4037. <xs:simpleType>
  4038. <xs:restriction base=""EDIFACT_AN"">
  4039. <xs:minLength value=""1"" />
  4040. <xs:maxLength value=""35"" />
  4041. </xs:restriction>
  4042. </xs:simpleType>
  4043. </xs:element>
  4044. <xs:element minOccurs=""0"" name=""C50603"">
  4045. <xs:annotation>
  4046. <xs:appinfo>
  4047. <b:fieldInfo notes=""Line number_1156"" />
  4048. </xs:appinfo>
  4049. </xs:annotation>
  4050. <xs:simpleType>
  4051. <xs:restriction base=""EDIFACT_AN"">
  4052. <xs:minLength value=""1"" />
  4053. <xs:maxLength value=""6"" />
  4054. </xs:restriction>
  4055. </xs:simpleType>
  4056. </xs:element>
  4057. <xs:element minOccurs=""0"" name=""C50604"">
  4058. <xs:annotation>
  4059. <xs:appinfo>
  4060. <b:fieldInfo notes=""Reference version number_4000"" />
  4061. </xs:appinfo>
  4062. </xs:annotation>
  4063. <xs:simpleType>
  4064. <xs:restriction base=""EDIFACT_AN"">
  4065. <xs:minLength value=""1"" />
  4066. <xs:maxLength value=""35"" />
  4067. </xs:restriction>
  4068. </xs:simpleType>
  4069. </xs:element>
  4070. </xs:sequence>
  4071. </xs:complexType>
  4072. </xs:element>
  4073. <xs:element name=""C507_3"">
  4074. <xs:annotation>
  4075. <xs:appinfo>
  4076. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  4077. </xs:appinfo>
  4078. </xs:annotation>
  4079. <xs:complexType>
  4080. <xs:sequence>
  4081. <xs:element name=""C50701"" type=""EDIFACT_ID_2005"">
  4082. <xs:annotation>
  4083. <xs:appinfo>
  4084. <b:fieldInfo notes=""Date/time/period qualifier_2005"" />
  4085. </xs:appinfo>
  4086. </xs:annotation>
  4087. </xs:element>
  4088. <xs:element minOccurs=""0"" name=""C50702"">
  4089. <xs:annotation>
  4090. <xs:appinfo>
  4091. <b:fieldInfo notes=""Date/time/period_2380"" />
  4092. </xs:appinfo>
  4093. </xs:annotation>
  4094. <xs:simpleType>
  4095. <xs:restriction base=""EDIFACT_AN"">
  4096. <xs:minLength value=""1"" />
  4097. <xs:maxLength value=""35"" />
  4098. </xs:restriction>
  4099. </xs:simpleType>
  4100. </xs:element>
  4101. <xs:element minOccurs=""0"" name=""C50703"" type=""EDIFACT_ID_2379"">
  4102. <xs:annotation>
  4103. <xs:appinfo>
  4104. <b:fieldInfo notes=""Date/time/period format qualifier_2379"" />
  4105. </xs:appinfo>
  4106. </xs:annotation>
  4107. </xs:element>
  4108. </xs:sequence>
  4109. </xs:complexType>
  4110. </xs:element>
  4111. <xs:element name=""C002_2"">
  4112. <xs:annotation>
  4113. <xs:appinfo>
  4114. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE NAME"" />
  4115. </xs:appinfo>
  4116. </xs:annotation>
  4117. <xs:complexType>
  4118. <xs:sequence>
  4119. <xs:element minOccurs=""0"" name=""C00201"" type=""EDIFACT_ID_1001"">
  4120. <xs:annotation>
  4121. <xs:appinfo>
  4122. <b:fieldInfo notes=""Document/message name, coded_1001"" />
  4123. </xs:appinfo>
  4124. </xs:annotation>
  4125. </xs:element>
  4126. <xs:element minOccurs=""0"" name=""C00202"" type=""EDIFACT_ID_1131"">
  4127. <xs:annotation>
  4128. <xs:appinfo>
  4129. <b:fieldInfo notes=""Code list qualifier_1131"" />
  4130. </xs:appinfo>
  4131. </xs:annotation>
  4132. </xs:element>
  4133. <xs:element minOccurs=""0"" name=""C00203"" type=""EDIFACT_ID_3055"">
  4134. <xs:annotation>
  4135. <xs:appinfo>
  4136. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  4137. </xs:appinfo>
  4138. </xs:annotation>
  4139. </xs:element>
  4140. <xs:element minOccurs=""0"" name=""C00204"">
  4141. <xs:annotation>
  4142. <xs:appinfo>
  4143. <b:fieldInfo notes=""Document/message name_1000"" />
  4144. </xs:appinfo>
  4145. </xs:annotation>
  4146. <xs:simpleType>
  4147. <xs:restriction base=""EDIFACT_AN"">
  4148. <xs:minLength value=""1"" />
  4149. <xs:maxLength value=""35"" />
  4150. </xs:restriction>
  4151. </xs:simpleType>
  4152. </xs:element>
  4153. </xs:sequence>
  4154. </xs:complexType>
  4155. </xs:element>
  4156. <xs:element name=""C503_2"">
  4157. <xs:annotation>
  4158. <xs:appinfo>
  4159. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DOCUMENT/MESSAGE DETAILS"" />
  4160. </xs:appinfo>
  4161. </xs:annotation>
  4162. <xs:complexType>
  4163. <xs:sequence>
  4164. <xs:element minOccurs=""0"" name=""C50301"">
  4165. <xs:annotation>
  4166. <xs:appinfo>
  4167. <b:fieldInfo notes=""Document/message number_1004"" />
  4168. </xs:appinfo>
  4169. </xs:annotation>
  4170. <xs:simpleType>
  4171. <xs:restriction base=""EDIFACT_AN"">
  4172. <xs:minLength value=""1"" />
  4173. <xs:maxLength value=""35"" />
  4174. </xs:restriction>
  4175. </xs:simpleType>
  4176. </xs:element>
  4177. <xs:element minOccurs=""0"" name=""C50302"" type=""EDIFACT_ID_1373"">
  4178. <xs:annotation>
  4179. <xs:appinfo>
  4180. <b:fieldInfo notes=""Document/message status, coded_1373"" />
  4181. </xs:appinfo>
  4182. </xs:annotation>
  4183. </xs:element>
  4184. <xs:element minOccurs=""0"" name=""C50303"">
  4185. <xs:annotation>
  4186. <xs:appinfo>
  4187. <b:fieldInfo notes=""Document/message source_1366"" />
  4188. </xs:appinfo>
  4189. </xs:annotation>
  4190. <xs:simpleType>
  4191. <xs:restriction base=""EDIFACT_AN"">
  4192. <xs:minLength value=""1"" />
  4193. <xs:maxLength value=""35"" />
  4194. </xs:restriction>
  4195. </xs:simpleType>
  4196. </xs:element>
  4197. <xs:element minOccurs=""0"" name=""C50304"">
  4198. <xs:annotation>
  4199. <xs:appinfo>
  4200. <b:fieldInfo notes=""Language, coded_3453"" />
  4201. </xs:appinfo>
  4202. </xs:annotation>
  4203. <xs:simpleType>
  4204. <xs:restriction base=""EDIFACT_AN"">
  4205. <xs:minLength value=""1"" />
  4206. <xs:maxLength value=""3"" />
  4207. </xs:restriction>
  4208. </xs:simpleType>
  4209. </xs:element>
  4210. </xs:sequence>
  4211. </xs:complexType>
  4212. </xs:element>
  4213. <xs:element name=""C107_2"">
  4214. <xs:annotation>
  4215. <xs:appinfo>
  4216. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TEXT REFERENCE"" />
  4217. </xs:appinfo>
  4218. </xs:annotation>
  4219. <xs:complexType>
  4220. <xs:sequence>
  4221. <xs:element name=""C10701"">
  4222. <xs:annotation>
  4223. <xs:appinfo>
  4224. <b:fieldInfo notes=""Free text, coded_4441"" />
  4225. </xs:appinfo>
  4226. </xs:annotation>
  4227. <xs:simpleType>
  4228. <xs:restriction base=""EDIFACT_AN"">
  4229. <xs:minLength value=""1"" />
  4230. <xs:maxLength value=""3"" />
  4231. </xs:restriction>
  4232. </xs:simpleType>
  4233. </xs:element>
  4234. <xs:element minOccurs=""0"" name=""C10702"" type=""EDIFACT_ID_1131"">
  4235. <xs:annotation>
  4236. <xs:appinfo>
  4237. <b:fieldInfo notes=""Code list qualifier_1131"" />
  4238. </xs:appinfo>
  4239. </xs:annotation>
  4240. </xs:element>
  4241. <xs:element minOccurs=""0"" name=""C10703"" type=""EDIFACT_ID_3055"">
  4242. <xs:annotation>
  4243. <xs:appinfo>
  4244. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  4245. </xs:appinfo>
  4246. </xs:annotation>
  4247. </xs:element>
  4248. </xs:sequence>
  4249. </xs:complexType>
  4250. </xs:element>
  4251. <xs:element name=""C108_2"">
  4252. <xs:annotation>
  4253. <xs:appinfo>
  4254. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TEXT LITERAL"" />
  4255. </xs:appinfo>
  4256. </xs:annotation>
  4257. <xs:complexType>
  4258. <xs:sequence>
  4259. <xs:element name=""C10801"">
  4260. <xs:annotation>
  4261. <xs:appinfo>
  4262. <b:fieldInfo notes=""Free text_4440"" />
  4263. </xs:appinfo>
  4264. </xs:annotation>
  4265. <xs:simpleType>
  4266. <xs:restriction base=""EDIFACT_AN"">
  4267. <xs:minLength value=""1"" />
  4268. <xs:maxLength value=""70"" />
  4269. </xs:restriction>
  4270. </xs:simpleType>
  4271. </xs:element>
  4272. <xs:element minOccurs=""0"" name=""C10802"">
  4273. <xs:annotation>
  4274. <xs:appinfo>
  4275. <b:fieldInfo notes=""Free text_4440"" />
  4276. </xs:appinfo>
  4277. </xs:annotation>
  4278. <xs:simpleType>
  4279. <xs:restriction base=""EDIFACT_AN"">
  4280. <xs:minLength value=""1"" />
  4281. <xs:maxLength value=""70"" />
  4282. </xs:restriction>
  4283. </xs:simpleType>
  4284. </xs:element>
  4285. <xs:element minOccurs=""0"" name=""C10803"">
  4286. <xs:annotation>
  4287. <xs:appinfo>
  4288. <b:fieldInfo notes=""Free text_4440"" />
  4289. </xs:appinfo>
  4290. </xs:annotation>
  4291. <xs:simpleType>
  4292. <xs:restriction base=""EDIFACT_AN"">
  4293. <xs:minLength value=""1"" />
  4294. <xs:maxLength value=""70"" />
  4295. </xs:restriction>
  4296. </xs:simpleType>
  4297. </xs:element>
  4298. <xs:element minOccurs=""0"" name=""C10804"">
  4299. <xs:annotation>
  4300. <xs:appinfo>
  4301. <b:fieldInfo notes=""Free text_4440"" />
  4302. </xs:appinfo>
  4303. </xs:annotation>
  4304. <xs:simpleType>
  4305. <xs:restriction base=""EDIFACT_AN"">
  4306. <xs:minLength value=""1"" />
  4307. <xs:maxLength value=""70"" />
  4308. </xs:restriction>
  4309. </xs:simpleType>
  4310. </xs:element>
  4311. <xs:element minOccurs=""0"" name=""C10805"">
  4312. <xs:annotation>
  4313. <xs:appinfo>
  4314. <b:fieldInfo notes=""Free text_4440"" />
  4315. </xs:appinfo>
  4316. </xs:annotation>
  4317. <xs:simpleType>
  4318. <xs:restriction base=""EDIFACT_AN"">
  4319. <xs:minLength value=""1"" />
  4320. <xs:maxLength value=""70"" />
  4321. </xs:restriction>
  4322. </xs:simpleType>
  4323. </xs:element>
  4324. </xs:sequence>
  4325. </xs:complexType>
  4326. </xs:element>
  4327. <xs:element name=""C082_2"">
  4328. <xs:annotation>
  4329. <xs:appinfo>
  4330. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PARTY IDENTIFICATION DETAILS"" />
  4331. </xs:appinfo>
  4332. </xs:annotation>
  4333. <xs:complexType>
  4334. <xs:sequence>
  4335. <xs:element name=""C08201"">
  4336. <xs:annotation>
  4337. <xs:appinfo>
  4338. <b:fieldInfo notes=""Party id. identification_3039"" />
  4339. </xs:appinfo>
  4340. </xs:annotation>
  4341. <xs:simpleType>
  4342. <xs:restriction base=""EDIFACT_AN"">
  4343. <xs:minLength value=""1"" />
  4344. <xs:maxLength value=""35"" />
  4345. </xs:restriction>
  4346. </xs:simpleType>
  4347. </xs:element>
  4348. <xs:element minOccurs=""0"" name=""C08202"" type=""EDIFACT_ID_1131"">
  4349. <xs:annotation>
  4350. <xs:appinfo>
  4351. <b:fieldInfo notes=""Code list qualifier_1131"" />
  4352. </xs:appinfo>
  4353. </xs:annotation>
  4354. </xs:element>
  4355. <xs:element minOccurs=""0"" name=""C08203"" type=""EDIFACT_ID_3055"">
  4356. <xs:annotation>
  4357. <xs:appinfo>
  4358. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  4359. </xs:appinfo>
  4360. </xs:annotation>
  4361. </xs:element>
  4362. </xs:sequence>
  4363. </xs:complexType>
  4364. </xs:element>
  4365. <xs:element name=""C058_2"">
  4366. <xs:annotation>
  4367. <xs:appinfo>
  4368. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NAME AND ADDRESS"" />
  4369. </xs:appinfo>
  4370. </xs:annotation>
  4371. <xs:complexType>
  4372. <xs:sequence>
  4373. <xs:element name=""C05801"">
  4374. <xs:annotation>
  4375. <xs:appinfo>
  4376. <b:fieldInfo notes=""Name and address line_3124"" />
  4377. </xs:appinfo>
  4378. </xs:annotation>
  4379. <xs:simpleType>
  4380. <xs:restriction base=""EDIFACT_AN"">
  4381. <xs:minLength value=""1"" />
  4382. <xs:maxLength value=""35"" />
  4383. </xs:restriction>
  4384. </xs:simpleType>
  4385. </xs:element>
  4386. <xs:element minOccurs=""0"" name=""C05802"">
  4387. <xs:annotation>
  4388. <xs:appinfo>
  4389. <b:fieldInfo notes=""Name and address line_3124"" />
  4390. </xs:appinfo>
  4391. </xs:annotation>
  4392. <xs:simpleType>
  4393. <xs:restriction base=""EDIFACT_AN"">
  4394. <xs:minLength value=""1"" />
  4395. <xs:maxLength value=""35"" />
  4396. </xs:restriction>
  4397. </xs:simpleType>
  4398. </xs:element>
  4399. <xs:element minOccurs=""0"" name=""C05803"">
  4400. <xs:annotation>
  4401. <xs:appinfo>
  4402. <b:fieldInfo notes=""Name and address line_3124"" />
  4403. </xs:appinfo>
  4404. </xs:annotation>
  4405. <xs:simpleType>
  4406. <xs:restriction base=""EDIFACT_AN"">
  4407. <xs:minLength value=""1"" />
  4408. <xs:maxLength value=""35"" />
  4409. </xs:restriction>
  4410. </xs:simpleType>
  4411. </xs:element>
  4412. <xs:element minOccurs=""0"" name=""C05804"">
  4413. <xs:annotation>
  4414. <xs:appinfo>
  4415. <b:fieldInfo notes=""Name and address line_3124"" />
  4416. </xs:appinfo>
  4417. </xs:annotation>
  4418. <xs:simpleType>
  4419. <xs:restriction base=""EDIFACT_AN"">
  4420. <xs:minLength value=""1"" />
  4421. <xs:maxLength value=""35"" />
  4422. </xs:restriction>
  4423. </xs:simpleType>
  4424. </xs:element>
  4425. <xs:element minOccurs=""0"" name=""C05805"">
  4426. <xs:annotation>
  4427. <xs:appinfo>
  4428. <b:fieldInfo notes=""Name and address line_3124"" />
  4429. </xs:appinfo>
  4430. </xs:annotation>
  4431. <xs:simpleType>
  4432. <xs:restriction base=""EDIFACT_AN"">
  4433. <xs:minLength value=""1"" />
  4434. <xs:maxLength value=""35"" />
  4435. </xs:restriction>
  4436. </xs:simpleType>
  4437. </xs:element>
  4438. </xs:sequence>
  4439. </xs:complexType>
  4440. </xs:element>
  4441. <xs:element name=""C080_2"">
  4442. <xs:annotation>
  4443. <xs:appinfo>
  4444. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""PARTY NAME"" />
  4445. </xs:appinfo>
  4446. </xs:annotation>
  4447. <xs:complexType>
  4448. <xs:sequence>
  4449. <xs:element name=""C08001"">
  4450. <xs:annotation>
  4451. <xs:appinfo>
  4452. <b:fieldInfo notes=""Party name_3036"" />
  4453. </xs:appinfo>
  4454. </xs:annotation>
  4455. <xs:simpleType>
  4456. <xs:restriction base=""EDIFACT_AN"">
  4457. <xs:minLength value=""1"" />
  4458. <xs:maxLength value=""35"" />
  4459. </xs:restriction>
  4460. </xs:simpleType>
  4461. </xs:element>
  4462. <xs:element minOccurs=""0"" name=""C08002"">
  4463. <xs:annotation>
  4464. <xs:appinfo>
  4465. <b:fieldInfo notes=""Party name_3036"" />
  4466. </xs:appinfo>
  4467. </xs:annotation>
  4468. <xs:simpleType>
  4469. <xs:restriction base=""EDIFACT_AN"">
  4470. <xs:minLength value=""1"" />
  4471. <xs:maxLength value=""35"" />
  4472. </xs:restriction>
  4473. </xs:simpleType>
  4474. </xs:element>
  4475. <xs:element minOccurs=""0"" name=""C08003"">
  4476. <xs:annotation>
  4477. <xs:appinfo>
  4478. <b:fieldInfo notes=""Party name_3036"" />
  4479. </xs:appinfo>
  4480. </xs:annotation>
  4481. <xs:simpleType>
  4482. <xs:restriction base=""EDIFACT_AN"">
  4483. <xs:minLength value=""1"" />
  4484. <xs:maxLength value=""35"" />
  4485. </xs:restriction>
  4486. </xs:simpleType>
  4487. </xs:element>
  4488. <xs:element minOccurs=""0"" name=""C08004"">
  4489. <xs:annotation>
  4490. <xs:appinfo>
  4491. <b:fieldInfo notes=""Party name_3036"" />
  4492. </xs:appinfo>
  4493. </xs:annotation>
  4494. <xs:simpleType>
  4495. <xs:restriction base=""EDIFACT_AN"">
  4496. <xs:minLength value=""1"" />
  4497. <xs:maxLength value=""35"" />
  4498. </xs:restriction>
  4499. </xs:simpleType>
  4500. </xs:element>
  4501. <xs:element minOccurs=""0"" name=""C08005"">
  4502. <xs:annotation>
  4503. <xs:appinfo>
  4504. <b:fieldInfo notes=""Party name_3036"" />
  4505. </xs:appinfo>
  4506. </xs:annotation>
  4507. <xs:simpleType>
  4508. <xs:restriction base=""EDIFACT_AN"">
  4509. <xs:minLength value=""1"" />
  4510. <xs:maxLength value=""35"" />
  4511. </xs:restriction>
  4512. </xs:simpleType>
  4513. </xs:element>
  4514. <xs:element minOccurs=""0"" name=""C08006"" type=""EDIFACT_ID_3045"">
  4515. <xs:annotation>
  4516. <xs:appinfo>
  4517. <b:fieldInfo notes=""Party name format, coded_3045"" />
  4518. </xs:appinfo>
  4519. </xs:annotation>
  4520. </xs:element>
  4521. </xs:sequence>
  4522. </xs:complexType>
  4523. </xs:element>
  4524. <xs:element name=""C059_2"">
  4525. <xs:annotation>
  4526. <xs:appinfo>
  4527. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""STREET"" />
  4528. </xs:appinfo>
  4529. </xs:annotation>
  4530. <xs:complexType>
  4531. <xs:sequence>
  4532. <xs:element name=""C05901"">
  4533. <xs:annotation>
  4534. <xs:appinfo>
  4535. <b:fieldInfo notes=""Street and number/p.o. box_3042"" />
  4536. </xs:appinfo>
  4537. </xs:annotation>
  4538. <xs:simpleType>
  4539. <xs:restriction base=""EDIFACT_AN"">
  4540. <xs:minLength value=""1"" />
  4541. <xs:maxLength value=""35"" />
  4542. </xs:restriction>
  4543. </xs:simpleType>
  4544. </xs:element>
  4545. <xs:element minOccurs=""0"" name=""C05902"">
  4546. <xs:annotation>
  4547. <xs:appinfo>
  4548. <b:fieldInfo notes=""Street and number/p.o. box_3042"" />
  4549. </xs:appinfo>
  4550. </xs:annotation>
  4551. <xs:simpleType>
  4552. <xs:restriction base=""EDIFACT_AN"">
  4553. <xs:minLength value=""1"" />
  4554. <xs:maxLength value=""35"" />
  4555. </xs:restriction>
  4556. </xs:simpleType>
  4557. </xs:element>
  4558. <xs:element minOccurs=""0"" name=""C05903"">
  4559. <xs:annotation>
  4560. <xs:appinfo>
  4561. <b:fieldInfo notes=""Street and number/p.o. box_3042"" />
  4562. </xs:appinfo>
  4563. </xs:annotation>
  4564. <xs:simpleType>
  4565. <xs:restriction base=""EDIFACT_AN"">
  4566. <xs:minLength value=""1"" />
  4567. <xs:maxLength value=""35"" />
  4568. </xs:restriction>
  4569. </xs:simpleType>
  4570. </xs:element>
  4571. <xs:element minOccurs=""0"" name=""C05904"">
  4572. <xs:annotation>
  4573. <xs:appinfo>
  4574. <b:fieldInfo notes=""Street and number/p.o. box_3042"" />
  4575. </xs:appinfo>
  4576. </xs:annotation>
  4577. <xs:simpleType>
  4578. <xs:restriction base=""EDIFACT_AN"">
  4579. <xs:minLength value=""1"" />
  4580. <xs:maxLength value=""35"" />
  4581. </xs:restriction>
  4582. </xs:simpleType>
  4583. </xs:element>
  4584. </xs:sequence>
  4585. </xs:complexType>
  4586. </xs:element>
  4587. <xs:element name=""C517_3"">
  4588. <xs:annotation>
  4589. <xs:appinfo>
  4590. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""LOCATION IDENTIFICATION"" />
  4591. </xs:appinfo>
  4592. </xs:annotation>
  4593. <xs:complexType>
  4594. <xs:sequence>
  4595. <xs:element minOccurs=""0"" name=""C51701"">
  4596. <xs:annotation>
  4597. <xs:appinfo>
  4598. <b:fieldInfo notes=""Place/location identification_3225"" />
  4599. </xs:appinfo>
  4600. </xs:annotation>
  4601. <xs:simpleType>
  4602. <xs:restriction base=""EDIFACT_AN"">
  4603. <xs:minLength value=""1"" />
  4604. <xs:maxLength value=""25"" />
  4605. </xs:restriction>
  4606. </xs:simpleType>
  4607. </xs:element>
  4608. <xs:element minOccurs=""0"" name=""C51702"" type=""EDIFACT_ID_1131"">
  4609. <xs:annotation>
  4610. <xs:appinfo>
  4611. <b:fieldInfo notes=""Code list qualifier_1131"" />
  4612. </xs:appinfo>
  4613. </xs:annotation>
  4614. </xs:element>
  4615. <xs:element minOccurs=""0"" name=""C51703"" type=""EDIFACT_ID_3055"">
  4616. <xs:annotation>
  4617. <xs:appinfo>
  4618. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  4619. </xs:appinfo>
  4620. </xs:annotation>
  4621. </xs:element>
  4622. <xs:element minOccurs=""0"" name=""C51704"">
  4623. <xs:annotation>
  4624. <xs:appinfo>
  4625. <b:fieldInfo notes=""Place/location_3224"" />
  4626. </xs:appinfo>
  4627. </xs:annotation>
  4628. <xs:simpleType>
  4629. <xs:restriction base=""EDIFACT_AN"">
  4630. <xs:minLength value=""1"" />
  4631. <xs:maxLength value=""70"" />
  4632. </xs:restriction>
  4633. </xs:simpleType>
  4634. </xs:element>
  4635. </xs:sequence>
  4636. </xs:complexType>
  4637. </xs:element>
  4638. <xs:element name=""C519_3"">
  4639. <xs:annotation>
  4640. <xs:appinfo>
  4641. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION ONE IDENTIFICATION"" />
  4642. </xs:appinfo>
  4643. </xs:annotation>
  4644. <xs:complexType>
  4645. <xs:sequence>
  4646. <xs:element minOccurs=""0"" name=""C51901"">
  4647. <xs:annotation>
  4648. <xs:appinfo>
  4649. <b:fieldInfo notes=""Related place/location one identification_3223"" />
  4650. </xs:appinfo>
  4651. </xs:annotation>
  4652. <xs:simpleType>
  4653. <xs:restriction base=""EDIFACT_AN"">
  4654. <xs:minLength value=""1"" />
  4655. <xs:maxLength value=""25"" />
  4656. </xs:restriction>
  4657. </xs:simpleType>
  4658. </xs:element>
  4659. <xs:element minOccurs=""0"" name=""C51902"" type=""EDIFACT_ID_1131"">
  4660. <xs:annotation>
  4661. <xs:appinfo>
  4662. <b:fieldInfo notes=""Code list qualifier_1131"" />
  4663. </xs:appinfo>
  4664. </xs:annotation>
  4665. </xs:element>
  4666. <xs:element minOccurs=""0"" name=""C51903"" type=""EDIFACT_ID_3055"">
  4667. <xs:annotation>
  4668. <xs:appinfo>
  4669. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  4670. </xs:appinfo>
  4671. </xs:annotation>
  4672. </xs:element>
  4673. <xs:element minOccurs=""0"" name=""C51904"">
  4674. <xs:annotation>
  4675. <xs:appinfo>
  4676. <b:fieldInfo notes=""Related place/location one_3222"" />
  4677. </xs:appinfo>
  4678. </xs:annotation>
  4679. <xs:simpleType>
  4680. <xs:restriction base=""EDIFACT_AN"">
  4681. <xs:minLength value=""1"" />
  4682. <xs:maxLength value=""70"" />
  4683. </xs:restriction>
  4684. </xs:simpleType>
  4685. </xs:element>
  4686. </xs:sequence>
  4687. </xs:complexType>
  4688. </xs:element>
  4689. <xs:element name=""C553_3"">
  4690. <xs:annotation>
  4691. <xs:appinfo>
  4692. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION TWO IDENTIFICATION"" />
  4693. </xs:appinfo>
  4694. </xs:annotation>
  4695. <xs:complexType>
  4696. <xs:sequence>
  4697. <xs:element minOccurs=""0"" name=""C55301"">
  4698. <xs:annotation>
  4699. <xs:appinfo>
  4700. <b:fieldInfo notes=""Related place/location two identification_3233"" />
  4701. </xs:appinfo>
  4702. </xs:annotation>
  4703. <xs:simpleType>
  4704. <xs:restriction base=""EDIFACT_AN"">
  4705. <xs:minLength value=""1"" />
  4706. <xs:maxLength value=""25"" />
  4707. </xs:restriction>
  4708. </xs:simpleType>
  4709. </xs:element>
  4710. <xs:element minOccurs=""0"" name=""C55302"" type=""EDIFACT_ID_1131"">
  4711. <xs:annotation>
  4712. <xs:appinfo>
  4713. <b:fieldInfo notes=""Code list qualifier_1131"" />
  4714. </xs:appinfo>
  4715. </xs:annotation>
  4716. </xs:element>
  4717. <xs:element minOccurs=""0"" name=""C55303"" type=""EDIFACT_ID_3055"">
  4718. <xs:annotation>
  4719. <xs:appinfo>
  4720. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  4721. </xs:appinfo>
  4722. </xs:annotation>
  4723. </xs:element>
  4724. <xs:element minOccurs=""0"" name=""C55304"">
  4725. <xs:annotation>
  4726. <xs:appinfo>
  4727. <b:fieldInfo notes=""Related place/location two_3232"" />
  4728. </xs:appinfo>
  4729. </xs:annotation>
  4730. <xs:simpleType>
  4731. <xs:restriction base=""EDIFACT_AN"">
  4732. <xs:minLength value=""1"" />
  4733. <xs:maxLength value=""70"" />
  4734. </xs:restriction>
  4735. </xs:simpleType>
  4736. </xs:element>
  4737. </xs:sequence>
  4738. </xs:complexType>
  4739. </xs:element>
  4740. <xs:element name=""C210"">
  4741. <xs:annotation>
  4742. <xs:appinfo>
  4743. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MARKS &amp; LABELS"" />
  4744. </xs:appinfo>
  4745. </xs:annotation>
  4746. <xs:complexType>
  4747. <xs:sequence>
  4748. <xs:element name=""C21001"">
  4749. <xs:annotation>
  4750. <xs:appinfo>
  4751. <b:fieldInfo notes=""Shipping marks_7102"" />
  4752. </xs:appinfo>
  4753. </xs:annotation>
  4754. <xs:simpleType>
  4755. <xs:restriction base=""EDIFACT_AN"">
  4756. <xs:minLength value=""1"" />
  4757. <xs:maxLength value=""35"" />
  4758. </xs:restriction>
  4759. </xs:simpleType>
  4760. </xs:element>
  4761. <xs:element minOccurs=""0"" name=""C21002"">
  4762. <xs:annotation>
  4763. <xs:appinfo>
  4764. <b:fieldInfo notes=""Shipping marks_7102"" />
  4765. </xs:appinfo>
  4766. </xs:annotation>
  4767. <xs:simpleType>
  4768. <xs:restriction base=""EDIFACT_AN"">
  4769. <xs:minLength value=""1"" />
  4770. <xs:maxLength value=""35"" />
  4771. </xs:restriction>
  4772. </xs:simpleType>
  4773. </xs:element>
  4774. <xs:element minOccurs=""0"" name=""C21003"">
  4775. <xs:annotation>
  4776. <xs:appinfo>
  4777. <b:fieldInfo notes=""Shipping marks_7102"" />
  4778. </xs:appinfo>
  4779. </xs:annotation>
  4780. <xs:simpleType>
  4781. <xs:restriction base=""EDIFACT_AN"">
  4782. <xs:minLength value=""1"" />
  4783. <xs:maxLength value=""35"" />
  4784. </xs:restriction>
  4785. </xs:simpleType>
  4786. </xs:element>
  4787. <xs:element minOccurs=""0"" name=""C21004"">
  4788. <xs:annotation>
  4789. <xs:appinfo>
  4790. <b:fieldInfo notes=""Shipping marks_7102"" />
  4791. </xs:appinfo>
  4792. </xs:annotation>
  4793. <xs:simpleType>
  4794. <xs:restriction base=""EDIFACT_AN"">
  4795. <xs:minLength value=""1"" />
  4796. <xs:maxLength value=""35"" />
  4797. </xs:restriction>
  4798. </xs:simpleType>
  4799. </xs:element>
  4800. <xs:element minOccurs=""0"" name=""C21005"">
  4801. <xs:annotation>
  4802. <xs:appinfo>
  4803. <b:fieldInfo notes=""Shipping marks_7102"" />
  4804. </xs:appinfo>
  4805. </xs:annotation>
  4806. <xs:simpleType>
  4807. <xs:restriction base=""EDIFACT_AN"">
  4808. <xs:minLength value=""1"" />
  4809. <xs:maxLength value=""35"" />
  4810. </xs:restriction>
  4811. </xs:simpleType>
  4812. </xs:element>
  4813. <xs:element minOccurs=""0"" name=""C21006"">
  4814. <xs:annotation>
  4815. <xs:appinfo>
  4816. <b:fieldInfo notes=""Shipping marks_7102"" />
  4817. </xs:appinfo>
  4818. </xs:annotation>
  4819. <xs:simpleType>
  4820. <xs:restriction base=""EDIFACT_AN"">
  4821. <xs:minLength value=""1"" />
  4822. <xs:maxLength value=""35"" />
  4823. </xs:restriction>
  4824. </xs:simpleType>
  4825. </xs:element>
  4826. <xs:element minOccurs=""0"" name=""C21007"">
  4827. <xs:annotation>
  4828. <xs:appinfo>
  4829. <b:fieldInfo notes=""Shipping marks_7102"" />
  4830. </xs:appinfo>
  4831. </xs:annotation>
  4832. <xs:simpleType>
  4833. <xs:restriction base=""EDIFACT_AN"">
  4834. <xs:minLength value=""1"" />
  4835. <xs:maxLength value=""35"" />
  4836. </xs:restriction>
  4837. </xs:simpleType>
  4838. </xs:element>
  4839. <xs:element minOccurs=""0"" name=""C21008"">
  4840. <xs:annotation>
  4841. <xs:appinfo>
  4842. <b:fieldInfo notes=""Shipping marks_7102"" />
  4843. </xs:appinfo>
  4844. </xs:annotation>
  4845. <xs:simpleType>
  4846. <xs:restriction base=""EDIFACT_AN"">
  4847. <xs:minLength value=""1"" />
  4848. <xs:maxLength value=""35"" />
  4849. </xs:restriction>
  4850. </xs:simpleType>
  4851. </xs:element>
  4852. <xs:element minOccurs=""0"" name=""C21009"">
  4853. <xs:annotation>
  4854. <xs:appinfo>
  4855. <b:fieldInfo notes=""Shipping marks_7102"" />
  4856. </xs:appinfo>
  4857. </xs:annotation>
  4858. <xs:simpleType>
  4859. <xs:restriction base=""EDIFACT_AN"">
  4860. <xs:minLength value=""1"" />
  4861. <xs:maxLength value=""35"" />
  4862. </xs:restriction>
  4863. </xs:simpleType>
  4864. </xs:element>
  4865. <xs:element minOccurs=""0"" name=""C21010"">
  4866. <xs:annotation>
  4867. <xs:appinfo>
  4868. <b:fieldInfo notes=""Shipping marks_7102"" />
  4869. </xs:appinfo>
  4870. </xs:annotation>
  4871. <xs:simpleType>
  4872. <xs:restriction base=""EDIFACT_AN"">
  4873. <xs:minLength value=""1"" />
  4874. <xs:maxLength value=""35"" />
  4875. </xs:restriction>
  4876. </xs:simpleType>
  4877. </xs:element>
  4878. </xs:sequence>
  4879. </xs:complexType>
  4880. </xs:element>
  4881. <xs:element name=""C827"">
  4882. <xs:annotation>
  4883. <xs:appinfo>
  4884. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TYPE OF MARKING"" />
  4885. </xs:appinfo>
  4886. </xs:annotation>
  4887. <xs:complexType>
  4888. <xs:sequence>
  4889. <xs:element name=""C82701"">
  4890. <xs:annotation>
  4891. <xs:appinfo>
  4892. <b:fieldInfo notes=""Type of marking, coded_7511"" />
  4893. </xs:appinfo>
  4894. </xs:annotation>
  4895. <xs:simpleType>
  4896. <xs:restriction base=""EDIFACT_AN"">
  4897. <xs:minLength value=""1"" />
  4898. <xs:maxLength value=""3"" />
  4899. </xs:restriction>
  4900. </xs:simpleType>
  4901. </xs:element>
  4902. <xs:element minOccurs=""0"" name=""C82702"" type=""EDIFACT_ID_1131"">
  4903. <xs:annotation>
  4904. <xs:appinfo>
  4905. <b:fieldInfo notes=""Code list qualifier_1131"" />
  4906. </xs:appinfo>
  4907. </xs:annotation>
  4908. </xs:element>
  4909. <xs:element minOccurs=""0"" name=""C82703"" type=""EDIFACT_ID_3055"">
  4910. <xs:annotation>
  4911. <xs:appinfo>
  4912. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  4913. </xs:appinfo>
  4914. </xs:annotation>
  4915. </xs:element>
  4916. </xs:sequence>
  4917. </xs:complexType>
  4918. </xs:element>
  4919. <xs:element name=""C220"">
  4920. <xs:annotation>
  4921. <xs:appinfo>
  4922. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MODE OF TRANSPORT"" />
  4923. </xs:appinfo>
  4924. </xs:annotation>
  4925. <xs:complexType>
  4926. <xs:sequence>
  4927. <xs:element minOccurs=""0"" name=""C22001"">
  4928. <xs:annotation>
  4929. <xs:appinfo>
  4930. <b:fieldInfo notes=""Mode of transport, coded_8067"" />
  4931. </xs:appinfo>
  4932. </xs:annotation>
  4933. <xs:simpleType>
  4934. <xs:restriction base=""EDIFACT_AN"">
  4935. <xs:minLength value=""1"" />
  4936. <xs:maxLength value=""3"" />
  4937. </xs:restriction>
  4938. </xs:simpleType>
  4939. </xs:element>
  4940. <xs:element minOccurs=""0"" name=""C22002"">
  4941. <xs:annotation>
  4942. <xs:appinfo>
  4943. <b:fieldInfo notes=""Mode of transport_8066"" />
  4944. </xs:appinfo>
  4945. </xs:annotation>
  4946. <xs:simpleType>
  4947. <xs:restriction base=""EDIFACT_AN"">
  4948. <xs:minLength value=""1"" />
  4949. <xs:maxLength value=""17"" />
  4950. </xs:restriction>
  4951. </xs:simpleType>
  4952. </xs:element>
  4953. </xs:sequence>
  4954. </xs:complexType>
  4955. </xs:element>
  4956. <xs:element name=""C228"">
  4957. <xs:annotation>
  4958. <xs:appinfo>
  4959. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TRANSPORT MEANS"" />
  4960. </xs:appinfo>
  4961. </xs:annotation>
  4962. <xs:complexType>
  4963. <xs:sequence>
  4964. <xs:element minOccurs=""0"" name=""C22801"" type=""EDIFACT_ID_8179"">
  4965. <xs:annotation>
  4966. <xs:appinfo>
  4967. <b:fieldInfo notes=""Type of means of transport identification_8179"" />
  4968. </xs:appinfo>
  4969. </xs:annotation>
  4970. </xs:element>
  4971. <xs:element minOccurs=""0"" name=""C22802"">
  4972. <xs:annotation>
  4973. <xs:appinfo>
  4974. <b:fieldInfo notes=""Type of means of transport_8178"" />
  4975. </xs:appinfo>
  4976. </xs:annotation>
  4977. <xs:simpleType>
  4978. <xs:restriction base=""EDIFACT_AN"">
  4979. <xs:minLength value=""1"" />
  4980. <xs:maxLength value=""17"" />
  4981. </xs:restriction>
  4982. </xs:simpleType>
  4983. </xs:element>
  4984. </xs:sequence>
  4985. </xs:complexType>
  4986. </xs:element>
  4987. <xs:element name=""C040"">
  4988. <xs:annotation>
  4989. <xs:appinfo>
  4990. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""CARRIER"" />
  4991. </xs:appinfo>
  4992. </xs:annotation>
  4993. <xs:complexType>
  4994. <xs:sequence>
  4995. <xs:element minOccurs=""0"" name=""C04001"">
  4996. <xs:annotation>
  4997. <xs:appinfo>
  4998. <b:fieldInfo notes=""Carrier identification_3127"" />
  4999. </xs:appinfo>
  5000. </xs:annotation>
  5001. <xs:simpleType>
  5002. <xs:restriction base=""EDIFACT_AN"">
  5003. <xs:minLength value=""1"" />
  5004. <xs:maxLength value=""17"" />
  5005. </xs:restriction>
  5006. </xs:simpleType>
  5007. </xs:element>
  5008. <xs:element minOccurs=""0"" name=""C04002"" type=""EDIFACT_ID_1131"">
  5009. <xs:annotation>
  5010. <xs:appinfo>
  5011. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5012. </xs:appinfo>
  5013. </xs:annotation>
  5014. </xs:element>
  5015. <xs:element minOccurs=""0"" name=""C04003"" type=""EDIFACT_ID_3055"">
  5016. <xs:annotation>
  5017. <xs:appinfo>
  5018. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5019. </xs:appinfo>
  5020. </xs:annotation>
  5021. </xs:element>
  5022. <xs:element minOccurs=""0"" name=""C04004"">
  5023. <xs:annotation>
  5024. <xs:appinfo>
  5025. <b:fieldInfo notes=""Carrier name_3128"" />
  5026. </xs:appinfo>
  5027. </xs:annotation>
  5028. <xs:simpleType>
  5029. <xs:restriction base=""EDIFACT_AN"">
  5030. <xs:minLength value=""1"" />
  5031. <xs:maxLength value=""35"" />
  5032. </xs:restriction>
  5033. </xs:simpleType>
  5034. </xs:element>
  5035. </xs:sequence>
  5036. </xs:complexType>
  5037. </xs:element>
  5038. <xs:element name=""C401"">
  5039. <xs:annotation>
  5040. <xs:appinfo>
  5041. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EXCESS TRANSPORTATION INFORMATION"" />
  5042. </xs:appinfo>
  5043. </xs:annotation>
  5044. <xs:complexType>
  5045. <xs:sequence>
  5046. <xs:element name=""C40101"" type=""EDIFACT_ID_8457"">
  5047. <xs:annotation>
  5048. <xs:appinfo>
  5049. <b:fieldInfo notes=""Excess transportation reason, coded_8457"" />
  5050. </xs:appinfo>
  5051. </xs:annotation>
  5052. </xs:element>
  5053. <xs:element name=""C40102"" type=""EDIFACT_ID_8459"">
  5054. <xs:annotation>
  5055. <xs:appinfo>
  5056. <b:fieldInfo notes=""Excess transportation responsibility, coded_8459"" />
  5057. </xs:appinfo>
  5058. </xs:annotation>
  5059. </xs:element>
  5060. <xs:element minOccurs=""0"" name=""C40103"">
  5061. <xs:annotation>
  5062. <xs:appinfo>
  5063. <b:fieldInfo notes=""Customer authorization number_7130"" />
  5064. </xs:appinfo>
  5065. </xs:annotation>
  5066. <xs:simpleType>
  5067. <xs:restriction base=""EDIFACT_AN"">
  5068. <xs:minLength value=""1"" />
  5069. <xs:maxLength value=""17"" />
  5070. </xs:restriction>
  5071. </xs:simpleType>
  5072. </xs:element>
  5073. </xs:sequence>
  5074. </xs:complexType>
  5075. </xs:element>
  5076. <xs:element name=""C222"">
  5077. <xs:annotation>
  5078. <xs:appinfo>
  5079. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TRANSPORT IDENTIFICATION"" />
  5080. </xs:appinfo>
  5081. </xs:annotation>
  5082. <xs:complexType>
  5083. <xs:sequence>
  5084. <xs:element minOccurs=""0"" name=""C22201"">
  5085. <xs:annotation>
  5086. <xs:appinfo>
  5087. <b:fieldInfo notes=""Id. of means of transport identification_8213"" />
  5088. </xs:appinfo>
  5089. </xs:annotation>
  5090. <xs:simpleType>
  5091. <xs:restriction base=""EDIFACT_AN"">
  5092. <xs:minLength value=""1"" />
  5093. <xs:maxLength value=""9"" />
  5094. </xs:restriction>
  5095. </xs:simpleType>
  5096. </xs:element>
  5097. <xs:element minOccurs=""0"" name=""C22202"" type=""EDIFACT_ID_1131"">
  5098. <xs:annotation>
  5099. <xs:appinfo>
  5100. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5101. </xs:appinfo>
  5102. </xs:annotation>
  5103. </xs:element>
  5104. <xs:element minOccurs=""0"" name=""C22203"" type=""EDIFACT_ID_3055"">
  5105. <xs:annotation>
  5106. <xs:appinfo>
  5107. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5108. </xs:appinfo>
  5109. </xs:annotation>
  5110. </xs:element>
  5111. <xs:element minOccurs=""0"" name=""C22204"">
  5112. <xs:annotation>
  5113. <xs:appinfo>
  5114. <b:fieldInfo notes=""Id. of the means of transport_8212"" />
  5115. </xs:appinfo>
  5116. </xs:annotation>
  5117. <xs:simpleType>
  5118. <xs:restriction base=""EDIFACT_AN"">
  5119. <xs:minLength value=""1"" />
  5120. <xs:maxLength value=""35"" />
  5121. </xs:restriction>
  5122. </xs:simpleType>
  5123. </xs:element>
  5124. <xs:element minOccurs=""0"" name=""C22205"">
  5125. <xs:annotation>
  5126. <xs:appinfo>
  5127. <b:fieldInfo notes=""Nationality of means of transport, coded_8453"" />
  5128. </xs:appinfo>
  5129. </xs:annotation>
  5130. <xs:simpleType>
  5131. <xs:restriction base=""EDIFACT_AN"">
  5132. <xs:minLength value=""1"" />
  5133. <xs:maxLength value=""3"" />
  5134. </xs:restriction>
  5135. </xs:simpleType>
  5136. </xs:element>
  5137. </xs:sequence>
  5138. </xs:complexType>
  5139. </xs:element>
  5140. <xs:element name=""C506_3"">
  5141. <xs:annotation>
  5142. <xs:appinfo>
  5143. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""REFERENCE"" />
  5144. </xs:appinfo>
  5145. </xs:annotation>
  5146. <xs:complexType>
  5147. <xs:sequence>
  5148. <xs:element name=""C50601"" type=""EDIFACT_ID_1153"">
  5149. <xs:annotation>
  5150. <xs:appinfo>
  5151. <b:fieldInfo notes=""Reference qualifier_1153"" />
  5152. </xs:appinfo>
  5153. </xs:annotation>
  5154. </xs:element>
  5155. <xs:element minOccurs=""0"" name=""C50602"">
  5156. <xs:annotation>
  5157. <xs:appinfo>
  5158. <b:fieldInfo notes=""Reference number_1154"" />
  5159. </xs:appinfo>
  5160. </xs:annotation>
  5161. <xs:simpleType>
  5162. <xs:restriction base=""EDIFACT_AN"">
  5163. <xs:minLength value=""1"" />
  5164. <xs:maxLength value=""35"" />
  5165. </xs:restriction>
  5166. </xs:simpleType>
  5167. </xs:element>
  5168. <xs:element minOccurs=""0"" name=""C50603"">
  5169. <xs:annotation>
  5170. <xs:appinfo>
  5171. <b:fieldInfo notes=""Line number_1156"" />
  5172. </xs:appinfo>
  5173. </xs:annotation>
  5174. <xs:simpleType>
  5175. <xs:restriction base=""EDIFACT_AN"">
  5176. <xs:minLength value=""1"" />
  5177. <xs:maxLength value=""6"" />
  5178. </xs:restriction>
  5179. </xs:simpleType>
  5180. </xs:element>
  5181. <xs:element minOccurs=""0"" name=""C50604"">
  5182. <xs:annotation>
  5183. <xs:appinfo>
  5184. <b:fieldInfo notes=""Reference version number_4000"" />
  5185. </xs:appinfo>
  5186. </xs:annotation>
  5187. <xs:simpleType>
  5188. <xs:restriction base=""EDIFACT_AN"">
  5189. <xs:minLength value=""1"" />
  5190. <xs:maxLength value=""35"" />
  5191. </xs:restriction>
  5192. </xs:simpleType>
  5193. </xs:element>
  5194. </xs:sequence>
  5195. </xs:complexType>
  5196. </xs:element>
  5197. <xs:element name=""C517_4"">
  5198. <xs:annotation>
  5199. <xs:appinfo>
  5200. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""LOCATION IDENTIFICATION"" />
  5201. </xs:appinfo>
  5202. </xs:annotation>
  5203. <xs:complexType>
  5204. <xs:sequence>
  5205. <xs:element minOccurs=""0"" name=""C51701"">
  5206. <xs:annotation>
  5207. <xs:appinfo>
  5208. <b:fieldInfo notes=""Place/location identification_3225"" />
  5209. </xs:appinfo>
  5210. </xs:annotation>
  5211. <xs:simpleType>
  5212. <xs:restriction base=""EDIFACT_AN"">
  5213. <xs:minLength value=""1"" />
  5214. <xs:maxLength value=""25"" />
  5215. </xs:restriction>
  5216. </xs:simpleType>
  5217. </xs:element>
  5218. <xs:element minOccurs=""0"" name=""C51702"" type=""EDIFACT_ID_1131"">
  5219. <xs:annotation>
  5220. <xs:appinfo>
  5221. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5222. </xs:appinfo>
  5223. </xs:annotation>
  5224. </xs:element>
  5225. <xs:element minOccurs=""0"" name=""C51703"" type=""EDIFACT_ID_3055"">
  5226. <xs:annotation>
  5227. <xs:appinfo>
  5228. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5229. </xs:appinfo>
  5230. </xs:annotation>
  5231. </xs:element>
  5232. <xs:element minOccurs=""0"" name=""C51704"">
  5233. <xs:annotation>
  5234. <xs:appinfo>
  5235. <b:fieldInfo notes=""Place/location_3224"" />
  5236. </xs:appinfo>
  5237. </xs:annotation>
  5238. <xs:simpleType>
  5239. <xs:restriction base=""EDIFACT_AN"">
  5240. <xs:minLength value=""1"" />
  5241. <xs:maxLength value=""70"" />
  5242. </xs:restriction>
  5243. </xs:simpleType>
  5244. </xs:element>
  5245. </xs:sequence>
  5246. </xs:complexType>
  5247. </xs:element>
  5248. <xs:element name=""C519_4"">
  5249. <xs:annotation>
  5250. <xs:appinfo>
  5251. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION ONE IDENTIFICATION"" />
  5252. </xs:appinfo>
  5253. </xs:annotation>
  5254. <xs:complexType>
  5255. <xs:sequence>
  5256. <xs:element minOccurs=""0"" name=""C51901"">
  5257. <xs:annotation>
  5258. <xs:appinfo>
  5259. <b:fieldInfo notes=""Related place/location one identification_3223"" />
  5260. </xs:appinfo>
  5261. </xs:annotation>
  5262. <xs:simpleType>
  5263. <xs:restriction base=""EDIFACT_AN"">
  5264. <xs:minLength value=""1"" />
  5265. <xs:maxLength value=""25"" />
  5266. </xs:restriction>
  5267. </xs:simpleType>
  5268. </xs:element>
  5269. <xs:element minOccurs=""0"" name=""C51902"" type=""EDIFACT_ID_1131"">
  5270. <xs:annotation>
  5271. <xs:appinfo>
  5272. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5273. </xs:appinfo>
  5274. </xs:annotation>
  5275. </xs:element>
  5276. <xs:element minOccurs=""0"" name=""C51903"" type=""EDIFACT_ID_3055"">
  5277. <xs:annotation>
  5278. <xs:appinfo>
  5279. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5280. </xs:appinfo>
  5281. </xs:annotation>
  5282. </xs:element>
  5283. <xs:element minOccurs=""0"" name=""C51904"">
  5284. <xs:annotation>
  5285. <xs:appinfo>
  5286. <b:fieldInfo notes=""Related place/location one_3222"" />
  5287. </xs:appinfo>
  5288. </xs:annotation>
  5289. <xs:simpleType>
  5290. <xs:restriction base=""EDIFACT_AN"">
  5291. <xs:minLength value=""1"" />
  5292. <xs:maxLength value=""70"" />
  5293. </xs:restriction>
  5294. </xs:simpleType>
  5295. </xs:element>
  5296. </xs:sequence>
  5297. </xs:complexType>
  5298. </xs:element>
  5299. <xs:element name=""C553_4"">
  5300. <xs:annotation>
  5301. <xs:appinfo>
  5302. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""RELATED LOCATION TWO IDENTIFICATION"" />
  5303. </xs:appinfo>
  5304. </xs:annotation>
  5305. <xs:complexType>
  5306. <xs:sequence>
  5307. <xs:element minOccurs=""0"" name=""C55301"">
  5308. <xs:annotation>
  5309. <xs:appinfo>
  5310. <b:fieldInfo notes=""Related place/location two identification_3233"" />
  5311. </xs:appinfo>
  5312. </xs:annotation>
  5313. <xs:simpleType>
  5314. <xs:restriction base=""EDIFACT_AN"">
  5315. <xs:minLength value=""1"" />
  5316. <xs:maxLength value=""25"" />
  5317. </xs:restriction>
  5318. </xs:simpleType>
  5319. </xs:element>
  5320. <xs:element minOccurs=""0"" name=""C55302"" type=""EDIFACT_ID_1131"">
  5321. <xs:annotation>
  5322. <xs:appinfo>
  5323. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5324. </xs:appinfo>
  5325. </xs:annotation>
  5326. </xs:element>
  5327. <xs:element minOccurs=""0"" name=""C55303"" type=""EDIFACT_ID_3055"">
  5328. <xs:annotation>
  5329. <xs:appinfo>
  5330. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5331. </xs:appinfo>
  5332. </xs:annotation>
  5333. </xs:element>
  5334. <xs:element minOccurs=""0"" name=""C55304"">
  5335. <xs:annotation>
  5336. <xs:appinfo>
  5337. <b:fieldInfo notes=""Related place/location two_3232"" />
  5338. </xs:appinfo>
  5339. </xs:annotation>
  5340. <xs:simpleType>
  5341. <xs:restriction base=""EDIFACT_AN"">
  5342. <xs:minLength value=""1"" />
  5343. <xs:maxLength value=""70"" />
  5344. </xs:restriction>
  5345. </xs:simpleType>
  5346. </xs:element>
  5347. </xs:sequence>
  5348. </xs:complexType>
  5349. </xs:element>
  5350. <xs:element name=""C507_4"">
  5351. <xs:annotation>
  5352. <xs:appinfo>
  5353. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DATE/TIME/PERIOD"" />
  5354. </xs:appinfo>
  5355. </xs:annotation>
  5356. <xs:complexType>
  5357. <xs:sequence>
  5358. <xs:element name=""C50701"" type=""EDIFACT_ID_2005"">
  5359. <xs:annotation>
  5360. <xs:appinfo>
  5361. <b:fieldInfo notes=""Date/time/period qualifier_2005"" />
  5362. </xs:appinfo>
  5363. </xs:annotation>
  5364. </xs:element>
  5365. <xs:element minOccurs=""0"" name=""C50702"">
  5366. <xs:annotation>
  5367. <xs:appinfo>
  5368. <b:fieldInfo notes=""Date/time/period_2380"" />
  5369. </xs:appinfo>
  5370. </xs:annotation>
  5371. <xs:simpleType>
  5372. <xs:restriction base=""EDIFACT_AN"">
  5373. <xs:minLength value=""1"" />
  5374. <xs:maxLength value=""35"" />
  5375. </xs:restriction>
  5376. </xs:simpleType>
  5377. </xs:element>
  5378. <xs:element minOccurs=""0"" name=""C50703"" type=""EDIFACT_ID_2379"">
  5379. <xs:annotation>
  5380. <xs:appinfo>
  5381. <b:fieldInfo notes=""Date/time/period format qualifier_2379"" />
  5382. </xs:appinfo>
  5383. </xs:annotation>
  5384. </xs:element>
  5385. </xs:sequence>
  5386. </xs:complexType>
  5387. </xs:element>
  5388. <xs:element name=""C237"">
  5389. <xs:annotation>
  5390. <xs:appinfo>
  5391. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EQUIPMENT IDENTIFICATION"" />
  5392. </xs:appinfo>
  5393. </xs:annotation>
  5394. <xs:complexType>
  5395. <xs:sequence>
  5396. <xs:element minOccurs=""0"" name=""C23701"">
  5397. <xs:annotation>
  5398. <xs:appinfo>
  5399. <b:fieldInfo notes=""Equipment identification number_8260"" />
  5400. </xs:appinfo>
  5401. </xs:annotation>
  5402. <xs:simpleType>
  5403. <xs:restriction base=""EDIFACT_AN"">
  5404. <xs:minLength value=""1"" />
  5405. <xs:maxLength value=""17"" />
  5406. </xs:restriction>
  5407. </xs:simpleType>
  5408. </xs:element>
  5409. <xs:element minOccurs=""0"" name=""C23702"" type=""EDIFACT_ID_1131"">
  5410. <xs:annotation>
  5411. <xs:appinfo>
  5412. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5413. </xs:appinfo>
  5414. </xs:annotation>
  5415. </xs:element>
  5416. <xs:element minOccurs=""0"" name=""C23703"" type=""EDIFACT_ID_3055"">
  5417. <xs:annotation>
  5418. <xs:appinfo>
  5419. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5420. </xs:appinfo>
  5421. </xs:annotation>
  5422. </xs:element>
  5423. <xs:element minOccurs=""0"" name=""C23704"">
  5424. <xs:annotation>
  5425. <xs:appinfo>
  5426. <b:fieldInfo notes=""Country, coded_3207"" />
  5427. </xs:appinfo>
  5428. </xs:annotation>
  5429. <xs:simpleType>
  5430. <xs:restriction base=""EDIFACT_AN"">
  5431. <xs:minLength value=""1"" />
  5432. <xs:maxLength value=""3"" />
  5433. </xs:restriction>
  5434. </xs:simpleType>
  5435. </xs:element>
  5436. </xs:sequence>
  5437. </xs:complexType>
  5438. </xs:element>
  5439. <xs:element name=""C224"">
  5440. <xs:annotation>
  5441. <xs:appinfo>
  5442. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EQUIPMENT SIZE AND TYPE"" />
  5443. </xs:appinfo>
  5444. </xs:annotation>
  5445. <xs:complexType>
  5446. <xs:sequence>
  5447. <xs:element minOccurs=""0"" name=""C22401"" type=""EDIFACT_ID_8155"">
  5448. <xs:annotation>
  5449. <xs:appinfo>
  5450. <b:fieldInfo notes=""Equipment size and type identification_8155"" />
  5451. </xs:appinfo>
  5452. </xs:annotation>
  5453. </xs:element>
  5454. <xs:element minOccurs=""0"" name=""C22402"" type=""EDIFACT_ID_1131"">
  5455. <xs:annotation>
  5456. <xs:appinfo>
  5457. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5458. </xs:appinfo>
  5459. </xs:annotation>
  5460. </xs:element>
  5461. <xs:element minOccurs=""0"" name=""C22403"" type=""EDIFACT_ID_3055"">
  5462. <xs:annotation>
  5463. <xs:appinfo>
  5464. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5465. </xs:appinfo>
  5466. </xs:annotation>
  5467. </xs:element>
  5468. <xs:element minOccurs=""0"" name=""C22404"">
  5469. <xs:annotation>
  5470. <xs:appinfo>
  5471. <b:fieldInfo notes=""Equipment size and type_8154"" />
  5472. </xs:appinfo>
  5473. </xs:annotation>
  5474. <xs:simpleType>
  5475. <xs:restriction base=""EDIFACT_AN"">
  5476. <xs:minLength value=""1"" />
  5477. <xs:maxLength value=""35"" />
  5478. </xs:restriction>
  5479. </xs:simpleType>
  5480. </xs:element>
  5481. </xs:sequence>
  5482. </xs:complexType>
  5483. </xs:element>
  5484. <xs:element name=""C502"">
  5485. <xs:annotation>
  5486. <xs:appinfo>
  5487. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MEASUREMENT DETAILS"" />
  5488. </xs:appinfo>
  5489. </xs:annotation>
  5490. <xs:complexType>
  5491. <xs:sequence>
  5492. <xs:element minOccurs=""0"" name=""C50201"" type=""EDIFACT_ID_6313"">
  5493. <xs:annotation>
  5494. <xs:appinfo>
  5495. <b:fieldInfo notes=""Measurement dimension, coded_6313"" />
  5496. </xs:appinfo>
  5497. </xs:annotation>
  5498. </xs:element>
  5499. <xs:element minOccurs=""0"" name=""C50202"" type=""EDIFACT_ID_6321"">
  5500. <xs:annotation>
  5501. <xs:appinfo>
  5502. <b:fieldInfo notes=""Measurement significance, coded_6321"" />
  5503. </xs:appinfo>
  5504. </xs:annotation>
  5505. </xs:element>
  5506. <xs:element minOccurs=""0"" name=""C50203"" type=""EDIFACT_ID_6155"">
  5507. <xs:annotation>
  5508. <xs:appinfo>
  5509. <b:fieldInfo notes=""Measurement attribute, coded_6155"" />
  5510. </xs:appinfo>
  5511. </xs:annotation>
  5512. </xs:element>
  5513. <xs:element minOccurs=""0"" name=""C50204"">
  5514. <xs:annotation>
  5515. <xs:appinfo>
  5516. <b:fieldInfo notes=""Measurement attribute_6154"" />
  5517. </xs:appinfo>
  5518. </xs:annotation>
  5519. <xs:simpleType>
  5520. <xs:restriction base=""EDIFACT_AN"">
  5521. <xs:minLength value=""1"" />
  5522. <xs:maxLength value=""70"" />
  5523. </xs:restriction>
  5524. </xs:simpleType>
  5525. </xs:element>
  5526. </xs:sequence>
  5527. </xs:complexType>
  5528. </xs:element>
  5529. <xs:element name=""C174"">
  5530. <xs:annotation>
  5531. <xs:appinfo>
  5532. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""VALUE/RANGE"" />
  5533. </xs:appinfo>
  5534. </xs:annotation>
  5535. <xs:complexType>
  5536. <xs:sequence>
  5537. <xs:element name=""C17401"">
  5538. <xs:annotation>
  5539. <xs:appinfo>
  5540. <b:fieldInfo notes=""Measure unit qualifier_6411"" />
  5541. </xs:appinfo>
  5542. </xs:annotation>
  5543. <xs:simpleType>
  5544. <xs:restriction base=""EDIFACT_AN"">
  5545. <xs:minLength value=""1"" />
  5546. <xs:maxLength value=""3"" />
  5547. </xs:restriction>
  5548. </xs:simpleType>
  5549. </xs:element>
  5550. <xs:element minOccurs=""0"" name=""C17402"">
  5551. <xs:annotation>
  5552. <xs:appinfo>
  5553. <b:fieldInfo notes=""Measurement value_6314"" />
  5554. </xs:appinfo>
  5555. </xs:annotation>
  5556. <xs:simpleType>
  5557. <xs:restriction base=""EDIFACT_N"">
  5558. <xs:minLength value=""1"" />
  5559. <xs:maxLength value=""18"" />
  5560. </xs:restriction>
  5561. </xs:simpleType>
  5562. </xs:element>
  5563. <xs:element minOccurs=""0"" name=""C17403"">
  5564. <xs:annotation>
  5565. <xs:appinfo>
  5566. <b:fieldInfo notes=""Range minimum_6162"" />
  5567. </xs:appinfo>
  5568. </xs:annotation>
  5569. <xs:simpleType>
  5570. <xs:restriction base=""EDIFACT_N"">
  5571. <xs:minLength value=""1"" />
  5572. <xs:maxLength value=""18"" />
  5573. </xs:restriction>
  5574. </xs:simpleType>
  5575. </xs:element>
  5576. <xs:element minOccurs=""0"" name=""C17404"">
  5577. <xs:annotation>
  5578. <xs:appinfo>
  5579. <b:fieldInfo notes=""Range maximum_6152"" />
  5580. </xs:appinfo>
  5581. </xs:annotation>
  5582. <xs:simpleType>
  5583. <xs:restriction base=""EDIFACT_N"">
  5584. <xs:minLength value=""1"" />
  5585. <xs:maxLength value=""18"" />
  5586. </xs:restriction>
  5587. </xs:simpleType>
  5588. </xs:element>
  5589. <xs:element minOccurs=""0"" name=""C17405"">
  5590. <xs:annotation>
  5591. <xs:appinfo>
  5592. <b:fieldInfo notes=""Significant digits_6432"" />
  5593. </xs:appinfo>
  5594. </xs:annotation>
  5595. <xs:simpleType>
  5596. <xs:restriction base=""EDIFACT_N"">
  5597. <xs:minLength value=""1"" />
  5598. <xs:maxLength value=""2"" />
  5599. </xs:restriction>
  5600. </xs:simpleType>
  5601. </xs:element>
  5602. </xs:sequence>
  5603. </xs:complexType>
  5604. </xs:element>
  5605. <xs:element name=""C211"">
  5606. <xs:annotation>
  5607. <xs:appinfo>
  5608. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DIMENSIONS"" />
  5609. </xs:appinfo>
  5610. </xs:annotation>
  5611. <xs:complexType>
  5612. <xs:sequence>
  5613. <xs:element name=""C21101"">
  5614. <xs:annotation>
  5615. <xs:appinfo>
  5616. <b:fieldInfo notes=""Measure unit qualifier_6411"" />
  5617. </xs:appinfo>
  5618. </xs:annotation>
  5619. <xs:simpleType>
  5620. <xs:restriction base=""EDIFACT_AN"">
  5621. <xs:minLength value=""1"" />
  5622. <xs:maxLength value=""3"" />
  5623. </xs:restriction>
  5624. </xs:simpleType>
  5625. </xs:element>
  5626. <xs:element minOccurs=""0"" name=""C21102"">
  5627. <xs:annotation>
  5628. <xs:appinfo>
  5629. <b:fieldInfo notes=""Length dimension_6168"" />
  5630. </xs:appinfo>
  5631. </xs:annotation>
  5632. <xs:simpleType>
  5633. <xs:restriction base=""EDIFACT_N"">
  5634. <xs:minLength value=""1"" />
  5635. <xs:maxLength value=""15"" />
  5636. </xs:restriction>
  5637. </xs:simpleType>
  5638. </xs:element>
  5639. <xs:element minOccurs=""0"" name=""C21103"">
  5640. <xs:annotation>
  5641. <xs:appinfo>
  5642. <b:fieldInfo notes=""Width dimension_6140"" />
  5643. </xs:appinfo>
  5644. </xs:annotation>
  5645. <xs:simpleType>
  5646. <xs:restriction base=""EDIFACT_N"">
  5647. <xs:minLength value=""1"" />
  5648. <xs:maxLength value=""15"" />
  5649. </xs:restriction>
  5650. </xs:simpleType>
  5651. </xs:element>
  5652. <xs:element minOccurs=""0"" name=""C21104"">
  5653. <xs:annotation>
  5654. <xs:appinfo>
  5655. <b:fieldInfo notes=""Height dimension_6008"" />
  5656. </xs:appinfo>
  5657. </xs:annotation>
  5658. <xs:simpleType>
  5659. <xs:restriction base=""EDIFACT_N"">
  5660. <xs:minLength value=""1"" />
  5661. <xs:maxLength value=""15"" />
  5662. </xs:restriction>
  5663. </xs:simpleType>
  5664. </xs:element>
  5665. </xs:sequence>
  5666. </xs:complexType>
  5667. </xs:element>
  5668. <xs:element name=""C215"">
  5669. <xs:annotation>
  5670. <xs:appinfo>
  5671. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SEAL ISSUER"" />
  5672. </xs:appinfo>
  5673. </xs:annotation>
  5674. <xs:complexType>
  5675. <xs:sequence>
  5676. <xs:element minOccurs=""0"" name=""C21501"" type=""EDIFACT_ID_9303"">
  5677. <xs:annotation>
  5678. <xs:appinfo>
  5679. <b:fieldInfo notes=""Sealing party, coded_9303"" />
  5680. </xs:appinfo>
  5681. </xs:annotation>
  5682. </xs:element>
  5683. <xs:element minOccurs=""0"" name=""C21502"" type=""EDIFACT_ID_1131"">
  5684. <xs:annotation>
  5685. <xs:appinfo>
  5686. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5687. </xs:appinfo>
  5688. </xs:annotation>
  5689. </xs:element>
  5690. <xs:element minOccurs=""0"" name=""C21503"" type=""EDIFACT_ID_3055"">
  5691. <xs:annotation>
  5692. <xs:appinfo>
  5693. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5694. </xs:appinfo>
  5695. </xs:annotation>
  5696. </xs:element>
  5697. <xs:element minOccurs=""0"" name=""C21504"">
  5698. <xs:annotation>
  5699. <xs:appinfo>
  5700. <b:fieldInfo notes=""Sealing party_9302"" />
  5701. </xs:appinfo>
  5702. </xs:annotation>
  5703. <xs:simpleType>
  5704. <xs:restriction base=""EDIFACT_AN"">
  5705. <xs:minLength value=""1"" />
  5706. <xs:maxLength value=""35"" />
  5707. </xs:restriction>
  5708. </xs:simpleType>
  5709. </xs:element>
  5710. </xs:sequence>
  5711. </xs:complexType>
  5712. </xs:element>
  5713. <xs:element name=""C237_2"">
  5714. <xs:annotation>
  5715. <xs:appinfo>
  5716. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""EQUIPMENT IDENTIFICATION"" />
  5717. </xs:appinfo>
  5718. </xs:annotation>
  5719. <xs:complexType>
  5720. <xs:sequence>
  5721. <xs:element minOccurs=""0"" name=""C23701"">
  5722. <xs:annotation>
  5723. <xs:appinfo>
  5724. <b:fieldInfo notes=""Equipment identification number_8260"" />
  5725. </xs:appinfo>
  5726. </xs:annotation>
  5727. <xs:simpleType>
  5728. <xs:restriction base=""EDIFACT_AN"">
  5729. <xs:minLength value=""1"" />
  5730. <xs:maxLength value=""17"" />
  5731. </xs:restriction>
  5732. </xs:simpleType>
  5733. </xs:element>
  5734. <xs:element minOccurs=""0"" name=""C23702"" type=""EDIFACT_ID_1131"">
  5735. <xs:annotation>
  5736. <xs:appinfo>
  5737. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5738. </xs:appinfo>
  5739. </xs:annotation>
  5740. </xs:element>
  5741. <xs:element minOccurs=""0"" name=""C23703"" type=""EDIFACT_ID_3055"">
  5742. <xs:annotation>
  5743. <xs:appinfo>
  5744. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5745. </xs:appinfo>
  5746. </xs:annotation>
  5747. </xs:element>
  5748. <xs:element minOccurs=""0"" name=""C23704"">
  5749. <xs:annotation>
  5750. <xs:appinfo>
  5751. <b:fieldInfo notes=""Country, coded_3207"" />
  5752. </xs:appinfo>
  5753. </xs:annotation>
  5754. <xs:simpleType>
  5755. <xs:restriction base=""EDIFACT_AN"">
  5756. <xs:minLength value=""1"" />
  5757. <xs:maxLength value=""3"" />
  5758. </xs:restriction>
  5759. </xs:simpleType>
  5760. </xs:element>
  5761. </xs:sequence>
  5762. </xs:complexType>
  5763. </xs:element>
  5764. <xs:element name=""C215_2"">
  5765. <xs:annotation>
  5766. <xs:appinfo>
  5767. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""SEAL ISSUER"" />
  5768. </xs:appinfo>
  5769. </xs:annotation>
  5770. <xs:complexType>
  5771. <xs:sequence>
  5772. <xs:element minOccurs=""0"" name=""C21501"" type=""EDIFACT_ID_9303"">
  5773. <xs:annotation>
  5774. <xs:appinfo>
  5775. <b:fieldInfo notes=""Sealing party, coded_9303"" />
  5776. </xs:appinfo>
  5777. </xs:annotation>
  5778. </xs:element>
  5779. <xs:element minOccurs=""0"" name=""C21502"" type=""EDIFACT_ID_1131"">
  5780. <xs:annotation>
  5781. <xs:appinfo>
  5782. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5783. </xs:appinfo>
  5784. </xs:annotation>
  5785. </xs:element>
  5786. <xs:element minOccurs=""0"" name=""C21503"" type=""EDIFACT_ID_3055"">
  5787. <xs:annotation>
  5788. <xs:appinfo>
  5789. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5790. </xs:appinfo>
  5791. </xs:annotation>
  5792. </xs:element>
  5793. <xs:element minOccurs=""0"" name=""C21504"">
  5794. <xs:annotation>
  5795. <xs:appinfo>
  5796. <b:fieldInfo notes=""Sealing party_9302"" />
  5797. </xs:appinfo>
  5798. </xs:annotation>
  5799. <xs:simpleType>
  5800. <xs:restriction base=""EDIFACT_AN"">
  5801. <xs:minLength value=""1"" />
  5802. <xs:maxLength value=""35"" />
  5803. </xs:restriction>
  5804. </xs:simpleType>
  5805. </xs:element>
  5806. </xs:sequence>
  5807. </xs:complexType>
  5808. </xs:element>
  5809. <xs:element name=""C213"">
  5810. <xs:annotation>
  5811. <xs:appinfo>
  5812. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER AND TYPE OF PACKAGES"" />
  5813. </xs:appinfo>
  5814. </xs:annotation>
  5815. <xs:complexType>
  5816. <xs:sequence>
  5817. <xs:element minOccurs=""0"" name=""C21301"">
  5818. <xs:annotation>
  5819. <xs:appinfo>
  5820. <b:fieldInfo notes=""Number of packages_7224"" />
  5821. </xs:appinfo>
  5822. </xs:annotation>
  5823. <xs:simpleType>
  5824. <xs:restriction base=""EDIFACT_N"">
  5825. <xs:minLength value=""1"" />
  5826. <xs:maxLength value=""8"" />
  5827. </xs:restriction>
  5828. </xs:simpleType>
  5829. </xs:element>
  5830. <xs:element minOccurs=""0"" name=""C21302"">
  5831. <xs:annotation>
  5832. <xs:appinfo>
  5833. <b:fieldInfo notes=""Type of packages identification_7065"" />
  5834. </xs:appinfo>
  5835. </xs:annotation>
  5836. <xs:simpleType>
  5837. <xs:restriction base=""EDIFACT_AN"">
  5838. <xs:minLength value=""1"" />
  5839. <xs:maxLength value=""17"" />
  5840. </xs:restriction>
  5841. </xs:simpleType>
  5842. </xs:element>
  5843. <xs:element minOccurs=""0"" name=""C21303"" type=""EDIFACT_ID_1131"">
  5844. <xs:annotation>
  5845. <xs:appinfo>
  5846. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5847. </xs:appinfo>
  5848. </xs:annotation>
  5849. </xs:element>
  5850. <xs:element minOccurs=""0"" name=""C21304"" type=""EDIFACT_ID_3055"">
  5851. <xs:annotation>
  5852. <xs:appinfo>
  5853. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5854. </xs:appinfo>
  5855. </xs:annotation>
  5856. </xs:element>
  5857. <xs:element minOccurs=""0"" name=""C21305"">
  5858. <xs:annotation>
  5859. <xs:appinfo>
  5860. <b:fieldInfo notes=""Type of packages_7064"" />
  5861. </xs:appinfo>
  5862. </xs:annotation>
  5863. <xs:simpleType>
  5864. <xs:restriction base=""EDIFACT_AN"">
  5865. <xs:minLength value=""1"" />
  5866. <xs:maxLength value=""35"" />
  5867. </xs:restriction>
  5868. </xs:simpleType>
  5869. </xs:element>
  5870. </xs:sequence>
  5871. </xs:complexType>
  5872. </xs:element>
  5873. <xs:element name=""C213_2"">
  5874. <xs:annotation>
  5875. <xs:appinfo>
  5876. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER AND TYPE OF PACKAGES"" />
  5877. </xs:appinfo>
  5878. </xs:annotation>
  5879. <xs:complexType>
  5880. <xs:sequence>
  5881. <xs:element minOccurs=""0"" name=""C21301"">
  5882. <xs:annotation>
  5883. <xs:appinfo>
  5884. <b:fieldInfo notes=""Number of packages_7224"" />
  5885. </xs:appinfo>
  5886. </xs:annotation>
  5887. <xs:simpleType>
  5888. <xs:restriction base=""EDIFACT_N"">
  5889. <xs:minLength value=""1"" />
  5890. <xs:maxLength value=""8"" />
  5891. </xs:restriction>
  5892. </xs:simpleType>
  5893. </xs:element>
  5894. <xs:element minOccurs=""0"" name=""C21302"">
  5895. <xs:annotation>
  5896. <xs:appinfo>
  5897. <b:fieldInfo notes=""Type of packages identification_7065"" />
  5898. </xs:appinfo>
  5899. </xs:annotation>
  5900. <xs:simpleType>
  5901. <xs:restriction base=""EDIFACT_AN"">
  5902. <xs:minLength value=""1"" />
  5903. <xs:maxLength value=""17"" />
  5904. </xs:restriction>
  5905. </xs:simpleType>
  5906. </xs:element>
  5907. <xs:element minOccurs=""0"" name=""C21303"" type=""EDIFACT_ID_1131"">
  5908. <xs:annotation>
  5909. <xs:appinfo>
  5910. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5911. </xs:appinfo>
  5912. </xs:annotation>
  5913. </xs:element>
  5914. <xs:element minOccurs=""0"" name=""C21304"" type=""EDIFACT_ID_3055"">
  5915. <xs:annotation>
  5916. <xs:appinfo>
  5917. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5918. </xs:appinfo>
  5919. </xs:annotation>
  5920. </xs:element>
  5921. <xs:element minOccurs=""0"" name=""C21305"">
  5922. <xs:annotation>
  5923. <xs:appinfo>
  5924. <b:fieldInfo notes=""Type of packages_7064"" />
  5925. </xs:appinfo>
  5926. </xs:annotation>
  5927. <xs:simpleType>
  5928. <xs:restriction base=""EDIFACT_AN"">
  5929. <xs:minLength value=""1"" />
  5930. <xs:maxLength value=""35"" />
  5931. </xs:restriction>
  5932. </xs:simpleType>
  5933. </xs:element>
  5934. </xs:sequence>
  5935. </xs:complexType>
  5936. </xs:element>
  5937. <xs:element name=""C213_3"">
  5938. <xs:annotation>
  5939. <xs:appinfo>
  5940. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER AND TYPE OF PACKAGES"" />
  5941. </xs:appinfo>
  5942. </xs:annotation>
  5943. <xs:complexType>
  5944. <xs:sequence>
  5945. <xs:element minOccurs=""0"" name=""C21301"">
  5946. <xs:annotation>
  5947. <xs:appinfo>
  5948. <b:fieldInfo notes=""Number of packages_7224"" />
  5949. </xs:appinfo>
  5950. </xs:annotation>
  5951. <xs:simpleType>
  5952. <xs:restriction base=""EDIFACT_N"">
  5953. <xs:minLength value=""1"" />
  5954. <xs:maxLength value=""8"" />
  5955. </xs:restriction>
  5956. </xs:simpleType>
  5957. </xs:element>
  5958. <xs:element minOccurs=""0"" name=""C21302"">
  5959. <xs:annotation>
  5960. <xs:appinfo>
  5961. <b:fieldInfo notes=""Type of packages identification_7065"" />
  5962. </xs:appinfo>
  5963. </xs:annotation>
  5964. <xs:simpleType>
  5965. <xs:restriction base=""EDIFACT_AN"">
  5966. <xs:minLength value=""1"" />
  5967. <xs:maxLength value=""17"" />
  5968. </xs:restriction>
  5969. </xs:simpleType>
  5970. </xs:element>
  5971. <xs:element minOccurs=""0"" name=""C21303"" type=""EDIFACT_ID_1131"">
  5972. <xs:annotation>
  5973. <xs:appinfo>
  5974. <b:fieldInfo notes=""Code list qualifier_1131"" />
  5975. </xs:appinfo>
  5976. </xs:annotation>
  5977. </xs:element>
  5978. <xs:element minOccurs=""0"" name=""C21304"" type=""EDIFACT_ID_3055"">
  5979. <xs:annotation>
  5980. <xs:appinfo>
  5981. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  5982. </xs:appinfo>
  5983. </xs:annotation>
  5984. </xs:element>
  5985. <xs:element minOccurs=""0"" name=""C21305"">
  5986. <xs:annotation>
  5987. <xs:appinfo>
  5988. <b:fieldInfo notes=""Type of packages_7064"" />
  5989. </xs:appinfo>
  5990. </xs:annotation>
  5991. <xs:simpleType>
  5992. <xs:restriction base=""EDIFACT_AN"">
  5993. <xs:minLength value=""1"" />
  5994. <xs:maxLength value=""35"" />
  5995. </xs:restriction>
  5996. </xs:simpleType>
  5997. </xs:element>
  5998. </xs:sequence>
  5999. </xs:complexType>
  6000. </xs:element>
  6001. <xs:element name=""C524"">
  6002. <xs:annotation>
  6003. <xs:appinfo>
  6004. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""HANDLING INSTRUCTIONS"" />
  6005. </xs:appinfo>
  6006. </xs:annotation>
  6007. <xs:complexType>
  6008. <xs:sequence>
  6009. <xs:element minOccurs=""0"" name=""C52401"">
  6010. <xs:annotation>
  6011. <xs:appinfo>
  6012. <b:fieldInfo notes=""Handling instructions, coded_4079"" />
  6013. </xs:appinfo>
  6014. </xs:annotation>
  6015. <xs:simpleType>
  6016. <xs:restriction base=""EDIFACT_AN"">
  6017. <xs:minLength value=""1"" />
  6018. <xs:maxLength value=""3"" />
  6019. </xs:restriction>
  6020. </xs:simpleType>
  6021. </xs:element>
  6022. <xs:element minOccurs=""0"" name=""C52402"" type=""EDIFACT_ID_1131"">
  6023. <xs:annotation>
  6024. <xs:appinfo>
  6025. <b:fieldInfo notes=""Code list qualifier_1131"" />
  6026. </xs:appinfo>
  6027. </xs:annotation>
  6028. </xs:element>
  6029. <xs:element minOccurs=""0"" name=""C52403"" type=""EDIFACT_ID_3055"">
  6030. <xs:annotation>
  6031. <xs:appinfo>
  6032. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  6033. </xs:appinfo>
  6034. </xs:annotation>
  6035. </xs:element>
  6036. <xs:element minOccurs=""0"" name=""C52404"">
  6037. <xs:annotation>
  6038. <xs:appinfo>
  6039. <b:fieldInfo notes=""Handling instructions_4078"" />
  6040. </xs:appinfo>
  6041. </xs:annotation>
  6042. <xs:simpleType>
  6043. <xs:restriction base=""EDIFACT_AN"">
  6044. <xs:minLength value=""1"" />
  6045. <xs:maxLength value=""70"" />
  6046. </xs:restriction>
  6047. </xs:simpleType>
  6048. </xs:element>
  6049. </xs:sequence>
  6050. </xs:complexType>
  6051. </xs:element>
  6052. <xs:element name=""C218"">
  6053. <xs:annotation>
  6054. <xs:appinfo>
  6055. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""HAZARDOUS MATERIAL"" />
  6056. </xs:appinfo>
  6057. </xs:annotation>
  6058. <xs:complexType>
  6059. <xs:sequence>
  6060. <xs:element minOccurs=""0"" name=""C21801"">
  6061. <xs:annotation>
  6062. <xs:appinfo>
  6063. <b:fieldInfo notes=""Hazardous material class code, identification_7419"" />
  6064. </xs:appinfo>
  6065. </xs:annotation>
  6066. <xs:simpleType>
  6067. <xs:restriction base=""EDIFACT_AN"">
  6068. <xs:minLength value=""1"" />
  6069. <xs:maxLength value=""4"" />
  6070. </xs:restriction>
  6071. </xs:simpleType>
  6072. </xs:element>
  6073. <xs:element minOccurs=""0"" name=""C21802"" type=""EDIFACT_ID_1131"">
  6074. <xs:annotation>
  6075. <xs:appinfo>
  6076. <b:fieldInfo notes=""Code list qualifier_1131"" />
  6077. </xs:appinfo>
  6078. </xs:annotation>
  6079. </xs:element>
  6080. <xs:element minOccurs=""0"" name=""C21803"" type=""EDIFACT_ID_3055"">
  6081. <xs:annotation>
  6082. <xs:appinfo>
  6083. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  6084. </xs:appinfo>
  6085. </xs:annotation>
  6086. </xs:element>
  6087. </xs:sequence>
  6088. </xs:complexType>
  6089. </xs:element>
  6090. <xs:element name=""C502_2"">
  6091. <xs:annotation>
  6092. <xs:appinfo>
  6093. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MEASUREMENT DETAILS"" />
  6094. </xs:appinfo>
  6095. </xs:annotation>
  6096. <xs:complexType>
  6097. <xs:sequence>
  6098. <xs:element minOccurs=""0"" name=""C50201"" type=""EDIFACT_ID_6313"">
  6099. <xs:annotation>
  6100. <xs:appinfo>
  6101. <b:fieldInfo notes=""Measurement dimension, coded_6313"" />
  6102. </xs:appinfo>
  6103. </xs:annotation>
  6104. </xs:element>
  6105. <xs:element minOccurs=""0"" name=""C50202"" type=""EDIFACT_ID_6321"">
  6106. <xs:annotation>
  6107. <xs:appinfo>
  6108. <b:fieldInfo notes=""Measurement significance, coded_6321"" />
  6109. </xs:appinfo>
  6110. </xs:annotation>
  6111. </xs:element>
  6112. <xs:element minOccurs=""0"" name=""C50203"" type=""EDIFACT_ID_6155"">
  6113. <xs:annotation>
  6114. <xs:appinfo>
  6115. <b:fieldInfo notes=""Measurement attribute, coded_6155"" />
  6116. </xs:appinfo>
  6117. </xs:annotation>
  6118. </xs:element>
  6119. <xs:element minOccurs=""0"" name=""C50204"">
  6120. <xs:annotation>
  6121. <xs:appinfo>
  6122. <b:fieldInfo notes=""Measurement attribute_6154"" />
  6123. </xs:appinfo>
  6124. </xs:annotation>
  6125. <xs:simpleType>
  6126. <xs:restriction base=""EDIFACT_AN"">
  6127. <xs:minLength value=""1"" />
  6128. <xs:maxLength value=""70"" />
  6129. </xs:restriction>
  6130. </xs:simpleType>
  6131. </xs:element>
  6132. </xs:sequence>
  6133. </xs:complexType>
  6134. </xs:element>
  6135. <xs:element name=""C174_2"">
  6136. <xs:annotation>
  6137. <xs:appinfo>
  6138. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""VALUE/RANGE"" />
  6139. </xs:appinfo>
  6140. </xs:annotation>
  6141. <xs:complexType>
  6142. <xs:sequence>
  6143. <xs:element name=""C17401"">
  6144. <xs:annotation>
  6145. <xs:appinfo>
  6146. <b:fieldInfo notes=""Measure unit qualifier_6411"" />
  6147. </xs:appinfo>
  6148. </xs:annotation>
  6149. <xs:simpleType>
  6150. <xs:restriction base=""EDIFACT_AN"">
  6151. <xs:minLength value=""1"" />
  6152. <xs:maxLength value=""3"" />
  6153. </xs:restriction>
  6154. </xs:simpleType>
  6155. </xs:element>
  6156. <xs:element minOccurs=""0"" name=""C17402"">
  6157. <xs:annotation>
  6158. <xs:appinfo>
  6159. <b:fieldInfo notes=""Measurement value_6314"" />
  6160. </xs:appinfo>
  6161. </xs:annotation>
  6162. <xs:simpleType>
  6163. <xs:restriction base=""EDIFACT_N"">
  6164. <xs:minLength value=""1"" />
  6165. <xs:maxLength value=""18"" />
  6166. </xs:restriction>
  6167. </xs:simpleType>
  6168. </xs:element>
  6169. <xs:element minOccurs=""0"" name=""C17403"">
  6170. <xs:annotation>
  6171. <xs:appinfo>
  6172. <b:fieldInfo notes=""Range minimum_6162"" />
  6173. </xs:appinfo>
  6174. </xs:annotation>
  6175. <xs:simpleType>
  6176. <xs:restriction base=""EDIFACT_N"">
  6177. <xs:minLength value=""1"" />
  6178. <xs:maxLength value=""18"" />
  6179. </xs:restriction>
  6180. </xs:simpleType>
  6181. </xs:element>
  6182. <xs:element minOccurs=""0"" name=""C17404"">
  6183. <xs:annotation>
  6184. <xs:appinfo>
  6185. <b:fieldInfo notes=""Range maximum_6152"" />
  6186. </xs:appinfo>
  6187. </xs:annotation>
  6188. <xs:simpleType>
  6189. <xs:restriction base=""EDIFACT_N"">
  6190. <xs:minLength value=""1"" />
  6191. <xs:maxLength value=""18"" />
  6192. </xs:restriction>
  6193. </xs:simpleType>
  6194. </xs:element>
  6195. <xs:element minOccurs=""0"" name=""C17405"">
  6196. <xs:annotation>
  6197. <xs:appinfo>
  6198. <b:fieldInfo notes=""Significant digits_6432"" />
  6199. </xs:appinfo>
  6200. </xs:annotation>
  6201. <xs:simpleType>
  6202. <xs:restriction base=""EDIFACT_N"">
  6203. <xs:minLength value=""1"" />
  6204. <xs:maxLength value=""2"" />
  6205. </xs:restriction>
  6206. </xs:simpleType>
  6207. </xs:element>
  6208. </xs:sequence>
  6209. </xs:complexType>
  6210. </xs:element>
  6211. <xs:element name=""C523"">
  6212. <xs:annotation>
  6213. <xs:appinfo>
  6214. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER OF UNIT DETAILS"" />
  6215. </xs:appinfo>
  6216. </xs:annotation>
  6217. <xs:complexType>
  6218. <xs:sequence>
  6219. <xs:element minOccurs=""0"" name=""C52301"">
  6220. <xs:annotation>
  6221. <xs:appinfo>
  6222. <b:fieldInfo notes=""Number of units_6350"" />
  6223. </xs:appinfo>
  6224. </xs:annotation>
  6225. <xs:simpleType>
  6226. <xs:restriction base=""EDIFACT_N"">
  6227. <xs:minLength value=""1"" />
  6228. <xs:maxLength value=""15"" />
  6229. </xs:restriction>
  6230. </xs:simpleType>
  6231. </xs:element>
  6232. <xs:element minOccurs=""0"" name=""C52302"" type=""EDIFACT_ID_6353"">
  6233. <xs:annotation>
  6234. <xs:appinfo>
  6235. <b:fieldInfo notes=""Number of units qualifier_6353"" />
  6236. </xs:appinfo>
  6237. </xs:annotation>
  6238. </xs:element>
  6239. </xs:sequence>
  6240. </xs:complexType>
  6241. </xs:element>
  6242. <xs:element name=""C211_2"">
  6243. <xs:annotation>
  6244. <xs:appinfo>
  6245. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""DIMENSIONS"" />
  6246. </xs:appinfo>
  6247. </xs:annotation>
  6248. <xs:complexType>
  6249. <xs:sequence>
  6250. <xs:element name=""C21101"">
  6251. <xs:annotation>
  6252. <xs:appinfo>
  6253. <b:fieldInfo notes=""Measure unit qualifier_6411"" />
  6254. </xs:appinfo>
  6255. </xs:annotation>
  6256. <xs:simpleType>
  6257. <xs:restriction base=""EDIFACT_AN"">
  6258. <xs:minLength value=""1"" />
  6259. <xs:maxLength value=""3"" />
  6260. </xs:restriction>
  6261. </xs:simpleType>
  6262. </xs:element>
  6263. <xs:element minOccurs=""0"" name=""C21102"">
  6264. <xs:annotation>
  6265. <xs:appinfo>
  6266. <b:fieldInfo notes=""Length dimension_6168"" />
  6267. </xs:appinfo>
  6268. </xs:annotation>
  6269. <xs:simpleType>
  6270. <xs:restriction base=""EDIFACT_N"">
  6271. <xs:minLength value=""1"" />
  6272. <xs:maxLength value=""15"" />
  6273. </xs:restriction>
  6274. </xs:simpleType>
  6275. </xs:element>
  6276. <xs:element minOccurs=""0"" name=""C21103"">
  6277. <xs:annotation>
  6278. <xs:appinfo>
  6279. <b:fieldInfo notes=""Width dimension_6140"" />
  6280. </xs:appinfo>
  6281. </xs:annotation>
  6282. <xs:simpleType>
  6283. <xs:restriction base=""EDIFACT_N"">
  6284. <xs:minLength value=""1"" />
  6285. <xs:maxLength value=""15"" />
  6286. </xs:restriction>
  6287. </xs:simpleType>
  6288. </xs:element>
  6289. <xs:element minOccurs=""0"" name=""C21104"">
  6290. <xs:annotation>
  6291. <xs:appinfo>
  6292. <b:fieldInfo notes=""Height dimension_6008"" />
  6293. </xs:appinfo>
  6294. </xs:annotation>
  6295. <xs:simpleType>
  6296. <xs:restriction base=""EDIFACT_N"">
  6297. <xs:minLength value=""1"" />
  6298. <xs:maxLength value=""15"" />
  6299. </xs:restriction>
  6300. </xs:simpleType>
  6301. </xs:element>
  6302. </xs:sequence>
  6303. </xs:complexType>
  6304. </xs:element>
  6305. <xs:element name=""C523_2"">
  6306. <xs:annotation>
  6307. <xs:appinfo>
  6308. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""NUMBER OF UNIT DETAILS"" />
  6309. </xs:appinfo>
  6310. </xs:annotation>
  6311. <xs:complexType>
  6312. <xs:sequence>
  6313. <xs:element minOccurs=""0"" name=""C52301"">
  6314. <xs:annotation>
  6315. <xs:appinfo>
  6316. <b:fieldInfo notes=""Number of units_6350"" />
  6317. </xs:appinfo>
  6318. </xs:annotation>
  6319. <xs:simpleType>
  6320. <xs:restriction base=""EDIFACT_N"">
  6321. <xs:minLength value=""1"" />
  6322. <xs:maxLength value=""15"" />
  6323. </xs:restriction>
  6324. </xs:simpleType>
  6325. </xs:element>
  6326. <xs:element minOccurs=""0"" name=""C52302"" type=""EDIFACT_ID_6353"">
  6327. <xs:annotation>
  6328. <xs:appinfo>
  6329. <b:fieldInfo notes=""Number of units qualifier_6353"" />
  6330. </xs:appinfo>
  6331. </xs:annotation>
  6332. </xs:element>
  6333. </xs:sequence>
  6334. </xs:complexType>
  6335. </xs:element>
  6336. <xs:element name=""C210_2"">
  6337. <xs:annotation>
  6338. <xs:appinfo>
  6339. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""MARKS &amp; LABELS"" />
  6340. </xs:appinfo>
  6341. </xs:annotation>
  6342. <xs:complexType>
  6343. <xs:sequence>
  6344. <xs:element name=""C21001"">
  6345. <xs:annotation>
  6346. <xs:appinfo>
  6347. <b:fieldInfo notes=""Shipping marks_7102"" />
  6348. </xs:appinfo>
  6349. </xs:annotation>
  6350. <xs:simpleType>
  6351. <xs:restriction base=""EDIFACT_AN"">
  6352. <xs:minLength value=""1"" />
  6353. <xs:maxLength value=""35"" />
  6354. </xs:restriction>
  6355. </xs:simpleType>
  6356. </xs:element>
  6357. <xs:element minOccurs=""0"" name=""C21002"">
  6358. <xs:annotation>
  6359. <xs:appinfo>
  6360. <b:fieldInfo notes=""Shipping marks_7102"" />
  6361. </xs:appinfo>
  6362. </xs:annotation>
  6363. <xs:simpleType>
  6364. <xs:restriction base=""EDIFACT_AN"">
  6365. <xs:minLength value=""1"" />
  6366. <xs:maxLength value=""35"" />
  6367. </xs:restriction>
  6368. </xs:simpleType>
  6369. </xs:element>
  6370. <xs:element minOccurs=""0"" name=""C21003"">
  6371. <xs:annotation>
  6372. <xs:appinfo>
  6373. <b:fieldInfo notes=""Shipping marks_7102"" />
  6374. </xs:appinfo>
  6375. </xs:annotation>
  6376. <xs:simpleType>
  6377. <xs:restriction base=""EDIFACT_AN"">
  6378. <xs:minLength value=""1"" />
  6379. <xs:maxLength value=""35"" />
  6380. </xs:restriction>
  6381. </xs:simpleType>
  6382. </xs:element>
  6383. <xs:element minOccurs=""0"" name=""C21004"">
  6384. <xs:annotation>
  6385. <xs:appinfo>
  6386. <b:fieldInfo notes=""Shipping marks_7102"" />
  6387. </xs:appinfo>
  6388. </xs:annotation>
  6389. <xs:simpleType>
  6390. <xs:restriction base=""EDIFACT_AN"">
  6391. <xs:minLength value=""1"" />
  6392. <xs:maxLength value=""35"" />
  6393. </xs:restriction>
  6394. </xs:simpleType>
  6395. </xs:element>
  6396. <xs:element minOccurs=""0"" name=""C21005"">
  6397. <xs:annotation>
  6398. <xs:appinfo>
  6399. <b:fieldInfo notes=""Shipping marks_7102"" />
  6400. </xs:appinfo>
  6401. </xs:annotation>
  6402. <xs:simpleType>
  6403. <xs:restriction base=""EDIFACT_AN"">
  6404. <xs:minLength value=""1"" />
  6405. <xs:maxLength value=""35"" />
  6406. </xs:restriction>
  6407. </xs:simpleType>
  6408. </xs:element>
  6409. <xs:element minOccurs=""0"" name=""C21006"">
  6410. <xs:annotation>
  6411. <xs:appinfo>
  6412. <b:fieldInfo notes=""Shipping marks_7102"" />
  6413. </xs:appinfo>
  6414. </xs:annotation>
  6415. <xs:simpleType>
  6416. <xs:restriction base=""EDIFACT_AN"">
  6417. <xs:minLength value=""1"" />
  6418. <xs:maxLength value=""35"" />
  6419. </xs:restriction>
  6420. </xs:simpleType>
  6421. </xs:element>
  6422. <xs:element minOccurs=""0"" name=""C21007"">
  6423. <xs:annotation>
  6424. <xs:appinfo>
  6425. <b:fieldInfo notes=""Shipping marks_7102"" />
  6426. </xs:appinfo>
  6427. </xs:annotation>
  6428. <xs:simpleType>
  6429. <xs:restriction base=""EDIFACT_AN"">
  6430. <xs:minLength value=""1"" />
  6431. <xs:maxLength value=""35"" />
  6432. </xs:restriction>
  6433. </xs:simpleType>
  6434. </xs:element>
  6435. <xs:element minOccurs=""0"" name=""C21008"">
  6436. <xs:annotation>
  6437. <xs:appinfo>
  6438. <b:fieldInfo notes=""Shipping marks_7102"" />
  6439. </xs:appinfo>
  6440. </xs:annotation>
  6441. <xs:simpleType>
  6442. <xs:restriction base=""EDIFACT_AN"">
  6443. <xs:minLength value=""1"" />
  6444. <xs:maxLength value=""35"" />
  6445. </xs:restriction>
  6446. </xs:simpleType>
  6447. </xs:element>
  6448. <xs:element minOccurs=""0"" name=""C21009"">
  6449. <xs:annotation>
  6450. <xs:appinfo>
  6451. <b:fieldInfo notes=""Shipping marks_7102"" />
  6452. </xs:appinfo>
  6453. </xs:annotation>
  6454. <xs:simpleType>
  6455. <xs:restriction base=""EDIFACT_AN"">
  6456. <xs:minLength value=""1"" />
  6457. <xs:maxLength value=""35"" />
  6458. </xs:restriction>
  6459. </xs:simpleType>
  6460. </xs:element>
  6461. <xs:element minOccurs=""0"" name=""C21010"">
  6462. <xs:annotation>
  6463. <xs:appinfo>
  6464. <b:fieldInfo notes=""Shipping marks_7102"" />
  6465. </xs:appinfo>
  6466. </xs:annotation>
  6467. <xs:simpleType>
  6468. <xs:restriction base=""EDIFACT_AN"">
  6469. <xs:minLength value=""1"" />
  6470. <xs:maxLength value=""35"" />
  6471. </xs:restriction>
  6472. </xs:simpleType>
  6473. </xs:element>
  6474. </xs:sequence>
  6475. </xs:complexType>
  6476. </xs:element>
  6477. <xs:element name=""C827_2"">
  6478. <xs:annotation>
  6479. <xs:appinfo>
  6480. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""TYPE OF MARKING"" />
  6481. </xs:appinfo>
  6482. </xs:annotation>
  6483. <xs:complexType>
  6484. <xs:sequence>
  6485. <xs:element name=""C82701"">
  6486. <xs:annotation>
  6487. <xs:appinfo>
  6488. <b:fieldInfo notes=""Type of marking, coded_7511"" />
  6489. </xs:appinfo>
  6490. </xs:annotation>
  6491. <xs:simpleType>
  6492. <xs:restriction base=""EDIFACT_AN"">
  6493. <xs:minLength value=""1"" />
  6494. <xs:maxLength value=""3"" />
  6495. </xs:restriction>
  6496. </xs:simpleType>
  6497. </xs:element>
  6498. <xs:element minOccurs=""0"" name=""C82702"" type=""EDIFACT_ID_1131"">
  6499. <xs:annotation>
  6500. <xs:appinfo>
  6501. <b:fieldInfo notes=""Code list qualifier_1131"" />
  6502. </xs:appinfo>
  6503. </xs:annotation>
  6504. </xs:element>
  6505. <xs:element minOccurs=""0"" name=""C82703"" type=""EDIFACT_ID_3055"">
  6506. <xs:annotation>
  6507. <xs:appinfo>
  6508. <b:fieldInfo notes=""Code list responsible agency, coded_3055"" />
  6509. </xs:appinfo>
  6510. </xs:annotation>
  6511. </xs:element>
  6512. </xs:sequence>
  6513. </xs:complexType>
  6514. </xs:element>
  6515. <xs:element name=""C208"">
  6516. <xs:annotation>
  6517. <xs:appinfo>
  6518. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  6519. </xs:appinfo>
  6520. </xs:annotation>
  6521. <xs:complexType>
  6522. <xs:sequence>
  6523. <xs:element name=""C20801"">
  6524. <xs:annotation>
  6525. <xs:appinfo>
  6526. <b:fieldInfo notes=""Identity number_7402"" />
  6527. </xs:appinfo>
  6528. </xs:annotation>
  6529. <xs:simpleType>
  6530. <xs:restriction base=""EDIFACT_AN"">
  6531. <xs:minLength value=""1"" />
  6532. <xs:maxLength value=""35"" />
  6533. </xs:restriction>
  6534. </xs:simpleType>
  6535. </xs:element>
  6536. <xs:element minOccurs=""0"" name=""C20802"">
  6537. <xs:annotation>
  6538. <xs:appinfo>
  6539. <b:fieldInfo notes=""Identity number_7402"" />
  6540. </xs:appinfo>
  6541. </xs:annotation>
  6542. <xs:simpleType>
  6543. <xs:restriction base=""EDIFACT_AN"">
  6544. <xs:minLength value=""1"" />
  6545. <xs:maxLength value=""35"" />
  6546. </xs:restriction>
  6547. </xs:simpleType>
  6548. </xs:element>
  6549. </xs:sequence>
  6550. </xs:complexType>
  6551. </xs:element>
  6552. <xs:element name=""C208_2"">
  6553. <xs:annotation>
  6554. <xs:appinfo>
  6555. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  6556. </xs:appinfo>
  6557. </xs:annotation>
  6558. <xs:complexType>
  6559. <xs:sequence>
  6560. <xs:element name=""C20801"">
  6561. <xs:annotation>
  6562. <xs:appinfo>
  6563. <b:fieldInfo notes=""Identity number_7402"" />
  6564. </xs:appinfo>
  6565. </xs:annotation>
  6566. <xs:simpleType>
  6567. <xs:restriction base=""EDIFACT_AN"">
  6568. <xs:minLength value=""1"" />
  6569. <xs:maxLength value=""35"" />
  6570. </xs:restriction>
  6571. </xs:simpleType>
  6572. </xs:element>
  6573. <xs:element minOccurs=""0"" name=""C20802"">
  6574. <xs:annotation>
  6575. <xs:appinfo>
  6576. <b:fieldInfo notes=""Identity number_7402"" />
  6577. </xs:appinfo>
  6578. </xs:annotation>
  6579. <xs:simpleType>
  6580. <xs:restriction base=""EDIFACT_AN"">
  6581. <xs:minLength value=""1"" />
  6582. <xs:maxLength value=""35"" />
  6583. </xs:restriction>
  6584. </xs:simpleType>
  6585. </xs:element>
  6586. </xs:sequence>
  6587. </xs:complexType>
  6588. </xs:element>
  6589. <xs:element name=""C208_3"">
  6590. <xs:annotation>
  6591. <xs:appinfo>
  6592. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  6593. </xs:appinfo>
  6594. </xs:annotation>
  6595. <xs:complexType>
  6596. <xs:sequence>
  6597. <xs:element name=""C20801"">
  6598. <xs:annotation>
  6599. <xs:appinfo>
  6600. <b:fieldInfo notes=""Identity number_7402"" />
  6601. </xs:appinfo>
  6602. </xs:annotation>
  6603. <xs:simpleType>
  6604. <xs:restriction base=""EDIFACT_AN"">
  6605. <xs:minLength value=""1"" />
  6606. <xs:maxLength value=""35"" />
  6607. </xs:restriction>
  6608. </xs:simpleType>
  6609. </xs:element>
  6610. <xs:element minOccurs=""0"" name=""C20802"">
  6611. <xs:annotation>
  6612. <xs:appinfo>
  6613. <b:fieldInfo notes=""Identity number_7402"" />
  6614. </xs:appinfo>
  6615. </xs:annotation>
  6616. <xs:simpleType>
  6617. <xs:restriction base=""EDIFACT_AN"">
  6618. <xs:minLength value=""1"" />
  6619. <xs:maxLength value=""35"" />
  6620. </xs:restriction>
  6621. </xs:simpleType>
  6622. </xs:element>
  6623. </xs:sequence>
  6624. </xs:complexType>
  6625. </xs:element>
  6626. <xs:element name=""C208_4"">
  6627. <xs:annotation>
  6628. <xs:appinfo>
  6629. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  6630. </xs:appinfo>
  6631. </xs:annotation>
  6632. <xs:complexType>
  6633. <xs:sequence>
  6634. <xs:element name=""C20801"">
  6635. <xs:annotation>
  6636. <xs:appinfo>
  6637. <b:fieldInfo notes=""Identity number_7402"" />
  6638. </xs:appinfo>
  6639. </xs:annotation>
  6640. <xs:simpleType>
  6641. <xs:restriction base=""EDIFACT_AN"">
  6642. <xs:minLength value=""1"" />
  6643. <xs:maxLength value=""35"" />
  6644. </xs:restriction>
  6645. </xs:simpleType>
  6646. </xs:element>
  6647. <xs:element minOccurs=""0"" name=""C20802"">
  6648. <xs:annotation>
  6649. <xs:appinfo>
  6650. <b:fieldInfo notes=""Identity number_7402"" />
  6651. </xs:appinfo>
  6652. </xs:annotation>
  6653. <xs:simpleType>
  6654. <xs:restriction base=""EDIFACT_AN"">
  6655. <xs:minLength value=""1"" />
  6656. <xs:maxLength value=""35"" />
  6657. </xs:restriction>
  6658. </xs:simpleType>
  6659. </xs:element>
  6660. </xs:sequence>
  6661. </xs:complexType>
  6662. </xs:element>
  6663. <xs:element name=""C208_5"">
  6664. <xs:annotation>
  6665. <xs:appinfo>
  6666. <b:recordInfo structure=""delimited"" field_order=""infix"" delimiter_type=""inherit_subfield"" count_ignore=""yes"" escape_type=""inherit_escape"" xmlns:b=""http://schemas.microsoft.com/BizTalk/2003"" notes=""IDENTITY NUMBER RANGE"" />
  6667. </xs:appinfo>
  6668. </xs:annotation>
  6669. <xs:complexType>
  6670. <xs:sequence>
  6671. <xs:element name=""C20801"">
  6672. <xs:annotation>
  6673. <xs:appinfo>
  6674. <b:fieldInfo notes=""Identity number_7402"" />
  6675. </xs:appinfo>
  6676. </xs:annotation>
  6677. <xs:simpleType>
  6678. <xs:restriction base=""EDIFACT_AN"">
  6679. <xs:minLength value=""1"" />
  6680. <xs:maxLength value=""35"" />
  6681. </xs:restriction>
  6682. </xs:simpleType>
  6683. </xs:element>
  6684. <xs:element minOccurs=""0"" name=""C20802"">
  6685. <xs:annotation>
  6686. <xs:appinfo>
  6687. <b:fieldInfo notes=""Identity number_7402"" />
  6688. </xs:appinfo>
  6689. </xs:annotation>
  6690. <xs:simpleType>
  6691. <xs:restriction base=""EDIFACT_AN"">
  6692. <xs:minLength value=""1"" />
  6693. <xs:maxLength value=""35"" />
  6694. </xs:restriction>
  6695. </xs:simpleType>
  6696. </xs:element>
  6697. </xs:sequence>
  6698. </xs:complexType>
  6699. </xs:element>
  6700. <xs:simpleType name=""EDIFACT_ID_1001"">
  6701. <xs:restriction base=""xs:string"">
  6702. <xs:enumeration value=""1"" />
  6703. <xs:enumeration value=""10"" />
  6704. <xs:enumeration value=""100"" />
  6705. <xs:enumeration value=""101"" />
  6706. <xs:enumeration value=""105"" />
  6707. <xs:enumeration value=""11"" />
  6708. <xs:enumeration value=""110"" />
  6709. <xs:enumeration value=""12"" />
  6710. <xs:enumeration value=""120"" />
  6711. <xs:enumeration value=""13"" />
  6712. <xs:enumeration value=""130"" />
  6713. <xs:enumeration value=""14"" />
  6714. <xs:enumeration value=""140"" />
  6715. <xs:enumeration value=""15"" />
  6716. <xs:enumeration value=""150"" />
  6717. <xs:enumeration value=""16"" />
  6718. <xs:enumeration value=""17"" />
  6719. <xs:enumeration value=""18"" />
  6720. <xs:enumeration value=""19"" />
  6721. <xs:enumeration value=""190"" />
  6722. <xs:enumeration value=""2"" />
  6723. <xs:enumeration value=""20"" />
  6724. <xs:enumeration value=""201"" />
  6725. <xs:enumeration value=""202"" />
  6726. <xs:enumeration value=""203"" />
  6727. <xs:enumeration value=""204"" />
  6728. <xs:enumeration value=""205"" />
  6729. <xs:enumeration value=""206"" />
  6730. <xs:enumeration value=""207"" />
  6731. <xs:enumeration value=""208"" />
  6732. <xs:enumeration value=""209"" />
  6733. <xs:enumeration value=""21"" />
  6734. <xs:enumeration value=""210"" />
  6735. <xs:enumeration value=""211"" />
  6736. <xs:enumeration value=""212"" />
  6737. <xs:enumeration value=""215"" />
  6738. <xs:enumeration value=""22"" />
  6739. <xs:enumeration value=""220"" />
  6740. <xs:enumeration value=""221"" />
  6741. <xs:enumeration value=""222"" />
  6742. <xs:enumeration value=""223"" />
  6743. <xs:enumeration value=""224"" />
  6744. <xs:enumeration value=""225"" />
  6745. <xs:enumeration value=""226"" />
  6746. <xs:enumeration value=""227"" />
  6747. <xs:enumeration value=""228"" />
  6748. <xs:enumeration value=""229"" />
  6749. <xs:enumeration value=""23"" />
  6750. <xs:enumeration value=""230"" />
  6751. <xs:enumeration value=""231"" />
  6752. <xs:enumeration value=""232"" />
  6753. <xs:enumeration value=""233"" />
  6754. <xs:enumeration value=""24"" />
  6755. <xs:enumeration value=""240"" />
  6756. <xs:enumeration value=""241"" />
  6757. <xs:enumeration value=""242"" />
  6758. <xs:enumeration value=""245"" />
  6759. <xs:enumeration value=""25"" />
  6760. <xs:enumeration value=""26"" />
  6761. <xs:enumeration value=""27"" />
  6762. <xs:enumeration value=""270"" />
  6763. <xs:enumeration value=""271"" />
  6764. <xs:enumeration value=""28"" />
  6765. <xs:enumeration value=""29"" />
  6766. <xs:enumeration value=""3"" />
  6767. <xs:enumeration value=""30"" />
  6768. <xs:enumeration value=""31"" />
  6769. <xs:enumeration value=""310"" />
  6770. <xs:enumeration value=""311"" />
  6771. <xs:enumeration value=""315"" />
  6772. <xs:enumeration value=""32"" />
  6773. <xs:enumeration value=""320"" />
  6774. <xs:enumeration value=""325"" />
  6775. <xs:enumeration value=""326"" />
  6776. <xs:enumeration value=""327"" />
  6777. <xs:enumeration value=""328"" />
  6778. <xs:enumeration value=""33"" />
  6779. <xs:enumeration value=""330"" />
  6780. <xs:enumeration value=""335"" />
  6781. <xs:enumeration value=""34"" />
  6782. <xs:enumeration value=""340"" />
  6783. <xs:enumeration value=""341"" />
  6784. <xs:enumeration value=""343"" />
  6785. <xs:enumeration value=""345"" />
  6786. <xs:enumeration value=""35"" />
  6787. <xs:enumeration value=""350"" />
  6788. <xs:enumeration value=""351"" />
  6789. <xs:enumeration value=""36"" />
  6790. <xs:enumeration value=""37"" />
  6791. <xs:enumeration value=""370"" />
  6792. <xs:enumeration value=""38"" />
  6793. <xs:enumeration value=""380"" />
  6794. <xs:enumeration value=""381"" />
  6795. <xs:enumeration value=""382"" />
  6796. <xs:enumeration value=""383"" />
  6797. <xs:enumeration value=""384"" />
  6798. <xs:enumeration value=""385"" />
  6799. <xs:enumeration value=""386"" />
  6800. <xs:enumeration value=""387"" />
  6801. <xs:enumeration value=""388"" />
  6802. <xs:enumeration value=""389"" />
  6803. <xs:enumeration value=""39"" />
  6804. <xs:enumeration value=""390"" />
  6805. <xs:enumeration value=""393"" />
  6806. <xs:enumeration value=""394"" />
  6807. <xs:enumeration value=""395"" />
  6808. <xs:enumeration value=""396"" />
  6809. <xs:enumeration value=""4"" />
  6810. <xs:enumeration value=""40"" />
  6811. <xs:enumeration value=""409"" />
  6812. <xs:enumeration value=""41"" />
  6813. <xs:enumeration value=""412"" />
  6814. <xs:enumeration value=""42"" />
  6815. <xs:enumeration value=""425"" />
  6816. <xs:enumeration value=""426"" />
  6817. <xs:enumeration value=""427"" />
  6818. <xs:enumeration value=""428"" />
  6819. <xs:enumeration value=""429"" />
  6820. <xs:enumeration value=""43"" />
  6821. <xs:enumeration value=""430"" />
  6822. <xs:enumeration value=""431"" />
  6823. <xs:enumeration value=""435"" />
  6824. <xs:enumeration value=""447"" />
  6825. <xs:enumeration value=""448"" />
  6826. <xs:enumeration value=""450"" />
  6827. <xs:enumeration value=""451"" />
  6828. <xs:enumeration value=""452"" />
  6829. <xs:enumeration value=""454"" />
  6830. <xs:enumeration value=""455"" />
  6831. <xs:enumeration value=""456"" />
  6832. <xs:enumeration value=""457"" />
  6833. <xs:enumeration value=""458"" />
  6834. <xs:enumeration value=""460"" />
  6835. <xs:enumeration value=""465"" />
  6836. <xs:enumeration value=""466"" />
  6837. <xs:enumeration value=""467"" />
  6838. <xs:enumeration value=""468"" />
  6839. <xs:enumeration value=""469"" />
  6840. <xs:enumeration value=""481"" />
  6841. <xs:enumeration value=""485"" />
  6842. <xs:enumeration value=""490"" />
  6843. <xs:enumeration value=""491"" />
  6844. <xs:enumeration value=""492"" />
  6845. <xs:enumeration value=""493"" />
  6846. <xs:enumeration value=""5"" />
  6847. <xs:enumeration value=""520"" />
  6848. <xs:enumeration value=""530"" />
  6849. <xs:enumeration value=""550"" />
  6850. <xs:enumeration value=""575"" />
  6851. <xs:enumeration value=""580"" />
  6852. <xs:enumeration value=""59"" />
  6853. <xs:enumeration value=""6"" />
  6854. <xs:enumeration value=""60"" />
  6855. <xs:enumeration value=""61"" />
  6856. <xs:enumeration value=""610"" />
  6857. <xs:enumeration value=""62"" />
  6858. <xs:enumeration value=""621"" />
  6859. <xs:enumeration value=""622"" />
  6860. <xs:enumeration value=""623"" />
  6861. <xs:enumeration value=""624"" />
  6862. <xs:enumeration value=""63"" />
  6863. <xs:enumeration value=""630"" />
  6864. <xs:enumeration value=""631"" />
  6865. <xs:enumeration value=""632"" />
  6866. <xs:enumeration value=""633"" />
  6867. <xs:enumeration value=""635"" />
  6868. <xs:enumeration value=""64"" />
  6869. <xs:enumeration value=""640"" />
  6870. <xs:enumeration value=""65"" />
  6871. <xs:enumeration value=""650"" />
  6872. <xs:enumeration value=""655"" />
  6873. <xs:enumeration value=""66"" />
  6874. <xs:enumeration value=""67"" />
  6875. <xs:enumeration value=""68"" />
  6876. <xs:enumeration value=""69"" />
  6877. <xs:enumeration value=""7"" />
  6878. <xs:enumeration value=""70"" />
  6879. <xs:enumeration value=""700"" />
  6880. <xs:enumeration value=""701"" />
  6881. <xs:enumeration value=""702"" />
  6882. <xs:enumeration value=""703"" />
  6883. <xs:enumeration value=""704"" />
  6884. <xs:enumeration value=""705"" />
  6885. <xs:enumeration value=""706"" />
  6886. <xs:enumeration value=""707"" />
  6887. <xs:enumeration value=""708"" />
  6888. <xs:enumeration value=""709"" />
  6889. <xs:enumeration value=""71"" />
  6890. <xs:enumeration value=""710"" />
  6891. <xs:enumeration value=""711"" />
  6892. <xs:enumeration value=""712"" />
  6893. <xs:enumeration value=""713"" />
  6894. <xs:enumeration value=""714"" />
  6895. <xs:enumeration value=""715"" />
  6896. <xs:enumeration value=""716"" />
  6897. <xs:enumeration value=""72"" />
  6898. <xs:enumeration value=""720"" />
  6899. <xs:enumeration value=""722"" />
  6900. <xs:enumeration value=""723"" />
  6901. <xs:enumeration value=""724"" />
  6902. <xs:enumeration value=""73"" />
  6903. <xs:enumeration value=""730"" />
  6904. <xs:enumeration value=""74"" />
  6905. <xs:enumeration value=""740"" />
  6906. <xs:enumeration value=""741"" />
  6907. <xs:enumeration value=""743"" />
  6908. <xs:enumeration value=""744"" />
  6909. <xs:enumeration value=""745"" />
  6910. <xs:enumeration value=""746"" />
  6911. <xs:enumeration value=""75"" />
  6912. <xs:enumeration value=""750"" />
  6913. <xs:enumeration value=""76"" />
  6914. <xs:enumeration value=""760"" />
  6915. <xs:enumeration value=""761"" />
  6916. <xs:enumeration value=""763"" />
  6917. <xs:enumeration value=""764"" />
  6918. <xs:enumeration value=""765"" />
  6919. <xs:enumeration value=""766"" />
  6920. <xs:enumeration value=""77"" />
  6921. <xs:enumeration value=""770"" />
  6922. <xs:enumeration value=""775"" />
  6923. <xs:enumeration value=""78"" />
  6924. <xs:enumeration value=""780"" />
  6925. <xs:enumeration value=""781"" />
  6926. <xs:enumeration value=""782"" />
  6927. <xs:enumeration value=""783"" />
  6928. <xs:enumeration value=""784"" />
  6929. <xs:enumeration value=""785"" />
  6930. <xs:enumeration value=""786"" />
  6931. <xs:enumeration value=""787"" />
  6932. <xs:enumeration value=""788"" />
  6933. <xs:enumeration value=""789"" />
  6934. <xs:enumeration value=""79"" />
  6935. <xs:enumeration value=""790"" />
  6936. <xs:enumeration value=""791"" />
  6937. <xs:enumeration value=""792"" />
  6938. <xs:enumeration value=""793"" />
  6939. <xs:enumeration value=""794"" />
  6940. <xs:enumeration value=""795"" />
  6941. <xs:enumeration value=""796"" />
  6942. <xs:enumeration value=""797"" />
  6943. <xs:enumeration value=""798"" />
  6944. <xs:enumeration value=""799"" />
  6945. <xs:enumeration value=""8"" />
  6946. <xs:enumeration value=""80"" />
  6947. <xs:enumeration value=""81"" />
  6948. <xs:enumeration value=""810"" />
  6949. <xs:enumeration value=""811"" />
  6950. <xs:enumeration value=""812"" />
  6951. <xs:enumeration value=""82"" />
  6952. <xs:enumeration value=""820"" />
  6953. <xs:enumeration value=""821"" />
  6954. <xs:enumeration value=""822"" />
  6955. <xs:enumeration value=""823"" />
  6956. <xs:enumeration value=""824"" />
  6957. <xs:enumeration value=""825"" />
  6958. <xs:enumeration value=""83"" />
  6959. <xs:enumeration value=""830"" />
  6960. <xs:enumeration value=""833"" />
  6961. <xs:enumeration value=""84"" />
  6962. <xs:enumeration value=""840"" />
  6963. <xs:enumeration value=""841"" />
  6964. <xs:enumeration value=""85"" />
  6965. <xs:enumeration value=""850"" />
  6966. <xs:enumeration value=""851"" />
  6967. <xs:enumeration value=""852"" />
  6968. <xs:enumeration value=""853"" />
  6969. <xs:enumeration value=""855"" />
  6970. <xs:enumeration value=""856"" />
  6971. <xs:enumeration value=""86"" />
  6972. <xs:enumeration value=""860"" />
  6973. <xs:enumeration value=""861"" />
  6974. <xs:enumeration value=""862"" />
  6975. <xs:enumeration value=""863"" />
  6976. <xs:enumeration value=""864"" />
  6977. <xs:enumeration value=""865"" />
  6978. <xs:enumeration value=""87"" />
  6979. <xs:enumeration value=""870"" />
  6980. <xs:enumeration value=""88"" />
  6981. <xs:enumeration value=""89"" />
  6982. <xs:enumeration value=""890"" />
  6983. <xs:enumeration value=""895"" />
  6984. <xs:enumeration value=""896"" />
  6985. <xs:enumeration value=""9"" />
  6986. <xs:enumeration value=""90"" />
  6987. <xs:enumeration value=""901"" />
  6988. <xs:enumeration value=""91"" />
  6989. <xs:enumeration value=""910"" />
  6990. <xs:enumeration value=""911"" />
  6991. <xs:enumeration value=""913"" />
  6992. <xs:enumeration value=""914"" />
  6993. <xs:enumeration value=""915"" />
  6994. <xs:enumeration value=""916"" />
  6995. <xs:enumeration value=""917"" />
  6996. <xs:enumeration value=""92"" />
  6997. <xs:enumeration value=""925"" />
  6998. <xs:enumeration value=""926"" />
  6999. <xs:enumeration value=""927"" />
  7000. <xs:enumeration value=""929"" />
  7001. <xs:enumeration value=""93"" />
  7002. <xs:enumeration value=""930"" />
  7003. <xs:enumeration value=""931"" />
  7004. <xs:enumeration value=""932"" />
  7005. <xs:enumeration value=""933"" />
  7006. <xs:enumeration value=""934"" />
  7007. <xs:enumeration value=""935"" />
  7008. <xs:enumeration value=""936"" />
  7009. <xs:enumeration value=""937"" />
  7010. <xs:enumeration value=""938"" />
  7011. <xs:enumeration value=""94"" />
  7012. <xs:enumeration value=""940"" />
  7013. <xs:enumeration value=""941"" />
  7014. <xs:enumeration value=""95"" />
  7015. <xs:enumeration value=""950"" />
  7016. <xs:enumeration value=""951"" />
  7017. <xs:enumeration value=""952"" />
  7018. <xs:enumeration value=""953"" />
  7019. <xs:enumeration value=""954"" />
  7020. <xs:enumeration value=""955"" />
  7021. <xs:enumeration value=""96"" />
  7022. <xs:enumeration value=""960"" />
  7023. <xs:enumeration value=""961"" />
  7024. <xs:enumeration value=""962"" />
  7025. <xs:enumeration value=""963"" />
  7026. <xs:enumeration value=""964"" />
  7027. <xs:enumeration value=""965"" />
  7028. <xs:enumeration value=""966"" />
  7029. <xs:enumeration value=""97"" />
  7030. <xs:enumeration value=""98"" />
  7031. <xs:enumeration value=""99"" />
  7032. <xs:enumeration value=""990"" />
  7033. <xs:enumeration value=""991"" />
  7034. <xs:enumeration value=""995"" />
  7035. <xs:enumeration value=""996"" />
  7036. <xs:enumeration value=""998"" />
  7037. </xs:restriction>
  7038. </xs:simpleType>
  7039. <xs:simpleType name=""EDIFACT_ID_1131"">
  7040. <xs:restriction base=""xs:string"">
  7041. <xs:enumeration value=""100"" />
  7042. <xs:enumeration value=""101"" />
  7043. <xs:enumeration value=""102"" />
  7044. <xs:enumeration value=""103"" />
  7045. <xs:enumeration value=""104"" />
  7046. <xs:enumeration value=""105"" />
  7047. <xs:enumeration value=""106"" />
  7048. <xs:enumeration value=""107"" />
  7049. <xs:enumeration value=""108"" />
  7050. <xs:enumeration value=""109"" />
  7051. <xs:enumeration value=""110"" />
  7052. <xs:enumeration value=""112"" />
  7053. <xs:enumeration value=""113"" />
  7054. <xs:enumeration value=""114"" />
  7055. <xs:enumeration value=""115"" />
  7056. <xs:enumeration value=""116"" />
  7057. <xs:enumeration value=""117"" />
  7058. <xs:enumeration value=""118"" />
  7059. <xs:enumeration value=""119"" />
  7060. <xs:enumeration value=""12"" />
  7061. <xs:enumeration value=""120"" />
  7062. <xs:enumeration value=""121"" />
  7063. <xs:enumeration value=""122"" />
  7064. <xs:enumeration value=""123"" />
  7065. <xs:enumeration value=""125"" />
  7066. <xs:enumeration value=""126"" />
  7067. <xs:enumeration value=""127"" />
  7068. <xs:enumeration value=""128"" />
  7069. <xs:enumeration value=""129"" />
  7070. <xs:enumeration value=""130"" />
  7071. <xs:enumeration value=""131"" />
  7072. <xs:enumeration value=""132"" />
  7073. <xs:enumeration value=""133"" />
  7074. <xs:enumeration value=""134"" />
  7075. <xs:enumeration value=""135"" />
  7076. <xs:enumeration value=""136"" />
  7077. <xs:enumeration value=""137"" />
  7078. <xs:enumeration value=""139"" />
  7079. <xs:enumeration value=""140"" />
  7080. <xs:enumeration value=""141"" />
  7081. <xs:enumeration value=""142"" />
  7082. <xs:enumeration value=""143"" />
  7083. <xs:enumeration value=""144"" />
  7084. <xs:enumeration value=""145"" />
  7085. <xs:enumeration value=""146"" />
  7086. <xs:enumeration value=""147"" />
  7087. <xs:enumeration value=""148"" />
  7088. <xs:enumeration value=""149"" />
  7089. <xs:enumeration value=""150"" />
  7090. <xs:enumeration value=""151"" />
  7091. <xs:enumeration value=""152"" />
  7092. <xs:enumeration value=""153"" />
  7093. <xs:enumeration value=""154"" />
  7094. <xs:enumeration value=""155"" />
  7095. <xs:enumeration value=""156"" />
  7096. <xs:enumeration value=""157"" />
  7097. <xs:enumeration value=""158"" />
  7098. <xs:enumeration value=""16"" />
  7099. <xs:enumeration value=""160"" />
  7100. <xs:enumeration value=""161"" />
  7101. <xs:enumeration value=""162"" />
  7102. <xs:enumeration value=""163"" />
  7103. <xs:enumeration value=""164"" />
  7104. <xs:enumeration value=""165"" />
  7105. <xs:enumeration value=""166"" />
  7106. <xs:enumeration value=""167"" />
  7107. <xs:enumeration value=""168"" />
  7108. <xs:enumeration value=""169"" />
  7109. <xs:enumeration value=""170"" />
  7110. <xs:enumeration value=""172"" />
  7111. <xs:enumeration value=""173"" />
  7112. <xs:enumeration value=""174"" />
  7113. <xs:enumeration value=""175"" />
  7114. <xs:enumeration value=""176"" />
  7115. <xs:enumeration value=""177"" />
  7116. <xs:enumeration value=""178"" />
  7117. <xs:enumeration value=""179"" />
  7118. <xs:enumeration value=""180"" />
  7119. <xs:enumeration value=""181"" />
  7120. <xs:enumeration value=""182"" />
  7121. <xs:enumeration value=""183"" />
  7122. <xs:enumeration value=""184"" />
  7123. <xs:enumeration value=""185"" />
  7124. <xs:enumeration value=""186"" />
  7125. <xs:enumeration value=""187"" />
  7126. <xs:enumeration value=""188"" />
  7127. <xs:enumeration value=""189"" />
  7128. <xs:enumeration value=""190"" />
  7129. <xs:enumeration value=""191"" />
  7130. <xs:enumeration value=""192"" />
  7131. <xs:enumeration value=""23"" />
  7132. <xs:enumeration value=""25"" />
  7133. <xs:enumeration value=""35"" />
  7134. <xs:enumeration value=""36"" />
  7135. <xs:enumeration value=""37"" />
  7136. <xs:enumeration value=""38"" />
  7137. <xs:enumeration value=""39"" />
  7138. <xs:enumeration value=""42"" />
  7139. <xs:enumeration value=""43"" />
  7140. <xs:enumeration value=""44"" />
  7141. <xs:enumeration value=""52"" />
  7142. <xs:enumeration value=""53"" />
  7143. <xs:enumeration value=""54"" />
  7144. <xs:enumeration value=""55"" />
  7145. <xs:enumeration value=""56"" />
  7146. <xs:enumeration value=""57"" />
  7147. <xs:enumeration value=""58"" />
  7148. <xs:enumeration value=""59"" />
  7149. <xs:enumeration value=""60"" />
  7150. <xs:enumeration value=""61"" />
  7151. <xs:enumeration value=""62"" />
  7152. <xs:enumeration value=""63"" />
  7153. <xs:enumeration value=""64"" />
  7154. <xs:enumeration value=""65"" />
  7155. <xs:enumeration value=""67"" />
  7156. <xs:enumeration value=""68"" />
  7157. <xs:enumeration value=""69"" />
  7158. <xs:enumeration value=""70"" />
  7159. <xs:enumeration value=""71"" />
  7160. <xs:enumeration value=""ZZZ"" />
  7161. </xs:restriction>
  7162. </xs:simpleType>
  7163. <xs:simpleType name=""EDIFACT_ID_3055"">
  7164. <xs:restriction base=""xs:string"">
  7165. <xs:enumeration value=""1"" />
  7166. <xs:enumeration value=""10"" />
  7167. <xs:enumeration value=""100"" />
  7168. <xs:enumeration value=""101"" />
  7169. <xs:enumeration value=""102"" />
  7170. <xs:enumeration value=""103"" />
  7171. <xs:enumeration value=""104"" />
  7172. <xs:enumeration value=""105"" />
  7173. <xs:enumeration value=""106"" />
  7174. <xs:enumeration value=""107"" />
  7175. <xs:enumeration value=""108"" />
  7176. <xs:enumeration value=""109"" />
  7177. <xs:enumeration value=""11"" />
  7178. <xs:enumeration value=""110"" />
  7179. <xs:enumeration value=""111"" />
  7180. <xs:enumeration value=""112"" />
  7181. <xs:enumeration value=""113"" />
  7182. <xs:enumeration value=""114"" />
  7183. <xs:enumeration value=""115"" />
  7184. <xs:enumeration value=""116"" />
  7185. <xs:enumeration value=""117"" />
  7186. <xs:enumeration value=""118"" />
  7187. <xs:enumeration value=""119"" />
  7188. <xs:enumeration value=""12"" />
  7189. <xs:enumeration value=""120"" />
  7190. <xs:enumeration value=""121"" />
  7191. <xs:enumeration value=""122"" />
  7192. <xs:enumeration value=""123"" />
  7193. <xs:enumeration value=""124"" />
  7194. <xs:enumeration value=""125"" />
  7195. <xs:enumeration value=""126"" />
  7196. <xs:enumeration value=""128"" />
  7197. <xs:enumeration value=""129"" />
  7198. <xs:enumeration value=""13"" />
  7199. <xs:enumeration value=""130"" />
  7200. <xs:enumeration value=""131"" />
  7201. <xs:enumeration value=""132"" />
  7202. <xs:enumeration value=""133"" />
  7203. <xs:enumeration value=""134"" />
  7204. <xs:enumeration value=""135"" />
  7205. <xs:enumeration value=""136"" />
  7206. <xs:enumeration value=""137"" />
  7207. <xs:enumeration value=""138"" />
  7208. <xs:enumeration value=""139"" />
  7209. <xs:enumeration value=""14"" />
  7210. <xs:enumeration value=""140"" />
  7211. <xs:enumeration value=""141"" />
  7212. <xs:enumeration value=""142"" />
  7213. <xs:enumeration value=""143"" />
  7214. <xs:enumeration value=""144"" />
  7215. <xs:enumeration value=""145"" />
  7216. <xs:enumeration value=""146"" />
  7217. <xs:enumeration value=""147"" />
  7218. <xs:enumeration value=""148"" />
  7219. <xs:enumeration value=""149"" />
  7220. <xs:enumeration value=""15"" />
  7221. <xs:enumeration value=""150"" />
  7222. <xs:enumeration value=""151"" />
  7223. <xs:enumeration value=""152"" />
  7224. <xs:enumeration value=""153"" />
  7225. <xs:enumeration value=""154"" />
  7226. <xs:enumeration value=""155"" />
  7227. <xs:enumeration value=""156"" />
  7228. <xs:enumeration value=""157"" />
  7229. <xs:enumeration value=""158"" />
  7230. <xs:enumeration value=""159"" />
  7231. <xs:enumeration value=""16"" />
  7232. <xs:enumeration value=""160"" />
  7233. <xs:enumeration value=""161"" />
  7234. <xs:enumeration value=""162"" />
  7235. <xs:enumeration value=""163"" />
  7236. <xs:enumeration value=""164"" />
  7237. <xs:enumeration value=""165"" />
  7238. <xs:enumeration value=""166"" />
  7239. <xs:enumeration value=""167"" />
  7240. <xs:enumeration value=""168"" />
  7241. <xs:enumeration value=""169"" />
  7242. <xs:enumeration value=""17"" />
  7243. <xs:enumeration value=""170"" />
  7244. <xs:enumeration value=""171"" />
  7245. <xs:enumeration value=""172"" />
  7246. <xs:enumeration value=""173"" />
  7247. <xs:enumeration value=""174"" />
  7248. <xs:enumeration value=""175"" />
  7249. <xs:enumeration value=""176"" />
  7250. <xs:enumeration value=""177"" />
  7251. <xs:enumeration value=""178"" />
  7252. <xs:enumeration value=""179"" />
  7253. <xs:enumeration value=""18"" />
  7254. <xs:enumeration value=""181"" />
  7255. <xs:enumeration value=""182"" />
  7256. <xs:enumeration value=""183"" />
  7257. <xs:enumeration value=""184"" />
  7258. <xs:enumeration value=""19"" />
  7259. <xs:enumeration value=""2"" />
  7260. <xs:enumeration value=""20"" />
  7261. <xs:enumeration value=""21"" />
  7262. <xs:enumeration value=""22"" />
  7263. <xs:enumeration value=""23"" />
  7264. <xs:enumeration value=""24"" />
  7265. <xs:enumeration value=""25"" />
  7266. <xs:enumeration value=""26"" />
  7267. <xs:enumeration value=""27"" />
  7268. <xs:enumeration value=""28"" />
  7269. <xs:enumeration value=""29"" />
  7270. <xs:enumeration value=""3"" />
  7271. <xs:enumeration value=""30"" />
  7272. <xs:enumeration value=""31"" />
  7273. <xs:enumeration value=""32"" />
  7274. <xs:enumeration value=""33"" />
  7275. <xs:enumeration value=""34"" />
  7276. <xs:enumeration value=""35"" />
  7277. <xs:enumeration value=""36"" />
  7278. <xs:enumeration value=""37"" />
  7279. <xs:enumeration value=""38"" />
  7280. <xs:enumeration value=""39"" />
  7281. <xs:enumeration value=""4"" />
  7282. <xs:enumeration value=""40"" />
  7283. <xs:enumeration value=""41"" />
  7284. <xs:enumeration value=""42"" />
  7285. <xs:enumeration value=""43"" />
  7286. <xs:enumeration value=""44"" />
  7287. <xs:enumeration value=""45"" />
  7288. <xs:enumeration value=""46"" />
  7289. <xs:enumeration value=""47"" />
  7290. <xs:enumeration value=""48"" />
  7291. <xs:enumeration value=""49"" />
  7292. <xs:enumeration value=""5"" />
  7293. <xs:enumeration value=""50"" />
  7294. <xs:enumeration value=""51"" />
  7295. <xs:enumeration value=""52"" />
  7296. <xs:enumeration value=""53"" />
  7297. <xs:enumeration value=""54"" />
  7298. <xs:enumeration value=""55"" />
  7299. <xs:enumeration value=""56"" />
  7300. <xs:enumeration value=""57"" />
  7301. <xs:enumeration value=""58"" />
  7302. <xs:enumeration value=""59"" />
  7303. <xs:enumeration value=""6"" />
  7304. <xs:enumeration value=""60"" />
  7305. <xs:enumeration value=""61"" />
  7306. <xs:enumeration value=""62"" />
  7307. <xs:enumeration value=""63"" />
  7308. <xs:enumeration value=""64"" />
  7309. <xs:enumeration value=""65"" />
  7310. <xs:enumeration value=""66"" />
  7311. <xs:enumeration value=""67"" />
  7312. <xs:enumeration value=""68"" />
  7313. <xs:enumeration value=""69"" />
  7314. <xs:enumeration value=""7"" />
  7315. <xs:enumeration value=""70"" />
  7316. <xs:enumeration value=""8"" />
  7317. <xs:enumeration value=""86"" />
  7318. <xs:enumeration value=""87"" />
  7319. <xs:enumeration value=""88"" />
  7320. <xs:enumeration value=""89"" />
  7321. <xs:enumeration value=""9"" />
  7322. <xs:enumeration value=""90"" />
  7323. <xs:enumeration value=""91"" />
  7324. <xs:enumeration value=""92"" />
  7325. <xs:enumeration value=""93"" />
  7326. <xs:enumeration value=""94"" />
  7327. <xs:enumeration value=""95"" />
  7328. <xs:enumeration value=""96"" />
  7329. <xs:enumeration value=""97"" />
  7330. <xs:enumeration value=""98"" />
  7331. <xs:enumeration value=""99"" />
  7332. <xs:enumeration value=""ZZZ"" />
  7333. </xs:restriction>
  7334. </xs:simpleType>
  7335. <xs:simpleType name=""EDIFACT_ID_1225"">
  7336. <xs:restriction base=""xs:string"">
  7337. <xs:enumeration value=""1"" />
  7338. <xs:enumeration value=""10"" />
  7339. <xs:enumeration value=""11"" />
  7340. <xs:enumeration value=""12"" />
  7341. <xs:enumeration value=""13"" />
  7342. <xs:enumeration value=""14"" />
  7343. <xs:enumeration value=""15"" />
  7344. <xs:enumeration value=""16"" />
  7345. <xs:enumeration value=""17"" />
  7346. <xs:enumeration value=""18"" />
  7347. <xs:enumeration value=""19"" />
  7348. <xs:enumeration value=""2"" />
  7349. <xs:enumeration value=""20"" />
  7350. <xs:enumeration value=""21"" />
  7351. <xs:enumeration value=""22"" />
  7352. <xs:enumeration value=""23"" />
  7353. <xs:enumeration value=""24"" />
  7354. <xs:enumeration value=""25"" />
  7355. <xs:enumeration value=""26"" />
  7356. <xs:enumeration value=""27"" />
  7357. <xs:enumeration value=""28"" />
  7358. <xs:enumeration value=""29"" />
  7359. <xs:enumeration value=""3"" />
  7360. <xs:enumeration value=""30"" />
  7361. <xs:enumeration value=""31"" />
  7362. <xs:enumeration value=""32"" />
  7363. <xs:enumeration value=""33"" />
  7364. <xs:enumeration value=""34"" />
  7365. <xs:enumeration value=""35"" />
  7366. <xs:enumeration value=""36"" />
  7367. <xs:enumeration value=""37"" />
  7368. <xs:enumeration value=""38"" />
  7369. <xs:enumeration value=""39"" />
  7370. <xs:enumeration value=""4"" />
  7371. <xs:enumeration value=""40"" />
  7372. <xs:enumeration value=""41"" />
  7373. <xs:enumeration value=""42"" />
  7374. <xs:enumeration value=""43"" />
  7375. <xs:enumeration value=""44"" />
  7376. <xs:enumeration value=""45"" />
  7377. <xs:enumeration value=""46"" />
  7378. <xs:enumeration value=""47"" />
  7379. <xs:enumeration value=""48"" />
  7380. <xs:enumeration value=""49"" />
  7381. <xs:enumeration value=""5"" />
  7382. <xs:enumeration value=""50"" />
  7383. <xs:enumeration value=""51"" />
  7384. <xs:enumeration value=""52"" />
  7385. <xs:enumeration value=""53"" />
  7386. <xs:enumeration value=""54"" />
  7387. <xs:enumeration value=""6"" />
  7388. <xs:enumeration value=""7"" />
  7389. <xs:enumeration value=""8"" />
  7390. <xs:enumeration value=""9"" />
  7391. </xs:restriction>
  7392. </xs:simpleType>
  7393. <xs:simpleType name=""EDIFACT_ID_4343"">
  7394. <xs:restriction base=""xs:string"">
  7395. <xs:enumeration value=""AA"" />
  7396. <xs:enumeration value=""AB"" />
  7397. <xs:enumeration value=""AC"" />
  7398. <xs:enumeration value=""AD"" />
  7399. <xs:enumeration value=""AF"" />
  7400. <xs:enumeration value=""AG"" />
  7401. <xs:enumeration value=""AI"" />
  7402. <xs:enumeration value=""AP"" />
  7403. <xs:enumeration value=""CA"" />
  7404. <xs:enumeration value=""CO"" />
  7405. <xs:enumeration value=""NA"" />
  7406. <xs:enumeration value=""RE"" />
  7407. </xs:restriction>
  7408. </xs:simpleType>
  7409. <xs:simpleType name=""EDIFACT_ID_2005"">
  7410. <xs:restriction base=""xs:string"">
  7411. <xs:enumeration value=""10"" />
  7412. <xs:enumeration value=""101"" />
  7413. <xs:enumeration value=""107"" />
  7414. <xs:enumeration value=""108"" />
  7415. <xs:enumeration value=""109"" />
  7416. <xs:enumeration value=""11"" />
  7417. <xs:enumeration value=""110"" />
  7418. <xs:enumeration value=""111"" />
  7419. <xs:enumeration value=""113"" />
  7420. <xs:enumeration value=""114"" />
  7421. <xs:enumeration value=""115"" />
  7422. <xs:enumeration value=""117"" />
  7423. <xs:enumeration value=""119"" />
  7424. <xs:enumeration value=""12"" />
  7425. <xs:enumeration value=""123"" />
  7426. <xs:enumeration value=""124"" />
  7427. <xs:enumeration value=""125"" />
  7428. <xs:enumeration value=""126"" />
  7429. <xs:enumeration value=""128"" />
  7430. <xs:enumeration value=""129"" />
  7431. <xs:enumeration value=""13"" />
  7432. <xs:enumeration value=""131"" />
  7433. <xs:enumeration value=""132"" />
  7434. <xs:enumeration value=""133"" />
  7435. <xs:enumeration value=""134"" />
  7436. <xs:enumeration value=""135"" />
  7437. <xs:enumeration value=""136"" />
  7438. <xs:enumeration value=""137"" />
  7439. <xs:enumeration value=""138"" />
  7440. <xs:enumeration value=""14"" />
  7441. <xs:enumeration value=""140"" />
  7442. <xs:enumeration value=""141"" />
  7443. <xs:enumeration value=""143"" />
  7444. <xs:enumeration value=""144"" />
  7445. <xs:enumeration value=""146"" />
  7446. <xs:enumeration value=""147"" />
  7447. <xs:enumeration value=""148"" />
  7448. <xs:enumeration value=""149"" />
  7449. <xs:enumeration value=""15"" />
  7450. <xs:enumeration value=""150"" />
  7451. <xs:enumeration value=""151"" />
  7452. <xs:enumeration value=""152"" />
  7453. <xs:enumeration value=""153"" />
  7454. <xs:enumeration value=""154"" />
  7455. <xs:enumeration value=""155"" />
  7456. <xs:enumeration value=""156"" />
  7457. <xs:enumeration value=""157"" />
  7458. <xs:enumeration value=""158"" />
  7459. <xs:enumeration value=""159"" />
  7460. <xs:enumeration value=""16"" />
  7461. <xs:enumeration value=""160"" />
  7462. <xs:enumeration value=""161"" />
  7463. <xs:enumeration value=""162"" />
  7464. <xs:enumeration value=""163"" />
  7465. <xs:enumeration value=""164"" />
  7466. <xs:enumeration value=""165"" />
  7467. <xs:enumeration value=""166"" />
  7468. <xs:enumeration value=""167"" />
  7469. <xs:enumeration value=""168"" />
  7470. <xs:enumeration value=""169"" />
  7471. <xs:enumeration value=""17"" />
  7472. <xs:enumeration value=""170"" />
  7473. <xs:enumeration value=""171"" />
  7474. <xs:enumeration value=""172"" />
  7475. <xs:enumeration value=""173"" />
  7476. <xs:enumeration value=""174"" />
  7477. <xs:enumeration value=""175"" />
  7478. <xs:enumeration value=""176"" />
  7479. <xs:enumeration value=""177"" />
  7480. <xs:enumeration value=""178"" />
  7481. <xs:enumeration value=""179"" />
  7482. <xs:enumeration value=""18"" />
  7483. <xs:enumeration value=""180"" />
  7484. <xs:enumeration value=""181"" />
  7485. <xs:enumeration value=""182"" />
  7486. <xs:enumeration value=""183"" />
  7487. <xs:enumeration value=""184"" />
  7488. <xs:enumeration value=""185"" />
  7489. <xs:enumeration value=""186"" />
  7490. <xs:enumeration value=""187"" />
  7491. <xs:enumeration value=""188"" />
  7492. <xs:enumeration value=""189"" />
  7493. <xs:enumeration value=""190"" />
  7494. <xs:enumeration value=""191"" />
  7495. <xs:enumeration value=""192"" />
  7496. <xs:enumeration value=""193"" />
  7497. <xs:enumeration value=""194"" />
  7498. <xs:enumeration value=""195"" />
  7499. <xs:enumeration value=""196"" />
  7500. <xs:enumeration value=""197"" />
  7501. <xs:enumeration value=""198"" />
  7502. <xs:enumeration value=""199"" />
  7503. <xs:enumeration value=""2"" />
  7504. <xs:enumeration value=""20"" />
  7505. <xs:enumeration value=""200"" />
  7506. <xs:enumeration value=""201"" />
  7507. <xs:enumeration value=""202"" />
  7508. <xs:enumeration value=""203"" />
  7509. <xs:enumeration value=""204"" />
  7510. <xs:enumeration value=""205"" />
  7511. <xs:enumeration value=""206"" />
  7512. <xs:enumeration value=""207"" />
  7513. <xs:enumeration value=""208"" />
  7514. <xs:enumeration value=""209"" />
  7515. <xs:enumeration value=""21"" />
  7516. <xs:enumeration value=""210"" />
  7517. <xs:enumeration value=""211"" />
  7518. <xs:enumeration value=""212"" />
  7519. <xs:enumeration value=""213"" />
  7520. <xs:enumeration value=""214"" />
  7521. <xs:enumeration value=""215"" />
  7522. <xs:enumeration value=""216"" />
  7523. <xs:enumeration value=""218"" />
  7524. <xs:enumeration value=""219"" />
  7525. <xs:enumeration value=""22"" />
  7526. <xs:enumeration value=""221"" />
  7527. <xs:enumeration value=""222"" />
  7528. <xs:enumeration value=""223"" />
  7529. <xs:enumeration value=""224"" />
  7530. <xs:enumeration value=""225"" />
  7531. <xs:enumeration value=""226"" />
  7532. <xs:enumeration value=""227"" />
  7533. <xs:enumeration value=""228"" />
  7534. <xs:enumeration value=""229"" />
  7535. <xs:enumeration value=""230"" />
  7536. <xs:enumeration value=""231"" />
  7537. <xs:enumeration value=""232"" />
  7538. <xs:enumeration value=""233"" />
  7539. <xs:enumeration value=""234"" />
  7540. <xs:enumeration value=""235"" />
  7541. <xs:enumeration value=""236"" />
  7542. <xs:enumeration value=""237"" />
  7543. <xs:enumeration value=""238"" />
  7544. <xs:enumeration value=""239"" />
  7545. <xs:enumeration value=""240"" />
  7546. <xs:enumeration value=""242"" />
  7547. <xs:enumeration value=""243"" />
  7548. <xs:enumeration value=""244"" />
  7549. <xs:enumeration value=""245"" />
  7550. <xs:enumeration value=""246"" />
  7551. <xs:enumeration value=""247"" />
  7552. <xs:enumeration value=""248"" />
  7553. <xs:enumeration value=""249"" />
  7554. <xs:enumeration value=""250"" />
  7555. <xs:enumeration value=""251"" />
  7556. <xs:enumeration value=""252"" />
  7557. <xs:enumeration value=""253"" />
  7558. <xs:enumeration value=""254"" />
  7559. <xs:enumeration value=""255"" />
  7560. <xs:enumeration value=""257"" />
  7561. <xs:enumeration value=""258"" />
  7562. <xs:enumeration value=""259"" />
  7563. <xs:enumeration value=""260"" />
  7564. <xs:enumeration value=""261"" />
  7565. <xs:enumeration value=""262"" />
  7566. <xs:enumeration value=""263"" />
  7567. <xs:enumeration value=""264"" />
  7568. <xs:enumeration value=""265"" />
  7569. <xs:enumeration value=""266"" />
  7570. <xs:enumeration value=""267"" />
  7571. <xs:enumeration value=""268"" />
  7572. <xs:enumeration value=""270"" />
  7573. <xs:enumeration value=""271"" />
  7574. <xs:enumeration value=""272"" />
  7575. <xs:enumeration value=""273"" />
  7576. <xs:enumeration value=""274"" />
  7577. <xs:enumeration value=""275"" />
  7578. <xs:enumeration value=""276"" />
  7579. <xs:enumeration value=""277"" />
  7580. <xs:enumeration value=""278"" />
  7581. <xs:enumeration value=""279"" />
  7582. <xs:enumeration value=""280"" />
  7583. <xs:enumeration value=""281"" />
  7584. <xs:enumeration value=""282"" />
  7585. <xs:enumeration value=""283"" />
  7586. <xs:enumeration value=""284"" />
  7587. <xs:enumeration value=""285"" />
  7588. <xs:enumeration value=""286"" />
  7589. <xs:enumeration value=""287"" />
  7590. <xs:enumeration value=""288"" />
  7591. <xs:enumeration value=""290"" />
  7592. <xs:enumeration value=""291"" />
  7593. <xs:enumeration value=""292"" />
  7594. <xs:enumeration value=""293"" />
  7595. <xs:enumeration value=""294"" />
  7596. <xs:enumeration value=""295"" />
  7597. <xs:enumeration value=""296"" />
  7598. <xs:enumeration value=""297"" />
  7599. <xs:enumeration value=""298"" />
  7600. <xs:enumeration value=""299"" />
  7601. <xs:enumeration value=""3"" />
  7602. <xs:enumeration value=""300"" />
  7603. <xs:enumeration value=""301"" />
  7604. <xs:enumeration value=""302"" />
  7605. <xs:enumeration value=""303"" />
  7606. <xs:enumeration value=""304"" />
  7607. <xs:enumeration value=""305"" />
  7608. <xs:enumeration value=""306"" />
  7609. <xs:enumeration value=""307"" />
  7610. <xs:enumeration value=""308"" />
  7611. <xs:enumeration value=""309"" />
  7612. <xs:enumeration value=""310"" />
  7613. <xs:enumeration value=""311"" />
  7614. <xs:enumeration value=""312"" />
  7615. <xs:enumeration value=""313"" />
  7616. <xs:enumeration value=""314"" />
  7617. <xs:enumeration value=""315"" />
  7618. <xs:enumeration value=""316"" />
  7619. <xs:enumeration value=""317"" />
  7620. <xs:enumeration value=""318"" />
  7621. <xs:enumeration value=""319"" />
  7622. <xs:enumeration value=""320"" />
  7623. <xs:enumeration value=""321"" />
  7624. <xs:enumeration value=""322"" />
  7625. <xs:enumeration value=""323"" />
  7626. <xs:enumeration value=""324"" />
  7627. <xs:enumeration value=""325"" />
  7628. <xs:enumeration value=""326"" />
  7629. <xs:enumeration value=""327"" />
  7630. <xs:enumeration value=""328"" />
  7631. <xs:enumeration value=""329"" />
  7632. <xs:enumeration value=""330"" />
  7633. <xs:enumeration value=""331"" />
  7634. <xs:enumeration value=""332"" />
  7635. <xs:enumeration value=""333"" />
  7636. <xs:enumeration value=""334"" />
  7637. <xs:enumeration value=""335"" />
  7638. <xs:enumeration value=""336"" />
  7639. <xs:enumeration value=""337"" />
  7640. <xs:enumeration value=""338"" />
  7641. <xs:enumeration value=""339"" />
  7642. <xs:enumeration value=""340"" />
  7643. <xs:enumeration value=""341"" />
  7644. <xs:enumeration value=""342"" />
  7645. <xs:enumeration value=""343"" />
  7646. <xs:enumeration value=""344"" />
  7647. <xs:enumeration value=""345"" />
  7648. <xs:enumeration value=""346"" />
  7649. <xs:enumeration value=""347"" />
  7650. <xs:enumeration value=""348"" />
  7651. <xs:enumeration value=""349"" />
  7652. <xs:enumeration value=""35"" />
  7653. <xs:enumeration value=""350"" />
  7654. <xs:enumeration value=""351"" />
  7655. <xs:enumeration value=""352"" />
  7656. <xs:enumeration value=""353"" />
  7657. <xs:enumeration value=""354"" />
  7658. <xs:enumeration value=""355"" />
  7659. <xs:enumeration value=""356"" />
  7660. <xs:enumeration value=""357"" />
  7661. <xs:enumeration value=""358"" />
  7662. <xs:enumeration value=""359"" />
  7663. <xs:enumeration value=""36"" />
  7664. <xs:enumeration value=""360"" />
  7665. <xs:enumeration value=""361"" />
  7666. <xs:enumeration value=""362"" />
  7667. <xs:enumeration value=""363"" />
  7668. <xs:enumeration value=""364"" />
  7669. <xs:enumeration value=""365"" />
  7670. <xs:enumeration value=""366"" />
  7671. <xs:enumeration value=""367"" />
  7672. <xs:enumeration value=""368"" />
  7673. <xs:enumeration value=""369"" />
  7674. <xs:enumeration value=""37"" />
  7675. <xs:enumeration value=""370"" />
  7676. <xs:enumeration value=""371"" />
  7677. <xs:enumeration value=""372"" />
  7678. <xs:enumeration value=""373"" />
  7679. <xs:enumeration value=""374"" />
  7680. <xs:enumeration value=""375"" />
  7681. <xs:enumeration value=""376"" />
  7682. <xs:enumeration value=""377"" />
  7683. <xs:enumeration value=""378"" />
  7684. <xs:enumeration value=""379"" />
  7685. <xs:enumeration value=""38"" />
  7686. <xs:enumeration value=""39"" />
  7687. <xs:enumeration value=""4"" />
  7688. <xs:enumeration value=""42"" />
  7689. <xs:enumeration value=""44"" />
  7690. <xs:enumeration value=""45"" />
  7691. <xs:enumeration value=""46"" />
  7692. <xs:enumeration value=""47"" />
  7693. <xs:enumeration value=""48"" />
  7694. <xs:enumeration value=""49"" />
  7695. <xs:enumeration value=""50"" />
  7696. <xs:enumeration value=""51"" />
  7697. <xs:enumeration value=""52"" />
  7698. <xs:enumeration value=""53"" />
  7699. <xs:enumeration value=""54"" />
  7700. <xs:enumeration value=""55"" />
  7701. <xs:enumeration value=""58"" />
  7702. <xs:enumeration value=""59"" />
  7703. <xs:enumeration value=""60"" />
  7704. <xs:enumeration value=""61"" />
  7705. <xs:enumeration value=""63"" />
  7706. <xs:enumeration value=""64"" />
  7707. <xs:enumeration value=""65"" />
  7708. <xs:enumeration value=""67"" />
  7709. <xs:enumeration value=""69"" />
  7710. <xs:enumeration value=""7"" />
  7711. <xs:enumeration value=""71"" />
  7712. <xs:enumeration value=""72"" />
  7713. <xs:enumeration value=""74"" />
  7714. <xs:enumeration value=""75"" />
  7715. <xs:enumeration value=""76"" />
  7716. <xs:enumeration value=""79"" />
  7717. <xs:enumeration value=""8"" />
  7718. <xs:enumeration value=""81"" />
  7719. <xs:enumeration value=""84"" />
  7720. <xs:enumeration value=""85"" />
  7721. <xs:enumeration value=""89"" />
  7722. <xs:enumeration value=""9"" />
  7723. <xs:enumeration value=""90"" />
  7724. <xs:enumeration value=""91"" />
  7725. <xs:enumeration value=""92"" />
  7726. <xs:enumeration value=""93"" />
  7727. <xs:enumeration value=""94"" />
  7728. <xs:enumeration value=""95"" />
  7729. <xs:enumeration value=""96"" />
  7730. <xs:enumeration value=""97"" />
  7731. <xs:enumeration value=""ZZZ"" />
  7732. </xs:restriction>
  7733. </xs:simpleType>
  7734. <xs:simpleType name=""EDIFACT_ID_2379"">
  7735. <xs:restriction base=""xs:string"">
  7736. <xs:enumeration value=""101"" />
  7737. <xs:enumeration value=""102"" />
  7738. <xs:enumeration value=""103"" />
  7739. <xs:enumeration value=""105"" />
  7740. <xs:enumeration value=""106"" />
  7741. <xs:enumeration value=""107"" />
  7742. <xs:enumeration value=""108"" />
  7743. <xs:enumeration value=""109"" />
  7744. <xs:enumeration value=""110"" />
  7745. <xs:enumeration value=""2"" />
  7746. <xs:enumeration value=""201"" />
  7747. <xs:enumeration value=""202"" />
  7748. <xs:enumeration value=""203"" />
  7749. <xs:enumeration value=""204"" />
  7750. <xs:enumeration value=""3"" />
  7751. <xs:enumeration value=""301"" />
  7752. <xs:enumeration value=""302"" />
  7753. <xs:enumeration value=""303"" />
  7754. <xs:enumeration value=""304"" />
  7755. <xs:enumeration value=""305"" />
  7756. <xs:enumeration value=""306"" />
  7757. <xs:enumeration value=""401"" />
  7758. <xs:enumeration value=""402"" />
  7759. <xs:enumeration value=""404"" />
  7760. <xs:enumeration value=""405"" />
  7761. <xs:enumeration value=""501"" />
  7762. <xs:enumeration value=""502"" />
  7763. <xs:enumeration value=""503"" />
  7764. <xs:enumeration value=""600"" />
  7765. <xs:enumeration value=""601"" />
  7766. <xs:enumeration value=""602"" />
  7767. <xs:enumeration value=""603"" />
  7768. <xs:enumeration value=""604"" />
  7769. <xs:enumeration value=""608"" />
  7770. <xs:enumeration value=""609"" />
  7771. <xs:enumeration value=""610"" />
  7772. <xs:enumeration value=""613"" />
  7773. <xs:enumeration value=""614"" />
  7774. <xs:enumeration value=""615"" />
  7775. <xs:enumeration value=""616"" />
  7776. <xs:enumeration value=""701"" />
  7777. <xs:enumeration value=""702"" />
  7778. <xs:enumeration value=""703"" />
  7779. <xs:enumeration value=""704"" />
  7780. <xs:enumeration value=""705"" />
  7781. <xs:enumeration value=""706"" />
  7782. <xs:enumeration value=""707"" />
  7783. <xs:enumeration value=""708"" />
  7784. <xs:enumeration value=""709"" />
  7785. <xs:enumeration value=""710"" />
  7786. <xs:enumeration value=""711"" />
  7787. <xs:enumeration value=""713"" />
  7788. <xs:enumeration value=""715"" />
  7789. <xs:enumeration value=""716"" />
  7790. <xs:enumeration value=""717"" />
  7791. <xs:enumeration value=""718"" />
  7792. <xs:enumeration value=""801"" />
  7793. <xs:enumeration value=""802"" />
  7794. <xs:enumeration value=""803"" />
  7795. <xs:enumeration value=""804"" />
  7796. <xs:enumeration value=""805"" />
  7797. <xs:enumeration value=""806"" />
  7798. <xs:enumeration value=""807"" />
  7799. <xs:enumeration value=""808"" />
  7800. <xs:enumeration value=""809"" />
  7801. <xs:enumeration value=""810"" />
  7802. <xs:enumeration value=""811"" />
  7803. <xs:enumeration value=""812"" />
  7804. <xs:enumeration value=""813"" />
  7805. <xs:enumeration value=""814"" />
  7806. </xs:restriction>
  7807. </xs:simpleType>
  7808. <xs:simpleType name=""EDIFACT_ID_4065"">
  7809. <xs:restriction base=""xs:string"">
  7810. <xs:enumeration value=""1"" />
  7811. <xs:enumeration value=""10"" />
  7812. <xs:enumeration value=""11"" />
  7813. <xs:enumeration value=""12"" />
  7814. <xs:enumeration value=""13"" />
  7815. <xs:enumeration value=""14"" />
  7816. <xs:enumeration value=""15"" />
  7817. <xs:enumeration value=""16"" />
  7818. <xs:enumeration value=""17"" />
  7819. <xs:enumeration value=""18"" />
  7820. <xs:enumeration value=""19"" />
  7821. <xs:enumeration value=""2"" />
  7822. <xs:enumeration value=""20"" />
  7823. <xs:enumeration value=""21"" />
  7824. <xs:enumeration value=""22"" />
  7825. <xs:enumeration value=""23"" />
  7826. <xs:enumeration value=""24"" />
  7827. <xs:enumeration value=""25"" />
  7828. <xs:enumeration value=""26"" />
  7829. <xs:enumeration value=""27"" />
  7830. <xs:enumeration value=""28"" />
  7831. <xs:enumeration value=""29"" />
  7832. <xs:enumeration value=""3"" />
  7833. <xs:enumeration value=""30"" />
  7834. <xs:enumeration value=""31"" />
  7835. <xs:enumeration value=""32"" />
  7836. <xs:enumeration value=""33"" />
  7837. <xs:enumeration value=""34"" />
  7838. <xs:enumeration value=""35"" />
  7839. <xs:enumeration value=""4"" />
  7840. <xs:enumeration value=""5"" />
  7841. <xs:enumeration value=""6"" />
  7842. <xs:enumeration value=""7"" />
  7843. <xs:enumeration value=""8"" />
  7844. <xs:enumeration value=""9"" />
  7845. </xs:restriction>
  7846. </xs:simpleType>
  7847. <xs:simpleType name=""EDIFACT_ID_7273"">
  7848. <xs:restriction base=""xs:string"">
  7849. <xs:enumeration value=""1"" />
  7850. <xs:enumeration value=""10"" />
  7851. <xs:enumeration value=""11"" />
  7852. <xs:enumeration value=""12"" />
  7853. <xs:enumeration value=""13"" />
  7854. <xs:enumeration value=""14"" />
  7855. <xs:enumeration value=""15"" />
  7856. <xs:enumeration value=""16"" />
  7857. <xs:enumeration value=""17"" />
  7858. <xs:enumeration value=""18"" />
  7859. <xs:enumeration value=""2"" />
  7860. <xs:enumeration value=""3"" />
  7861. <xs:enumeration value=""4"" />
  7862. <xs:enumeration value=""5"" />
  7863. <xs:enumeration value=""6"" />
  7864. <xs:enumeration value=""7"" />
  7865. <xs:enumeration value=""8"" />
  7866. <xs:enumeration value=""9"" />
  7867. </xs:restriction>
  7868. </xs:simpleType>
  7869. <xs:simpleType name=""EDIFACT_ID_4219"">
  7870. <xs:restriction base=""xs:string"">
  7871. <xs:enumeration value=""1"" />
  7872. <xs:enumeration value=""2"" />
  7873. <xs:enumeration value=""3"" />
  7874. <xs:enumeration value=""4"" />
  7875. </xs:restriction>
  7876. </xs:simpleType>
  7877. <xs:simpleType name=""EDIFACT_ID_7085"">
  7878. <xs:restriction base=""xs:string"">
  7879. <xs:enumeration value=""1"" />
  7880. <xs:enumeration value=""10"" />
  7881. <xs:enumeration value=""2"" />
  7882. <xs:enumeration value=""3"" />
  7883. <xs:enumeration value=""4"" />
  7884. <xs:enumeration value=""5"" />
  7885. <xs:enumeration value=""6"" />
  7886. <xs:enumeration value=""7"" />
  7887. <xs:enumeration value=""8"" />
  7888. <xs:enumeration value=""9"" />
  7889. </xs:restriction>
  7890. </xs:simpleType>
  7891. <xs:simpleType name=""EDIFACT_ID_3035"">
  7892. <xs:restriction base=""xs:string"">
  7893. <xs:enumeration value=""AA"" />
  7894. <xs:enumeration value=""AB"" />
  7895. <xs:enumeration value=""AE"" />
  7896. <xs:enumeration value=""AF"" />
  7897. <xs:enumeration value=""AG"" />
  7898. <xs:enumeration value=""AH"" />
  7899. <xs:enumeration value=""AI"" />
  7900. <xs:enumeration value=""AJ"" />
  7901. <xs:enumeration value=""AK"" />
  7902. <xs:enumeration value=""AL"" />
  7903. <xs:enumeration value=""AM"" />
  7904. <xs:enumeration value=""AN"" />
  7905. <xs:enumeration value=""AO"" />
  7906. <xs:enumeration value=""AP"" />
  7907. <xs:enumeration value=""AQ"" />
  7908. <xs:enumeration value=""AR"" />
  7909. <xs:enumeration value=""AT"" />
  7910. <xs:enumeration value=""AU"" />
  7911. <xs:enumeration value=""AV"" />
  7912. <xs:enumeration value=""AW"" />
  7913. <xs:enumeration value=""AX"" />
  7914. <xs:enumeration value=""AZ"" />
  7915. <xs:enumeration value=""B1"" />
  7916. <xs:enumeration value=""B2"" />
  7917. <xs:enumeration value=""BA"" />
  7918. <xs:enumeration value=""BB"" />
  7919. <xs:enumeration value=""BC"" />
  7920. <xs:enumeration value=""BD"" />
  7921. <xs:enumeration value=""BE"" />
  7922. <xs:enumeration value=""BF"" />
  7923. <xs:enumeration value=""BG"" />
  7924. <xs:enumeration value=""BH"" />
  7925. <xs:enumeration value=""BI"" />
  7926. <xs:enumeration value=""BK"" />
  7927. <xs:enumeration value=""BL"" />
  7928. <xs:enumeration value=""BM"" />
  7929. <xs:enumeration value=""BN"" />
  7930. <xs:enumeration value=""BO"" />
  7931. <xs:enumeration value=""BP"" />
  7932. <xs:enumeration value=""BQ"" />
  7933. <xs:enumeration value=""BS"" />
  7934. <xs:enumeration value=""BT"" />
  7935. <xs:enumeration value=""BU"" />
  7936. <xs:enumeration value=""BV"" />
  7937. <xs:enumeration value=""BW"" />
  7938. <xs:enumeration value=""BX"" />
  7939. <xs:enumeration value=""BY"" />
  7940. <xs:enumeration value=""BZ"" />
  7941. <xs:enumeration value=""C1"" />
  7942. <xs:enumeration value=""C2"" />
  7943. <xs:enumeration value=""CA"" />
  7944. <xs:enumeration value=""CB"" />
  7945. <xs:enumeration value=""CC"" />
  7946. <xs:enumeration value=""CD"" />
  7947. <xs:enumeration value=""CE"" />
  7948. <xs:enumeration value=""CF"" />
  7949. <xs:enumeration value=""CG"" />
  7950. <xs:enumeration value=""CH"" />
  7951. <xs:enumeration value=""CI"" />
  7952. <xs:enumeration value=""CJ"" />
  7953. <xs:enumeration value=""CK"" />
  7954. <xs:enumeration value=""CL"" />
  7955. <xs:enumeration value=""CM"" />
  7956. <xs:enumeration value=""CN"" />
  7957. <xs:enumeration value=""CO"" />
  7958. <xs:enumeration value=""COP"" />
  7959. <xs:enumeration value=""CP"" />
  7960. <xs:enumeration value=""CPD"" />
  7961. <xs:enumeration value=""CQ"" />
  7962. <xs:enumeration value=""CR"" />
  7963. <xs:enumeration value=""CS"" />
  7964. <xs:enumeration value=""CT"" />
  7965. <xs:enumeration value=""CU"" />
  7966. <xs:enumeration value=""CV"" />
  7967. <xs:enumeration value=""CW"" />
  7968. <xs:enumeration value=""CX"" />
  7969. <xs:enumeration value=""CY"" />
  7970. <xs:enumeration value=""CZ"" />
  7971. <xs:enumeration value=""DA"" />
  7972. <xs:enumeration value=""DB"" />
  7973. <xs:enumeration value=""DC"" />
  7974. <xs:enumeration value=""DCP"" />
  7975. <xs:enumeration value=""DD"" />
  7976. <xs:enumeration value=""DE"" />
  7977. <xs:enumeration value=""DF"" />
  7978. <xs:enumeration value=""DG"" />
  7979. <xs:enumeration value=""DH"" />
  7980. <xs:enumeration value=""DI"" />
  7981. <xs:enumeration value=""DJ"" />
  7982. <xs:enumeration value=""DK"" />
  7983. <xs:enumeration value=""DL"" />
  7984. <xs:enumeration value=""DM"" />
  7985. <xs:enumeration value=""DN"" />
  7986. <xs:enumeration value=""DO"" />
  7987. <xs:enumeration value=""DP"" />
  7988. <xs:enumeration value=""DQ"" />
  7989. <xs:enumeration value=""DR"" />
  7990. <xs:enumeration value=""DS"" />
  7991. <xs:enumeration value=""DT"" />
  7992. <xs:enumeration value=""DU"" />
  7993. <xs:enumeration value=""DV"" />
  7994. <xs:enumeration value=""DW"" />
  7995. <xs:enumeration value=""DX"" />
  7996. <xs:enumeration value=""DY"" />
  7997. <xs:enumeration value=""DZ"" />
  7998. <xs:enumeration value=""EA"" />
  7999. <xs:enumeration value=""EB"" />
  8000. <xs:enumeration value=""EC"" />
  8001. <xs:enumeration value=""ED"" />
  8002. <xs:enumeration value=""EE"" />
  8003. <xs:enumeration value=""EF"" />
  8004. <xs:enumeration value=""EG"" />
  8005. <xs:enumeration value=""EH"" />
  8006. <xs:enumeration value=""EI"" />
  8007. <xs:enumeration value=""EJ"" />
  8008. <xs:enumeration value=""EK"" />
  8009. <xs:enumeration value=""EL"" />
  8010. <xs:enumeration value=""EM"" />
  8011. <xs:enumeration value=""EN"" />
  8012. <xs:enumeration value=""EO"" />
  8013. <xs:enumeration value=""EP"" />
  8014. <xs:enumeration value=""EQ"" />
  8015. <xs:enumeration value=""ER"" />
  8016. <xs:enumeration value=""ES"" />
  8017. <xs:enumeration value=""ET"" />
  8018. <xs:enumeration value=""EU"" />
  8019. <xs:enumeration value=""EV"" />
  8020. <xs:enumeration value=""EW"" />
  8021. <xs:enumeration value=""EX"" />
  8022. <xs:enumeration value=""EY"" />
  8023. <xs:enumeration value=""EZ"" />
  8024. <xs:enumeration value=""FA"" />
  8025. <xs:enumeration value=""FB"" />
  8026. <xs:enumeration value=""FC"" />
  8027. <xs:enumeration value=""FD"" />
  8028. <xs:enumeration value=""FE"" />
  8029. <xs:enumeration value=""FF"" />
  8030. <xs:enumeration value=""FG"" />
  8031. <xs:enumeration value=""FH"" />
  8032. <xs:enumeration value=""FJ"" />
  8033. <xs:enumeration value=""FK"" />
  8034. <xs:enumeration value=""FL"" />
  8035. <xs:enumeration value=""FM"" />
  8036. <xs:enumeration value=""FN"" />
  8037. <xs:enumeration value=""FO"" />
  8038. <xs:enumeration value=""FP"" />
  8039. <xs:enumeration value=""FR"" />
  8040. <xs:enumeration value=""FT"" />
  8041. <xs:enumeration value=""FW"" />
  8042. <xs:enumeration value=""FX"" />
  8043. <xs:enumeration value=""FY"" />
  8044. <xs:enumeration value=""FZ"" />
  8045. <xs:enumeration value=""GA"" />
  8046. <xs:enumeration value=""GB"" />
  8047. <xs:enumeration value=""GC"" />
  8048. <xs:enumeration value=""GD"" />
  8049. <xs:enumeration value=""GE"" />
  8050. <xs:enumeration value=""GF"" />
  8051. <xs:enumeration value=""GG"" />
  8052. <xs:enumeration value=""GH"" />
  8053. <xs:enumeration value=""GI"" />
  8054. <xs:enumeration value=""GJ"" />
  8055. <xs:enumeration value=""GK"" />
  8056. <xs:enumeration value=""GL"" />
  8057. <xs:enumeration value=""GM"" />
  8058. <xs:enumeration value=""GN"" />
  8059. <xs:enumeration value=""GO"" />
  8060. <xs:enumeration value=""GP"" />
  8061. <xs:enumeration value=""GQ"" />
  8062. <xs:enumeration value=""GR"" />
  8063. <xs:enumeration value=""GS"" />
  8064. <xs:enumeration value=""GT"" />
  8065. <xs:enumeration value=""GU"" />
  8066. <xs:enumeration value=""GV"" />
  8067. <xs:enumeration value=""GW"" />
  8068. <xs:enumeration value=""GX"" />
  8069. <xs:enumeration value=""GY"" />
  8070. <xs:enumeration value=""GZ"" />
  8071. <xs:enumeration value=""I1"" />
  8072. <xs:enumeration value=""I2"" />
  8073. <xs:enumeration value=""IB"" />
  8074. <xs:enumeration value=""IC"" />
  8075. <xs:enumeration value=""ID"" />
  8076. <xs:enumeration value=""IE"" />
  8077. <xs:enumeration value=""IF"" />
  8078. <xs:enumeration value=""IG"" />
  8079. <xs:enumeration value=""IH"" />
  8080. <xs:enumeration value=""II"" />
  8081. <xs:enumeration value=""IJ"" />
  8082. <xs:enumeration value=""IL"" />
  8083. <xs:enumeration value=""IM"" />
  8084. <xs:enumeration value=""IN"" />
  8085. <xs:enumeration value=""IO"" />
  8086. <xs:enumeration value=""IP"" />
  8087. <xs:enumeration value=""IQ"" />
  8088. <xs:enumeration value=""IR"" />
  8089. <xs:enumeration value=""IS"" />
  8090. <xs:enumeration value=""IT"" />
  8091. <xs:enumeration value=""IU"" />
  8092. <xs:enumeration value=""IV"" />
  8093. <xs:enumeration value=""IW"" />
  8094. <xs:enumeration value=""LA"" />
  8095. <xs:enumeration value=""LB"" />
  8096. <xs:enumeration value=""LN"" />
  8097. <xs:enumeration value=""LP"" />
  8098. <xs:enumeration value=""MA"" />
  8099. <xs:enumeration value=""MF"" />
  8100. <xs:enumeration value=""MG"" />
  8101. <xs:enumeration value=""MI"" />
  8102. <xs:enumeration value=""MP"" />
  8103. <xs:enumeration value=""MR"" />
  8104. <xs:enumeration value=""MS"" />
  8105. <xs:enumeration value=""MT"" />
  8106. <xs:enumeration value=""N1"" />
  8107. <xs:enumeration value=""N2"" />
  8108. <xs:enumeration value=""NI"" />
  8109. <xs:enumeration value=""OA"" />
  8110. <xs:enumeration value=""OB"" />
  8111. <xs:enumeration value=""OF"" />
  8112. <xs:enumeration value=""OI"" />
  8113. <xs:enumeration value=""OO"" />
  8114. <xs:enumeration value=""OP"" />
  8115. <xs:enumeration value=""OR"" />
  8116. <xs:enumeration value=""OS"" />
  8117. <xs:enumeration value=""OT"" />
  8118. <xs:enumeration value=""OV"" />
  8119. <xs:enumeration value=""OY"" />
  8120. <xs:enumeration value=""P1"" />
  8121. <xs:enumeration value=""P2"" />
  8122. <xs:enumeration value=""P3"" />
  8123. <xs:enumeration value=""P4"" />
  8124. <xs:enumeration value=""PA"" />
  8125. <xs:enumeration value=""PB"" />
  8126. <xs:enumeration value=""PC"" />
  8127. <xs:enumeration value=""PD"" />
  8128. <xs:enumeration value=""PE"" />
  8129. <xs:enumeration value=""PF"" />
  8130. <xs:enumeration value=""PG"" />
  8131. <xs:enumeration value=""PH"" />
  8132. <xs:enumeration value=""PI"" />
  8133. <xs:enumeration value=""PJ"" />
  8134. <xs:enumeration value=""PK"" />
  8135. <xs:enumeration value=""PL"" />
  8136. <xs:enumeration value=""PM"" />
  8137. <xs:enumeration value=""PN"" />
  8138. <xs:enumeration value=""PO"" />
  8139. <xs:enumeration value=""PQ"" />
  8140. <xs:enumeration value=""PR"" />
  8141. <xs:enumeration value=""PS"" />
  8142. <xs:enumeration value=""PT"" />
  8143. <xs:enumeration value=""PW"" />
  8144. <xs:enumeration value=""PX"" />
  8145. <xs:enumeration value=""PY"" />
  8146. <xs:enumeration value=""PZ"" />
  8147. <xs:enumeration value=""RA"" />
  8148. <xs:enumeration value=""RB"" />
  8149. <xs:enumeration value=""RE"" />
  8150. <xs:enumeration value=""RF"" />
  8151. <xs:enumeration value=""RH"" />
  8152. <xs:enumeration value=""RI"" />
  8153. <xs:enumeration value=""RL"" />
  8154. <xs:enumeration value=""RM"" />
  8155. <xs:enumeration value=""RP"" />
  8156. <xs:enumeration value=""RS"" />
  8157. <xs:enumeration value=""RV"" />
  8158. <xs:enumeration value=""RW"" />
  8159. <xs:enumeration value=""SB"" />
  8160. <xs:enumeration value=""SE"" />
  8161. <xs:enumeration value=""SF"" />
  8162. <xs:enumeration value=""SG"" />
  8163. <xs:enumeration value=""SI"" />
  8164. <xs:enumeration value=""SK"" />
  8165. <xs:enumeration value=""SN"" />
  8166. <xs:enumeration value=""SO"" />
  8167. <xs:enumeration value=""SR"" />
  8168. <xs:enumeration value=""SS"" />
  8169. <xs:enumeration value=""ST"" />
  8170. <xs:enumeration value=""SU"" />
  8171. <xs:enumeration value=""SX"" />
  8172. <xs:enumeration value=""SY"" />
  8173. <xs:enumeration value=""SZ"" />
  8174. <xs:enumeration value=""TC"" />
  8175. <xs:enumeration value=""TCP"" />
  8176. <xs:enumeration value=""TD"" />
  8177. <xs:enumeration value=""TR"" />
  8178. <xs:enumeration value=""TS"" />
  8179. <xs:enumeration value=""TT"" />
  8180. <xs:enumeration value=""UC"" />
  8181. <xs:enumeration value=""UD"" />
  8182. <xs:enumeration value=""UHP"" />
  8183. <xs:enumeration value=""UP"" />
  8184. <xs:enumeration value=""VN"" />
  8185. <xs:enumeration value=""WD"" />
  8186. <xs:enumeration value=""WH"" />
  8187. <xs:enumeration value=""WM"" />
  8188. <xs:enumeration value=""WPA"" />
  8189. <xs:enumeration value=""WS"" />
  8190. <xs:enumeration value=""XX"" />
  8191. <xs:enumeration value=""ZZZ"" />
  8192. </xs:restriction>
  8193. </xs:simpleType>
  8194. <xs:simpleType name=""EDIFACT_ID_3045"">
  8195. <xs:restriction base=""xs:string"">
  8196. <xs:enumeration value=""1"" />
  8197. </xs:restriction>
  8198. </xs:simpleType>
  8199. <xs:simpleType name=""EDIFACT_ID_3139"">
  8200. <xs:restriction base=""xs:string"">
  8201. <xs:enumeration value=""AA"" />
  8202. <xs:enumeration value=""AB"" />
  8203. <xs:enumeration value=""AC"" />
  8204. <xs:enumeration value=""AD"" />
  8205. <xs:enumeration value=""AE"" />
  8206. <xs:enumeration value=""AF"" />
  8207. <xs:enumeration value=""AG"" />
  8208. <xs:enumeration value=""AH"" />
  8209. <xs:enumeration value=""AI"" />
  8210. <xs:enumeration value=""AJ"" />
  8211. <xs:enumeration value=""AK"" />
  8212. <xs:enumeration value=""AL"" />
  8213. <xs:enumeration value=""AM"" />
  8214. <xs:enumeration value=""AN"" />
  8215. <xs:enumeration value=""AO"" />
  8216. <xs:enumeration value=""AP"" />
  8217. <xs:enumeration value=""AQ"" />
  8218. <xs:enumeration value=""AR"" />
  8219. <xs:enumeration value=""AS"" />
  8220. <xs:enumeration value=""AT"" />
  8221. <xs:enumeration value=""AU"" />
  8222. <xs:enumeration value=""AV"" />
  8223. <xs:enumeration value=""AW"" />
  8224. <xs:enumeration value=""AX"" />
  8225. <xs:enumeration value=""AY"" />
  8226. <xs:enumeration value=""AZ"" />
  8227. <xs:enumeration value=""BA"" />
  8228. <xs:enumeration value=""BB"" />
  8229. <xs:enumeration value=""BC"" />
  8230. <xs:enumeration value=""BD"" />
  8231. <xs:enumeration value=""BE"" />
  8232. <xs:enumeration value=""BF"" />
  8233. <xs:enumeration value=""BU"" />
  8234. <xs:enumeration value=""CA"" />
  8235. <xs:enumeration value=""CB"" />
  8236. <xs:enumeration value=""CC"" />
  8237. <xs:enumeration value=""CD"" />
  8238. <xs:enumeration value=""CE"" />
  8239. <xs:enumeration value=""CF"" />
  8240. <xs:enumeration value=""CG"" />
  8241. <xs:enumeration value=""CN"" />
  8242. <xs:enumeration value=""CO"" />
  8243. <xs:enumeration value=""CP"" />
  8244. <xs:enumeration value=""CR"" />
  8245. <xs:enumeration value=""CW"" />
  8246. <xs:enumeration value=""DE"" />
  8247. <xs:enumeration value=""DI"" />
  8248. <xs:enumeration value=""DL"" />
  8249. <xs:enumeration value=""EB"" />
  8250. <xs:enumeration value=""EC"" />
  8251. <xs:enumeration value=""ED"" />
  8252. <xs:enumeration value=""EX"" />
  8253. <xs:enumeration value=""GR"" />
  8254. <xs:enumeration value=""HE"" />
  8255. <xs:enumeration value=""HG"" />
  8256. <xs:enumeration value=""HM"" />
  8257. <xs:enumeration value=""IC"" />
  8258. <xs:enumeration value=""IN"" />
  8259. <xs:enumeration value=""LB"" />
  8260. <xs:enumeration value=""LO"" />
  8261. <xs:enumeration value=""MC"" />
  8262. <xs:enumeration value=""MD"" />
  8263. <xs:enumeration value=""MH"" />
  8264. <xs:enumeration value=""MR"" />
  8265. <xs:enumeration value=""MS"" />
  8266. <xs:enumeration value=""NT"" />
  8267. <xs:enumeration value=""OC"" />
  8268. <xs:enumeration value=""PA"" />
  8269. <xs:enumeration value=""PD"" />
  8270. <xs:enumeration value=""PE"" />
  8271. <xs:enumeration value=""PM"" />
  8272. <xs:enumeration value=""QA"" />
  8273. <xs:enumeration value=""QC"" />
  8274. <xs:enumeration value=""RD"" />
  8275. <xs:enumeration value=""SA"" />
  8276. <xs:enumeration value=""SC"" />
  8277. <xs:enumeration value=""SD"" />
  8278. <xs:enumeration value=""SR"" />
  8279. <xs:enumeration value=""SU"" />
  8280. <xs:enumeration value=""TA"" />
  8281. <xs:enumeration value=""TD"" />
  8282. <xs:enumeration value=""TI"" />
  8283. <xs:enumeration value=""TR"" />
  8284. <xs:enumeration value=""WH"" />
  8285. <xs:enumeration value=""ZZZ"" />
  8286. </xs:restriction>
  8287. </xs:simpleType>
  8288. <xs:simpleType name=""EDIFACT_ID_3155"">
  8289. <xs:restriction base=""xs:string"">
  8290. <xs:enumeration value=""AA"" />
  8291. <xs:enumeration value=""AB"" />
  8292. <xs:enumeration value=""AC"" />
  8293. <xs:enumeration value=""AD"" />
  8294. <xs:enumeration value=""AE"" />
  8295. <xs:enumeration value=""CA"" />
  8296. <xs:enumeration value=""EI"" />
  8297. <xs:enumeration value=""EM"" />
  8298. <xs:enumeration value=""EX"" />
  8299. <xs:enumeration value=""FT"" />
  8300. <xs:enumeration value=""FX"" />
  8301. <xs:enumeration value=""GM"" />
  8302. <xs:enumeration value=""IE"" />
  8303. <xs:enumeration value=""IM"" />
  8304. <xs:enumeration value=""MA"" />
  8305. <xs:enumeration value=""PB"" />
  8306. <xs:enumeration value=""PS"" />
  8307. <xs:enumeration value=""SW"" />
  8308. <xs:enumeration value=""TE"" />
  8309. <xs:enumeration value=""TG"" />
  8310. <xs:enumeration value=""TL"" />
  8311. <xs:enumeration value=""TM"" />
  8312. <xs:enumeration value=""TT"" />
  8313. <xs:enumeration value=""TX"" />
  8314. <xs:enumeration value=""XF"" />
  8315. </xs:restriction>
  8316. </xs:simpleType>
  8317. <xs:simpleType name=""EDIFACT_ID_1153"">
  8318. <xs:restriction base=""xs:string"">
  8319. <xs:enumeration value=""AAA"" />
  8320. <xs:enumeration value=""AAB"" />
  8321. <xs:enumeration value=""AAC"" />
  8322. <xs:enumeration value=""AAD"" />
  8323. <xs:enumeration value=""AAE"" />
  8324. <xs:enumeration value=""AAG"" />
  8325. <xs:enumeration value=""AAJ"" />
  8326. <xs:enumeration value=""AAK"" />
  8327. <xs:enumeration value=""AAL"" />
  8328. <xs:enumeration value=""AAM"" />
  8329. <xs:enumeration value=""AAN"" />
  8330. <xs:enumeration value=""AAO"" />
  8331. <xs:enumeration value=""AAP"" />
  8332. <xs:enumeration value=""AAQ"" />
  8333. <xs:enumeration value=""AAS"" />
  8334. <xs:enumeration value=""AAT"" />
  8335. <xs:enumeration value=""AAU"" />
  8336. <xs:enumeration value=""AAV"" />
  8337. <xs:enumeration value=""AAY"" />
  8338. <xs:enumeration value=""AAZ"" />
  8339. <xs:enumeration value=""ABA"" />
  8340. <xs:enumeration value=""ABB"" />
  8341. <xs:enumeration value=""ABC"" />
  8342. <xs:enumeration value=""ABD"" />
  8343. <xs:enumeration value=""ABE"" />
  8344. <xs:enumeration value=""ABG"" />
  8345. <xs:enumeration value=""ABH"" />
  8346. <xs:enumeration value=""ABI"" />
  8347. <xs:enumeration value=""ABJ"" />
  8348. <xs:enumeration value=""ABK"" />
  8349. <xs:enumeration value=""ABL"" />
  8350. <xs:enumeration value=""ABO"" />
  8351. <xs:enumeration value=""ABP"" />
  8352. <xs:enumeration value=""ABQ"" />
  8353. <xs:enumeration value=""ABR"" />
  8354. <xs:enumeration value=""ABS"" />
  8355. <xs:enumeration value=""ABT"" />
  8356. <xs:enumeration value=""ABU"" />
  8357. <xs:enumeration value=""ABW"" />
  8358. <xs:enumeration value=""ABX"" />
  8359. <xs:enumeration value=""ABY"" />
  8360. <xs:enumeration value=""ABZ"" />
  8361. <xs:enumeration value=""AC"" />
  8362. <xs:enumeration value=""ACB"" />
  8363. <xs:enumeration value=""ACC"" />
  8364. <xs:enumeration value=""ACD"" />
  8365. <xs:enumeration value=""ACE"" />
  8366. <xs:enumeration value=""ACF"" />
  8367. <xs:enumeration value=""ACG"" />
  8368. <xs:enumeration value=""ACH"" />
  8369. <xs:enumeration value=""ACI"" />
  8370. <xs:enumeration value=""ACJ"" />
  8371. <xs:enumeration value=""ACK"" />
  8372. <xs:enumeration value=""ACL"" />
  8373. <xs:enumeration value=""ACM"" />
  8374. <xs:enumeration value=""ACN"" />
  8375. <xs:enumeration value=""ACO"" />
  8376. <xs:enumeration value=""ACP"" />
  8377. <xs:enumeration value=""ACQ"" />
  8378. <xs:enumeration value=""ACR"" />
  8379. <xs:enumeration value=""ACS"" />
  8380. <xs:enumeration value=""ACT"" />
  8381. <xs:enumeration value=""ACU"" />
  8382. <xs:enumeration value=""ACW"" />
  8383. <xs:enumeration value=""ACX"" />
  8384. <xs:enumeration value=""ACY"" />
  8385. <xs:enumeration value=""ACZ"" />
  8386. <xs:enumeration value=""ADA"" />
  8387. <xs:enumeration value=""ADB"" />
  8388. <xs:enumeration value=""ADC"" />
  8389. <xs:enumeration value=""ADD"" />
  8390. <xs:enumeration value=""ADE"" />
  8391. <xs:enumeration value=""ADF"" />
  8392. <xs:enumeration value=""ADG"" />
  8393. <xs:enumeration value=""ADH"" />
  8394. <xs:enumeration value=""ADI"" />
  8395. <xs:enumeration value=""ADJ"" />
  8396. <xs:enumeration value=""ADK"" />
  8397. <xs:enumeration value=""ADP"" />
  8398. <xs:enumeration value=""ADQ"" />
  8399. <xs:enumeration value=""ADR"" />
  8400. <xs:enumeration value=""ADS"" />
  8401. <xs:enumeration value=""ADT"" />
  8402. <xs:enumeration value=""ADU"" />
  8403. <xs:enumeration value=""ADV"" />
  8404. <xs:enumeration value=""ADW"" />
  8405. <xs:enumeration value=""ADY"" />
  8406. <xs:enumeration value=""ADZ"" />
  8407. <xs:enumeration value=""AE"" />
  8408. <xs:enumeration value=""AEA"" />
  8409. <xs:enumeration value=""AEB"" />
  8410. <xs:enumeration value=""AEC"" />
  8411. <xs:enumeration value=""AED"" />
  8412. <xs:enumeration value=""AEE"" />
  8413. <xs:enumeration value=""AEF"" />
  8414. <xs:enumeration value=""AEG"" />
  8415. <xs:enumeration value=""AEH"" />
  8416. <xs:enumeration value=""AEI"" />
  8417. <xs:enumeration value=""AEJ"" />
  8418. <xs:enumeration value=""AEK"" />
  8419. <xs:enumeration value=""AEL"" />
  8420. <xs:enumeration value=""AEM"" />
  8421. <xs:enumeration value=""AEN"" />
  8422. <xs:enumeration value=""AEO"" />
  8423. <xs:enumeration value=""AEP"" />
  8424. <xs:enumeration value=""AEQ"" />
  8425. <xs:enumeration value=""AER"" />
  8426. <xs:enumeration value=""AES"" />
  8427. <xs:enumeration value=""AET"" />
  8428. <xs:enumeration value=""AEU"" />
  8429. <xs:enumeration value=""AEV"" />
  8430. <xs:enumeration value=""AEW"" />
  8431. <xs:enumeration value=""AEX"" />
  8432. <xs:enumeration value=""AEY"" />
  8433. <xs:enumeration value=""AEZ"" />
  8434. <xs:enumeration value=""AF"" />
  8435. <xs:enumeration value=""AFA"" />
  8436. <xs:enumeration value=""AFB"" />
  8437. <xs:enumeration value=""AFC"" />
  8438. <xs:enumeration value=""AFD"" />
  8439. <xs:enumeration value=""AFE"" />
  8440. <xs:enumeration value=""AFF"" />
  8441. <xs:enumeration value=""AFG"" />
  8442. <xs:enumeration value=""AFI"" />
  8443. <xs:enumeration value=""AFJ"" />
  8444. <xs:enumeration value=""AFK"" />
  8445. <xs:enumeration value=""AFL"" />
  8446. <xs:enumeration value=""AFM"" />
  8447. <xs:enumeration value=""AFN"" />
  8448. <xs:enumeration value=""AFO"" />
  8449. <xs:enumeration value=""AFP"" />
  8450. <xs:enumeration value=""AFQ"" />
  8451. <xs:enumeration value=""AFR"" />
  8452. <xs:enumeration value=""AFS"" />
  8453. <xs:enumeration value=""AFT"" />
  8454. <xs:enumeration value=""AFU"" />
  8455. <xs:enumeration value=""AFV"" />
  8456. <xs:enumeration value=""AFW"" />
  8457. <xs:enumeration value=""AFX"" />
  8458. <xs:enumeration value=""AFY"" />
  8459. <xs:enumeration value=""AFZ"" />
  8460. <xs:enumeration value=""AGA"" />
  8461. <xs:enumeration value=""AGB"" />
  8462. <xs:enumeration value=""AGC"" />
  8463. <xs:enumeration value=""AGD"" />
  8464. <xs:enumeration value=""AGE"" />
  8465. <xs:enumeration value=""AGF"" />
  8466. <xs:enumeration value=""AGG"" />
  8467. <xs:enumeration value=""AGH"" />
  8468. <xs:enumeration value=""AGI"" />
  8469. <xs:enumeration value=""AGJ"" />
  8470. <xs:enumeration value=""AGK"" />
  8471. <xs:enumeration value=""AGL"" />
  8472. <xs:enumeration value=""AGM"" />
  8473. <xs:enumeration value=""AGN"" />
  8474. <xs:enumeration value=""AGO"" />
  8475. <xs:enumeration value=""AGP"" />
  8476. <xs:enumeration value=""AGQ"" />
  8477. <xs:enumeration value=""AGR"" />
  8478. <xs:enumeration value=""AGS"" />
  8479. <xs:enumeration value=""AGT"" />
  8480. <xs:enumeration value=""AGU"" />
  8481. <xs:enumeration value=""AGV"" />
  8482. <xs:enumeration value=""AGW"" />
  8483. <xs:enumeration value=""AGX"" />
  8484. <xs:enumeration value=""AGY"" />
  8485. <xs:enumeration value=""AGZ"" />
  8486. <xs:enumeration value=""AHA"" />
  8487. <xs:enumeration value=""AHB"" />
  8488. <xs:enumeration value=""AHC"" />
  8489. <xs:enumeration value=""AHD"" />
  8490. <xs:enumeration value=""AHE"" />
  8491. <xs:enumeration value=""AHF"" />
  8492. <xs:enumeration value=""AHG"" />
  8493. <xs:enumeration value=""AHH"" />
  8494. <xs:enumeration value=""AHI"" />
  8495. <xs:enumeration value=""AHJ"" />
  8496. <xs:enumeration value=""AHK"" />
  8497. <xs:enumeration value=""AHL"" />
  8498. <xs:enumeration value=""AHM"" />
  8499. <xs:enumeration value=""AHN"" />
  8500. <xs:enumeration value=""AHO"" />
  8501. <xs:enumeration value=""AHP"" />
  8502. <xs:enumeration value=""AHQ"" />
  8503. <xs:enumeration value=""AHR"" />
  8504. <xs:enumeration value=""AHS"" />
  8505. <xs:enumeration value=""AHT"" />
  8506. <xs:enumeration value=""AHU"" />
  8507. <xs:enumeration value=""AHV"" />
  8508. <xs:enumeration value=""AHW"" />
  8509. <xs:enumeration value=""AHX"" />
  8510. <xs:enumeration value=""AHY"" />
  8511. <xs:enumeration value=""AHZ"" />
  8512. <xs:enumeration value=""AIA"" />
  8513. <xs:enumeration value=""AIB"" />
  8514. <xs:enumeration value=""AIC"" />
  8515. <xs:enumeration value=""AID"" />
  8516. <xs:enumeration value=""AIE"" />
  8517. <xs:enumeration value=""AIF"" />
  8518. <xs:enumeration value=""AIG"" />
  8519. <xs:enumeration value=""AIH"" />
  8520. <xs:enumeration value=""AII"" />
  8521. <xs:enumeration value=""AIJ"" />
  8522. <xs:enumeration value=""AIK"" />
  8523. <xs:enumeration value=""AIL"" />
  8524. <xs:enumeration value=""AIM"" />
  8525. <xs:enumeration value=""AIN"" />
  8526. <xs:enumeration value=""AIO"" />
  8527. <xs:enumeration value=""AIP"" />
  8528. <xs:enumeration value=""AIQ"" />
  8529. <xs:enumeration value=""AIR"" />
  8530. <xs:enumeration value=""AIS"" />
  8531. <xs:enumeration value=""AIT"" />
  8532. <xs:enumeration value=""AIU"" />
  8533. <xs:enumeration value=""AIV"" />
  8534. <xs:enumeration value=""AIW"" />
  8535. <xs:enumeration value=""AIX"" />
  8536. <xs:enumeration value=""AIY"" />
  8537. <xs:enumeration value=""ALA"" />
  8538. <xs:enumeration value=""ALB"" />
  8539. <xs:enumeration value=""ALC"" />
  8540. <xs:enumeration value=""ALD"" />
  8541. <xs:enumeration value=""ALE"" />
  8542. <xs:enumeration value=""ALF"" />
  8543. <xs:enumeration value=""ALG"" />
  8544. <xs:enumeration value=""ALH"" />
  8545. <xs:enumeration value=""ALI"" />
  8546. <xs:enumeration value=""ALJ"" />
  8547. <xs:enumeration value=""ALK"" />
  8548. <xs:enumeration value=""ALL"" />
  8549. <xs:enumeration value=""ALM"" />
  8550. <xs:enumeration value=""ALN"" />
  8551. <xs:enumeration value=""ALO"" />
  8552. <xs:enumeration value=""ALP"" />
  8553. <xs:enumeration value=""ALQ"" />
  8554. <xs:enumeration value=""ALR"" />
  8555. <xs:enumeration value=""ALS"" />
  8556. <xs:enumeration value=""ALT"" />
  8557. <xs:enumeration value=""ALU"" />
  8558. <xs:enumeration value=""ALV"" />
  8559. <xs:enumeration value=""ALW"" />
  8560. <xs:enumeration value=""ALX"" />
  8561. <xs:enumeration value=""ALY"" />
  8562. <xs:enumeration value=""ALZ"" />
  8563. <xs:enumeration value=""AMA"" />
  8564. <xs:enumeration value=""AMB"" />
  8565. <xs:enumeration value=""AMC"" />
  8566. <xs:enumeration value=""AP"" />
  8567. <xs:enumeration value=""ASC"" />
  8568. <xs:enumeration value=""AU"" />
  8569. <xs:enumeration value=""AV"" />
  8570. <xs:enumeration value=""AWB"" />
  8571. <xs:enumeration value=""BA"" />
  8572. <xs:enumeration value=""BC"" />
  8573. <xs:enumeration value=""BD"" />
  8574. <xs:enumeration value=""BE"" />
  8575. <xs:enumeration value=""BH"" />
  8576. <xs:enumeration value=""BM"" />
  8577. <xs:enumeration value=""BN"" />
  8578. <xs:enumeration value=""BO"" />
  8579. <xs:enumeration value=""BR"" />
  8580. <xs:enumeration value=""BT"" />
  8581. <xs:enumeration value=""BW"" />
  8582. <xs:enumeration value=""CAS"" />
  8583. <xs:enumeration value=""CD"" />
  8584. <xs:enumeration value=""CEC"" />
  8585. <xs:enumeration value=""CFE"" />
  8586. <xs:enumeration value=""CFO"" />
  8587. <xs:enumeration value=""CG"" />
  8588. <xs:enumeration value=""CH"" />
  8589. <xs:enumeration value=""CK"" />
  8590. <xs:enumeration value=""CKN"" />
  8591. <xs:enumeration value=""CM"" />
  8592. <xs:enumeration value=""CMR"" />
  8593. <xs:enumeration value=""CN"" />
  8594. <xs:enumeration value=""CNO"" />
  8595. <xs:enumeration value=""CO"" />
  8596. <xs:enumeration value=""COF"" />
  8597. <xs:enumeration value=""CP"" />
  8598. <xs:enumeration value=""CR"" />
  8599. <xs:enumeration value=""CRN"" />
  8600. <xs:enumeration value=""CS"" />
  8601. <xs:enumeration value=""CST"" />
  8602. <xs:enumeration value=""CT"" />
  8603. <xs:enumeration value=""CU"" />
  8604. <xs:enumeration value=""CV"" />
  8605. <xs:enumeration value=""CW"" />
  8606. <xs:enumeration value=""CZ"" />
  8607. <xs:enumeration value=""DA"" />
  8608. <xs:enumeration value=""DAN"" />
  8609. <xs:enumeration value=""DB"" />
  8610. <xs:enumeration value=""DI"" />
  8611. <xs:enumeration value=""DL"" />
  8612. <xs:enumeration value=""DM"" />
  8613. <xs:enumeration value=""DQ"" />
  8614. <xs:enumeration value=""DR"" />
  8615. <xs:enumeration value=""EA"" />
  8616. <xs:enumeration value=""EB"" />
  8617. <xs:enumeration value=""ED"" />
  8618. <xs:enumeration value=""EE"" />
  8619. <xs:enumeration value=""EI"" />
  8620. <xs:enumeration value=""EN"" />
  8621. <xs:enumeration value=""EP"" />
  8622. <xs:enumeration value=""EQ"" />
  8623. <xs:enumeration value=""ER"" />
  8624. <xs:enumeration value=""ERN"" />
  8625. <xs:enumeration value=""ET"" />
  8626. <xs:enumeration value=""EX"" />
  8627. <xs:enumeration value=""FC"" />
  8628. <xs:enumeration value=""FF"" />
  8629. <xs:enumeration value=""FI"" />
  8630. <xs:enumeration value=""FLW"" />
  8631. <xs:enumeration value=""FN"" />
  8632. <xs:enumeration value=""FO"" />
  8633. <xs:enumeration value=""FS"" />
  8634. <xs:enumeration value=""FT"" />
  8635. <xs:enumeration value=""FV"" />
  8636. <xs:enumeration value=""FX"" />
  8637. <xs:enumeration value=""GA"" />
  8638. <xs:enumeration value=""GC"" />
  8639. <xs:enumeration value=""GD"" />
  8640. <xs:enumeration value=""GDN"" />
  8641. <xs:enumeration value=""GN"" />
  8642. <xs:enumeration value=""HS"" />
  8643. <xs:enumeration value=""HWB"" />
  8644. <xs:enumeration value=""IA"" />
  8645. <xs:enumeration value=""IB"" />
  8646. <xs:enumeration value=""ICA"" />
  8647. <xs:enumeration value=""ICE"" />
  8648. <xs:enumeration value=""ICO"" />
  8649. <xs:enumeration value=""II"" />
  8650. <xs:enumeration value=""IL"" />
  8651. <xs:enumeration value=""INB"" />
  8652. <xs:enumeration value=""INN"" />
  8653. <xs:enumeration value=""INO"" />
  8654. <xs:enumeration value=""IP"" />
  8655. <xs:enumeration value=""IS"" />
  8656. <xs:enumeration value=""IT"" />
  8657. <xs:enumeration value=""IV"" />
  8658. <xs:enumeration value=""JB"" />
  8659. <xs:enumeration value=""JE"" />
  8660. <xs:enumeration value=""LA"" />
  8661. <xs:enumeration value=""LAN"" />
  8662. <xs:enumeration value=""LAR"" />
  8663. <xs:enumeration value=""LB"" />
  8664. <xs:enumeration value=""LC"" />
  8665. <xs:enumeration value=""LI"" />
  8666. <xs:enumeration value=""LO"" />
  8667. <xs:enumeration value=""LS"" />
  8668. <xs:enumeration value=""MA"" />
  8669. <xs:enumeration value=""MB"" />
  8670. <xs:enumeration value=""MF"" />
  8671. <xs:enumeration value=""MG"" />
  8672. <xs:enumeration value=""MH"" />
  8673. <xs:enumeration value=""MR"" />
  8674. <xs:enumeration value=""MRN"" />
  8675. <xs:enumeration value=""MS"" />
  8676. <xs:enumeration value=""MSS"" />
  8677. <xs:enumeration value=""MWB"" />
  8678. <xs:enumeration value=""NA"" />
  8679. <xs:enumeration value=""OH"" />
  8680. <xs:enumeration value=""OI"" />
  8681. <xs:enumeration value=""ON"" />
  8682. <xs:enumeration value=""OP"" />
  8683. <xs:enumeration value=""OR"" />
  8684. <xs:enumeration value=""PB"" />
  8685. <xs:enumeration value=""PC"" />
  8686. <xs:enumeration value=""PD"" />
  8687. <xs:enumeration value=""PE"" />
  8688. <xs:enumeration value=""PF"" />
  8689. <xs:enumeration value=""PI"" />
  8690. <xs:enumeration value=""PK"" />
  8691. <xs:enumeration value=""PL"" />
  8692. <xs:enumeration value=""POR"" />
  8693. <xs:enumeration value=""PP"" />
  8694. <xs:enumeration value=""PQ"" />
  8695. <xs:enumeration value=""PR"" />
  8696. <xs:enumeration value=""PS"" />
  8697. <xs:enumeration value=""PW"" />
  8698. <xs:enumeration value=""PY"" />
  8699. <xs:enumeration value=""RA"" />
  8700. <xs:enumeration value=""RC"" />
  8701. <xs:enumeration value=""RCN"" />
  8702. <xs:enumeration value=""RE"" />
  8703. <xs:enumeration value=""REN"" />
  8704. <xs:enumeration value=""RF"" />
  8705. <xs:enumeration value=""RR"" />
  8706. <xs:enumeration value=""RT"" />
  8707. <xs:enumeration value=""SA"" />
  8708. <xs:enumeration value=""SB"" />
  8709. <xs:enumeration value=""SD"" />
  8710. <xs:enumeration value=""SE"" />
  8711. <xs:enumeration value=""SF"" />
  8712. <xs:enumeration value=""SH"" />
  8713. <xs:enumeration value=""SI"" />
  8714. <xs:enumeration value=""SM"" />
  8715. <xs:enumeration value=""SN"" />
  8716. <xs:enumeration value=""SP"" />
  8717. <xs:enumeration value=""SQ"" />
  8718. <xs:enumeration value=""SRN"" />
  8719. <xs:enumeration value=""SS"" />
  8720. <xs:enumeration value=""STA"" />
  8721. <xs:enumeration value=""SW"" />
  8722. <xs:enumeration value=""SZ"" />
  8723. <xs:enumeration value=""TB"" />
  8724. <xs:enumeration value=""TE"" />
  8725. <xs:enumeration value=""TF"" />
  8726. <xs:enumeration value=""TI"" />
  8727. <xs:enumeration value=""TL"" />
  8728. <xs:enumeration value=""TN"" />
  8729. <xs:enumeration value=""TP"" />
  8730. <xs:enumeration value=""UAR"" />
  8731. <xs:enumeration value=""UC"" />
  8732. <xs:enumeration value=""UCN"" />
  8733. <xs:enumeration value=""UN"" />
  8734. <xs:enumeration value=""UO"" />
  8735. <xs:enumeration value=""VA"" />
  8736. <xs:enumeration value=""VC"" />
  8737. <xs:enumeration value=""VM"" />
  8738. <xs:enumeration value=""VN"" />
  8739. <xs:enumeration value=""VON"" />
  8740. <xs:enumeration value=""VP"" />
  8741. <xs:enumeration value=""VR"" />
  8742. <xs:enumeration value=""VS"" />
  8743. <xs:enumeration value=""VT"" />
  8744. <xs:enumeration value=""VV"" />
  8745. <xs:enumeration value=""WE"" />
  8746. <xs:enumeration value=""WM"" />
  8747. <xs:enumeration value=""WN"" />
  8748. <xs:enumeration value=""WR"" />
  8749. <xs:enumeration value=""WS"" />
  8750. <xs:enumeration value=""WY"" />
  8751. <xs:enumeration value=""XA"" />
  8752. <xs:enumeration value=""XC"" />
  8753. <xs:enumeration value=""XP"" />
  8754. <xs:enumeration value=""ZZZ"" />
  8755. </xs:restriction>
  8756. </xs:simpleType>
  8757. <xs:simpleType name=""EDIFACT_ID_3227"">
  8758. <xs:restriction base=""xs:string"">
  8759. <xs:enumeration value=""1"" />
  8760. <xs:enumeration value=""10"" />
  8761. <xs:enumeration value=""100"" />
  8762. <xs:enumeration value=""101"" />
  8763. <xs:enumeration value=""102"" />
  8764. <xs:enumeration value=""103"" />
  8765. <xs:enumeration value=""104"" />
  8766. <xs:enumeration value=""105"" />
  8767. <xs:enumeration value=""106"" />
  8768. <xs:enumeration value=""107"" />
  8769. <xs:enumeration value=""108"" />
  8770. <xs:enumeration value=""109"" />
  8771. <xs:enumeration value=""11"" />
  8772. <xs:enumeration value=""110"" />
  8773. <xs:enumeration value=""111"" />
  8774. <xs:enumeration value=""113"" />
  8775. <xs:enumeration value=""114"" />
  8776. <xs:enumeration value=""115"" />
  8777. <xs:enumeration value=""116"" />
  8778. <xs:enumeration value=""118"" />
  8779. <xs:enumeration value=""119"" />
  8780. <xs:enumeration value=""12"" />
  8781. <xs:enumeration value=""120"" />
  8782. <xs:enumeration value=""121"" />
  8783. <xs:enumeration value=""122"" />
  8784. <xs:enumeration value=""123"" />
  8785. <xs:enumeration value=""124"" />
  8786. <xs:enumeration value=""125"" />
  8787. <xs:enumeration value=""126"" />
  8788. <xs:enumeration value=""127"" />
  8789. <xs:enumeration value=""128"" />
  8790. <xs:enumeration value=""129"" />
  8791. <xs:enumeration value=""13"" />
  8792. <xs:enumeration value=""130"" />
  8793. <xs:enumeration value=""131"" />
  8794. <xs:enumeration value=""132"" />
  8795. <xs:enumeration value=""133"" />
  8796. <xs:enumeration value=""134"" />
  8797. <xs:enumeration value=""135"" />
  8798. <xs:enumeration value=""136"" />
  8799. <xs:enumeration value=""137"" />
  8800. <xs:enumeration value=""138"" />
  8801. <xs:enumeration value=""139"" />
  8802. <xs:enumeration value=""14"" />
  8803. <xs:enumeration value=""140"" />
  8804. <xs:enumeration value=""141"" />
  8805. <xs:enumeration value=""142"" />
  8806. <xs:enumeration value=""143"" />
  8807. <xs:enumeration value=""144"" />
  8808. <xs:enumeration value=""145"" />
  8809. <xs:enumeration value=""146"" />
  8810. <xs:enumeration value=""147"" />
  8811. <xs:enumeration value=""148"" />
  8812. <xs:enumeration value=""149"" />
  8813. <xs:enumeration value=""15"" />
  8814. <xs:enumeration value=""151"" />
  8815. <xs:enumeration value=""152"" />
  8816. <xs:enumeration value=""153"" />
  8817. <xs:enumeration value=""154"" />
  8818. <xs:enumeration value=""155"" />
  8819. <xs:enumeration value=""156"" />
  8820. <xs:enumeration value=""157"" />
  8821. <xs:enumeration value=""158"" />
  8822. <xs:enumeration value=""159"" />
  8823. <xs:enumeration value=""16"" />
  8824. <xs:enumeration value=""160"" />
  8825. <xs:enumeration value=""161"" />
  8826. <xs:enumeration value=""162"" />
  8827. <xs:enumeration value=""163"" />
  8828. <xs:enumeration value=""164"" />
  8829. <xs:enumeration value=""165"" />
  8830. <xs:enumeration value=""166"" />
  8831. <xs:enumeration value=""167"" />
  8832. <xs:enumeration value=""168"" />
  8833. <xs:enumeration value=""17"" />
  8834. <xs:enumeration value=""18"" />
  8835. <xs:enumeration value=""19"" />
  8836. <xs:enumeration value=""2"" />
  8837. <xs:enumeration value=""20"" />
  8838. <xs:enumeration value=""21"" />
  8839. <xs:enumeration value=""22"" />
  8840. <xs:enumeration value=""23"" />
  8841. <xs:enumeration value=""24"" />
  8842. <xs:enumeration value=""25"" />
  8843. <xs:enumeration value=""26"" />
  8844. <xs:enumeration value=""27"" />
  8845. <xs:enumeration value=""28"" />
  8846. <xs:enumeration value=""29"" />
  8847. <xs:enumeration value=""30"" />
  8848. <xs:enumeration value=""31"" />
  8849. <xs:enumeration value=""32"" />
  8850. <xs:enumeration value=""33"" />
  8851. <xs:enumeration value=""34"" />
  8852. <xs:enumeration value=""35"" />
  8853. <xs:enumeration value=""36"" />
  8854. <xs:enumeration value=""37"" />
  8855. <xs:enumeration value=""38"" />
  8856. <xs:enumeration value=""39"" />
  8857. <xs:enumeration value=""4"" />
  8858. <xs:enumeration value=""40"" />
  8859. <xs:enumeration value=""41"" />
  8860. <xs:enumeration value=""42"" />
  8861. <xs:enumeration value=""43"" />
  8862. <xs:enumeration value=""44"" />
  8863. <xs:enumeration value=""45"" />
  8864. <xs:enumeration value=""46"" />
  8865. <xs:enumeration value=""47"" />
  8866. <xs:enumeration value=""48"" />
  8867. <xs:enumeration value=""49"" />
  8868. <xs:enumeration value=""5"" />
  8869. <xs:enumeration value=""50"" />
  8870. <xs:enumeration value=""51"" />
  8871. <xs:enumeration value=""52"" />
  8872. <xs:enumeration value=""53"" />
  8873. <xs:enumeration value=""54"" />
  8874. <xs:enumeration value=""55"" />
  8875. <xs:enumeration value=""56"" />
  8876. <xs:enumeration value=""57"" />
  8877. <xs:enumeration value=""58"" />
  8878. <xs:enumeration value=""60"" />
  8879. <xs:enumeration value=""61"" />
  8880. <xs:enumeration value=""62"" />
  8881. <xs:enumeration value=""64"" />
  8882. <xs:enumeration value=""66"" />
  8883. <xs:enumeration value=""67"" />
  8884. <xs:enumeration value=""68"" />
  8885. <xs:enumeration value=""69"" />
  8886. <xs:enumeration value=""7"" />
  8887. <xs:enumeration value=""70"" />
  8888. <xs:enumeration value=""71"" />
  8889. <xs:enumeration value=""72"" />
  8890. <xs:enumeration value=""73"" />
  8891. <xs:enumeration value=""74"" />
  8892. <xs:enumeration value=""75"" />
  8893. <xs:enumeration value=""76"" />
  8894. <xs:enumeration value=""77"" />
  8895. <xs:enumeration value=""78"" />
  8896. <xs:enumeration value=""79"" />
  8897. <xs:enumeration value=""8"" />
  8898. <xs:enumeration value=""80"" />
  8899. <xs:enumeration value=""81"" />
  8900. <xs:enumeration value=""82"" />
  8901. <xs:enumeration value=""83"" />
  8902. <xs:enumeration value=""84"" />
  8903. <xs:enumeration value=""85"" />
  8904. <xs:enumeration value=""86"" />
  8905. <xs:enumeration value=""87"" />
  8906. <xs:enumeration value=""88"" />
  8907. <xs:enumeration value=""89"" />
  8908. <xs:enumeration value=""9"" />
  8909. <xs:enumeration value=""90"" />
  8910. <xs:enumeration value=""91"" />
  8911. <xs:enumeration value=""92"" />
  8912. <xs:enumeration value=""93"" />
  8913. <xs:enumeration value=""96"" />
  8914. <xs:enumeration value=""97"" />
  8915. <xs:enumeration value=""98"" />
  8916. <xs:enumeration value=""99"" />
  8917. <xs:enumeration value=""ZZZ"" />
  8918. </xs:restriction>
  8919. </xs:simpleType>
  8920. <xs:simpleType name=""EDIFACT_ID_4451"">
  8921. <xs:restriction base=""xs:string"">
  8922. <xs:enumeration value=""AAA"" />
  8923. <xs:enumeration value=""AAB"" />
  8924. <xs:enumeration value=""AAC"" />
  8925. <xs:enumeration value=""AAD"" />
  8926. <xs:enumeration value=""AAE"" />
  8927. <xs:enumeration value=""AAF"" />
  8928. <xs:enumeration value=""AAG"" />
  8929. <xs:enumeration value=""AAH"" />
  8930. <xs:enumeration value=""AAI"" />
  8931. <xs:enumeration value=""AAJ"" />
  8932. <xs:enumeration value=""AAK"" />
  8933. <xs:enumeration value=""AAL"" />
  8934. <xs:enumeration value=""AAM"" />
  8935. <xs:enumeration value=""AAN"" />
  8936. <xs:enumeration value=""AAO"" />
  8937. <xs:enumeration value=""AAP"" />
  8938. <xs:enumeration value=""AAQ"" />
  8939. <xs:enumeration value=""AAR"" />
  8940. <xs:enumeration value=""AAS"" />
  8941. <xs:enumeration value=""AAT"" />
  8942. <xs:enumeration value=""AAU"" />
  8943. <xs:enumeration value=""AAV"" />
  8944. <xs:enumeration value=""AAW"" />
  8945. <xs:enumeration value=""AAX"" />
  8946. <xs:enumeration value=""AAY"" />
  8947. <xs:enumeration value=""AAZ"" />
  8948. <xs:enumeration value=""ABA"" />
  8949. <xs:enumeration value=""ABC"" />
  8950. <xs:enumeration value=""ABD"" />
  8951. <xs:enumeration value=""ABE"" />
  8952. <xs:enumeration value=""ABF"" />
  8953. <xs:enumeration value=""ABG"" />
  8954. <xs:enumeration value=""ABH"" />
  8955. <xs:enumeration value=""ABI"" />
  8956. <xs:enumeration value=""ABJ"" />
  8957. <xs:enumeration value=""ABK"" />
  8958. <xs:enumeration value=""ABL"" />
  8959. <xs:enumeration value=""ABM"" />
  8960. <xs:enumeration value=""ABN"" />
  8961. <xs:enumeration value=""ABO"" />
  8962. <xs:enumeration value=""ABP"" />
  8963. <xs:enumeration value=""ABQ"" />
  8964. <xs:enumeration value=""ABR"" />
  8965. <xs:enumeration value=""ABS"" />
  8966. <xs:enumeration value=""ABT"" />
  8967. <xs:enumeration value=""ABU"" />
  8968. <xs:enumeration value=""ABV"" />
  8969. <xs:enumeration value=""ABW"" />
  8970. <xs:enumeration value=""ABX"" />
  8971. <xs:enumeration value=""ABY"" />
  8972. <xs:enumeration value=""ABZ"" />
  8973. <xs:enumeration value=""ACA"" />
  8974. <xs:enumeration value=""ACB"" />
  8975. <xs:enumeration value=""ACC"" />
  8976. <xs:enumeration value=""ACD"" />
  8977. <xs:enumeration value=""ACE"" />
  8978. <xs:enumeration value=""ACF"" />
  8979. <xs:enumeration value=""ACG"" />
  8980. <xs:enumeration value=""ACH"" />
  8981. <xs:enumeration value=""ACI"" />
  8982. <xs:enumeration value=""ACJ"" />
  8983. <xs:enumeration value=""ACK"" />
  8984. <xs:enumeration value=""ACL"" />
  8985. <xs:enumeration value=""ACM"" />
  8986. <xs:enumeration value=""ACN"" />
  8987. <xs:enumeration value=""ACO"" />
  8988. <xs:enumeration value=""ACP"" />
  8989. <xs:enumeration value=""ACQ"" />
  8990. <xs:enumeration value=""ACR"" />
  8991. <xs:enumeration value=""ACS"" />
  8992. <xs:enumeration value=""ACT"" />
  8993. <xs:enumeration value=""ACU"" />
  8994. <xs:enumeration value=""ACV"" />
  8995. <xs:enumeration value=""ACW"" />
  8996. <xs:enumeration value=""ACX"" />
  8997. <xs:enumeration value=""ACY"" />
  8998. <xs:enumeration value=""ACZ"" />
  8999. <xs:enumeration value=""ADA"" />
  9000. <xs:enumeration value=""ADB"" />
  9001. <xs:enumeration value=""ADC"" />
  9002. <xs:enumeration value=""ADE"" />
  9003. <xs:enumeration value=""ADF"" />
  9004. <xs:enumeration value=""ADG"" />
  9005. <xs:enumeration value=""ADH"" />
  9006. <xs:enumeration value=""ADI"" />
  9007. <xs:enumeration value=""ADJ"" />
  9008. <xs:enumeration value=""ADK"" />
  9009. <xs:enumeration value=""ADL"" />
  9010. <xs:enumeration value=""ADM"" />
  9011. <xs:enumeration value=""ADN"" />
  9012. <xs:enumeration value=""ADO"" />
  9013. <xs:enumeration value=""ALC"" />
  9014. <xs:enumeration value=""ALL"" />
  9015. <xs:enumeration value=""ARR"" />
  9016. <xs:enumeration value=""AUT"" />
  9017. <xs:enumeration value=""BLC"" />
  9018. <xs:enumeration value=""BLR"" />
  9019. <xs:enumeration value=""CCI"" />
  9020. <xs:enumeration value=""CEX"" />
  9021. <xs:enumeration value=""CHG"" />
  9022. <xs:enumeration value=""CIP"" />
  9023. <xs:enumeration value=""CLP"" />
  9024. <xs:enumeration value=""CLR"" />
  9025. <xs:enumeration value=""COI"" />
  9026. <xs:enumeration value=""CUR"" />
  9027. <xs:enumeration value=""CUS"" />
  9028. <xs:enumeration value=""DAR"" />
  9029. <xs:enumeration value=""DCL"" />
  9030. <xs:enumeration value=""DEL"" />
  9031. <xs:enumeration value=""DIN"" />
  9032. <xs:enumeration value=""DOC"" />
  9033. <xs:enumeration value=""DUT"" />
  9034. <xs:enumeration value=""EUR"" />
  9035. <xs:enumeration value=""FBC"" />
  9036. <xs:enumeration value=""GBL"" />
  9037. <xs:enumeration value=""GEN"" />
  9038. <xs:enumeration value=""GS7"" />
  9039. <xs:enumeration value=""HAN"" />
  9040. <xs:enumeration value=""HAZ"" />
  9041. <xs:enumeration value=""ICN"" />
  9042. <xs:enumeration value=""IIN"" />
  9043. <xs:enumeration value=""IMI"" />
  9044. <xs:enumeration value=""IND"" />
  9045. <xs:enumeration value=""INS"" />
  9046. <xs:enumeration value=""INV"" />
  9047. <xs:enumeration value=""IRP"" />
  9048. <xs:enumeration value=""ITR"" />
  9049. <xs:enumeration value=""ITS"" />
  9050. <xs:enumeration value=""LIN"" />
  9051. <xs:enumeration value=""LOI"" />
  9052. <xs:enumeration value=""MCO"" />
  9053. <xs:enumeration value=""MKS"" />
  9054. <xs:enumeration value=""ORI"" />
  9055. <xs:enumeration value=""OSI"" />
  9056. <xs:enumeration value=""PAC"" />
  9057. <xs:enumeration value=""PAI"" />
  9058. <xs:enumeration value=""PAY"" />
  9059. <xs:enumeration value=""PKG"" />
  9060. <xs:enumeration value=""PKT"" />
  9061. <xs:enumeration value=""PMD"" />
  9062. <xs:enumeration value=""PMT"" />
  9063. <xs:enumeration value=""PRD"" />
  9064. <xs:enumeration value=""PRF"" />
  9065. <xs:enumeration value=""PRI"" />
  9066. <xs:enumeration value=""PUR"" />
  9067. <xs:enumeration value=""QIN"" />
  9068. <xs:enumeration value=""QQD"" />
  9069. <xs:enumeration value=""QUT"" />
  9070. <xs:enumeration value=""RAH"" />
  9071. <xs:enumeration value=""REG"" />
  9072. <xs:enumeration value=""RET"" />
  9073. <xs:enumeration value=""REV"" />
  9074. <xs:enumeration value=""RQR"" />
  9075. <xs:enumeration value=""RQT"" />
  9076. <xs:enumeration value=""SAF"" />
  9077. <xs:enumeration value=""SIC"" />
  9078. <xs:enumeration value=""SIN"" />
  9079. <xs:enumeration value=""SLR"" />
  9080. <xs:enumeration value=""SPA"" />
  9081. <xs:enumeration value=""SPG"" />
  9082. <xs:enumeration value=""SPH"" />
  9083. <xs:enumeration value=""SPP"" />
  9084. <xs:enumeration value=""SPT"" />
  9085. <xs:enumeration value=""SRN"" />
  9086. <xs:enumeration value=""SSR"" />
  9087. <xs:enumeration value=""SUR"" />
  9088. <xs:enumeration value=""TCA"" />
  9089. <xs:enumeration value=""TDT"" />
  9090. <xs:enumeration value=""TRA"" />
  9091. <xs:enumeration value=""TRR"" />
  9092. <xs:enumeration value=""TXD"" />
  9093. <xs:enumeration value=""WHI"" />
  9094. <xs:enumeration value=""ZZZ"" />
  9095. </xs:restriction>
  9096. </xs:simpleType>
  9097. <xs:simpleType name=""EDIFACT_ID_4453"">
  9098. <xs:restriction base=""xs:string"">
  9099. <xs:enumeration value=""1"" />
  9100. <xs:enumeration value=""2"" />
  9101. <xs:enumeration value=""3"" />
  9102. <xs:enumeration value=""4"" />
  9103. </xs:restriction>
  9104. </xs:simpleType>
  9105. <xs:simpleType name=""EDIFACT_ID_6069"">
  9106. <xs:restriction base=""xs:string"">
  9107. <xs:enumeration value=""1"" />
  9108. <xs:enumeration value=""10"" />
  9109. <xs:enumeration value=""11"" />
  9110. <xs:enumeration value=""12"" />
  9111. <xs:enumeration value=""13"" />
  9112. <xs:enumeration value=""14"" />
  9113. <xs:enumeration value=""15"" />
  9114. <xs:enumeration value=""16"" />
  9115. <xs:enumeration value=""17"" />
  9116. <xs:enumeration value=""18"" />
  9117. <xs:enumeration value=""19"" />
  9118. <xs:enumeration value=""2"" />
  9119. <xs:enumeration value=""20"" />
  9120. <xs:enumeration value=""21"" />
  9121. <xs:enumeration value=""22"" />
  9122. <xs:enumeration value=""23"" />
  9123. <xs:enumeration value=""24"" />
  9124. <xs:enumeration value=""25"" />
  9125. <xs:enumeration value=""26"" />
  9126. <xs:enumeration value=""27"" />
  9127. <xs:enumeration value=""28"" />
  9128. <xs:enumeration value=""29"" />
  9129. <xs:enumeration value=""3"" />
  9130. <xs:enumeration value=""30"" />
  9131. <xs:enumeration value=""31"" />
  9132. <xs:enumeration value=""4"" />
  9133. <xs:enumeration value=""5"" />
  9134. <xs:enumeration value=""6"" />
  9135. <xs:enumeration value=""7"" />
  9136. <xs:enumeration value=""8"" />
  9137. <xs:enumeration value=""9"" />
  9138. </xs:restriction>
  9139. </xs:simpleType>
  9140. <xs:simpleType name=""EDIFACT_ID_1373"">
  9141. <xs:restriction base=""xs:string"">
  9142. <xs:enumeration value=""1"" />
  9143. <xs:enumeration value=""10"" />
  9144. <xs:enumeration value=""11"" />
  9145. <xs:enumeration value=""12"" />
  9146. <xs:enumeration value=""13"" />
  9147. <xs:enumeration value=""14"" />
  9148. <xs:enumeration value=""15"" />
  9149. <xs:enumeration value=""16"" />
  9150. <xs:enumeration value=""17"" />
  9151. <xs:enumeration value=""18"" />
  9152. <xs:enumeration value=""19"" />
  9153. <xs:enumeration value=""2"" />
  9154. <xs:enumeration value=""20"" />
  9155. <xs:enumeration value=""21"" />
  9156. <xs:enumeration value=""3"" />
  9157. <xs:enumeration value=""4"" />
  9158. <xs:enumeration value=""5"" />
  9159. <xs:enumeration value=""6"" />
  9160. <xs:enumeration value=""7"" />
  9161. <xs:enumeration value=""8"" />
  9162. <xs:enumeration value=""9"" />
  9163. </xs:restriction>
  9164. </xs:simpleType>
  9165. <xs:simpleType name=""EDIFACT_ID_9015"">
  9166. <xs:restriction base=""xs:string"">
  9167. <xs:enumeration value=""1"" />
  9168. </xs:restriction>
  9169. </xs:simpleType>
  9170. <xs:simpleType name=""EDIFACT_ID_9011"">
  9171. <xs:restriction base=""xs:string"" />
  9172. </xs:simpleType>
  9173. <xs:simpleType name=""EDIFACT_ID_9013"">
  9174. <xs:restriction base=""xs:string"">
  9175. <xs:enumeration value=""1"" />
  9176. <xs:enumeration value=""10"" />
  9177. <xs:enumeration value=""11"" />
  9178. <xs:enumeration value=""12"" />
  9179. <xs:enumeration value=""13"" />
  9180. <xs:enumeration value=""14"" />
  9181. <xs:enumeration value=""15"" />
  9182. <xs:enumeration value=""16"" />
  9183. <xs:enumeration value=""17"" />
  9184. <xs:enumeration value=""18"" />
  9185. <xs:enumeration value=""19"" />
  9186. <xs:enumeration value=""2"" />
  9187. <xs:enumeration value=""20"" />
  9188. <xs:enumeration value=""21"" />
  9189. <xs:enumeration value=""22"" />
  9190. <xs:enumeration value=""23"" />
  9191. <xs:enumeration value=""24"" />
  9192. <xs:enumeration value=""25"" />
  9193. <xs:enumeration value=""26"" />
  9194. <xs:enumeration value=""27"" />
  9195. <xs:enumeration value=""28"" />
  9196. <xs:enumeration value=""29"" />
  9197. <xs:enumeration value=""3"" />
  9198. <xs:enumeration value=""30"" />
  9199. <xs:enumeration value=""31"" />
  9200. <xs:enumeration value=""32"" />
  9201. <xs:enumeration value=""33"" />
  9202. <xs:enumeration value=""34"" />
  9203. <xs:enumeration value=""35"" />
  9204. <xs:enumeration value=""36"" />
  9205. <xs:enumeration value=""37"" />
  9206. <xs:enumeration value=""38"" />
  9207. <xs:enumeration value=""39"" />
  9208. <xs:enumeration value=""4"" />
  9209. <xs:enumeration value=""40"" />
  9210. <xs:enumeration value=""41"" />
  9211. <xs:enumeration value=""42"" />
  9212. <xs:enumeration value=""43"" />
  9213. <xs:enumeration value=""44"" />
  9214. <xs:enumeration value=""45"" />
  9215. <xs:enumeration value=""46"" />
  9216. <xs:enumeration value=""47"" />
  9217. <xs:enumeration value=""48"" />
  9218. <xs:enumeration value=""49"" />
  9219. <xs:enumeration value=""5"" />
  9220. <xs:enumeration value=""50"" />
  9221. <xs:enumeration value=""51"" />
  9222. <xs:enumeration value=""52"" />
  9223. <xs:enumeration value=""53"" />
  9224. <xs:enumeration value=""54"" />
  9225. <xs:enumeration value=""55"" />
  9226. <xs:enumeration value=""56"" />
  9227. <xs:enumeration value=""57"" />
  9228. <xs:enumeration value=""58"" />
  9229. <xs:enumeration value=""59"" />
  9230. <xs:enumeration value=""6"" />
  9231. <xs:enumeration value=""60"" />
  9232. <xs:enumeration value=""61"" />
  9233. <xs:enumeration value=""62"" />
  9234. <xs:enumeration value=""63"" />
  9235. <xs:enumeration value=""64"" />
  9236. <xs:enumeration value=""65"" />
  9237. <xs:enumeration value=""7"" />
  9238. <xs:enumeration value=""8"" />
  9239. <xs:enumeration value=""9"" />
  9240. </xs:restriction>
  9241. </xs:simpleType>
  9242. <xs:simpleType name=""EDIFACT_ID_3153"">
  9243. <xs:restriction base=""xs:string"">
  9244. <xs:enumeration value=""AA"" />
  9245. <xs:enumeration value=""AB"" />
  9246. <xs:enumeration value=""AC"" />
  9247. <xs:enumeration value=""CA"" />
  9248. <xs:enumeration value=""EI"" />
  9249. <xs:enumeration value=""EM"" />
  9250. <xs:enumeration value=""EX"" />
  9251. <xs:enumeration value=""FT"" />
  9252. <xs:enumeration value=""FX"" />
  9253. <xs:enumeration value=""GM"" />
  9254. <xs:enumeration value=""IE"" />
  9255. <xs:enumeration value=""IM"" />
  9256. <xs:enumeration value=""MA"" />
  9257. <xs:enumeration value=""PB"" />
  9258. <xs:enumeration value=""PS"" />
  9259. <xs:enumeration value=""SW"" />
  9260. <xs:enumeration value=""TE"" />
  9261. <xs:enumeration value=""TG"" />
  9262. <xs:enumeration value=""TL"" />
  9263. <xs:enumeration value=""TM"" />
  9264. <xs:enumeration value=""TT"" />
  9265. <xs:enumeration value=""TX"" />
  9266. <xs:enumeration value=""XF"" />
  9267. </xs:restriction>
  9268. </xs:simpleType>
  9269. <xs:simpleType name=""EDIFACT_ID_4233"">
  9270. <xs:restriction base=""xs:string"">
  9271. <xs:enumeration value=""1"" />
  9272. <xs:enumeration value=""10"" />
  9273. <xs:enumeration value=""11"" />
  9274. <xs:enumeration value=""12"" />
  9275. <xs:enumeration value=""13"" />
  9276. <xs:enumeration value=""14"" />
  9277. <xs:enumeration value=""15"" />
  9278. <xs:enumeration value=""16"" />
  9279. <xs:enumeration value=""17"" />
  9280. <xs:enumeration value=""18"" />
  9281. <xs:enumeration value=""19"" />
  9282. <xs:enumeration value=""2"" />
  9283. <xs:enumeration value=""20"" />
  9284. <xs:enumeration value=""21"" />
  9285. <xs:enumeration value=""22"" />
  9286. <xs:enumeration value=""23"" />
  9287. <xs:enumeration value=""24"" />
  9288. <xs:enumeration value=""25"" />
  9289. <xs:enumeration value=""26"" />
  9290. <xs:enumeration value=""27"" />
  9291. <xs:enumeration value=""28"" />
  9292. <xs:enumeration value=""29"" />
  9293. <xs:enumeration value=""3"" />
  9294. <xs:enumeration value=""30"" />
  9295. <xs:enumeration value=""4"" />
  9296. <xs:enumeration value=""5"" />
  9297. <xs:enumeration value=""6"" />
  9298. <xs:enumeration value=""7"" />
  9299. <xs:enumeration value=""8"" />
  9300. <xs:enumeration value=""9"" />
  9301. <xs:enumeration value=""ZZZ"" />
  9302. </xs:restriction>
  9303. </xs:simpleType>
  9304. <xs:simpleType name=""EDIFACT_ID_8275"">
  9305. <xs:restriction base=""xs:string"">
  9306. <xs:enumeration value=""1"" />
  9307. <xs:enumeration value=""2"" />
  9308. <xs:enumeration value=""3"" />
  9309. <xs:enumeration value=""4"" />
  9310. <xs:enumeration value=""5"" />
  9311. <xs:enumeration value=""6"" />
  9312. <xs:enumeration value=""7"" />
  9313. <xs:enumeration value=""8"" />
  9314. </xs:restriction>
  9315. </xs:simpleType>
  9316. <xs:simpleType name=""EDIFACT_ID_8051"">
  9317. <xs:restriction base=""xs:string"">
  9318. <xs:enumeration value=""1"" />
  9319. <xs:enumeration value=""10"" />
  9320. <xs:enumeration value=""11"" />
  9321. <xs:enumeration value=""12"" />
  9322. <xs:enumeration value=""13"" />
  9323. <xs:enumeration value=""14"" />
  9324. <xs:enumeration value=""2"" />
  9325. <xs:enumeration value=""20"" />
  9326. <xs:enumeration value=""21"" />
  9327. <xs:enumeration value=""22"" />
  9328. <xs:enumeration value=""23"" />
  9329. <xs:enumeration value=""24"" />
  9330. <xs:enumeration value=""25"" />
  9331. <xs:enumeration value=""30"" />
  9332. </xs:restriction>
  9333. </xs:simpleType>
  9334. <xs:simpleType name=""EDIFACT_ID_8179"">
  9335. <xs:restriction base=""xs:string"">
  9336. <xs:enumeration value=""1"" />
  9337. <xs:enumeration value=""11"" />
  9338. <xs:enumeration value=""12"" />
  9339. <xs:enumeration value=""13"" />
  9340. <xs:enumeration value=""2"" />
  9341. <xs:enumeration value=""21"" />
  9342. <xs:enumeration value=""22"" />
  9343. <xs:enumeration value=""23"" />
  9344. <xs:enumeration value=""24"" />
  9345. <xs:enumeration value=""25"" />
  9346. <xs:enumeration value=""3"" />
  9347. <xs:enumeration value=""31"" />
  9348. <xs:enumeration value=""32"" />
  9349. <xs:enumeration value=""33"" />
  9350. <xs:enumeration value=""35"" />
  9351. <xs:enumeration value=""36"" />
  9352. <xs:enumeration value=""37"" />
  9353. <xs:enumeration value=""38"" />
  9354. <xs:enumeration value=""4"" />
  9355. <xs:enumeration value=""5"" />
  9356. <xs:enumeration value=""6"" />
  9357. <xs:enumeration value=""7"" />
  9358. <xs:enumeration value=""9"" />
  9359. </xs:restriction>
  9360. </xs:simpleType>
  9361. <xs:simpleType name=""EDIFACT_ID_8101"">
  9362. <xs:restriction base=""xs:string"">
  9363. <xs:enumeration value=""BS"" />
  9364. <xs:enumeration value=""SB"" />
  9365. <xs:enumeration value=""SC"" />
  9366. <xs:enumeration value=""SD"" />
  9367. <xs:enumeration value=""SF"" />
  9368. <xs:enumeration value=""SS"" />
  9369. <xs:enumeration value=""ZZZ"" />
  9370. </xs:restriction>
  9371. </xs:simpleType>
  9372. <xs:simpleType name=""EDIFACT_ID_8457"">
  9373. <xs:restriction base=""xs:string"">
  9374. <xs:enumeration value=""A"" />
  9375. <xs:enumeration value=""B"" />
  9376. <xs:enumeration value=""C"" />
  9377. <xs:enumeration value=""D"" />
  9378. <xs:enumeration value=""E"" />
  9379. <xs:enumeration value=""F"" />
  9380. <xs:enumeration value=""G"" />
  9381. <xs:enumeration value=""H"" />
  9382. <xs:enumeration value=""I"" />
  9383. <xs:enumeration value=""J"" />
  9384. <xs:enumeration value=""K"" />
  9385. <xs:enumeration value=""L"" />
  9386. <xs:enumeration value=""M"" />
  9387. <xs:enumeration value=""N"" />
  9388. <xs:enumeration value=""P"" />
  9389. <xs:enumeration value=""R"" />
  9390. <xs:enumeration value=""T"" />
  9391. <xs:enumeration value=""U"" />
  9392. <xs:enumeration value=""V"" />
  9393. <xs:enumeration value=""W"" />
  9394. <xs:enumeration value=""X"" />
  9395. <xs:enumeration value=""Y"" />
  9396. <xs:enumeration value=""ZZZ"" />
  9397. </xs:restriction>
  9398. </xs:simpleType>
  9399. <xs:simpleType name=""EDIFACT_ID_8459"">
  9400. <xs:restriction base=""xs:string"">
  9401. <xs:enumeration value=""A"" />
  9402. <xs:enumeration value=""B"" />
  9403. <xs:enumeration value=""S"" />
  9404. <xs:enumeration value=""X"" />
  9405. <xs:enumeration value=""ZZZ"" />
  9406. </xs:restriction>
  9407. </xs:simpleType>
  9408. <xs:simpleType name=""EDIFACT_ID_8281"">
  9409. <xs:restriction base=""xs:string"">
  9410. <xs:enumeration value=""1"" />
  9411. <xs:enumeration value=""2"" />
  9412. </xs:restriction>
  9413. </xs:simpleType>
  9414. <xs:simpleType name=""EDIFACT_ID_8053"">
  9415. <xs:restriction base=""xs:string"">
  9416. <xs:enumeration value=""AA"" />
  9417. <xs:enumeration value=""AB"" />
  9418. <xs:enumeration value=""AD"" />
  9419. <xs:enumeration value=""AE"" />
  9420. <xs:enumeration value=""BL"" />
  9421. <xs:enumeration value=""BPN"" />
  9422. <xs:enumeration value=""BPY"" />
  9423. <xs:enumeration value=""BR"" />
  9424. <xs:enumeration value=""BX"" />
  9425. <xs:enumeration value=""CH"" />
  9426. <xs:enumeration value=""CN"" />
  9427. <xs:enumeration value=""DPA"" />
  9428. <xs:enumeration value=""EFP"" />
  9429. <xs:enumeration value=""EYP"" />
  9430. <xs:enumeration value=""FPN"" />
  9431. <xs:enumeration value=""FPR"" />
  9432. <xs:enumeration value=""FSU"" />
  9433. <xs:enumeration value=""LAR"" />
  9434. <xs:enumeration value=""LU"" />
  9435. <xs:enumeration value=""MPA"" />
  9436. <xs:enumeration value=""PA"" />
  9437. <xs:enumeration value=""PBP"" />
  9438. <xs:enumeration value=""PFP"" />
  9439. <xs:enumeration value=""PL"" />
  9440. <xs:enumeration value=""PPA"" />
  9441. <xs:enumeration value=""PST"" />
  9442. <xs:enumeration value=""RF"" />
  9443. <xs:enumeration value=""RG"" />
  9444. <xs:enumeration value=""RGF"" />
  9445. <xs:enumeration value=""RO"" />
  9446. <xs:enumeration value=""RR"" />
  9447. <xs:enumeration value=""SCA"" />
  9448. <xs:enumeration value=""SCB"" />
  9449. <xs:enumeration value=""SCC"" />
  9450. <xs:enumeration value=""SFA"" />
  9451. <xs:enumeration value=""SPP"" />
  9452. <xs:enumeration value=""STR"" />
  9453. <xs:enumeration value=""SW"" />
  9454. <xs:enumeration value=""TE"" />
  9455. <xs:enumeration value=""TP"" />
  9456. <xs:enumeration value=""TS"" />
  9457. <xs:enumeration value=""TSU"" />
  9458. <xs:enumeration value=""UL"" />
  9459. </xs:restriction>
  9460. </xs:simpleType>
  9461. <xs:simpleType name=""EDIFACT_ID_8155"">
  9462. <xs:restriction base=""xs:string"">
  9463. <xs:enumeration value=""1"" />
  9464. <xs:enumeration value=""10"" />
  9465. <xs:enumeration value=""11"" />
  9466. <xs:enumeration value=""12"" />
  9467. <xs:enumeration value=""13"" />
  9468. <xs:enumeration value=""14"" />
  9469. <xs:enumeration value=""15"" />
  9470. <xs:enumeration value=""16"" />
  9471. <xs:enumeration value=""17"" />
  9472. <xs:enumeration value=""18"" />
  9473. <xs:enumeration value=""19"" />
  9474. <xs:enumeration value=""2"" />
  9475. <xs:enumeration value=""20"" />
  9476. <xs:enumeration value=""21"" />
  9477. <xs:enumeration value=""22"" />
  9478. <xs:enumeration value=""23"" />
  9479. <xs:enumeration value=""24"" />
  9480. <xs:enumeration value=""25"" />
  9481. <xs:enumeration value=""26"" />
  9482. <xs:enumeration value=""27"" />
  9483. <xs:enumeration value=""28"" />
  9484. <xs:enumeration value=""29"" />
  9485. <xs:enumeration value=""3"" />
  9486. <xs:enumeration value=""30"" />
  9487. <xs:enumeration value=""31"" />
  9488. <xs:enumeration value=""32"" />
  9489. <xs:enumeration value=""33"" />
  9490. <xs:enumeration value=""34"" />
  9491. <xs:enumeration value=""35"" />
  9492. <xs:enumeration value=""36"" />
  9493. <xs:enumeration value=""37"" />
  9494. <xs:enumeration value=""38"" />
  9495. <xs:enumeration value=""39"" />
  9496. <xs:enumeration value=""4"" />
  9497. <xs:enumeration value=""40"" />
  9498. <xs:enumeration value=""41"" />
  9499. <xs:enumeration value=""42"" />
  9500. <xs:enumeration value=""5"" />
  9501. <xs:enumeration value=""6"" />
  9502. <xs:enumeration value=""7"" />
  9503. <xs:enumeration value=""8"" />
  9504. <xs:enumeration value=""9"" />
  9505. </xs:restriction>
  9506. </xs:simpleType>
  9507. <xs:simpleType name=""EDIFACT_ID_8077"">
  9508. <xs:restriction base=""xs:string"">
  9509. <xs:enumeration value=""1"" />
  9510. <xs:enumeration value=""2"" />
  9511. </xs:restriction>
  9512. </xs:simpleType>
  9513. <xs:simpleType name=""EDIFACT_ID_8249"">
  9514. <xs:restriction base=""xs:string"">
  9515. <xs:enumeration value=""1"" />
  9516. <xs:enumeration value=""2"" />
  9517. <xs:enumeration value=""3"" />
  9518. <xs:enumeration value=""4"" />
  9519. <xs:enumeration value=""5"" />
  9520. <xs:enumeration value=""6"" />
  9521. </xs:restriction>
  9522. </xs:simpleType>
  9523. <xs:simpleType name=""EDIFACT_ID_8169"">
  9524. <xs:restriction base=""xs:string"">
  9525. <xs:enumeration value=""1"" />
  9526. <xs:enumeration value=""2"" />
  9527. <xs:enumeration value=""3"" />
  9528. <xs:enumeration value=""4"" />
  9529. <xs:enumeration value=""5"" />
  9530. <xs:enumeration value=""6"" />
  9531. <xs:enumeration value=""7"" />
  9532. <xs:enumeration value=""8"" />
  9533. </xs:restriction>
  9534. </xs:simpleType>
  9535. <xs:simpleType name=""EDIFACT_ID_6311"">
  9536. <xs:restriction base=""xs:string"">
  9537. <xs:enumeration value=""AAA"" />
  9538. <xs:enumeration value=""AAB"" />
  9539. <xs:enumeration value=""AAC"" />
  9540. <xs:enumeration value=""AAD"" />
  9541. <xs:enumeration value=""AAE"" />
  9542. <xs:enumeration value=""AAF"" />
  9543. <xs:enumeration value=""AAG"" />
  9544. <xs:enumeration value=""AAH"" />
  9545. <xs:enumeration value=""AAI"" />
  9546. <xs:enumeration value=""AAJ"" />
  9547. <xs:enumeration value=""AAK"" />
  9548. <xs:enumeration value=""AAL"" />
  9549. <xs:enumeration value=""AAM"" />
  9550. <xs:enumeration value=""AAN"" />
  9551. <xs:enumeration value=""AAO"" />
  9552. <xs:enumeration value=""AAP"" />
  9553. <xs:enumeration value=""AAQ"" />
  9554. <xs:enumeration value=""AAR"" />
  9555. <xs:enumeration value=""AAS"" />
  9556. <xs:enumeration value=""AAT"" />
  9557. <xs:enumeration value=""AAU"" />
  9558. <xs:enumeration value=""AAV"" />
  9559. <xs:enumeration value=""AAW"" />
  9560. <xs:enumeration value=""AAX"" />
  9561. <xs:enumeration value=""AAY"" />
  9562. <xs:enumeration value=""AAZ"" />
  9563. <xs:enumeration value=""ABA"" />
  9564. <xs:enumeration value=""ABB"" />
  9565. <xs:enumeration value=""ABC"" />
  9566. <xs:enumeration value=""ABD"" />
  9567. <xs:enumeration value=""ABE"" />
  9568. <xs:enumeration value=""ABF"" />
  9569. <xs:enumeration value=""ABG"" />
  9570. <xs:enumeration value=""ABH"" />
  9571. <xs:enumeration value=""ABI"" />
  9572. <xs:enumeration value=""ABJ"" />
  9573. <xs:enumeration value=""ABK"" />
  9574. <xs:enumeration value=""ABL"" />
  9575. <xs:enumeration value=""ABM"" />
  9576. <xs:enumeration value=""ABN"" />
  9577. <xs:enumeration value=""ASW"" />
  9578. <xs:enumeration value=""CH"" />
  9579. <xs:enumeration value=""CHW"" />
  9580. <xs:enumeration value=""CN"" />
  9581. <xs:enumeration value=""CS"" />
  9582. <xs:enumeration value=""CT"" />
  9583. <xs:enumeration value=""DEN"" />
  9584. <xs:enumeration value=""DR"" />
  9585. <xs:enumeration value=""DT"" />
  9586. <xs:enumeration value=""DV"" />
  9587. <xs:enumeration value=""DX"" />
  9588. <xs:enumeration value=""EGW"" />
  9589. <xs:enumeration value=""EN"" />
  9590. <xs:enumeration value=""EVO"" />
  9591. <xs:enumeration value=""FO"" />
  9592. <xs:enumeration value=""IV"" />
  9593. <xs:enumeration value=""LAO"" />
  9594. <xs:enumeration value=""LC"" />
  9595. <xs:enumeration value=""LGL"" />
  9596. <xs:enumeration value=""LL"" />
  9597. <xs:enumeration value=""LMT"" />
  9598. <xs:enumeration value=""NAX"" />
  9599. <xs:enumeration value=""PAL"" />
  9600. <xs:enumeration value=""PC"" />
  9601. <xs:enumeration value=""PD"" />
  9602. <xs:enumeration value=""PL"" />
  9603. <xs:enumeration value=""PLL"" />
  9604. <xs:enumeration value=""RL"" />
  9605. <xs:enumeration value=""RN"" />
  9606. <xs:enumeration value=""SE"" />
  9607. <xs:enumeration value=""SH"" />
  9608. <xs:enumeration value=""SM"" />
  9609. <xs:enumeration value=""SO"" />
  9610. <xs:enumeration value=""SPG"" />
  9611. <xs:enumeration value=""SR"" />
  9612. <xs:enumeration value=""ST"" />
  9613. <xs:enumeration value=""SU"" />
  9614. <xs:enumeration value=""SV"" />
  9615. <xs:enumeration value=""TE"" />
  9616. <xs:enumeration value=""TL"" />
  9617. <xs:enumeration value=""TR"" />
  9618. <xs:enumeration value=""TX"" />
  9619. <xs:enumeration value=""VO"" />
  9620. <xs:enumeration value=""VOL"" />
  9621. <xs:enumeration value=""VT"" />
  9622. <xs:enumeration value=""WT"" />
  9623. <xs:enumeration value=""WX"" />
  9624. </xs:restriction>
  9625. </xs:simpleType>
  9626. <xs:simpleType name=""EDIFACT_ID_6313"">
  9627. <xs:restriction base=""xs:string"">
  9628. <xs:enumeration value=""A"" />
  9629. <xs:enumeration value=""AAA"" />
  9630. <xs:enumeration value=""AAB"" />
  9631. <xs:enumeration value=""AAC"" />
  9632. <xs:enumeration value=""AAD"" />
  9633. <xs:enumeration value=""AAE"" />
  9634. <xs:enumeration value=""AAF"" />
  9635. <xs:enumeration value=""AAG"" />
  9636. <xs:enumeration value=""AAH"" />
  9637. <xs:enumeration value=""AAI"" />
  9638. <xs:enumeration value=""AAL"" />
  9639. <xs:enumeration value=""AAM"" />
  9640. <xs:enumeration value=""AAN"" />
  9641. <xs:enumeration value=""AAO"" />
  9642. <xs:enumeration value=""AAP"" />
  9643. <xs:enumeration value=""AAQ"" />
  9644. <xs:enumeration value=""AAR"" />
  9645. <xs:enumeration value=""AAS"" />
  9646. <xs:enumeration value=""AAT"" />
  9647. <xs:enumeration value=""AAU"" />
  9648. <xs:enumeration value=""AAV"" />
  9649. <xs:enumeration value=""AAW"" />
  9650. <xs:enumeration value=""AAX"" />
  9651. <xs:enumeration value=""AAY"" />
  9652. <xs:enumeration value=""AAZ"" />
  9653. <xs:enumeration value=""ABA"" />
  9654. <xs:enumeration value=""ABB"" />
  9655. <xs:enumeration value=""ABC"" />
  9656. <xs:enumeration value=""ABD"" />
  9657. <xs:enumeration value=""ABE"" />
  9658. <xs:enumeration value=""ABF"" />
  9659. <xs:enumeration value=""ABG"" />
  9660. <xs:enumeration value=""ABH"" />
  9661. <xs:enumeration value=""ABI"" />
  9662. <xs:enumeration value=""ABJ"" />
  9663. <xs:enumeration value=""ABK"" />
  9664. <xs:enumeration value=""ABL"" />
  9665. <xs:enumeration value=""ABM"" />
  9666. <xs:enumeration value=""ABN"" />
  9667. <xs:enumeration value=""ABO"" />
  9668. <xs:enumeration value=""ABQ"" />
  9669. <xs:enumeration value=""ABR"" />
  9670. <xs:enumeration value=""ABS"" />
  9671. <xs:enumeration value=""ABU"" />
  9672. <xs:enumeration value=""ABV"" />
  9673. <xs:enumeration value=""ABW"" />
  9674. <xs:enumeration value=""ABX"" />
  9675. <xs:enumeration value=""ABY"" />
  9676. <xs:enumeration value=""ABZ"" />
  9677. <xs:enumeration value=""ACA"" />
  9678. <xs:enumeration value=""ACB"" />
  9679. <xs:enumeration value=""ACC"" />
  9680. <xs:enumeration value=""ACD"" />
  9681. <xs:enumeration value=""ACE"" />
  9682. <xs:enumeration value=""ACF"" />
  9683. <xs:enumeration value=""ACG"" />
  9684. <xs:enumeration value=""ACH"" />
  9685. <xs:enumeration value=""ACI"" />
  9686. <xs:enumeration value=""ACJ"" />
  9687. <xs:enumeration value=""ACK"" />
  9688. <xs:enumeration value=""ACL"" />
  9689. <xs:enumeration value=""ACM"" />
  9690. <xs:enumeration value=""ACN"" />
  9691. <xs:enumeration value=""ACO"" />
  9692. <xs:enumeration value=""ACP"" />
  9693. <xs:enumeration value=""ACQ"" />
  9694. <xs:enumeration value=""ACR"" />
  9695. <xs:enumeration value=""ACS"" />
  9696. <xs:enumeration value=""ACT"" />
  9697. <xs:enumeration value=""ACU"" />
  9698. <xs:enumeration value=""ACV"" />
  9699. <xs:enumeration value=""ACW"" />
  9700. <xs:enumeration value=""ACX"" />
  9701. <xs:enumeration value=""ACY"" />
  9702. <xs:enumeration value=""ACZ"" />
  9703. <xs:enumeration value=""ADA"" />
  9704. <xs:enumeration value=""ADB"" />
  9705. <xs:enumeration value=""ADC"" />
  9706. <xs:enumeration value=""ADD"" />
  9707. <xs:enumeration value=""ADE"" />
  9708. <xs:enumeration value=""ADF"" />
  9709. <xs:enumeration value=""ADG"" />
  9710. <xs:enumeration value=""ADH"" />
  9711. <xs:enumeration value=""ADI"" />
  9712. <xs:enumeration value=""ADJ"" />
  9713. <xs:enumeration value=""ADK"" />
  9714. <xs:enumeration value=""ADL"" />
  9715. <xs:enumeration value=""ADM"" />
  9716. <xs:enumeration value=""ADN"" />
  9717. <xs:enumeration value=""ADO"" />
  9718. <xs:enumeration value=""ADP"" />
  9719. <xs:enumeration value=""ADQ"" />
  9720. <xs:enumeration value=""ADR"" />
  9721. <xs:enumeration value=""ADS"" />
  9722. <xs:enumeration value=""ADT"" />
  9723. <xs:enumeration value=""ADU"" />
  9724. <xs:enumeration value=""ADV"" />
  9725. <xs:enumeration value=""ADW"" />
  9726. <xs:enumeration value=""ADX"" />
  9727. <xs:enumeration value=""ADY"" />
  9728. <xs:enumeration value=""ADZ"" />
  9729. <xs:enumeration value=""AEA"" />
  9730. <xs:enumeration value=""AEB"" />
  9731. <xs:enumeration value=""AEC"" />
  9732. <xs:enumeration value=""AED"" />
  9733. <xs:enumeration value=""AEE"" />
  9734. <xs:enumeration value=""AEF"" />
  9735. <xs:enumeration value=""AEG"" />
  9736. <xs:enumeration value=""AEH"" />
  9737. <xs:enumeration value=""AF"" />
  9738. <xs:enumeration value=""B"" />
  9739. <xs:enumeration value=""BL"" />
  9740. <xs:enumeration value=""BND"" />
  9741. <xs:enumeration value=""BR"" />
  9742. <xs:enumeration value=""BRA"" />
  9743. <xs:enumeration value=""BRE"" />
  9744. <xs:enumeration value=""BS"" />
  9745. <xs:enumeration value=""BSW"" />
  9746. <xs:enumeration value=""BW"" />
  9747. <xs:enumeration value=""CHN"" />
  9748. <xs:enumeration value=""CM"" />
  9749. <xs:enumeration value=""CT"" />
  9750. <xs:enumeration value=""CV"" />
  9751. <xs:enumeration value=""CZ"" />
  9752. <xs:enumeration value=""D"" />
  9753. <xs:enumeration value=""DI"" />
  9754. <xs:enumeration value=""DL"" />
  9755. <xs:enumeration value=""DN"" />
  9756. <xs:enumeration value=""DP"" />
  9757. <xs:enumeration value=""DR"" />
  9758. <xs:enumeration value=""DS"" />
  9759. <xs:enumeration value=""DW"" />
  9760. <xs:enumeration value=""E"" />
  9761. <xs:enumeration value=""EA"" />
  9762. <xs:enumeration value=""F"" />
  9763. <xs:enumeration value=""FI"" />
  9764. <xs:enumeration value=""FL"" />
  9765. <xs:enumeration value=""FN"" />
  9766. <xs:enumeration value=""FV"" />
  9767. <xs:enumeration value=""G"" />
  9768. <xs:enumeration value=""GG"" />
  9769. <xs:enumeration value=""GW"" />
  9770. <xs:enumeration value=""HF"" />
  9771. <xs:enumeration value=""HM"" />
  9772. <xs:enumeration value=""HT"" />
  9773. <xs:enumeration value=""IB"" />
  9774. <xs:enumeration value=""ID"" />
  9775. <xs:enumeration value=""L"" />
  9776. <xs:enumeration value=""LM"" />
  9777. <xs:enumeration value=""LN"" />
  9778. <xs:enumeration value=""LND"" />
  9779. <xs:enumeration value=""M"" />
  9780. <xs:enumeration value=""MO"" />
  9781. <xs:enumeration value=""MW"" />
  9782. <xs:enumeration value=""N"" />
  9783. <xs:enumeration value=""OD"" />
  9784. <xs:enumeration value=""PRS"" />
  9785. <xs:enumeration value=""PTN"" />
  9786. <xs:enumeration value=""RA"" />
  9787. <xs:enumeration value=""RF"" />
  9788. <xs:enumeration value=""RJ"" />
  9789. <xs:enumeration value=""RMW"" />
  9790. <xs:enumeration value=""RP"" />
  9791. <xs:enumeration value=""RUN"" />
  9792. <xs:enumeration value=""RY"" />
  9793. <xs:enumeration value=""SQ"" />
  9794. <xs:enumeration value=""T"" />
  9795. <xs:enumeration value=""TC"" />
  9796. <xs:enumeration value=""TH"" />
  9797. <xs:enumeration value=""TN"" />
  9798. <xs:enumeration value=""TT"" />
  9799. <xs:enumeration value=""U"" />
  9800. <xs:enumeration value=""VH"" />
  9801. <xs:enumeration value=""VW"" />
  9802. <xs:enumeration value=""WA"" />
  9803. <xs:enumeration value=""WD"" />
  9804. <xs:enumeration value=""WM"" />
  9805. <xs:enumeration value=""WT"" />
  9806. <xs:enumeration value=""WU"" />
  9807. <xs:enumeration value=""XH"" />
  9808. <xs:enumeration value=""XQ"" />
  9809. <xs:enumeration value=""XZ"" />
  9810. <xs:enumeration value=""YS"" />
  9811. <xs:enumeration value=""ZAL"" />
  9812. <xs:enumeration value=""ZAS"" />
  9813. <xs:enumeration value=""ZB"" />
  9814. <xs:enumeration value=""ZBI"" />
  9815. <xs:enumeration value=""ZC"" />
  9816. <xs:enumeration value=""ZCA"" />
  9817. <xs:enumeration value=""ZCB"" />
  9818. <xs:enumeration value=""ZCE"" />
  9819. <xs:enumeration value=""ZCL"" />
  9820. <xs:enumeration value=""ZCO"" />
  9821. <xs:enumeration value=""ZCR"" />
  9822. <xs:enumeration value=""ZCU"" />
  9823. <xs:enumeration value=""ZFE"" />
  9824. <xs:enumeration value=""ZFS"" />
  9825. <xs:enumeration value=""ZGE"" />
  9826. <xs:enumeration value=""ZH"" />
  9827. <xs:enumeration value=""ZK"" />
  9828. <xs:enumeration value=""ZMG"" />
  9829. <xs:enumeration value=""ZMN"" />
  9830. <xs:enumeration value=""ZMO"" />
  9831. <xs:enumeration value=""ZN"" />
  9832. <xs:enumeration value=""ZNA"" />
  9833. <xs:enumeration value=""ZNB"" />
  9834. <xs:enumeration value=""ZNI"" />
  9835. <xs:enumeration value=""ZO"" />
  9836. <xs:enumeration value=""ZP"" />
  9837. <xs:enumeration value=""ZPB"" />
  9838. <xs:enumeration value=""ZS"" />
  9839. <xs:enumeration value=""ZSB"" />
  9840. <xs:enumeration value=""ZSE"" />
  9841. <xs:enumeration value=""ZSI"" />
  9842. <xs:enumeration value=""ZSL"" />
  9843. <xs:enumeration value=""ZSN"" />
  9844. <xs:enumeration value=""ZTA"" />
  9845. <xs:enumeration value=""ZTE"" />
  9846. <xs:enumeration value=""ZTI"" />
  9847. <xs:enumeration value=""ZV"" />
  9848. <xs:enumeration value=""ZW"" />
  9849. <xs:enumeration value=""ZWA"" />
  9850. <xs:enumeration value=""ZZN"" />
  9851. <xs:enumeration value=""ZZR"" />
  9852. <xs:enumeration value=""ZZZ"" />
  9853. </xs:restriction>
  9854. </xs:simpleType>
  9855. <xs:simpleType name=""EDIFACT_ID_6321"">
  9856. <xs:restriction base=""xs:string"">
  9857. <xs:enumeration value=""10"" />
  9858. <xs:enumeration value=""11"" />
  9859. <xs:enumeration value=""12"" />
  9860. <xs:enumeration value=""13"" />
  9861. <xs:enumeration value=""15"" />
  9862. <xs:enumeration value=""3"" />
  9863. <xs:enumeration value=""4"" />
  9864. <xs:enumeration value=""5"" />
  9865. <xs:enumeration value=""6"" />
  9866. <xs:enumeration value=""7"" />
  9867. <xs:enumeration value=""8"" />
  9868. </xs:restriction>
  9869. </xs:simpleType>
  9870. <xs:simpleType name=""EDIFACT_ID_6155"">
  9871. <xs:restriction base=""xs:string"">
  9872. <xs:enumeration value=""1"" />
  9873. <xs:enumeration value=""10"" />
  9874. <xs:enumeration value=""11"" />
  9875. <xs:enumeration value=""12"" />
  9876. <xs:enumeration value=""13"" />
  9877. <xs:enumeration value=""14"" />
  9878. <xs:enumeration value=""15"" />
  9879. <xs:enumeration value=""16"" />
  9880. <xs:enumeration value=""18"" />
  9881. <xs:enumeration value=""19"" />
  9882. <xs:enumeration value=""2"" />
  9883. <xs:enumeration value=""20"" />
  9884. <xs:enumeration value=""21"" />
  9885. <xs:enumeration value=""22"" />
  9886. <xs:enumeration value=""23"" />
  9887. <xs:enumeration value=""24"" />
  9888. <xs:enumeration value=""25"" />
  9889. <xs:enumeration value=""26"" />
  9890. <xs:enumeration value=""27"" />
  9891. <xs:enumeration value=""28"" />
  9892. <xs:enumeration value=""29"" />
  9893. <xs:enumeration value=""3"" />
  9894. <xs:enumeration value=""32"" />
  9895. <xs:enumeration value=""33"" />
  9896. <xs:enumeration value=""34"" />
  9897. <xs:enumeration value=""35"" />
  9898. <xs:enumeration value=""36"" />
  9899. <xs:enumeration value=""37"" />
  9900. <xs:enumeration value=""38"" />
  9901. <xs:enumeration value=""39"" />
  9902. <xs:enumeration value=""4"" />
  9903. <xs:enumeration value=""40"" />
  9904. <xs:enumeration value=""41"" />
  9905. <xs:enumeration value=""42"" />
  9906. <xs:enumeration value=""43"" />
  9907. <xs:enumeration value=""44"" />
  9908. <xs:enumeration value=""45"" />
  9909. <xs:enumeration value=""5"" />
  9910. <xs:enumeration value=""6"" />
  9911. <xs:enumeration value=""7"" />
  9912. <xs:enumeration value=""8"" />
  9913. <xs:enumeration value=""9"" />
  9914. </xs:restriction>
  9915. </xs:simpleType>
  9916. <xs:simpleType name=""EDIFACT_ID_7383"">
  9917. <xs:restriction base=""xs:string"">
  9918. <xs:enumeration value=""1S"" />
  9919. <xs:enumeration value=""2S"" />
  9920. <xs:enumeration value=""AA"" />
  9921. <xs:enumeration value=""AB"" />
  9922. <xs:enumeration value=""AC"" />
  9923. <xs:enumeration value=""BC"" />
  9924. <xs:enumeration value=""BS"" />
  9925. <xs:enumeration value=""BT"" />
  9926. <xs:enumeration value=""DF"" />
  9927. <xs:enumeration value=""FR"" />
  9928. <xs:enumeration value=""IN"" />
  9929. <xs:enumeration value=""LE"" />
  9930. <xs:enumeration value=""OA"" />
  9931. <xs:enumeration value=""OS"" />
  9932. <xs:enumeration value=""OT"" />
  9933. <xs:enumeration value=""RI"" />
  9934. <xs:enumeration value=""RR"" />
  9935. <xs:enumeration value=""ST"" />
  9936. <xs:enumeration value=""TB"" />
  9937. <xs:enumeration value=""TP"" />
  9938. <xs:enumeration value=""TS"" />
  9939. <xs:enumeration value=""UC"" />
  9940. </xs:restriction>
  9941. </xs:simpleType>
  9942. <xs:simpleType name=""EDIFACT_ID_6145"">
  9943. <xs:restriction base=""xs:string"">
  9944. <xs:enumeration value=""1"" />
  9945. <xs:enumeration value=""10"" />
  9946. <xs:enumeration value=""11"" />
  9947. <xs:enumeration value=""2"" />
  9948. <xs:enumeration value=""3"" />
  9949. <xs:enumeration value=""4"" />
  9950. <xs:enumeration value=""5"" />
  9951. <xs:enumeration value=""6"" />
  9952. <xs:enumeration value=""7"" />
  9953. <xs:enumeration value=""8"" />
  9954. <xs:enumeration value=""9"" />
  9955. </xs:restriction>
  9956. </xs:simpleType>
  9957. <xs:simpleType name=""EDIFACT_ID_9303"">
  9958. <xs:restriction base=""xs:string"">
  9959. <xs:enumeration value=""CA"" />
  9960. <xs:enumeration value=""CU"" />
  9961. <xs:enumeration value=""SH"" />
  9962. <xs:enumeration value=""TO"" />
  9963. </xs:restriction>
  9964. </xs:simpleType>
  9965. <xs:simpleType name=""EDIFACT_ID_4517"">
  9966. <xs:restriction base=""xs:string"">
  9967. <xs:enumeration value=""1"" />
  9968. <xs:enumeration value=""2"" />
  9969. </xs:restriction>
  9970. </xs:simpleType>
  9971. <xs:simpleType name=""EDIFACT_ID_6353"">
  9972. <xs:restriction base=""xs:string"">
  9973. <xs:enumeration value=""1"" />
  9974. <xs:enumeration value=""2"" />
  9975. <xs:enumeration value=""3"" />
  9976. <xs:enumeration value=""4"" />
  9977. </xs:restriction>
  9978. </xs:simpleType>
  9979. <xs:simpleType name=""EDIFACT_ID_7405"">
  9980. <xs:restriction base=""xs:string"">
  9981. <xs:enumeration value=""AA"" />
  9982. <xs:enumeration value=""AB"" />
  9983. <xs:enumeration value=""AC"" />
  9984. <xs:enumeration value=""AD"" />
  9985. <xs:enumeration value=""AE"" />
  9986. <xs:enumeration value=""AF"" />
  9987. <xs:enumeration value=""AG"" />
  9988. <xs:enumeration value=""AH"" />
  9989. <xs:enumeration value=""AI"" />
  9990. <xs:enumeration value=""AJ"" />
  9991. <xs:enumeration value=""AK"" />
  9992. <xs:enumeration value=""AL"" />
  9993. <xs:enumeration value=""AM"" />
  9994. <xs:enumeration value=""AN"" />
  9995. <xs:enumeration value=""AO"" />
  9996. <xs:enumeration value=""AP"" />
  9997. <xs:enumeration value=""AQ"" />
  9998. <xs:enumeration value=""AR"" />
  9999. <xs:enumeration value=""AS"" />
  10000. <xs:enumeration value=""AT"" />
  10001. <xs:enumeration value=""AU"" />
  10002. <xs:enumeration value=""AV"" />
  10003. <xs:enumeration value=""AW"" />
  10004. <xs:enumeration value=""AX"" />
  10005. <xs:enumeration value=""AY"" />
  10006. <xs:enumeration value=""AZ"" />
  10007. <xs:enumeration value=""BA"" />
  10008. <xs:enumeration value=""BB"" />
  10009. <xs:enumeration value=""BC"" />
  10010. <xs:enumeration value=""BD"" />
  10011. <xs:enumeration value=""BE"" />
  10012. <xs:enumeration value=""BF"" />
  10013. <xs:enumeration value=""BG"" />
  10014. <xs:enumeration value=""BH"" />
  10015. <xs:enumeration value=""BI"" />
  10016. <xs:enumeration value=""BJ"" />
  10017. <xs:enumeration value=""BK"" />
  10018. <xs:enumeration value=""BL"" />
  10019. <xs:enumeration value=""BN"" />
  10020. <xs:enumeration value=""BX"" />
  10021. <xs:enumeration value=""CN"" />
  10022. <xs:enumeration value=""EE"" />
  10023. <xs:enumeration value=""EM"" />
  10024. <xs:enumeration value=""IL"" />
  10025. <xs:enumeration value=""ML"" />
  10026. <xs:enumeration value=""PN"" />
  10027. <xs:enumeration value=""SC"" />
  10028. <xs:enumeration value=""VV"" />
  10029. </xs:restriction>
  10030. </xs:simpleType>
  10031. <xs:simpleType name=""EDIFACT_N"">
  10032. <xs:restriction base=""xs:string"" />
  10033. </xs:simpleType>
  10034. <xs:simpleType name=""EDIFACT_AN"">
  10035. <xs:restriction base=""xs:string"" />
  10036. </xs:simpleType>
  10037. <xs:simpleType name=""EDIFACT_ID"">
  10038. <xs:restriction base=""xs:string"" />
  10039. </xs:simpleType>
  10040. <xs:simpleType name=""EDIFACT_A"">
  10041. <xs:restriction base=""xs:string"" />
  10042. </xs:simpleType>
  10043. </xs:schema>";
  10044. public EFACT_D96A_IFTSTA_EAN002() {
  10045. }
  10046. public override string XmlContent {
  10047. get {
  10048. return _strSchema;
  10049. }
  10050. }
  10051. public override string[] RootNodes {
  10052. get {
  10053. string[] _RootElements = new string [1];
  10054. _RootElements[0] = "EFACT_D96A_IFTSTA_EAN002";
  10055. return _RootElements;
  10056. }
  10057. }
  10058. protected override object RawSchema {
  10059. get {
  10060. return _rawSchema;
  10061. }
  10062. set {
  10063. _rawSchema = value;
  10064. }
  10065. }
  10066. }
  10067. }