| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
- xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
- targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/procesy5_translate_map.xsd"
- vc:minVersion="1.1" attributeFormDefault="unqualified" elementFormDefault="qualified"
- xmlns:p5_tr_map="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/procesy5_translate_map.xsd"
- xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
- <xs:annotation>
- <xs:documentation>Schemat do appinfo do określania informacji o relacjach - doswiadczalny - propozycja - DRAFT
- @2015-11-19 modelowa struktura obietkow generowanych przez algorytm tworzenia mapy przetwarzania obiektow</xs:documentation>
- </xs:annotation>
- <xs:import
- namespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
- schemaLocation="appinfo.xsd"/>
- <xs:element name="go_recurse_from_root_by_build_element">
- <xs:complexType>
- <xs:all>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434_root"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434er"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4942"/>
- </xs:all>
- </xs:complexType>
- </xs:element>
- <xs:element name="objects_derivations_list">
- <xs:annotation>
- <xs:documentation>Lista derewiacji stworzona w generate_resources_xsl_require_occurs_raport</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:sequence>
- <xs:element maxOccurs="unbounded" minOccurs="0" ref="p5_tr_map:derivations"/>
- </xs:sequence>
- <xs:attribute name="dereviation_count" type="xs:int"/>
- <xs:attribute ref="p5_tr_map:parent_name_with_pref"/>
- <xs:attribute ref="p5_tr_map:parent_id"/>
- <xs:attribute ref="p5_tr_map:object_type_name_with_pref"/>
- <xs:attribute ref="p5_tr_map:object_type_id"/>
- </xs:complexType>
- </xs:element>
- <xs:simpleType name="string_not_empty">
- <xs:restriction base="xs:string">
- <xs:minLength value="1"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:attribute name="parent_id" type="p5_tr_map:string_not_empty">
- <xs:annotation>
- <xs:documentation>np. default_accounting___d6e182 - nadrzedny complexType</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="object_type_id" type="p5_tr_map:string_not_empty">
- <xs:annotation>
- <xs:documentation>id uzytego typy dziecka complexType np. default_accounting___d6e182</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="parent_name_with_pref" type="p5_tr_map:string_not_empty">
- <xs:annotation>
- <xs:documentation>Nazwa najwyzszego complexType, z ktorego nastepuje dziedziczenie.</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="name_with_pref" type="p5_tr_map:string_not_empty"/>
- <xs:attribute name="uuid">
- <xs:annotation>
- <xs:documentation>unikalny numer dla kazdego z rekordow - uzywany przez sso_procesy5 do wlasciwego przetwoarzenia elementu pod katem znalezienia wlasciwej derewiacji - dla kazdego z elementow @id moga byc rozne konteksty uzycia pod katem dziedziczen. </xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:element name="derivations"> </xs:element>
- <xs:element name="detect_parent_complexType_with_ref_to_procesy5_table">
- <xs:complexType>
- <xs:sequence>
- <xs:element
- ref="system_cache__appinfo:detect_parent_complexType_with_ref_to_procesy5_table"
- />
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="go_recurse_from_root_by_build_element_434">
- <xs:annotation>
- <xs:documentation>Poczatek mapy transformacji obiektu</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434_root"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- <xs:complexType name="go_recurse_from_root_by_build_element_434">
- <xs:annotation>
- <xs:documentation>Z reguly przetwarzamy schemat tak, ze element jest przepuszczany do typu 434, dopiero przetwarzamy kolejny typ ktory jest albo dziedziczeniem albo wlasciwym elementem</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:complexType>
- <xs:complexType name="go_recurse_from_root_by_build_element_434c">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434c"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_434c">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_434c">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434c">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_434_after_477"
- />
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_434d_root">
- <xs:annotation>
- <xs:documentation>434 w przypadku wglownego wezla
- </xs:documentation>
- </xs:annotation>
- <xs:all>
- <xs:element name="go_recurse_from_root_by_build_element_434d" minOccurs="0">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434d">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494d"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_434n">
- <xs:annotation>
- <xs:documentation>:when test="local-name()='element' and @type and child::*/local-name()!='simpleType' and $p5_tr_map:last-type='477' and not(@id)" warunek 434n zaraz po 477 ktore sie tyczy zasobow z bazy danych , ktore nie maja @id - TODO jakos madrzej trzeba to wykryc</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434n"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_434n">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_434n" maxOccurs="0"
- minOccurs="0">
- <xs:annotation>
- <xs:documentation>@2016-01-20 przechodzimy na wyzwalanie 4777 i nie ma juz wyjscia do 434n / 734 </xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434n">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_734"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_434_root">
- <xs:all>
- <xs:element name="go_recurse_from_root_by_build_element_434" minOccurs="0">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_494_after_434"
- />
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_434_after_477">
- <xs:choice>
- <!--<xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_734"/>-->
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4812"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_loop"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_381"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3812"/>
- </xs:choice>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_434_before_481_etc">
- <xs:all>
- <xs:element name="go_recurse_from_root_by_build_element_434" minOccurs="0">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_434_before_481_etc_groups"
- />
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_434_before_481_etc_groups">
- <xs:sequence>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_477_element">
- <xs:choice>
- <xs:element name="go_recurse_from_root_by_build_element_459b"
- type="p5_tr_map:go_recurse_from_root_by_build_element_459b"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434c"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434n"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434d"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_381"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434r"/>
- </xs:choice>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_459b">
- <xs:annotation>
- <xs:documentation>Element po @ref , ktory nie jest complexType - zawiera jedna wartosc wzglednie dodatkowo atrybuty. Wymagane instancjonowanie od razu z wartoscia</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_459b"/>
- </xs:complexType>
- <xs:complexType name="go_recurse_from_root_by_build_element_434b">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434b"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_434b">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_434b">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434b">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_2"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- <!-- <xs:complexType>
- <xs:complexContent>-->
- <!--<xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434b">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
- </xs:extension>-->
- <!--</xs:complexContent>
- </xs:complexType>-->
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_434d">
- <xs:annotation>
- <xs:documentation>np. teryt WOJ po refie - ktore nie jest complexType - jest tutaj jedno wstrzymanie na complexType, do przetworzenia na 481 kolejny element.</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434d"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_434d">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_434d">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434d">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_434d_after"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_434d_after">
- <xs:choice>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494d"/>
- </xs:choice>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_434er">
- <xs:annotation>
- <xs:documentation>Element z typem, lokalnie rozszerzony extension/restriction</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434er"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_434er">
- <xs:all>
- <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_434er">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434er">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_434er_after"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_434er_after">
- <xs:all>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4942"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_434r">
- <xs:annotation>
- <xs:documentation>434r warunek 434r w !__element__! = /schema/complexType//@ref/!__element__!/complexType bez @type za @ref</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434r"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_434r">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_434r">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434r">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_381">
- <xs:annotation>
- <xs:documentation>Element z zawartoscia simpleContent - na pewno nie moze byc to complexContent. Ten elemenet moze zawierac atrybuty. Instancjonowany w tabeli typu instancja+wartosci. Bez dziedziczenia. </xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_381"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_381">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_381">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_381">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_394x"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_3810">
- <xs:annotation>
- <xs:documentation>Element z zawartoscia simpleContent - na pewno nie moze byc to complexContent. Ten elemenet moze zawierac atrybuty. Instancjonowany w tabeli typu instancja+wartosci. Ostatnie dziedziczenie w przypadku wiecej niz jednego dziedziczenia.</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3810"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_3810">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_3810">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3810">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_394x"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_3811">
- <xs:annotation>
- <xs:documentation>Element z zawartoscia simpleContent - na pewno nie moze byc to complexContent. Ten elemenet moze zawierac atrybuty. Instancjonowany w tabeli typu instancja+wartosci. </xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3811"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_3811">
- <xs:annotation>
- <xs:documentation>Element z zawartoscia simpleContent - na pewno nie moze byc to complexContent. Ten elemenet moze zawierac atrybuty. Instancjonowany w tabeli typu instancja+wartosci. Drugie i kolejne dziedziczenia w przypadku wiecej niz dwoch dziedziczen, nie ostatnie.</xs:documentation>
- </xs:annotation>
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_3811">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3811">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_3811_afater"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_3811_afater">
- <xs:choice>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3811"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3810"/>
- </xs:choice>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_3812">
- <xs:annotation>
- <xs:documentation>Element z zawartoscia simpleContent - na pewno nie moze byc to complexContent. Ten elemenet moze zawierac atrybuty. Instancjonowany w tabeli typu instancja+wartosci. - Pierwsze dziedziczenie w przypadku wiecej niz jednego dziedziczenia.</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3812"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_3812">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_3812">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3812">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_3811_afater"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_481">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_481">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_481">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_481">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_494_2"
- minOccurs="0"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_4811">
- <xs:annotation>
- <xs:documentation>pomiedzy 4812 a 4810</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4811"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_4811">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_4811">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4811">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_4812"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_4812">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4812"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_4812">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_4812">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4812">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_4812"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_4810">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4810"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_4810">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_4810">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4810">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_494_2"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_4812">
- <xs:sequence>
- <xs:choice>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4811"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4810"/>
- </xs:choice>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_720"
- type="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
- <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_473">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_473"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_394">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_394"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_394">
- <xs:all>
- <xs:element name="go_recurse_from_root_by_build_element_394" minOccurs="0">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_394">
- <xs:group minOccurs="0"
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_394x"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_3940">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3940"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_3940">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_3940">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3940">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_394x"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_3941">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3941"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_3941">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_3941">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3941">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_3941"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_3941">
- <xs:sequence>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3941"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3940"/>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_3942">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3942"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_3942">
- <xs:all>
- <xs:element name="go_recurse_from_root_by_build_element_3942" minOccurs="0">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3942">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_3942"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_3942">
- <xs:choice>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3940"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3941"/>
- </xs:choice>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_394x">
- <xs:all>
- <xs:element minOccurs="0" ref="system_cache__appinfo:schema"/>
- <xs:group minOccurs="1" ref="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_494d">
- <xs:annotation>
- <xs:documentation>warunek 494d complexType jako instancja elementu complexType bez @type - bez dziedziczen REMOTE_ID=parent::node()/ID</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_494d"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_494d">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_494d">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_494d">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_2"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_494">
- <xs:annotation>
- <xs:documentation>ten typ 494 jest uzywany w przypadku complexType bez dodatkowych dziedziczen - wylacznie jak jest uzyty element jakiego nazwanego typu</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_494"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_494">
- <xs:all>
- <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_494">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_494">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_2"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_4942">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4942"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_4942">
- <xs:all>
- <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_4942">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4942">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_4942"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_4942">
- <xs:sequence>
- <xs:choice>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4940"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4941"/>
- </xs:choice>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_720"
- type="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
- <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_473">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_473"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_4941">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4941"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_4941">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_4941">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4941">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_4941"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_4941">
- <xs:sequence>
- <xs:choice>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4940"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4941"/>
- </xs:choice>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_720"
- type="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
- <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_473">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_473"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_4940">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4940"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_4940">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_4940">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4940">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_494_2"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_494_1">
- <xs:all>
- <xs:element name="go_recurse_from_root_by_build_element_494" minOccurs="0">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_494">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_2"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_494_after_434">
- <xs:all>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_1"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4942"/>
- <!--<xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>-->
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_394"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3942"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434d_root"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_459"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_494_2">
- <xs:all>
- <xs:group minOccurs="1"
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_494_2"/>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_494_2">
- <xs:all>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4771"/>
- <xs:element name="go_recurse_from_root_by_build_element_loop"
- type="p5_tr_map:go_recurse_from_root_by_build_element_loop" minOccurs="0"/>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_473">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_473">
- <xs:all>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_473">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_473"
- maxOccurs="1"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:group name="go_recurse_from_root_by_build_element_after_473">
- <xs:all>
- <xs:group maxOccurs="1" minOccurs="1"
- ref="p5_tr_map:go_recurse_from_root_by_build_element_477"/>
- <xs:group maxOccurs="1" minOccurs="1"
- ref="p5_tr_map:go_recurse_from_root_by_build_element_428a"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_428"/>
- <xs:group maxOccurs="1" minOccurs="1"
- ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434_before_481_etc"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_459"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_477b"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473b"/>
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4777"/>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_473b">
- <xs:annotation>
- <xs:documentation>xsl:when test="local-name()='element' and not(@type) and child::node()/local-name()='complexType' and not(@system_cache__appinfo:root_element_in_schema='true')"
- element|sequence/complexType/element|sequence|attribute - to jest to cos w rodzaju sequence - element bez wartosci - do ktorego mozna gromadzic atrybuty lub inne elementy - nowy warunek 473b </xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_473b"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_473b">
- <xs:all>
- <xs:element name="go_recurse_from_root_by_build_element_473b" maxOccurs="unbounded"
- minOccurs="0">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473b">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434b"/>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_459">
- <xs:annotation>
- <xs:documentation>when test="( local-name()='element' ) and child::node()/local-name()='simpleType' and $p5_tr_map:last-type!='477' warunek 459 (podobny do 428) element lub atrybut typu simpleType np. default_default_objects_types___d10e120614-1 - schema/complexType/seq/ELEMENT/simpleType/restriction/@base</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_459"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_459">
- <xs:all>
- <xs:element name="go_recurse_from_root_by_build_element_459" maxOccurs="unbounded"
- minOccurs="0">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_459">
- <xs:sequence>
- <xs:element minOccurs="0" ref="system_cache__appinfo:schema"/>
- </xs:sequence>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_720">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_720">
- <xs:all>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_720"
- type="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_394-720">
- <xs:annotation>
- <xs:documentation>394-720 pobranie wartosci atrybutu po @ref z tabeli instancja+value</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_394-720"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_394-720">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_394-720">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_394-720">
- <xs:sequence>
- <xs:element minOccurs="0" ref="system_cache__appinfo:schema"/>
- </xs:sequence>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_477">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_477"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_477">
- <xs:all>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_477">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_477">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_after_477_element"
- />
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_4777">
- <xs:annotation>
- <xs:documentation>Wywolanie pseudo instancji kombinowanej do obiektu plaskiego z default_db , ktorego dane maja byc integrowane z obiektem odwolujacym sie. Tylko jedna jest mozliwa taka referencja i powinna byc ona na pierwszym miejscu w schemacie elementu zaraz za pierwszym sequence.</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4777"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_4777">
- <xs:all>
- <xs:element maxOccurs="1" minOccurs="0"
- name="go_recurse_from_root_by_build_element_4777">
- <xs:annotation>
- <xs:documentation>od 2016-01-20 jest ref do zasobow natywnej plaskiej tabeli , kombinowanej z instancja, w typie 4777 - tylko jedna taka referencja moze byc</xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4777">
- <xs:sequence>
- <xs:element ref="system_cache__appinfo:schema">
- <xs:annotation>
- <xs:documentation>Powinien tutaj byc schemat elementu do ktorego sie odwoluje</xs:documentation>
- </xs:annotation>
- </xs:element>
- </xs:sequence>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_477b">
- <xs:annotation>
- <xs:documentation>when test="local-name()='element' and @type and child::* and $p5_tr_map:last-type!='477'
- 477b wymuszenie 477 na pierwszym elemencie ktory jest @complexType i nie jest ref 477
- sa to ComplexType nazwanego typu uzyte jako elementy w schemacie analogicznie jak @ref, z tymze na zasadzie @type. W zwiazku z czym jest troche inne przetwarzanie, ale robimy tak samo jak w 477, z tymze odwolujemy sie do innych nazw i inaczej zachowuja sie dziedziczenia- TODO uzyty jest tylko typ, bez elementu - dziedziczenia zgodne z typem.</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_477b"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_477b">
- <xs:all>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_477b">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_477b">
- <xs:group
- ref="p5_tr_map:go_recurse_from_root_by_build_element_434_after_477"
- />
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_4771">
- <xs:annotation>
- <xs:documentation>4771 (aktualizacja @prefix_for_elements) pobranie atrybutu z referencja. ma @ref i musi miec REMOTE_ID</xs:documentation>
- </xs:annotation>
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4771"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_4771">
- <xs:all>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_4771">
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4771">
- <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_394-720"
- />
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_428">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_428"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_428">
- <xs:all>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_428"
- type="p5_tr_map:go_recurse_from_root_by_build_element_428"/>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_428a">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_428a"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_428a">
- <xs:all>
- <xs:element maxOccurs="unbounded" minOccurs="0"
- name="go_recurse_from_root_by_build_element_428a"
- type="p5_tr_map:go_recurse_from_root_by_build_element_428a"/>
- </xs:all>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_734">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_734"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_734">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_734" maxOccurs="0" minOccurs="0">
- <xs:annotation>
- <xs:documentation>@2016-01-20 przechodzimy na wyzwalanie 4777 i nie ma juz wyjscia do 434n / 734 </xs:documentation>
- </xs:annotation>
- <xs:complexType>
- <xs:complexContent>
- <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_734">
- <xs:sequence>
- <xs:element ref="system_cache__appinfo:schema">
- <xs:annotation>
- <xs:documentation>Pobranie danych z plaskiej tabeli z API</xs:documentation>
- </xs:annotation>
- </xs:element>
- </xs:sequence>
- </xs:extension>
- </xs:complexContent>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:group>
- <xs:complexType name="go_recurse_from_root_by_build_element_loop">
- <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_loop"/>
- </xs:complexType>
- <xs:group name="go_recurse_from_root_by_build_element_loop">
- <xs:sequence>
- <xs:element name="go_recurse_from_root_by_build_element_loop"
- type="p5_tr_map:go_recurse_from_root_by_build_element_loop" minOccurs="0"/>
- </xs:sequence>
- </xs:group>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_381">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. RESOURCE</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="381" name="event_type" use="required"/>
- <xs:attribute name="parent_name" use="required">
- <xs:annotation>
- <xs:documentation>np. RESOURCE</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name">
- <xs:annotation>
- <xs:documentation>np. RESOURCE</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:root_element_in_schema"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="p5_tr_map:parent_type"/>
- <xs:attribute ref="system_cache__appinfo:loop"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_3810">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="3810" name="event_type" use="required"/>
- <xs:attribute name="parent_name" use="required">
- <xs:annotation>
- <xs:documentation>tutaj pusty</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name">
- <xs:annotation>
- <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. teryt</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
- <xs:annotation>
- <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- <xs:attribute ref="system_cache__appinfo:loop"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="p5_tr_map:parent_type"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_3811">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="3811" name="event_type" use="required"/>
- <xs:attribute name="parent_name" use="required">
- <xs:annotation>
- <xs:documentation>tutaj pusty</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name">
- <xs:annotation>
- <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. teryt</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
- <xs:annotation>
- <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- <xs:attribute ref="system_cache__appinfo:loop"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="p5_tr_map:parent_type"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_3812">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="3812" name="event_type" use="required"/>
- <xs:attribute name="parent_name" use="required">
- <xs:annotation>
- <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name">
- <xs:annotation>
- <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. teryt</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
- <xs:annotation>
- <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="p5_tr_map:parent_type" use="optional"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_4810">
- <xs:annotation>
- <xs:documentation>4810 tutaj jest tabela z dodatkowa derewiacja @type, z instancjami, obych obiektow (ComplexType) , pytamy sie o konkretne ID=@REMOTE_ID w konkretnej tabeli (nie ma parent_type) </xs:documentation>
- </xs:annotation>
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="4810" name="event_type" use="required"/>
- <xs:attribute name="parent_name" use="required">
- <xs:annotation>
- <xs:documentation>tutaj pusty</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name">
- <xs:annotation>
- <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. teryt</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
- <xs:annotation>
- <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- <xs:attribute ref="system_cache__appinfo:loop"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="p5_tr_map:parent_type"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_4811">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="4811" name="event_type" use="required"/>
- <xs:attribute name="parent_name" use="required">
- <xs:annotation>
- <xs:documentation>tutaj pusty</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name">
- <xs:annotation>
- <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. teryt</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
- <xs:annotation>
- <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- <xs:attribute ref="system_cache__appinfo:loop"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="p5_tr_map:parent_type"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_4812">
- <xs:annotation>
- <xs:documentation>4812 derewiacja na child::node=complexType , z instancjami, obych obiektow (ComplexType) , pytamy sie o konkretne ID=@REMOTE_ID w konkretnej tabeli (nie ma parent_type) </xs:documentation>
- </xs:annotation>
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="4812" name="event_type" use="required"/>
- <xs:attribute name="parent_name" use="required">
- <xs:annotation>
- <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name">
- <xs:annotation>
- <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. teryt</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
- <xs:annotation>
- <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="p5_tr_map:parent_type" use="optional"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_481">
- <xs:annotation>
- <xs:documentation>481 tutaj jest tabela z instancjami obych obiektow (ComplexType) , pytamy sie o konkretne ID=@REMOTE_ID w konkretnej tabeli (nie ma parent_type) </xs:documentation>
- </xs:annotation>
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. RESOURCE</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="481" name="event_type" use="required"/>
- <xs:attribute name="parent_name" use="required">
- <xs:annotation>
- <xs:documentation>np. RESOURCE</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name">
- <xs:annotation>
- <xs:documentation>np. RESOURCE</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:root_element_in_schema"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="p5_tr_map:parent_type"/>
- <xs:attribute ref="system_cache__appinfo:loop"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_434">
- <xs:annotation>
- <xs:documentation>434 przepuszczenie pierwszego elementu jezeli ma @type - magazynujemy go w complexType nizej local-name:element @name:TELBOXES @id: INSTANCE_ID: np. dla elementu MAGAZYN, ktory ma @type MAGAZYN</xs:documentation>
- </xs:annotation>
- <xs:attribute name="comment"/>
- <xs:attribute fixed="434" name="event_type" use="required"/>
- <xs:attribute use="required" ref="system_cache__appinfo:id"/>
- <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
- <xs:attribute name="parent_type">
- <xs:annotation>
- <xs:documentation>np. default_corespondence:document_position_offer</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_434b">
- <xs:annotation>
- <xs:documentation>434b przepuszczenie pierszego elementu dla przypadku //schema/element/complexType - magazynujemy go w complexType nizej local-name:element @name:WOJ @id:TERYT_terc_xml_import_after_main___d44e20 INSTANCE_ID: np. dla elementu teryt(..):WOJ , ktory ma nizej complexType</xs:documentation>
- </xs:annotation>
- <xs:attribute name="comment"/>
- <xs:attribute fixed="434b" name="event_type" use="required"/>
- <xs:attribute name="id" use="required"/>
- <xs:attribute fixed="element[]/complexType" name="event_name" use="required"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_434c">
- <xs:annotation>
- <xs:documentation>434c po 477 po refie ktory jest na element</xs:documentation>
- </xs:annotation>
- <xs:attribute name="comment"/>
- <xs:attribute fixed="434c" name="event_type" use="required"/>
- <xs:attribute use="required" ref="system_cache__appinfo:id"/>
- <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
- <xs:attribute name="parent_type"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_434d">
- <xs:attribute name="comment"/>
- <xs:attribute fixed="434d" name="event_type" use="required"/>
- <xs:attribute use="required" ref="system_cache__appinfo:id"/>
- <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
- <xs:attribute name="parent_type"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_434n">
- <xs:attribute name="comment"/>
- <xs:attribute fixed="434n" name="event_type" use="required"/>
- <xs:attribute use="prohibited" ref="system_cache__appinfo:id"/>
- <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
- <xs:attribute name="parent_type"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_434r">
- <xs:attribute name="comment"/>
- <xs:attribute fixed="434r" name="event_type" use="required"/>
- <xs:attribute use="required" ref="system_cache__appinfo:id"/>
- <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
- <xs:attribute name="parent_type"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_434er">
- <xs:attribute name="comment"/>
- <xs:attribute fixed="434er" name="event_type" use="required"/>
- <xs:attribute use="required" ref="system_cache__appinfo:id"/>
- <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
- <xs:attribute name="parent_type"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_473">
- <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
- <xs:attribute name="retrieve_resource_id" use="required"/>
- <xs:attribute name="local-name" use="required">
- <xs:simpleType>
- <xs:restriction base="xs:string">
- <xs:enumeration value="sequence"/>
- <xs:enumeration value="choice"/>
- <xs:enumeration value="all"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
- <xs:attribute fixed="473" name="event_type" use="required"/>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_473b">
- <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
- <xs:attribute name="retrieve_resource_id" use="required"/>
- <xs:attribute name="local-name" use="required">
- <xs:simpleType>
- <xs:restriction base="xs:string">
- <xs:enumeration value="sequence"/>
- <xs:enumeration value="choice"/>
- <xs:enumeration value="all"/>
- <xs:enumeration value="element"/>
- </xs:restriction>
- </xs:simpleType>
- </xs:attribute>
- <xs:attribute fixed="473b" name="event_type" use="required"/>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name"/>
- <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
- <xs:attribute ref="system_cache__appinfo:xpath_local"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path"/>
- <xs:attribute name="parent-name"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_459b">
- <xs:annotation>
- <xs:documentation>459b element lub atrybut typu simpleType</xs:documentation>
- </xs:annotation>
- <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="element" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. NAZWA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. TERYT_terc_xml_import_after_main:NAZWA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="459b" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:type" use="required">
- <xs:annotation>
- <xs:documentation>np. xs:int TODO do potrzebny schemat typu prostego</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>np. TERYT_terc_xml_import_after_main___d44e182</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:xpath_local">
- <xs:annotation>
- <xs:documentation>TODO? tutaj pusty? czy to dobrze?</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute name="restriction_base_attr">
- <xs:annotation>
- <xs:documentation>existient todo look for:xs:int; $restriction_path:_start_/element:ID/;</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="id-orig-from-restriction">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types___d20e438-id-mag-restr
- Jest to @id elementu oryginalne z restrykcji, ktore zostalo podmienione w polu @id na odpowiednik obiektu z bazowego schematu, aby trzymac dane w tej samej tabeli</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path">
- <xs:annotation>
- <xs:documentation>eg. _start_/element:ID/</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_459">
- <xs:annotation>
- <xs:documentation>459 element lub atrybut typu simpleType</xs:documentation>
- </xs:annotation>
- <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="element" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>
- </xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. prefix:nazwa_attr</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="459" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:type">
- <xs:annotation>
- <xs:documentation>np. xs:int TODO do potrzebny schemat typu prostego .
- w 459 - w zaleznosci od sposobu wyrazonej restrykcji moze zdarzyc sie tam @type</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>np. TERYT_terc_xml_import_after_main___d44e182</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="optional"/>
- <xs:attribute ref="system_cache__appinfo:xpath_local"/>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute name="restriction_base_attr">
- <xs:annotation>
- <xs:documentation>existient todo look for:xs:int; $restriction_path:_start_/element:ID/;</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="id-orig-from-restriction">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types___d20e438-id-mag-restr
- Jest to @id elementu oryginalne z restrykcji, ktore zostalo podmienione w polu @id na odpowiednik obiektu z bazowego schematu, aby trzymac dane w tej samej tabeli</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path">
- <xs:annotation>
- <xs:documentation>eg. _start_/element:ID/</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
- <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_720">
- <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="attribute" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. testattr</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. testattr</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="720" name="event_type" use="required"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>np. testattr</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:use"/>
- <xs:attribute ref="system_cache__appinfo:type"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full"/>
- <xs:attribute ref="system_cache__appinfo:xpath"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="system_cache__appinfo:xpath_local"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_394-720">
- <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="attribute" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. testattr</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. testattr</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="394-720" name="event_type" use="required"/>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>np. testattr</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:use"/>
- <xs:attribute ref="system_cache__appinfo:type"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full"/>
- <xs:attribute ref="system_cache__appinfo:xpath"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="system_cache__appinfo:xpath_local"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- <xs:attribute ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_394">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute fixed="394" name="event_type"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_3940">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="3940" name="event_type"/>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_3941">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="3941" name="event_type"/>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_3942">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute fixed="3942" name="event_type"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_494d">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute fixed="494d" name="event_type"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="prohibited">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:root_element_in_schema" use="prohibited">
- <xs:annotation>
- <xs:documentation>raczej jest to complex, wiec root-in schema pojdzie w 343d, nie tu.</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute name="parent_name">
- <xs:annotation>
- <xs:documentation>Przeniesiony parametr z poprzedniego typu 343d, zaczytany z @name</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_494">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute fixed="494" name="event_type"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_4941">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="4941" name="event_type"/>
- <xs:attribute fixed="494" name="event_type_old"/>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_4942">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute fixed="4942" name="event_type"/>
- <xs:attribute fixed="494" name="event_type_old"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_4940">
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute name="retrieve_TYPE">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="complexType" name="local-name"/>
- <xs:attribute name="local-name-name">
- <xs:annotation>
- <xs:documentation>np. LOKALIZACJA</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="4940" name="event_type"/>
- <xs:attribute fixed="494" name="event_type_old"/>
- <xs:attribute name="restriciction_base"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath">
- <xs:annotation>
- <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>eg. MAGAZYN</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation/>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_477">
- <xs:annotation>
- <xs:documentation>477 (aktualizacja @prefix_for_elements) pobranie elementu z referencja do tabeli natywnej SE lub innej - ma @ref i musi miec REMOTE_ID np. MAGAZYN/sequence/default_db:TELBOXES (@ref) pasuje tez element /MAGAZYN//sequence/teryt:AdresUlica TODO element z ref nie moze miec ID </xs:documentation>
- </xs:annotation>
- <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
- <xs:attribute fixed="not empty(REMOTE_ID)" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute fixed="element" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:TELBOXES</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:TELBOXES</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="477" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
- <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
- <xs:attribute ref="system_cache__appinfo:ref" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath_local" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path">
- <xs:annotation>
- <xs:documentation>raczej nie potrzebne w dalszym przetwarzaniu _start_/element:@ref:default_default_objects_types:RESOURCE//element:RESOURCE//element:@ref:default_db:CRM_LISTA_ZASOBOW/</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:loop_name"/>
- <xs:attribute ref="system_cache__appinfo:loop_id"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:loop_name_with_prefix"/>
- <xs:attribute ref="p5_tr_map:detect_loop_from_build_complexType_node_comment"/>
- <xs:attributeGroup ref="p5_tr_map:relation_info_from_appinfo_not_flat"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_477b">
- <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
- <xs:attribute fixed="not empty(REMOTE_ID)" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute fixed="element" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:TELBOXES</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:TELBOXES</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="477b" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
- <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
- <xs:attribute ref="system_cache__appinfo:ref" use="prohibited">
- <xs:annotation>
- <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath_local" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path">
- <xs:annotation>
- <xs:documentation>raczej nie potrzebne w dalszym przetwarzaniu _start_/element:@ref:default_default_objects_types:RESOURCE//element:RESOURCE//element:@ref:default_db:CRM_LISTA_ZASOBOW/</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:loop_name"/>
- <xs:attribute ref="system_cache__appinfo:loop_id"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name"/>
- <xs:attribute ref="system_cache__appinfo:type"/>
- <xs:attribute ref="system_cache__appinfo:targetNamespace"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_4771">
- <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
- <xs:attribute fixed="not empty(REMOTE_ID)" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute fixed="attribute" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:xxxx</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:xxxx</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="4771" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
- <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
- <xs:attribute ref="system_cache__appinfo:ref" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:some_attr_refered
- </xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath_local" use="prohibited">
- <xs:annotation>
- <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path">
- <xs:annotation>
- <xs:documentation>raczej nie potrzebne w dalszym przetwarzaniu _start_/element:@ref:default_default_objects_types:RESOURCE//element:RESOURCE//element:@ref:default_db:CRM_LISTA_ZASOBOW/</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:loop_name"/>
- <xs:attribute ref="system_cache__appinfo:loop_id"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_4777">
- <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
- <xs:attribute fixed="not empty(REMOTE_ID)" name="retrieve_REMOTE_ID" use="required"/>
- <xs:attribute fixed="element" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:TELBOXES</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:TELBOXES</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
- <xs:attribute fixed="4777" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full" use="required"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
- <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
- <xs:attribute ref="system_cache__appinfo:ref" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath_local" use="required">
- <xs:annotation>
- <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path">
- <xs:annotation>
- <xs:documentation>raczej nie potrzebne w dalszym przetwarzaniu _start_/element:@ref:default_default_objects_types:RESOURCE//element:RESOURCE//element:@ref:default_db:CRM_LISTA_ZASOBOW/</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:loop_name"/>
- <xs:attribute ref="system_cache__appinfo:loop_id"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute fixed="0" name="position" use="required">
- <xs:annotation>
- <xs:documentation>Wyliczona pozycja elementu w schemacie - powinna byc pierwsza pozycja na lisciu schematu, zaraz za sequence, wiec=0 </xs:documentation>
- </xs:annotation>
- </xs:attribute>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_734">
- <xs:annotation>
- <xs:documentation>734 pobranie elementu zwyczajowo z default_db, bo nie ma @id i jest complextype np. MAGAZYN/sequence/default_db:TELBOXES/(obiekt z tabeli TELBOXES z ID=@REMOTE_ID)</xs:documentation>
- </xs:annotation>
- <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="complexType" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. TELBOXES</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="*" name="copy-retrieved-element" use="required"/>
- <xs:attribute fixed="734" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_428">
- <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="element" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. ID</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath_full"/>
- <xs:attribute ref="system_cache__appinfo:xpath"/>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. ID</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="428" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:targetNamespace"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
- <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:type" use="optional">
- <xs:annotation>
- <xs:documentation>np. xs:int TODO do potrzebny schemat typu prostego</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath_local"/>
- <xs:attribute name="restriction_base_attr">
- <xs:annotation>
- <xs:documentation>existient todo look for:xs:int; $restriction_path:_start_/element:ID/;</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="id-orig-from-restriction">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types___d20e438-id-mag-restr
- Jest to @id elementu oryginalne z restrykcji, ktore zostalo podmienione w polu @id na odpowiednik obiektu z bazowego schematu, aby trzymac dane w tej samej tabeli</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="xpath_local">
- <xs:annotation>
- <xs:documentation>TODO BLAD - w przykladzie z MAGAZYNU jest wartosc xs:int</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path">
- <xs:annotation>
- <xs:documentation>eg. _start_/element:ID/</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_428a">
- <xs:annotation>
- <xs:documentation>428a - parent_name:default_default_objects_types:MAGAZYN pusty element - tylko instancja</xs:documentation>
- </xs:annotation>
- <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
- <xs:attribute fixed="element" name="local-name" use="required"/>
- <xs:attribute name="local-name-name" use="required">
- <xs:annotation>
- <xs:documentation>np. ID</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath_full"/>
- <xs:attribute ref="system_cache__appinfo:xpath"/>
- <xs:attribute name="create_element" use="required">
- <xs:annotation>
- <xs:documentation>np. ID</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="428a" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:targetNamespace"/>
- <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
- <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
- <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
- <xs:attribute ref="system_cache__appinfo:minOccurs"/>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:type" use="optional">
- <xs:annotation>
- <xs:documentation>np. xs:int TODO do potrzebny schemat typu prostego</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:xpath_local"/>
- <xs:attribute name="restriction_base_attr">
- <xs:annotation>
- <xs:documentation>existient todo look for:xs:int; $restriction_path:_start_/element:ID/;</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="id-orig-from-restriction">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types___d20e438-id-mag-restr
- Jest to @id elementu oryginalne z restrykcji, ktore zostalo podmienione w polu @id na odpowiednik obiektu z bazowego schematu, aby trzymac dane w tej samej tabeli</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="xpath_local">
- <xs:annotation>
- <xs:documentation>TODO BLAD - w przykladzie z MAGAZYNU jest wartosc xs:int</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
- <xs:attribute ref="system_cache__appinfo:restriction_path">
- <xs:annotation>
- <xs:documentation>eg. _start_/element:ID/</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:default"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="go_recurse_from_root_by_build_element_loop">
- <xs:attribute fixed="loop" name="local-name" use="required"/>
- <xs:attribute ref="system_cache__appinfo:xpath_full"/>
- <xs:attribute ref="system_cache__appinfo:xpath"/>
- <xs:attribute name="root_name" use="required">
- <xs:annotation>
- <xs:documentation>np. default_default_objects_types:URZADZENIE</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute fixed="loop" name="event_type" use="required"/>
- <xs:attribute ref="system_cache__appinfo:id" use="required">
- <xs:annotation>
- <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:path"/>
- <xs:attribute ref="system_cache__appinfo:name" use="required">
- <xs:annotation>
- <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
- <xs:attribute ref="system_cache__appinfo:restriciction_base_lenght_TODEL"/>
- <xs:attribute name="comment"/>
- <xs:attribute ref="p5_tr_map:uuid" use="required"/>
- <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
- <xs:attribute ref="system_cache__appinfo:name_with_prefix" use="required"/>
- </xs:attributeGroup>
- <!--<xs:attribute name="object_type_name_with_pref" type="xs:NMTOKEN"/>-->
- <xs:attribute name="object_type_name_with_pref">
- <xs:annotation>
- <xs:documentation>jakiego typu dziedziczenia jest uzyty complexType</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attributeGroup name="parent_name_with_pref">
- <xs:attribute form="qualified" name="parent_name_with_pref" use="required"/>
- </xs:attributeGroup>
- <xs:attributeGroup name="parent_name_with_pref1">
- <xs:attribute form="qualified" name="parent_name_with_pref" type="xs:NMTOKEN" use="required"
- />
- </xs:attributeGroup>
- <!--<xs:attribute name="object_type_id" type="xs:NCName"/>-->
- <xs:attribute name="event_type" type="xs:NMTOKEN"/>
- <xs:attribute name="parent_type"/>
- <!--<xs:element name="schema_4777">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="element" targetNamespace="http://www.w3.org/2001/XMLSchema">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="element"
- targetNamespace="http://www.w3.org/2001/XMLSchema">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="complexType"
- targetNamespace="http://www.w3.org/2001/XMLSchema">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="sequence"
- targetNamespace="http://www.w3.org/2001/XMLSchema">
- <xs:complexType>
- <xs:sequence>
- <xs:element maxOccurs="unbounded" name="element"
- targetNamespace="http://www.w3.org/2001/XMLSchema">
- <xs:complexType>
- <xs:sequence minOccurs="0">
- <xs:element name="simpleType"
- targetNamespace="http://www.w3.org/2001/XMLSchema">
- <xs:complexType>
- <xs:sequence minOccurs="0">
- <xs:element name="restriction"
- targetNamespace="http://www.w3.org/2001/XMLSchema"
- />
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:sequence>
- </xs:complexType>
- </xs:element>-->
- <xs:attribute name="detect_loop_from_build_complexType_node_comment">
- <xs:annotation>
- <xs:documentation>mainly at 477 - to detect if child nodes are loop (recursive action) which could be detected by partially instance object ref.</xs:documentation>
- </xs:annotation>
- </xs:attribute>
- <xs:attributeGroup name="relation_info_from_appinfo_not_flat">
- <xs:annotation>
- <xs:documentation>dorzucona struktura na potrzeby synchronizacji refow 2017-03 w p5_tr_map
- </xs:documentation>
- </xs:annotation>
- <xs:attribute name="flat_relation_cache_name"/>
- <xs:attribute name="flat_relation_cache_xpath"/>
- </xs:attributeGroup>
- </xs:schema>
|