p5_tr_map.xsd 136 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3. xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
  4. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/procesy5_translate_map.xsd"
  5. vc:minVersion="1.1" attributeFormDefault="unqualified" elementFormDefault="qualified"
  6. xmlns:p5_tr_map="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/procesy5_translate_map.xsd"
  7. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd">
  8. <xs:annotation>
  9. <xs:documentation>Schemat do appinfo do określania informacji o relacjach - doswiadczalny - propozycja - DRAFT
  10. @2015-11-19 modelowa struktura obietkow generowanych przez algorytm tworzenia mapy przetwarzania obiektow</xs:documentation>
  11. </xs:annotation>
  12. <xs:import
  13. namespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  14. schemaLocation="appinfo.xsd"/>
  15. <xs:element name="go_recurse_from_root_by_build_element">
  16. <xs:complexType>
  17. <xs:all>
  18. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434_root"/>
  19. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434er"/>
  20. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494"/>
  21. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4942"/>
  22. </xs:all>
  23. </xs:complexType>
  24. </xs:element>
  25. <xs:element name="objects_derivations_list">
  26. <xs:annotation>
  27. <xs:documentation>Lista derewiacji stworzona w generate_resources_xsl_require_occurs_raport</xs:documentation>
  28. </xs:annotation>
  29. <xs:complexType>
  30. <xs:sequence>
  31. <xs:element maxOccurs="unbounded" minOccurs="0" ref="p5_tr_map:derivations"/>
  32. </xs:sequence>
  33. <xs:attribute name="dereviation_count" type="xs:int"/>
  34. <xs:attribute ref="p5_tr_map:parent_name_with_pref"/>
  35. <xs:attribute ref="p5_tr_map:parent_id"/>
  36. <xs:attribute ref="p5_tr_map:object_type_name_with_pref"/>
  37. <xs:attribute ref="p5_tr_map:object_type_id"/>
  38. </xs:complexType>
  39. </xs:element>
  40. <xs:simpleType name="string_not_empty">
  41. <xs:restriction base="xs:string">
  42. <xs:minLength value="1"/>
  43. </xs:restriction>
  44. </xs:simpleType>
  45. <xs:attribute name="parent_id" type="p5_tr_map:string_not_empty">
  46. <xs:annotation>
  47. <xs:documentation>np. default_accounting___d6e182 - nadrzedny complexType</xs:documentation>
  48. </xs:annotation>
  49. </xs:attribute>
  50. <xs:attribute name="object_type_id" type="p5_tr_map:string_not_empty">
  51. <xs:annotation>
  52. <xs:documentation>id uzytego typy dziecka complexType np. default_accounting___d6e182</xs:documentation>
  53. </xs:annotation>
  54. </xs:attribute>
  55. <xs:attribute name="parent_name_with_pref" type="p5_tr_map:string_not_empty">
  56. <xs:annotation>
  57. <xs:documentation>Nazwa najwyzszego complexType, z ktorego nastepuje dziedziczenie.</xs:documentation>
  58. </xs:annotation>
  59. </xs:attribute>
  60. <xs:attribute name="name_with_pref" type="p5_tr_map:string_not_empty"/>
  61. <xs:attribute name="uuid">
  62. <xs:annotation>
  63. <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>
  64. </xs:annotation>
  65. </xs:attribute>
  66. <xs:element name="derivations"> </xs:element>
  67. <xs:element name="detect_parent_complexType_with_ref_to_procesy5_table">
  68. <xs:complexType>
  69. <xs:sequence>
  70. <xs:element
  71. ref="system_cache__appinfo:detect_parent_complexType_with_ref_to_procesy5_table"
  72. />
  73. </xs:sequence>
  74. </xs:complexType>
  75. </xs:element>
  76. <xs:element name="go_recurse_from_root_by_build_element_434">
  77. <xs:annotation>
  78. <xs:documentation>Poczatek mapy transformacji obiektu</xs:documentation>
  79. </xs:annotation>
  80. <xs:complexType>
  81. <xs:complexContent>
  82. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434">
  83. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434_root"/>
  84. </xs:extension>
  85. </xs:complexContent>
  86. </xs:complexType>
  87. </xs:element>
  88. <xs:complexType name="go_recurse_from_root_by_build_element_434">
  89. <xs:annotation>
  90. <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>
  91. </xs:annotation>
  92. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434"/>
  93. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  94. </xs:complexType>
  95. <xs:complexType name="go_recurse_from_root_by_build_element_434c">
  96. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434c"/>
  97. </xs:complexType>
  98. <xs:group name="go_recurse_from_root_by_build_element_434c">
  99. <xs:sequence>
  100. <xs:element name="go_recurse_from_root_by_build_element_434c">
  101. <xs:complexType>
  102. <xs:complexContent>
  103. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434c">
  104. <xs:group
  105. ref="p5_tr_map:go_recurse_from_root_by_build_element_434_after_477"
  106. />
  107. </xs:extension>
  108. </xs:complexContent>
  109. </xs:complexType>
  110. </xs:element>
  111. </xs:sequence>
  112. </xs:group>
  113. <xs:group name="go_recurse_from_root_by_build_element_434d_root">
  114. <xs:annotation>
  115. <xs:documentation>434 w przypadku wglownego wezla
  116. </xs:documentation>
  117. </xs:annotation>
  118. <xs:all>
  119. <xs:element name="go_recurse_from_root_by_build_element_434d" minOccurs="0">
  120. <xs:complexType>
  121. <xs:complexContent>
  122. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434d">
  123. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494d"/>
  124. </xs:extension>
  125. </xs:complexContent>
  126. </xs:complexType>
  127. </xs:element>
  128. </xs:all>
  129. </xs:group>
  130. <xs:complexType name="go_recurse_from_root_by_build_element_434n">
  131. <xs:annotation>
  132. <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>
  133. </xs:annotation>
  134. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434n"/>
  135. </xs:complexType>
  136. <xs:group name="go_recurse_from_root_by_build_element_434n">
  137. <xs:sequence>
  138. <xs:element name="go_recurse_from_root_by_build_element_434n" maxOccurs="0"
  139. minOccurs="0">
  140. <xs:annotation>
  141. <xs:documentation>@2016-01-20 przechodzimy na wyzwalanie 4777 i nie ma juz wyjscia do 434n / 734 </xs:documentation>
  142. </xs:annotation>
  143. <xs:complexType>
  144. <xs:complexContent>
  145. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434n">
  146. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_734"/>
  147. </xs:extension>
  148. </xs:complexContent>
  149. </xs:complexType>
  150. </xs:element>
  151. </xs:sequence>
  152. </xs:group>
  153. <xs:group name="go_recurse_from_root_by_build_element_434_root">
  154. <xs:all>
  155. <xs:element name="go_recurse_from_root_by_build_element_434" minOccurs="0">
  156. <xs:complexType>
  157. <xs:complexContent>
  158. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434">
  159. <xs:group
  160. ref="p5_tr_map:go_recurse_from_root_by_build_element_494_after_434"
  161. />
  162. </xs:extension>
  163. </xs:complexContent>
  164. </xs:complexType>
  165. </xs:element>
  166. </xs:all>
  167. </xs:group>
  168. <xs:group name="go_recurse_from_root_by_build_element_434_after_477">
  169. <xs:choice>
  170. <!--<xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_734"/>-->
  171. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4812"/>
  172. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
  173. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_loop"/>
  174. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_381"/>
  175. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3812"/>
  176. </xs:choice>
  177. </xs:group>
  178. <xs:group name="go_recurse_from_root_by_build_element_434_before_481_etc">
  179. <xs:all>
  180. <xs:element name="go_recurse_from_root_by_build_element_434" minOccurs="0">
  181. <xs:complexType>
  182. <xs:complexContent>
  183. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434">
  184. <xs:group
  185. ref="p5_tr_map:go_recurse_from_root_by_build_element_434_before_481_etc_groups"
  186. />
  187. </xs:extension>
  188. </xs:complexContent>
  189. </xs:complexType>
  190. </xs:element>
  191. </xs:all>
  192. </xs:group>
  193. <xs:group name="go_recurse_from_root_by_build_element_434_before_481_etc_groups">
  194. <xs:sequence>
  195. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
  196. </xs:sequence>
  197. </xs:group>
  198. <xs:group name="go_recurse_from_root_by_build_element_after_477_element">
  199. <xs:choice>
  200. <xs:element name="go_recurse_from_root_by_build_element_459b"
  201. type="p5_tr_map:go_recurse_from_root_by_build_element_459b"/>
  202. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434c"/>
  203. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434n"/>
  204. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434d"/>
  205. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_381"/>
  206. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434r"/>
  207. </xs:choice>
  208. </xs:group>
  209. <xs:complexType name="go_recurse_from_root_by_build_element_459b">
  210. <xs:annotation>
  211. <xs:documentation>Element po @ref , ktory nie jest complexType - zawiera jedna wartosc wzglednie dodatkowo atrybuty. Wymagane instancjonowanie od razu z wartoscia</xs:documentation>
  212. </xs:annotation>
  213. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_459b"/>
  214. </xs:complexType>
  215. <xs:complexType name="go_recurse_from_root_by_build_element_434b">
  216. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434b"/>
  217. </xs:complexType>
  218. <xs:group name="go_recurse_from_root_by_build_element_434b">
  219. <xs:sequence>
  220. <xs:element name="go_recurse_from_root_by_build_element_434b">
  221. <xs:complexType>
  222. <xs:complexContent>
  223. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434b">
  224. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_2"/>
  225. </xs:extension>
  226. </xs:complexContent>
  227. </xs:complexType>
  228. </xs:element>
  229. <!-- <xs:complexType>
  230. <xs:complexContent>-->
  231. <!--<xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434b">
  232. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
  233. </xs:extension>-->
  234. <!--</xs:complexContent>
  235. </xs:complexType>-->
  236. </xs:sequence>
  237. </xs:group>
  238. <xs:complexType name="go_recurse_from_root_by_build_element_434d">
  239. <xs:annotation>
  240. <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>
  241. </xs:annotation>
  242. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434d"/>
  243. </xs:complexType>
  244. <xs:group name="go_recurse_from_root_by_build_element_434d">
  245. <xs:sequence>
  246. <xs:element name="go_recurse_from_root_by_build_element_434d">
  247. <xs:complexType>
  248. <xs:complexContent>
  249. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434d">
  250. <xs:group
  251. ref="p5_tr_map:go_recurse_from_root_by_build_element_434d_after"/>
  252. </xs:extension>
  253. </xs:complexContent>
  254. </xs:complexType>
  255. </xs:element>
  256. </xs:sequence>
  257. </xs:group>
  258. <xs:group name="go_recurse_from_root_by_build_element_434d_after">
  259. <xs:choice>
  260. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
  261. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494d"/>
  262. </xs:choice>
  263. </xs:group>
  264. <xs:complexType name="go_recurse_from_root_by_build_element_434er">
  265. <xs:annotation>
  266. <xs:documentation>Element z typem, lokalnie rozszerzony extension/restriction</xs:documentation>
  267. </xs:annotation>
  268. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434er"/>
  269. </xs:complexType>
  270. <xs:group name="go_recurse_from_root_by_build_element_434er">
  271. <xs:all>
  272. <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_434er">
  273. <xs:complexType>
  274. <xs:complexContent>
  275. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434er">
  276. <xs:group
  277. ref="p5_tr_map:go_recurse_from_root_by_build_element_434er_after"/>
  278. </xs:extension>
  279. </xs:complexContent>
  280. </xs:complexType>
  281. </xs:element>
  282. </xs:all>
  283. </xs:group>
  284. <xs:group name="go_recurse_from_root_by_build_element_434er_after">
  285. <xs:all>
  286. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4942"/>
  287. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
  288. </xs:all>
  289. </xs:group>
  290. <xs:complexType name="go_recurse_from_root_by_build_element_434r">
  291. <xs:annotation>
  292. <xs:documentation>434r warunek 434r w !__element__! = /schema/complexType//@ref/!__element__!/complexType bez @type za @ref</xs:documentation>
  293. </xs:annotation>
  294. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_434r"/>
  295. </xs:complexType>
  296. <xs:group name="go_recurse_from_root_by_build_element_434r">
  297. <xs:sequence>
  298. <xs:element name="go_recurse_from_root_by_build_element_434r">
  299. <xs:complexType>
  300. <xs:complexContent>
  301. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_434r">
  302. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
  303. </xs:extension>
  304. </xs:complexContent>
  305. </xs:complexType>
  306. </xs:element>
  307. </xs:sequence>
  308. </xs:group>
  309. <xs:complexType name="go_recurse_from_root_by_build_element_381">
  310. <xs:annotation>
  311. <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>
  312. </xs:annotation>
  313. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_381"/>
  314. </xs:complexType>
  315. <xs:group name="go_recurse_from_root_by_build_element_381">
  316. <xs:sequence>
  317. <xs:element name="go_recurse_from_root_by_build_element_381">
  318. <xs:complexType>
  319. <xs:complexContent>
  320. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_381">
  321. <xs:group
  322. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_394x"/>
  323. </xs:extension>
  324. </xs:complexContent>
  325. </xs:complexType>
  326. </xs:element>
  327. </xs:sequence>
  328. </xs:group>
  329. <xs:complexType name="go_recurse_from_root_by_build_element_3810">
  330. <xs:annotation>
  331. <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>
  332. </xs:annotation>
  333. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3810"/>
  334. </xs:complexType>
  335. <xs:group name="go_recurse_from_root_by_build_element_3810">
  336. <xs:sequence>
  337. <xs:element name="go_recurse_from_root_by_build_element_3810">
  338. <xs:complexType>
  339. <xs:complexContent>
  340. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3810">
  341. <xs:group
  342. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_394x"/>
  343. </xs:extension>
  344. </xs:complexContent>
  345. </xs:complexType>
  346. </xs:element>
  347. </xs:sequence>
  348. </xs:group>
  349. <xs:complexType name="go_recurse_from_root_by_build_element_3811">
  350. <xs:annotation>
  351. <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>
  352. </xs:annotation>
  353. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3811"/>
  354. </xs:complexType>
  355. <xs:group name="go_recurse_from_root_by_build_element_3811">
  356. <xs:annotation>
  357. <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>
  358. </xs:annotation>
  359. <xs:sequence>
  360. <xs:element name="go_recurse_from_root_by_build_element_3811">
  361. <xs:complexType>
  362. <xs:complexContent>
  363. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3811">
  364. <xs:group
  365. ref="p5_tr_map:go_recurse_from_root_by_build_element_3811_afater"/>
  366. </xs:extension>
  367. </xs:complexContent>
  368. </xs:complexType>
  369. </xs:element>
  370. </xs:sequence>
  371. </xs:group>
  372. <xs:group name="go_recurse_from_root_by_build_element_3811_afater">
  373. <xs:choice>
  374. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3811"/>
  375. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3810"/>
  376. </xs:choice>
  377. </xs:group>
  378. <xs:complexType name="go_recurse_from_root_by_build_element_3812">
  379. <xs:annotation>
  380. <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>
  381. </xs:annotation>
  382. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3812"/>
  383. </xs:complexType>
  384. <xs:group name="go_recurse_from_root_by_build_element_3812">
  385. <xs:sequence>
  386. <xs:element name="go_recurse_from_root_by_build_element_3812">
  387. <xs:complexType>
  388. <xs:complexContent>
  389. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3812">
  390. <xs:group
  391. ref="p5_tr_map:go_recurse_from_root_by_build_element_3811_afater"/>
  392. </xs:extension>
  393. </xs:complexContent>
  394. </xs:complexType>
  395. </xs:element>
  396. </xs:sequence>
  397. </xs:group>
  398. <xs:complexType name="go_recurse_from_root_by_build_element_481">
  399. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_481"/>
  400. </xs:complexType>
  401. <xs:group name="go_recurse_from_root_by_build_element_481">
  402. <xs:sequence>
  403. <xs:element name="go_recurse_from_root_by_build_element_481">
  404. <xs:complexType>
  405. <xs:complexContent>
  406. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_481">
  407. <xs:group
  408. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_494_2"
  409. minOccurs="0"/>
  410. </xs:extension>
  411. </xs:complexContent>
  412. </xs:complexType>
  413. </xs:element>
  414. </xs:sequence>
  415. </xs:group>
  416. <xs:complexType name="go_recurse_from_root_by_build_element_4811">
  417. <xs:annotation>
  418. <xs:documentation>pomiedzy 4812 a 4810</xs:documentation>
  419. </xs:annotation>
  420. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4811"/>
  421. </xs:complexType>
  422. <xs:group name="go_recurse_from_root_by_build_element_4811">
  423. <xs:sequence>
  424. <xs:element name="go_recurse_from_root_by_build_element_4811">
  425. <xs:complexType>
  426. <xs:complexContent>
  427. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4811">
  428. <xs:group
  429. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_4812"/>
  430. </xs:extension>
  431. </xs:complexContent>
  432. </xs:complexType>
  433. </xs:element>
  434. </xs:sequence>
  435. </xs:group>
  436. <xs:complexType name="go_recurse_from_root_by_build_element_4812">
  437. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4812"/>
  438. </xs:complexType>
  439. <xs:group name="go_recurse_from_root_by_build_element_4812">
  440. <xs:sequence>
  441. <xs:element name="go_recurse_from_root_by_build_element_4812">
  442. <xs:complexType>
  443. <xs:complexContent>
  444. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4812">
  445. <xs:group
  446. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_4812"/>
  447. </xs:extension>
  448. </xs:complexContent>
  449. </xs:complexType>
  450. </xs:element>
  451. </xs:sequence>
  452. </xs:group>
  453. <xs:complexType name="go_recurse_from_root_by_build_element_4810">
  454. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4810"/>
  455. </xs:complexType>
  456. <xs:group name="go_recurse_from_root_by_build_element_4810">
  457. <xs:sequence>
  458. <xs:element name="go_recurse_from_root_by_build_element_4810">
  459. <xs:complexType>
  460. <xs:complexContent>
  461. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4810">
  462. <xs:group
  463. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_494_2"/>
  464. </xs:extension>
  465. </xs:complexContent>
  466. </xs:complexType>
  467. </xs:element>
  468. </xs:sequence>
  469. </xs:group>
  470. <xs:group name="go_recurse_from_root_by_build_element_after_4812">
  471. <xs:sequence>
  472. <xs:choice>
  473. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4811"/>
  474. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4810"/>
  475. </xs:choice>
  476. <xs:element maxOccurs="unbounded" minOccurs="0"
  477. name="go_recurse_from_root_by_build_element_720"
  478. type="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
  479. <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_473">
  480. <xs:complexType>
  481. <xs:complexContent>
  482. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473">
  483. <xs:group
  484. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_473"/>
  485. </xs:extension>
  486. </xs:complexContent>
  487. </xs:complexType>
  488. </xs:element>
  489. </xs:sequence>
  490. </xs:group>
  491. <xs:complexType name="go_recurse_from_root_by_build_element_394">
  492. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_394"/>
  493. </xs:complexType>
  494. <xs:group name="go_recurse_from_root_by_build_element_394">
  495. <xs:all>
  496. <xs:element name="go_recurse_from_root_by_build_element_394" minOccurs="0">
  497. <xs:complexType>
  498. <xs:complexContent>
  499. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_394">
  500. <xs:group minOccurs="0"
  501. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_394x"/>
  502. </xs:extension>
  503. </xs:complexContent>
  504. </xs:complexType>
  505. </xs:element>
  506. </xs:all>
  507. </xs:group>
  508. <xs:complexType name="go_recurse_from_root_by_build_element_3940">
  509. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3940"/>
  510. </xs:complexType>
  511. <xs:group name="go_recurse_from_root_by_build_element_3940">
  512. <xs:sequence>
  513. <xs:element name="go_recurse_from_root_by_build_element_3940">
  514. <xs:complexType>
  515. <xs:complexContent>
  516. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3940">
  517. <xs:group
  518. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_394x"/>
  519. </xs:extension>
  520. </xs:complexContent>
  521. </xs:complexType>
  522. </xs:element>
  523. </xs:sequence>
  524. </xs:group>
  525. <xs:complexType name="go_recurse_from_root_by_build_element_3941">
  526. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3941"/>
  527. </xs:complexType>
  528. <xs:group name="go_recurse_from_root_by_build_element_3941">
  529. <xs:sequence>
  530. <xs:element name="go_recurse_from_root_by_build_element_3941">
  531. <xs:complexType>
  532. <xs:complexContent>
  533. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3941">
  534. <xs:group
  535. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_3941"/>
  536. </xs:extension>
  537. </xs:complexContent>
  538. </xs:complexType>
  539. </xs:element>
  540. </xs:sequence>
  541. </xs:group>
  542. <xs:group name="go_recurse_from_root_by_build_element_after_3941">
  543. <xs:sequence>
  544. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3941"/>
  545. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3940"/>
  546. </xs:sequence>
  547. </xs:group>
  548. <xs:complexType name="go_recurse_from_root_by_build_element_3942">
  549. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_3942"/>
  550. </xs:complexType>
  551. <xs:group name="go_recurse_from_root_by_build_element_3942">
  552. <xs:all>
  553. <xs:element name="go_recurse_from_root_by_build_element_3942" minOccurs="0">
  554. <xs:complexType>
  555. <xs:complexContent>
  556. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_3942">
  557. <xs:group
  558. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_3942"/>
  559. </xs:extension>
  560. </xs:complexContent>
  561. </xs:complexType>
  562. </xs:element>
  563. </xs:all>
  564. </xs:group>
  565. <xs:group name="go_recurse_from_root_by_build_element_after_3942">
  566. <xs:choice>
  567. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3940"/>
  568. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3941"/>
  569. </xs:choice>
  570. </xs:group>
  571. <xs:group name="go_recurse_from_root_by_build_element_after_394x">
  572. <xs:all>
  573. <xs:element minOccurs="0" ref="system_cache__appinfo:schema"/>
  574. <xs:group minOccurs="1" ref="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
  575. </xs:all>
  576. </xs:group>
  577. <xs:complexType name="go_recurse_from_root_by_build_element_494d">
  578. <xs:annotation>
  579. <xs:documentation>warunek 494d complexType jako instancja elementu complexType bez @type - bez dziedziczen REMOTE_ID=parent::node()/ID</xs:documentation>
  580. </xs:annotation>
  581. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_494d"/>
  582. </xs:complexType>
  583. <xs:group name="go_recurse_from_root_by_build_element_494d">
  584. <xs:sequence>
  585. <xs:element name="go_recurse_from_root_by_build_element_494d">
  586. <xs:complexType>
  587. <xs:complexContent>
  588. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_494d">
  589. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_2"/>
  590. </xs:extension>
  591. </xs:complexContent>
  592. </xs:complexType>
  593. </xs:element>
  594. </xs:sequence>
  595. </xs:group>
  596. <xs:complexType name="go_recurse_from_root_by_build_element_494">
  597. <xs:annotation>
  598. <xs:documentation>ten typ 494 jest uzywany w przypadku complexType bez dodatkowych dziedziczen - wylacznie jak jest uzyty element jakiego nazwanego typu</xs:documentation>
  599. </xs:annotation>
  600. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_494"/>
  601. </xs:complexType>
  602. <xs:group name="go_recurse_from_root_by_build_element_494">
  603. <xs:all>
  604. <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_494">
  605. <xs:complexType>
  606. <xs:complexContent>
  607. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_494">
  608. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_2"/>
  609. </xs:extension>
  610. </xs:complexContent>
  611. </xs:complexType>
  612. </xs:element>
  613. </xs:all>
  614. </xs:group>
  615. <xs:complexType name="go_recurse_from_root_by_build_element_4942">
  616. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4942"/>
  617. </xs:complexType>
  618. <xs:group name="go_recurse_from_root_by_build_element_4942">
  619. <xs:all>
  620. <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_4942">
  621. <xs:complexType>
  622. <xs:complexContent>
  623. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4942">
  624. <xs:group
  625. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_4942"/>
  626. </xs:extension>
  627. </xs:complexContent>
  628. </xs:complexType>
  629. </xs:element>
  630. </xs:all>
  631. </xs:group>
  632. <xs:group name="go_recurse_from_root_by_build_element_after_4942">
  633. <xs:sequence>
  634. <xs:choice>
  635. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4940"/>
  636. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4941"/>
  637. </xs:choice>
  638. <xs:element maxOccurs="unbounded" minOccurs="0"
  639. name="go_recurse_from_root_by_build_element_720"
  640. type="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
  641. <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_473">
  642. <xs:complexType>
  643. <xs:complexContent>
  644. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473">
  645. <xs:group
  646. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_473"/>
  647. </xs:extension>
  648. </xs:complexContent>
  649. </xs:complexType>
  650. </xs:element>
  651. </xs:sequence>
  652. </xs:group>
  653. <xs:complexType name="go_recurse_from_root_by_build_element_4941">
  654. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4941"/>
  655. </xs:complexType>
  656. <xs:group name="go_recurse_from_root_by_build_element_4941">
  657. <xs:sequence>
  658. <xs:element name="go_recurse_from_root_by_build_element_4941">
  659. <xs:complexType>
  660. <xs:complexContent>
  661. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4941">
  662. <xs:group
  663. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_4941"/>
  664. </xs:extension>
  665. </xs:complexContent>
  666. </xs:complexType>
  667. </xs:element>
  668. </xs:sequence>
  669. </xs:group>
  670. <xs:group name="go_recurse_from_root_by_build_element_after_4941">
  671. <xs:sequence>
  672. <xs:choice>
  673. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4940"/>
  674. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4941"/>
  675. </xs:choice>
  676. <xs:element maxOccurs="unbounded" minOccurs="0"
  677. name="go_recurse_from_root_by_build_element_720"
  678. type="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
  679. <xs:element minOccurs="0" name="go_recurse_from_root_by_build_element_473">
  680. <xs:complexType>
  681. <xs:complexContent>
  682. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473">
  683. <xs:group
  684. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_473"/>
  685. </xs:extension>
  686. </xs:complexContent>
  687. </xs:complexType>
  688. </xs:element>
  689. </xs:sequence>
  690. </xs:group>
  691. <xs:complexType name="go_recurse_from_root_by_build_element_4940">
  692. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4940"/>
  693. </xs:complexType>
  694. <xs:group name="go_recurse_from_root_by_build_element_4940">
  695. <xs:sequence>
  696. <xs:element name="go_recurse_from_root_by_build_element_4940">
  697. <xs:complexType>
  698. <xs:complexContent>
  699. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4940">
  700. <xs:group
  701. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_494_2"/>
  702. </xs:extension>
  703. </xs:complexContent>
  704. </xs:complexType>
  705. </xs:element>
  706. </xs:sequence>
  707. </xs:group>
  708. <xs:group name="go_recurse_from_root_by_build_element_494_1">
  709. <xs:all>
  710. <xs:element name="go_recurse_from_root_by_build_element_494" minOccurs="0">
  711. <xs:complexType>
  712. <xs:complexContent>
  713. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_494">
  714. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_2"/>
  715. </xs:extension>
  716. </xs:complexContent>
  717. </xs:complexType>
  718. </xs:element>
  719. </xs:all>
  720. </xs:group>
  721. <xs:group name="go_recurse_from_root_by_build_element_494_after_434">
  722. <xs:all>
  723. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_494_1"/>
  724. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4942"/>
  725. <!--<xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>-->
  726. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_394"/>
  727. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_3942"/>
  728. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434d_root"/>
  729. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_459"/>
  730. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
  731. </xs:all>
  732. </xs:group>
  733. <xs:group name="go_recurse_from_root_by_build_element_494_2">
  734. <xs:all>
  735. <xs:group minOccurs="1"
  736. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_494_2"/>
  737. </xs:all>
  738. </xs:group>
  739. <xs:group name="go_recurse_from_root_by_build_element_after_494_2">
  740. <xs:all>
  741. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
  742. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
  743. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4771"/>
  744. <xs:element name="go_recurse_from_root_by_build_element_loop"
  745. type="p5_tr_map:go_recurse_from_root_by_build_element_loop" minOccurs="0"/>
  746. </xs:all>
  747. </xs:group>
  748. <xs:complexType name="go_recurse_from_root_by_build_element_473">
  749. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
  750. </xs:complexType>
  751. <xs:group name="go_recurse_from_root_by_build_element_473">
  752. <xs:all>
  753. <xs:element maxOccurs="unbounded" minOccurs="0"
  754. name="go_recurse_from_root_by_build_element_473">
  755. <xs:complexType>
  756. <xs:complexContent>
  757. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473">
  758. <xs:group
  759. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_473"
  760. maxOccurs="1"/>
  761. </xs:extension>
  762. </xs:complexContent>
  763. </xs:complexType>
  764. </xs:element>
  765. </xs:all>
  766. </xs:group>
  767. <xs:group name="go_recurse_from_root_by_build_element_after_473">
  768. <xs:all>
  769. <xs:group maxOccurs="1" minOccurs="1"
  770. ref="p5_tr_map:go_recurse_from_root_by_build_element_477"/>
  771. <xs:group maxOccurs="1" minOccurs="1"
  772. ref="p5_tr_map:go_recurse_from_root_by_build_element_428a"/>
  773. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_428"/>
  774. <xs:group maxOccurs="1" minOccurs="1"
  775. ref="p5_tr_map:go_recurse_from_root_by_build_element_473"/>
  776. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434_before_481_etc"/>
  777. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_459"/>
  778. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_477b"/>
  779. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_473b"/>
  780. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_4777"/>
  781. </xs:all>
  782. </xs:group>
  783. <xs:complexType name="go_recurse_from_root_by_build_element_473b">
  784. <xs:annotation>
  785. <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')"
  786. 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>
  787. </xs:annotation>
  788. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_473b"/>
  789. </xs:complexType>
  790. <xs:group name="go_recurse_from_root_by_build_element_473b">
  791. <xs:all>
  792. <xs:element name="go_recurse_from_root_by_build_element_473b" maxOccurs="unbounded"
  793. minOccurs="0">
  794. <xs:complexType>
  795. <xs:complexContent>
  796. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_473b">
  797. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_434b"/>
  798. </xs:extension>
  799. </xs:complexContent>
  800. </xs:complexType>
  801. </xs:element>
  802. </xs:all>
  803. </xs:group>
  804. <xs:complexType name="go_recurse_from_root_by_build_element_459">
  805. <xs:annotation>
  806. <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>
  807. </xs:annotation>
  808. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_459"/>
  809. </xs:complexType>
  810. <xs:group name="go_recurse_from_root_by_build_element_459">
  811. <xs:all>
  812. <xs:element name="go_recurse_from_root_by_build_element_459" maxOccurs="unbounded"
  813. minOccurs="0">
  814. <xs:complexType>
  815. <xs:complexContent>
  816. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_459">
  817. <xs:sequence>
  818. <xs:element minOccurs="0" ref="system_cache__appinfo:schema"/>
  819. </xs:sequence>
  820. </xs:extension>
  821. </xs:complexContent>
  822. </xs:complexType>
  823. </xs:element>
  824. </xs:all>
  825. </xs:group>
  826. <xs:complexType name="go_recurse_from_root_by_build_element_720">
  827. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
  828. </xs:complexType>
  829. <xs:group name="go_recurse_from_root_by_build_element_720">
  830. <xs:all>
  831. <xs:element maxOccurs="unbounded" minOccurs="0"
  832. name="go_recurse_from_root_by_build_element_720"
  833. type="p5_tr_map:go_recurse_from_root_by_build_element_720"/>
  834. </xs:all>
  835. </xs:group>
  836. <xs:complexType name="go_recurse_from_root_by_build_element_394-720">
  837. <xs:annotation>
  838. <xs:documentation>394-720 pobranie wartosci atrybutu po @ref z tabeli instancja+value</xs:documentation>
  839. </xs:annotation>
  840. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_394-720"/>
  841. </xs:complexType>
  842. <xs:group name="go_recurse_from_root_by_build_element_394-720">
  843. <xs:sequence>
  844. <xs:element name="go_recurse_from_root_by_build_element_394-720">
  845. <xs:complexType>
  846. <xs:complexContent>
  847. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_394-720">
  848. <xs:sequence>
  849. <xs:element minOccurs="0" ref="system_cache__appinfo:schema"/>
  850. </xs:sequence>
  851. </xs:extension>
  852. </xs:complexContent>
  853. </xs:complexType>
  854. </xs:element>
  855. </xs:sequence>
  856. </xs:group>
  857. <xs:complexType name="go_recurse_from_root_by_build_element_477">
  858. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_477"/>
  859. </xs:complexType>
  860. <xs:group name="go_recurse_from_root_by_build_element_477">
  861. <xs:all>
  862. <xs:element maxOccurs="unbounded" minOccurs="0"
  863. name="go_recurse_from_root_by_build_element_477">
  864. <xs:complexType>
  865. <xs:complexContent>
  866. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_477">
  867. <xs:group
  868. ref="p5_tr_map:go_recurse_from_root_by_build_element_after_477_element"
  869. />
  870. </xs:extension>
  871. </xs:complexContent>
  872. </xs:complexType>
  873. </xs:element>
  874. </xs:all>
  875. </xs:group>
  876. <xs:complexType name="go_recurse_from_root_by_build_element_4777">
  877. <xs:annotation>
  878. <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>
  879. </xs:annotation>
  880. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4777"/>
  881. </xs:complexType>
  882. <xs:group name="go_recurse_from_root_by_build_element_4777">
  883. <xs:all>
  884. <xs:element maxOccurs="1" minOccurs="0"
  885. name="go_recurse_from_root_by_build_element_4777">
  886. <xs:annotation>
  887. <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>
  888. </xs:annotation>
  889. <xs:complexType>
  890. <xs:complexContent>
  891. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4777">
  892. <xs:sequence>
  893. <xs:element ref="system_cache__appinfo:schema">
  894. <xs:annotation>
  895. <xs:documentation>Powinien tutaj byc schemat elementu do ktorego sie odwoluje</xs:documentation>
  896. </xs:annotation>
  897. </xs:element>
  898. </xs:sequence>
  899. </xs:extension>
  900. </xs:complexContent>
  901. </xs:complexType>
  902. </xs:element>
  903. </xs:all>
  904. </xs:group>
  905. <xs:complexType name="go_recurse_from_root_by_build_element_477b">
  906. <xs:annotation>
  907. <xs:documentation>when test="local-name()='element' and @type and child::* and $p5_tr_map:last-type!='477'
  908. 477b wymuszenie 477 na pierwszym elemencie ktory jest @complexType i nie jest ref 477
  909. 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>
  910. </xs:annotation>
  911. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_477b"/>
  912. </xs:complexType>
  913. <xs:group name="go_recurse_from_root_by_build_element_477b">
  914. <xs:all>
  915. <xs:element maxOccurs="unbounded" minOccurs="0"
  916. name="go_recurse_from_root_by_build_element_477b">
  917. <xs:complexType>
  918. <xs:complexContent>
  919. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_477b">
  920. <xs:group
  921. ref="p5_tr_map:go_recurse_from_root_by_build_element_434_after_477"
  922. />
  923. </xs:extension>
  924. </xs:complexContent>
  925. </xs:complexType>
  926. </xs:element>
  927. </xs:all>
  928. </xs:group>
  929. <xs:complexType name="go_recurse_from_root_by_build_element_4771">
  930. <xs:annotation>
  931. <xs:documentation>4771 (aktualizacja @prefix_for_elements) pobranie atrybutu z referencja. ma @ref i musi miec REMOTE_ID</xs:documentation>
  932. </xs:annotation>
  933. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_4771"/>
  934. </xs:complexType>
  935. <xs:group name="go_recurse_from_root_by_build_element_4771">
  936. <xs:all>
  937. <xs:element maxOccurs="unbounded" minOccurs="0"
  938. name="go_recurse_from_root_by_build_element_4771">
  939. <xs:complexType>
  940. <xs:complexContent>
  941. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_4771">
  942. <xs:group ref="p5_tr_map:go_recurse_from_root_by_build_element_394-720"
  943. />
  944. </xs:extension>
  945. </xs:complexContent>
  946. </xs:complexType>
  947. </xs:element>
  948. </xs:all>
  949. </xs:group>
  950. <xs:complexType name="go_recurse_from_root_by_build_element_428">
  951. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_428"/>
  952. </xs:complexType>
  953. <xs:group name="go_recurse_from_root_by_build_element_428">
  954. <xs:all>
  955. <xs:element maxOccurs="unbounded" minOccurs="0"
  956. name="go_recurse_from_root_by_build_element_428"
  957. type="p5_tr_map:go_recurse_from_root_by_build_element_428"/>
  958. </xs:all>
  959. </xs:group>
  960. <xs:complexType name="go_recurse_from_root_by_build_element_428a">
  961. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_428a"/>
  962. </xs:complexType>
  963. <xs:group name="go_recurse_from_root_by_build_element_428a">
  964. <xs:all>
  965. <xs:element maxOccurs="unbounded" minOccurs="0"
  966. name="go_recurse_from_root_by_build_element_428a"
  967. type="p5_tr_map:go_recurse_from_root_by_build_element_428a"/>
  968. </xs:all>
  969. </xs:group>
  970. <xs:complexType name="go_recurse_from_root_by_build_element_734">
  971. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_734"/>
  972. </xs:complexType>
  973. <xs:group name="go_recurse_from_root_by_build_element_734">
  974. <xs:sequence>
  975. <xs:element name="go_recurse_from_root_by_build_element_734" maxOccurs="0" minOccurs="0">
  976. <xs:annotation>
  977. <xs:documentation>@2016-01-20 przechodzimy na wyzwalanie 4777 i nie ma juz wyjscia do 434n / 734 </xs:documentation>
  978. </xs:annotation>
  979. <xs:complexType>
  980. <xs:complexContent>
  981. <xs:extension base="p5_tr_map:go_recurse_from_root_by_build_element_734">
  982. <xs:sequence>
  983. <xs:element ref="system_cache__appinfo:schema">
  984. <xs:annotation>
  985. <xs:documentation>Pobranie danych z plaskiej tabeli z API</xs:documentation>
  986. </xs:annotation>
  987. </xs:element>
  988. </xs:sequence>
  989. </xs:extension>
  990. </xs:complexContent>
  991. </xs:complexType>
  992. </xs:element>
  993. </xs:sequence>
  994. </xs:group>
  995. <xs:complexType name="go_recurse_from_root_by_build_element_loop">
  996. <xs:attributeGroup ref="p5_tr_map:go_recurse_from_root_by_build_element_loop"/>
  997. </xs:complexType>
  998. <xs:group name="go_recurse_from_root_by_build_element_loop">
  999. <xs:sequence>
  1000. <xs:element name="go_recurse_from_root_by_build_element_loop"
  1001. type="p5_tr_map:go_recurse_from_root_by_build_element_loop" minOccurs="0"/>
  1002. </xs:sequence>
  1003. </xs:group>
  1004. <xs:attributeGroup name="go_recurse_from_root_by_build_element_381">
  1005. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1006. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  1007. <xs:attribute name="local-name-name" use="required">
  1008. <xs:annotation>
  1009. <xs:documentation>np. RESOURCE</xs:documentation>
  1010. </xs:annotation>
  1011. </xs:attribute>
  1012. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  1013. <xs:attribute fixed="381" name="event_type" use="required"/>
  1014. <xs:attribute name="parent_name" use="required">
  1015. <xs:annotation>
  1016. <xs:documentation>np. RESOURCE</xs:documentation>
  1017. </xs:annotation>
  1018. </xs:attribute>
  1019. <xs:attribute ref="system_cache__appinfo:name">
  1020. <xs:annotation>
  1021. <xs:documentation>np. RESOURCE</xs:documentation>
  1022. </xs:annotation>
  1023. </xs:attribute>
  1024. <xs:attribute ref="system_cache__appinfo:id" use="required"/>
  1025. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1026. <xs:attribute ref="system_cache__appinfo:root_element_in_schema"/>
  1027. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1028. <xs:annotation>
  1029. <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
  1030. </xs:annotation>
  1031. </xs:attribute>
  1032. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1033. <xs:attribute name="comment"/>
  1034. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1035. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1036. <xs:attribute ref="p5_tr_map:parent_type"/>
  1037. <xs:attribute ref="system_cache__appinfo:loop"/>
  1038. </xs:attributeGroup>
  1039. <xs:attributeGroup name="go_recurse_from_root_by_build_element_3810">
  1040. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1041. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  1042. <xs:attribute name="local-name-name" use="required">
  1043. <xs:annotation>
  1044. <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
  1045. </xs:annotation>
  1046. </xs:attribute>
  1047. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  1048. <xs:attribute fixed="3810" name="event_type" use="required"/>
  1049. <xs:attribute name="parent_name" use="required">
  1050. <xs:annotation>
  1051. <xs:documentation>tutaj pusty</xs:documentation>
  1052. </xs:annotation>
  1053. </xs:attribute>
  1054. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1055. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1056. <xs:attribute ref="system_cache__appinfo:name">
  1057. <xs:annotation>
  1058. <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
  1059. </xs:annotation>
  1060. </xs:attribute>
  1061. <xs:attribute ref="system_cache__appinfo:id" use="required"/>
  1062. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1063. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1064. <xs:annotation>
  1065. <xs:documentation>np. teryt</xs:documentation>
  1066. </xs:annotation>
  1067. </xs:attribute>
  1068. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
  1069. <xs:annotation>
  1070. <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
  1071. </xs:annotation>
  1072. </xs:attribute>
  1073. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1074. <xs:attribute ref="system_cache__appinfo:loop"/>
  1075. <xs:attribute name="comment"/>
  1076. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1077. <xs:attribute ref="p5_tr_map:parent_type"/>
  1078. </xs:attributeGroup>
  1079. <xs:attributeGroup name="go_recurse_from_root_by_build_element_3811">
  1080. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1081. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  1082. <xs:attribute name="local-name-name" use="required">
  1083. <xs:annotation>
  1084. <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
  1085. </xs:annotation>
  1086. </xs:attribute>
  1087. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  1088. <xs:attribute fixed="3811" name="event_type" use="required"/>
  1089. <xs:attribute name="parent_name" use="required">
  1090. <xs:annotation>
  1091. <xs:documentation>tutaj pusty</xs:documentation>
  1092. </xs:annotation>
  1093. </xs:attribute>
  1094. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1095. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1096. <xs:attribute ref="system_cache__appinfo:name">
  1097. <xs:annotation>
  1098. <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
  1099. </xs:annotation>
  1100. </xs:attribute>
  1101. <xs:attribute ref="system_cache__appinfo:id" use="required"/>
  1102. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1103. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1104. <xs:annotation>
  1105. <xs:documentation>np. teryt</xs:documentation>
  1106. </xs:annotation>
  1107. </xs:attribute>
  1108. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
  1109. <xs:annotation>
  1110. <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
  1111. </xs:annotation>
  1112. </xs:attribute>
  1113. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1114. <xs:attribute ref="system_cache__appinfo:loop"/>
  1115. <xs:attribute name="comment"/>
  1116. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1117. <xs:attribute ref="p5_tr_map:parent_type"/>
  1118. </xs:attributeGroup>
  1119. <xs:attributeGroup name="go_recurse_from_root_by_build_element_3812">
  1120. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1121. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  1122. <xs:attribute name="local-name-name" use="required">
  1123. <xs:annotation>
  1124. <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
  1125. </xs:annotation>
  1126. </xs:attribute>
  1127. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  1128. <xs:attribute fixed="3812" name="event_type" use="required"/>
  1129. <xs:attribute name="parent_name" use="required">
  1130. <xs:annotation>
  1131. <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
  1132. </xs:annotation>
  1133. </xs:attribute>
  1134. <xs:attribute ref="system_cache__appinfo:name">
  1135. <xs:annotation>
  1136. <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
  1137. </xs:annotation>
  1138. </xs:attribute>
  1139. <xs:attribute ref="system_cache__appinfo:id" use="required"/>
  1140. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1141. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1142. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1143. <xs:annotation>
  1144. <xs:documentation>np. teryt</xs:documentation>
  1145. </xs:annotation>
  1146. </xs:attribute>
  1147. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
  1148. <xs:annotation>
  1149. <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
  1150. </xs:annotation>
  1151. </xs:attribute>
  1152. <xs:attribute name="comment"/>
  1153. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1154. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1155. <xs:attribute ref="p5_tr_map:parent_type" use="optional"/>
  1156. </xs:attributeGroup>
  1157. <xs:attributeGroup name="go_recurse_from_root_by_build_element_4810">
  1158. <xs:annotation>
  1159. <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>
  1160. </xs:annotation>
  1161. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1162. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  1163. <xs:attribute name="local-name-name" use="required">
  1164. <xs:annotation>
  1165. <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
  1166. </xs:annotation>
  1167. </xs:attribute>
  1168. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  1169. <xs:attribute fixed="4810" name="event_type" use="required"/>
  1170. <xs:attribute name="parent_name" use="required">
  1171. <xs:annotation>
  1172. <xs:documentation>tutaj pusty</xs:documentation>
  1173. </xs:annotation>
  1174. </xs:attribute>
  1175. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1176. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1177. <xs:attribute ref="system_cache__appinfo:name">
  1178. <xs:annotation>
  1179. <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
  1180. </xs:annotation>
  1181. </xs:attribute>
  1182. <xs:attribute ref="system_cache__appinfo:id" use="required"/>
  1183. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1184. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1185. <xs:annotation>
  1186. <xs:documentation>np. teryt</xs:documentation>
  1187. </xs:annotation>
  1188. </xs:attribute>
  1189. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
  1190. <xs:annotation>
  1191. <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
  1192. </xs:annotation>
  1193. </xs:attribute>
  1194. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1195. <xs:attribute ref="system_cache__appinfo:loop"/>
  1196. <xs:attribute name="comment"/>
  1197. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1198. <xs:attribute ref="p5_tr_map:parent_type"/>
  1199. </xs:attributeGroup>
  1200. <xs:attributeGroup name="go_recurse_from_root_by_build_element_4811">
  1201. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1202. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  1203. <xs:attribute name="local-name-name" use="required">
  1204. <xs:annotation>
  1205. <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
  1206. </xs:annotation>
  1207. </xs:attribute>
  1208. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  1209. <xs:attribute fixed="4811" name="event_type" use="required"/>
  1210. <xs:attribute name="parent_name" use="required">
  1211. <xs:annotation>
  1212. <xs:documentation>tutaj pusty</xs:documentation>
  1213. </xs:annotation>
  1214. </xs:attribute>
  1215. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1216. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1217. <xs:attribute ref="system_cache__appinfo:name">
  1218. <xs:annotation>
  1219. <xs:documentation>np. Teryt_Opcje_Adresowe</xs:documentation>
  1220. </xs:annotation>
  1221. </xs:attribute>
  1222. <xs:attribute ref="system_cache__appinfo:id" use="required"/>
  1223. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1224. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1225. <xs:annotation>
  1226. <xs:documentation>np. teryt</xs:documentation>
  1227. </xs:annotation>
  1228. </xs:attribute>
  1229. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
  1230. <xs:annotation>
  1231. <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
  1232. </xs:annotation>
  1233. </xs:attribute>
  1234. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1235. <xs:attribute ref="system_cache__appinfo:loop"/>
  1236. <xs:attribute name="comment"/>
  1237. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1238. <xs:attribute ref="p5_tr_map:parent_type"/>
  1239. </xs:attributeGroup>
  1240. <xs:attributeGroup name="go_recurse_from_root_by_build_element_4812">
  1241. <xs:annotation>
  1242. <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>
  1243. </xs:annotation>
  1244. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1245. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  1246. <xs:attribute name="local-name-name" use="required">
  1247. <xs:annotation>
  1248. <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
  1249. </xs:annotation>
  1250. </xs:attribute>
  1251. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  1252. <xs:attribute fixed="4812" name="event_type" use="required"/>
  1253. <xs:attribute name="parent_name" use="required">
  1254. <xs:annotation>
  1255. <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
  1256. </xs:annotation>
  1257. </xs:attribute>
  1258. <xs:attribute ref="system_cache__appinfo:name">
  1259. <xs:annotation>
  1260. <xs:documentation>np. Teryt_Adres_Prawidlowy</xs:documentation>
  1261. </xs:annotation>
  1262. </xs:attribute>
  1263. <xs:attribute ref="system_cache__appinfo:id" use="required"/>
  1264. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1265. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1266. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1267. <xs:annotation>
  1268. <xs:documentation>np. teryt</xs:documentation>
  1269. </xs:annotation>
  1270. </xs:attribute>
  1271. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required">
  1272. <xs:annotation>
  1273. <xs:documentation>np. http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/teryt.xsd</xs:documentation>
  1274. </xs:annotation>
  1275. </xs:attribute>
  1276. <xs:attribute name="comment"/>
  1277. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1278. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1279. <xs:attribute ref="p5_tr_map:parent_type" use="optional"/>
  1280. </xs:attributeGroup>
  1281. <xs:attributeGroup name="go_recurse_from_root_by_build_element_481">
  1282. <xs:annotation>
  1283. <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>
  1284. </xs:annotation>
  1285. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1286. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  1287. <xs:attribute name="local-name-name" use="required">
  1288. <xs:annotation>
  1289. <xs:documentation>np. RESOURCE</xs:documentation>
  1290. </xs:annotation>
  1291. </xs:attribute>
  1292. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  1293. <xs:attribute fixed="481" name="event_type" use="required"/>
  1294. <xs:attribute name="parent_name" use="required">
  1295. <xs:annotation>
  1296. <xs:documentation>np. RESOURCE</xs:documentation>
  1297. </xs:annotation>
  1298. </xs:attribute>
  1299. <xs:attribute ref="system_cache__appinfo:name">
  1300. <xs:annotation>
  1301. <xs:documentation>np. RESOURCE</xs:documentation>
  1302. </xs:annotation>
  1303. </xs:attribute>
  1304. <xs:attribute ref="system_cache__appinfo:id" use="required"/>
  1305. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1306. <xs:attribute ref="system_cache__appinfo:root_element_in_schema"/>
  1307. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1308. <xs:annotation>
  1309. <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
  1310. </xs:annotation>
  1311. </xs:attribute>
  1312. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1313. <xs:attribute name="comment"/>
  1314. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1315. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1316. <xs:attribute ref="p5_tr_map:parent_type"/>
  1317. <xs:attribute ref="system_cache__appinfo:loop"/>
  1318. </xs:attributeGroup>
  1319. <xs:attributeGroup name="go_recurse_from_root_by_build_element_434">
  1320. <xs:annotation>
  1321. <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>
  1322. </xs:annotation>
  1323. <xs:attribute name="comment"/>
  1324. <xs:attribute fixed="434" name="event_type" use="required"/>
  1325. <xs:attribute use="required" ref="system_cache__appinfo:id"/>
  1326. <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
  1327. <xs:attribute name="parent_type">
  1328. <xs:annotation>
  1329. <xs:documentation>np. default_corespondence:document_position_offer</xs:documentation>
  1330. </xs:annotation>
  1331. </xs:attribute>
  1332. </xs:attributeGroup>
  1333. <xs:attributeGroup name="go_recurse_from_root_by_build_element_434b">
  1334. <xs:annotation>
  1335. <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>
  1336. </xs:annotation>
  1337. <xs:attribute name="comment"/>
  1338. <xs:attribute fixed="434b" name="event_type" use="required"/>
  1339. <xs:attribute name="id" use="required"/>
  1340. <xs:attribute fixed="element[]/complexType" name="event_name" use="required"/>
  1341. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1342. </xs:attributeGroup>
  1343. <xs:attributeGroup name="go_recurse_from_root_by_build_element_434c">
  1344. <xs:annotation>
  1345. <xs:documentation>434c po 477 po refie ktory jest na element</xs:documentation>
  1346. </xs:annotation>
  1347. <xs:attribute name="comment"/>
  1348. <xs:attribute fixed="434c" name="event_type" use="required"/>
  1349. <xs:attribute use="required" ref="system_cache__appinfo:id"/>
  1350. <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
  1351. <xs:attribute name="parent_type"/>
  1352. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1353. </xs:attributeGroup>
  1354. <xs:attributeGroup name="go_recurse_from_root_by_build_element_434d">
  1355. <xs:attribute name="comment"/>
  1356. <xs:attribute fixed="434d" name="event_type" use="required"/>
  1357. <xs:attribute use="required" ref="system_cache__appinfo:id"/>
  1358. <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
  1359. <xs:attribute name="parent_type"/>
  1360. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1361. <xs:attribute ref="system_cache__appinfo:name"/>
  1362. </xs:attributeGroup>
  1363. <xs:attributeGroup name="go_recurse_from_root_by_build_element_434n">
  1364. <xs:attribute name="comment"/>
  1365. <xs:attribute fixed="434n" name="event_type" use="required"/>
  1366. <xs:attribute use="prohibited" ref="system_cache__appinfo:id"/>
  1367. <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
  1368. <xs:attribute name="parent_type"/>
  1369. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1370. </xs:attributeGroup>
  1371. <xs:attributeGroup name="go_recurse_from_root_by_build_element_434r">
  1372. <xs:attribute name="comment"/>
  1373. <xs:attribute fixed="434r" name="event_type" use="required"/>
  1374. <xs:attribute use="required" ref="system_cache__appinfo:id"/>
  1375. <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
  1376. <xs:attribute name="parent_type"/>
  1377. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1378. <xs:attribute ref="system_cache__appinfo:name"/>
  1379. </xs:attributeGroup>
  1380. <xs:attributeGroup name="go_recurse_from_root_by_build_element_434er">
  1381. <xs:attribute name="comment"/>
  1382. <xs:attribute fixed="434er" name="event_type" use="required"/>
  1383. <xs:attribute use="required" ref="system_cache__appinfo:id"/>
  1384. <xs:attribute fixed="element[@type]/node()" name="event_name" use="required"/>
  1385. <xs:attribute name="parent_type"/>
  1386. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1387. <xs:attribute ref="system_cache__appinfo:name"/>
  1388. </xs:attributeGroup>
  1389. <xs:attributeGroup name="go_recurse_from_root_by_build_element_473">
  1390. <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
  1391. <xs:attribute name="retrieve_resource_id" use="required"/>
  1392. <xs:attribute name="local-name" use="required">
  1393. <xs:simpleType>
  1394. <xs:restriction base="xs:string">
  1395. <xs:enumeration value="sequence"/>
  1396. <xs:enumeration value="choice"/>
  1397. <xs:enumeration value="all"/>
  1398. </xs:restriction>
  1399. </xs:simpleType>
  1400. </xs:attribute>
  1401. <xs:attribute fixed="473" name="event_type" use="required"/>
  1402. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  1403. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1404. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1405. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1406. <xs:annotation>
  1407. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  1408. </xs:annotation>
  1409. </xs:attribute>
  1410. <xs:attribute name="comment"/>
  1411. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  1412. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  1413. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1414. </xs:attributeGroup>
  1415. <xs:attributeGroup name="go_recurse_from_root_by_build_element_473b">
  1416. <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
  1417. <xs:attribute name="retrieve_resource_id" use="required"/>
  1418. <xs:attribute name="local-name" use="required">
  1419. <xs:simpleType>
  1420. <xs:restriction base="xs:string">
  1421. <xs:enumeration value="sequence"/>
  1422. <xs:enumeration value="choice"/>
  1423. <xs:enumeration value="all"/>
  1424. <xs:enumeration value="element"/>
  1425. </xs:restriction>
  1426. </xs:simpleType>
  1427. </xs:attribute>
  1428. <xs:attribute fixed="473b" name="event_type" use="required"/>
  1429. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  1430. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1431. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1432. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1433. <xs:annotation>
  1434. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  1435. </xs:annotation>
  1436. </xs:attribute>
  1437. <xs:attribute name="comment"/>
  1438. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  1439. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  1440. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1441. <xs:attribute ref="system_cache__appinfo:name"/>
  1442. <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
  1443. <xs:attribute ref="system_cache__appinfo:xpath_local"/>
  1444. <xs:attribute ref="system_cache__appinfo:restriction_path"/>
  1445. <xs:attribute name="parent-name"/>
  1446. <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
  1447. </xs:attributeGroup>
  1448. <xs:attributeGroup name="go_recurse_from_root_by_build_element_459b">
  1449. <xs:annotation>
  1450. <xs:documentation>459b element lub atrybut typu simpleType</xs:documentation>
  1451. </xs:annotation>
  1452. <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
  1453. <xs:attribute fixed="element" name="local-name" use="required"/>
  1454. <xs:attribute name="local-name-name" use="required">
  1455. <xs:annotation>
  1456. <xs:documentation>np. NAZWA</xs:documentation>
  1457. </xs:annotation>
  1458. </xs:attribute>
  1459. <xs:attribute name="create_element" use="required">
  1460. <xs:annotation>
  1461. <xs:documentation>np. TERYT_terc_xml_import_after_main:NAZWA</xs:documentation>
  1462. </xs:annotation>
  1463. </xs:attribute>
  1464. <xs:attribute fixed="459b" name="event_type" use="required"/>
  1465. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1466. <xs:annotation>
  1467. <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
  1468. </xs:annotation>
  1469. </xs:attribute>
  1470. <xs:attribute ref="system_cache__appinfo:type" use="required">
  1471. <xs:annotation>
  1472. <xs:documentation>np. xs:int TODO do potrzebny schemat typu prostego</xs:documentation>
  1473. </xs:annotation>
  1474. </xs:attribute>
  1475. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1476. <xs:annotation>
  1477. <xs:documentation>np. TERYT_terc_xml_import_after_main___d44e182</xs:documentation>
  1478. </xs:annotation>
  1479. </xs:attribute>
  1480. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1481. <xs:attribute ref="system_cache__appinfo:xpath_local">
  1482. <xs:annotation>
  1483. <xs:documentation>TODO? tutaj pusty? czy to dobrze?</xs:documentation>
  1484. </xs:annotation>
  1485. </xs:attribute>
  1486. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  1487. <xs:attribute name="restriction_base_attr">
  1488. <xs:annotation>
  1489. <xs:documentation>existient todo look for:xs:int; $restriction_path:_start_/element:ID/;</xs:documentation>
  1490. </xs:annotation>
  1491. </xs:attribute>
  1492. <xs:attribute name="id-orig-from-restriction">
  1493. <xs:annotation>
  1494. <xs:documentation>np. default_default_objects_types___d20e438-id-mag-restr
  1495. 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>
  1496. </xs:annotation>
  1497. </xs:attribute>
  1498. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1499. <xs:annotation>
  1500. <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
  1501. </xs:annotation>
  1502. </xs:attribute>
  1503. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1504. <xs:attribute ref="system_cache__appinfo:restriction_path">
  1505. <xs:annotation>
  1506. <xs:documentation>eg. _start_/element:ID/</xs:documentation>
  1507. </xs:annotation>
  1508. </xs:attribute>
  1509. <xs:attribute name="comment"/>
  1510. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1511. </xs:attributeGroup>
  1512. <xs:attributeGroup name="go_recurse_from_root_by_build_element_459">
  1513. <xs:annotation>
  1514. <xs:documentation>459 element lub atrybut typu simpleType</xs:documentation>
  1515. </xs:annotation>
  1516. <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
  1517. <xs:attribute fixed="element" name="local-name" use="required"/>
  1518. <xs:attribute name="local-name-name" use="required">
  1519. <xs:annotation>
  1520. <xs:documentation>
  1521. </xs:documentation>
  1522. </xs:annotation>
  1523. </xs:attribute>
  1524. <xs:attribute name="create_element" use="required">
  1525. <xs:annotation>
  1526. <xs:documentation>np. prefix:nazwa_attr</xs:documentation>
  1527. </xs:annotation>
  1528. </xs:attribute>
  1529. <xs:attribute fixed="459" name="event_type" use="required"/>
  1530. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1531. <xs:annotation>
  1532. <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
  1533. </xs:annotation>
  1534. </xs:attribute>
  1535. <xs:attribute ref="system_cache__appinfo:type">
  1536. <xs:annotation>
  1537. <xs:documentation>np. xs:int TODO do potrzebny schemat typu prostego .
  1538. w 459 - w zaleznosci od sposobu wyrazonej restrykcji moze zdarzyc sie tam @type</xs:documentation>
  1539. </xs:annotation>
  1540. </xs:attribute>
  1541. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1542. <xs:annotation>
  1543. <xs:documentation>np. TERYT_terc_xml_import_after_main___d44e182</xs:documentation>
  1544. </xs:annotation>
  1545. </xs:attribute>
  1546. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="optional"/>
  1547. <xs:attribute ref="system_cache__appinfo:xpath_local"/>
  1548. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  1549. <xs:attribute name="restriction_base_attr">
  1550. <xs:annotation>
  1551. <xs:documentation>existient todo look for:xs:int; $restriction_path:_start_/element:ID/;</xs:documentation>
  1552. </xs:annotation>
  1553. </xs:attribute>
  1554. <xs:attribute name="id-orig-from-restriction">
  1555. <xs:annotation>
  1556. <xs:documentation>np. default_default_objects_types___d20e438-id-mag-restr
  1557. 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>
  1558. </xs:annotation>
  1559. </xs:attribute>
  1560. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1561. <xs:annotation>
  1562. <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
  1563. </xs:annotation>
  1564. </xs:attribute>
  1565. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1566. <xs:attribute ref="system_cache__appinfo:restriction_path">
  1567. <xs:annotation>
  1568. <xs:documentation>eg. _start_/element:ID/</xs:documentation>
  1569. </xs:annotation>
  1570. </xs:attribute>
  1571. <xs:attribute name="comment"/>
  1572. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1573. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  1574. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  1575. <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
  1576. <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
  1577. </xs:attributeGroup>
  1578. <xs:attributeGroup name="go_recurse_from_root_by_build_element_720">
  1579. <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
  1580. <xs:attribute fixed="attribute" name="local-name" use="required"/>
  1581. <xs:attribute name="local-name-name" use="required">
  1582. <xs:annotation>
  1583. <xs:documentation>np. testattr</xs:documentation>
  1584. </xs:annotation>
  1585. </xs:attribute>
  1586. <xs:attribute name="create_element" use="required">
  1587. <xs:annotation>
  1588. <xs:documentation>np. testattr</xs:documentation>
  1589. </xs:annotation>
  1590. </xs:attribute>
  1591. <xs:attribute fixed="720" name="event_type" use="required"/>
  1592. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1593. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1594. <xs:annotation>
  1595. <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
  1596. </xs:annotation>
  1597. </xs:attribute>
  1598. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1599. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1600. <xs:annotation>
  1601. <xs:documentation>np. testattr</xs:documentation>
  1602. </xs:annotation>
  1603. </xs:attribute>
  1604. <xs:attribute ref="system_cache__appinfo:use"/>
  1605. <xs:attribute ref="system_cache__appinfo:type"/>
  1606. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1607. <xs:annotation>
  1608. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  1609. </xs:annotation>
  1610. </xs:attribute>
  1611. <xs:attribute name="comment"/>
  1612. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1613. <xs:attribute ref="system_cache__appinfo:xpath_full"/>
  1614. <xs:attribute ref="system_cache__appinfo:xpath"/>
  1615. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1616. <xs:attribute ref="system_cache__appinfo:xpath_local"/>
  1617. <xs:attribute ref="system_cache__appinfo:restriction_path"/>
  1618. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1619. </xs:attributeGroup>
  1620. <xs:attributeGroup name="go_recurse_from_root_by_build_element_394-720">
  1621. <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
  1622. <xs:attribute fixed="attribute" name="local-name" use="required"/>
  1623. <xs:attribute name="local-name-name" use="required">
  1624. <xs:annotation>
  1625. <xs:documentation>np. testattr</xs:documentation>
  1626. </xs:annotation>
  1627. </xs:attribute>
  1628. <xs:attribute name="create_element" use="required">
  1629. <xs:annotation>
  1630. <xs:documentation>np. testattr</xs:documentation>
  1631. </xs:annotation>
  1632. </xs:attribute>
  1633. <xs:attribute fixed="394-720" name="event_type" use="required"/>
  1634. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1635. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  1636. <xs:annotation>
  1637. <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
  1638. </xs:annotation>
  1639. </xs:attribute>
  1640. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1641. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1642. <xs:annotation>
  1643. <xs:documentation>np. testattr</xs:documentation>
  1644. </xs:annotation>
  1645. </xs:attribute>
  1646. <xs:attribute ref="system_cache__appinfo:use"/>
  1647. <xs:attribute ref="system_cache__appinfo:type"/>
  1648. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1649. <xs:annotation>
  1650. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  1651. </xs:annotation>
  1652. </xs:attribute>
  1653. <xs:attribute name="comment"/>
  1654. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1655. <xs:attribute ref="system_cache__appinfo:xpath_full"/>
  1656. <xs:attribute ref="system_cache__appinfo:xpath"/>
  1657. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1658. <xs:attribute ref="system_cache__appinfo:xpath_local"/>
  1659. <xs:attribute ref="system_cache__appinfo:restriction_path"/>
  1660. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1661. <xs:attribute ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1662. </xs:attributeGroup>
  1663. <xs:attributeGroup name="go_recurse_from_root_by_build_element_394">
  1664. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1665. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  1666. <xs:attribute name="retrieve_TYPE">
  1667. <xs:annotation>
  1668. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1669. </xs:annotation>
  1670. </xs:attribute>
  1671. <xs:attribute fixed="complexType" name="local-name"/>
  1672. <xs:attribute name="local-name-name">
  1673. <xs:annotation>
  1674. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  1675. </xs:annotation>
  1676. </xs:attribute>
  1677. <xs:attribute name="restriciction_base"/>
  1678. <xs:attribute fixed="394" name="event_type"/>
  1679. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  1680. <xs:annotation>
  1681. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1682. </xs:annotation>
  1683. </xs:attribute>
  1684. <xs:attribute ref="system_cache__appinfo:xpath">
  1685. <xs:annotation>
  1686. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1687. </xs:annotation>
  1688. </xs:attribute>
  1689. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1690. <xs:annotation>
  1691. <xs:documentation>eg. MAGAZYN</xs:documentation>
  1692. </xs:annotation>
  1693. </xs:attribute>
  1694. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1695. <xs:annotation>
  1696. <xs:documentation/>
  1697. </xs:annotation>
  1698. </xs:attribute>
  1699. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1700. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1701. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1702. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1703. <xs:attribute name="comment"/>
  1704. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1705. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1706. </xs:attributeGroup>
  1707. <xs:attributeGroup name="go_recurse_from_root_by_build_element_3940">
  1708. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1709. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  1710. <xs:attribute name="retrieve_TYPE">
  1711. <xs:annotation>
  1712. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1713. </xs:annotation>
  1714. </xs:attribute>
  1715. <xs:attribute fixed="complexType" name="local-name"/>
  1716. <xs:attribute name="local-name-name">
  1717. <xs:annotation>
  1718. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  1719. </xs:annotation>
  1720. </xs:attribute>
  1721. <xs:attribute fixed="3940" name="event_type"/>
  1722. <xs:attribute name="restriciction_base"/>
  1723. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  1724. <xs:annotation>
  1725. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1726. </xs:annotation>
  1727. </xs:attribute>
  1728. <xs:attribute ref="system_cache__appinfo:xpath">
  1729. <xs:annotation>
  1730. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1731. </xs:annotation>
  1732. </xs:attribute>
  1733. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1734. <xs:annotation>
  1735. <xs:documentation>eg. MAGAZYN</xs:documentation>
  1736. </xs:annotation>
  1737. </xs:attribute>
  1738. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1739. <xs:annotation>
  1740. <xs:documentation/>
  1741. </xs:annotation>
  1742. </xs:attribute>
  1743. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1744. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1745. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1746. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1747. <xs:attribute name="comment"/>
  1748. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1749. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1750. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1751. </xs:attributeGroup>
  1752. <xs:attributeGroup name="go_recurse_from_root_by_build_element_3941">
  1753. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1754. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  1755. <xs:attribute name="retrieve_TYPE">
  1756. <xs:annotation>
  1757. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1758. </xs:annotation>
  1759. </xs:attribute>
  1760. <xs:attribute fixed="complexType" name="local-name"/>
  1761. <xs:attribute name="local-name-name">
  1762. <xs:annotation>
  1763. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  1764. </xs:annotation>
  1765. </xs:attribute>
  1766. <xs:attribute fixed="3941" name="event_type"/>
  1767. <xs:attribute name="restriciction_base"/>
  1768. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  1769. <xs:annotation>
  1770. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1771. </xs:annotation>
  1772. </xs:attribute>
  1773. <xs:attribute ref="system_cache__appinfo:xpath">
  1774. <xs:annotation>
  1775. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1776. </xs:annotation>
  1777. </xs:attribute>
  1778. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1779. <xs:annotation>
  1780. <xs:documentation>eg. MAGAZYN</xs:documentation>
  1781. </xs:annotation>
  1782. </xs:attribute>
  1783. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1784. <xs:annotation>
  1785. <xs:documentation/>
  1786. </xs:annotation>
  1787. </xs:attribute>
  1788. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1789. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1790. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1791. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1792. <xs:attribute name="comment"/>
  1793. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1794. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1795. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1796. </xs:attributeGroup>
  1797. <xs:attributeGroup name="go_recurse_from_root_by_build_element_3942">
  1798. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1799. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  1800. <xs:attribute name="retrieve_TYPE">
  1801. <xs:annotation>
  1802. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1803. </xs:annotation>
  1804. </xs:attribute>
  1805. <xs:attribute fixed="complexType" name="local-name"/>
  1806. <xs:attribute name="local-name-name">
  1807. <xs:annotation>
  1808. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  1809. </xs:annotation>
  1810. </xs:attribute>
  1811. <xs:attribute name="restriciction_base"/>
  1812. <xs:attribute fixed="3942" name="event_type"/>
  1813. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  1814. <xs:annotation>
  1815. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1816. </xs:annotation>
  1817. </xs:attribute>
  1818. <xs:attribute ref="system_cache__appinfo:xpath">
  1819. <xs:annotation>
  1820. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1821. </xs:annotation>
  1822. </xs:attribute>
  1823. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1824. <xs:annotation>
  1825. <xs:documentation>eg. MAGAZYN</xs:documentation>
  1826. </xs:annotation>
  1827. </xs:attribute>
  1828. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1829. <xs:annotation>
  1830. <xs:documentation/>
  1831. </xs:annotation>
  1832. </xs:attribute>
  1833. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1834. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1835. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1836. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1837. <xs:attribute name="comment"/>
  1838. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1839. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1840. </xs:attributeGroup>
  1841. <xs:attributeGroup name="go_recurse_from_root_by_build_element_494d">
  1842. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1843. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  1844. <xs:attribute name="retrieve_TYPE">
  1845. <xs:annotation>
  1846. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1847. </xs:annotation>
  1848. </xs:attribute>
  1849. <xs:attribute fixed="complexType" name="local-name"/>
  1850. <xs:attribute name="local-name-name">
  1851. <xs:annotation>
  1852. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  1853. </xs:annotation>
  1854. </xs:attribute>
  1855. <xs:attribute name="restriciction_base"/>
  1856. <xs:attribute fixed="494d" name="event_type"/>
  1857. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  1858. <xs:annotation>
  1859. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1860. </xs:annotation>
  1861. </xs:attribute>
  1862. <xs:attribute ref="system_cache__appinfo:xpath">
  1863. <xs:annotation>
  1864. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1865. </xs:annotation>
  1866. </xs:attribute>
  1867. <xs:attribute ref="system_cache__appinfo:name" use="prohibited">
  1868. <xs:annotation>
  1869. <xs:documentation>eg. MAGAZYN</xs:documentation>
  1870. </xs:annotation>
  1871. </xs:attribute>
  1872. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1873. <xs:annotation>
  1874. <xs:documentation/>
  1875. </xs:annotation>
  1876. </xs:attribute>
  1877. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1878. <xs:attribute ref="system_cache__appinfo:root_element_in_schema" use="prohibited">
  1879. <xs:annotation>
  1880. <xs:documentation>raczej jest to complex, wiec root-in schema pojdzie w 343d, nie tu.</xs:documentation>
  1881. </xs:annotation>
  1882. </xs:attribute>
  1883. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1884. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1885. <xs:attribute name="comment"/>
  1886. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1887. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1888. <xs:attribute name="parent_name">
  1889. <xs:annotation>
  1890. <xs:documentation>Przeniesiony parametr z poprzedniego typu 343d, zaczytany z @name</xs:documentation>
  1891. </xs:annotation>
  1892. </xs:attribute>
  1893. </xs:attributeGroup>
  1894. <xs:attributeGroup name="go_recurse_from_root_by_build_element_494">
  1895. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1896. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  1897. <xs:attribute name="retrieve_TYPE">
  1898. <xs:annotation>
  1899. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1900. </xs:annotation>
  1901. </xs:attribute>
  1902. <xs:attribute fixed="complexType" name="local-name"/>
  1903. <xs:attribute name="local-name-name">
  1904. <xs:annotation>
  1905. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  1906. </xs:annotation>
  1907. </xs:attribute>
  1908. <xs:attribute name="restriciction_base"/>
  1909. <xs:attribute fixed="494" name="event_type"/>
  1910. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  1911. <xs:annotation>
  1912. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1913. </xs:annotation>
  1914. </xs:attribute>
  1915. <xs:attribute ref="system_cache__appinfo:xpath">
  1916. <xs:annotation>
  1917. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1918. </xs:annotation>
  1919. </xs:attribute>
  1920. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1921. <xs:annotation>
  1922. <xs:documentation>eg. MAGAZYN</xs:documentation>
  1923. </xs:annotation>
  1924. </xs:attribute>
  1925. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1926. <xs:annotation>
  1927. <xs:documentation/>
  1928. </xs:annotation>
  1929. </xs:attribute>
  1930. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1931. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1932. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1933. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1934. <xs:attribute name="comment"/>
  1935. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1936. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1937. </xs:attributeGroup>
  1938. <xs:attributeGroup name="go_recurse_from_root_by_build_element_4941">
  1939. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1940. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  1941. <xs:attribute name="retrieve_TYPE">
  1942. <xs:annotation>
  1943. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1944. </xs:annotation>
  1945. </xs:attribute>
  1946. <xs:attribute fixed="complexType" name="local-name"/>
  1947. <xs:attribute name="local-name-name">
  1948. <xs:annotation>
  1949. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  1950. </xs:annotation>
  1951. </xs:attribute>
  1952. <xs:attribute fixed="4941" name="event_type"/>
  1953. <xs:attribute fixed="494" name="event_type_old"/>
  1954. <xs:attribute name="restriciction_base"/>
  1955. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  1956. <xs:annotation>
  1957. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1958. </xs:annotation>
  1959. </xs:attribute>
  1960. <xs:attribute ref="system_cache__appinfo:xpath">
  1961. <xs:annotation>
  1962. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1963. </xs:annotation>
  1964. </xs:attribute>
  1965. <xs:attribute ref="system_cache__appinfo:name" use="required">
  1966. <xs:annotation>
  1967. <xs:documentation>eg. MAGAZYN</xs:documentation>
  1968. </xs:annotation>
  1969. </xs:attribute>
  1970. <xs:attribute ref="system_cache__appinfo:id" use="required">
  1971. <xs:annotation>
  1972. <xs:documentation/>
  1973. </xs:annotation>
  1974. </xs:attribute>
  1975. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  1976. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  1977. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  1978. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  1979. <xs:attribute name="comment"/>
  1980. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  1981. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  1982. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  1983. </xs:attributeGroup>
  1984. <xs:attributeGroup name="go_recurse_from_root_by_build_element_4942">
  1985. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  1986. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  1987. <xs:attribute name="retrieve_TYPE">
  1988. <xs:annotation>
  1989. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  1990. </xs:annotation>
  1991. </xs:attribute>
  1992. <xs:attribute fixed="complexType" name="local-name"/>
  1993. <xs:attribute name="local-name-name">
  1994. <xs:annotation>
  1995. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  1996. </xs:annotation>
  1997. </xs:attribute>
  1998. <xs:attribute name="restriciction_base"/>
  1999. <xs:attribute fixed="4942" name="event_type"/>
  2000. <xs:attribute fixed="494" name="event_type_old"/>
  2001. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  2002. <xs:annotation>
  2003. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  2004. </xs:annotation>
  2005. </xs:attribute>
  2006. <xs:attribute ref="system_cache__appinfo:xpath">
  2007. <xs:annotation>
  2008. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  2009. </xs:annotation>
  2010. </xs:attribute>
  2011. <xs:attribute ref="system_cache__appinfo:name" use="required">
  2012. <xs:annotation>
  2013. <xs:documentation>eg. MAGAZYN</xs:documentation>
  2014. </xs:annotation>
  2015. </xs:attribute>
  2016. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2017. <xs:annotation>
  2018. <xs:documentation/>
  2019. </xs:annotation>
  2020. </xs:attribute>
  2021. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  2022. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  2023. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  2024. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2025. <xs:attribute name="comment"/>
  2026. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  2027. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2028. </xs:attributeGroup>
  2029. <xs:attributeGroup name="go_recurse_from_root_by_build_element_4940">
  2030. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  2031. <xs:attribute fixed="empty(REMOTE_ID) or REMOTE_ID" name="retrieve_REMOTE_ID" use="required"/>
  2032. <xs:attribute name="retrieve_TYPE">
  2033. <xs:annotation>
  2034. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  2035. </xs:annotation>
  2036. </xs:attribute>
  2037. <xs:attribute fixed="complexType" name="local-name"/>
  2038. <xs:attribute name="local-name-name">
  2039. <xs:annotation>
  2040. <xs:documentation>np. LOKALIZACJA</xs:documentation>
  2041. </xs:annotation>
  2042. </xs:attribute>
  2043. <xs:attribute fixed="4940" name="event_type"/>
  2044. <xs:attribute fixed="494" name="event_type_old"/>
  2045. <xs:attribute name="restriciction_base"/>
  2046. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required">
  2047. <xs:annotation>
  2048. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  2049. </xs:annotation>
  2050. </xs:attribute>
  2051. <xs:attribute ref="system_cache__appinfo:xpath">
  2052. <xs:annotation>
  2053. <xs:documentation>eg. default_default_objects_types:MAGAZYN</xs:documentation>
  2054. </xs:annotation>
  2055. </xs:attribute>
  2056. <xs:attribute ref="system_cache__appinfo:name" use="required">
  2057. <xs:annotation>
  2058. <xs:documentation>eg. MAGAZYN</xs:documentation>
  2059. </xs:annotation>
  2060. </xs:attribute>
  2061. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2062. <xs:annotation>
  2063. <xs:documentation/>
  2064. </xs:annotation>
  2065. </xs:attribute>
  2066. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  2067. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  2068. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  2069. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2070. <xs:attribute name="comment"/>
  2071. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  2072. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2073. <xs:attribute ref="system_cache__appinfo:restriction_base"/>
  2074. </xs:attributeGroup>
  2075. <xs:attributeGroup name="go_recurse_from_root_by_build_element_477">
  2076. <xs:annotation>
  2077. <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>
  2078. </xs:annotation>
  2079. <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
  2080. <xs:attribute fixed="not empty(REMOTE_ID)" name="retrieve_REMOTE_ID" use="required"/>
  2081. <xs:attribute fixed="element" name="local-name" use="required"/>
  2082. <xs:attribute name="local-name-name" use="required">
  2083. <xs:annotation>
  2084. <xs:documentation>np. default_db:TELBOXES</xs:documentation>
  2085. </xs:annotation>
  2086. </xs:attribute>
  2087. <xs:attribute name="create_element" use="required">
  2088. <xs:annotation>
  2089. <xs:documentation>np. default_db:TELBOXES</xs:documentation>
  2090. </xs:annotation>
  2091. </xs:attribute>
  2092. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  2093. <xs:attribute fixed="477" name="event_type" use="required"/>
  2094. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required"/>
  2095. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  2096. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  2097. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2098. <xs:annotation>
  2099. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  2100. </xs:annotation>
  2101. </xs:attribute>
  2102. <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
  2103. <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
  2104. <xs:attribute ref="system_cache__appinfo:ref" use="required">
  2105. <xs:annotation>
  2106. <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
  2107. </xs:annotation>
  2108. </xs:attribute>
  2109. <xs:attribute ref="system_cache__appinfo:xpath_local" use="required">
  2110. <xs:annotation>
  2111. <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
  2112. </xs:annotation>
  2113. </xs:attribute>
  2114. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  2115. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  2116. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2117. <xs:attribute ref="system_cache__appinfo:restriction_path">
  2118. <xs:annotation>
  2119. <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>
  2120. </xs:annotation>
  2121. </xs:attribute>
  2122. <xs:attribute ref="system_cache__appinfo:loop_name"/>
  2123. <xs:attribute ref="system_cache__appinfo:loop_id"/>
  2124. <xs:attribute name="comment"/>
  2125. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2126. <xs:attribute ref="system_cache__appinfo:loop_name_with_prefix"/>
  2127. <xs:attribute ref="p5_tr_map:detect_loop_from_build_complexType_node_comment"/>
  2128. <xs:attributeGroup ref="p5_tr_map:relation_info_from_appinfo_not_flat"/>
  2129. </xs:attributeGroup>
  2130. <xs:attributeGroup name="go_recurse_from_root_by_build_element_477b">
  2131. <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
  2132. <xs:attribute fixed="not empty(REMOTE_ID)" name="retrieve_REMOTE_ID" use="required"/>
  2133. <xs:attribute fixed="element" name="local-name" use="required"/>
  2134. <xs:attribute name="local-name-name" use="required">
  2135. <xs:annotation>
  2136. <xs:documentation>np. default_db:TELBOXES</xs:documentation>
  2137. </xs:annotation>
  2138. </xs:attribute>
  2139. <xs:attribute name="create_element" use="required">
  2140. <xs:annotation>
  2141. <xs:documentation>np. default_db:TELBOXES</xs:documentation>
  2142. </xs:annotation>
  2143. </xs:attribute>
  2144. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  2145. <xs:attribute fixed="477b" name="event_type" use="required"/>
  2146. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required"/>
  2147. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  2148. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  2149. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2150. <xs:annotation>
  2151. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  2152. </xs:annotation>
  2153. </xs:attribute>
  2154. <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
  2155. <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
  2156. <xs:attribute ref="system_cache__appinfo:ref" use="prohibited">
  2157. <xs:annotation>
  2158. <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
  2159. </xs:annotation>
  2160. </xs:attribute>
  2161. <xs:attribute ref="system_cache__appinfo:xpath_local" use="required">
  2162. <xs:annotation>
  2163. <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
  2164. </xs:annotation>
  2165. </xs:attribute>
  2166. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  2167. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  2168. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2169. <xs:attribute ref="system_cache__appinfo:restriction_path">
  2170. <xs:annotation>
  2171. <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>
  2172. </xs:annotation>
  2173. </xs:attribute>
  2174. <xs:attribute ref="system_cache__appinfo:loop_name"/>
  2175. <xs:attribute ref="system_cache__appinfo:loop_id"/>
  2176. <xs:attribute name="comment"/>
  2177. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2178. <xs:attribute ref="system_cache__appinfo:name"/>
  2179. <xs:attribute ref="system_cache__appinfo:type"/>
  2180. <xs:attribute ref="system_cache__appinfo:targetNamespace"/>
  2181. </xs:attributeGroup>
  2182. <xs:attributeGroup name="go_recurse_from_root_by_build_element_4771">
  2183. <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
  2184. <xs:attribute fixed="not empty(REMOTE_ID)" name="retrieve_REMOTE_ID" use="required"/>
  2185. <xs:attribute fixed="attribute" name="local-name" use="required"/>
  2186. <xs:attribute name="local-name-name" use="required">
  2187. <xs:annotation>
  2188. <xs:documentation>np. default_db:xxxx</xs:documentation>
  2189. </xs:annotation>
  2190. </xs:attribute>
  2191. <xs:attribute name="create_element" use="required">
  2192. <xs:annotation>
  2193. <xs:documentation>np. default_db:xxxx</xs:documentation>
  2194. </xs:annotation>
  2195. </xs:attribute>
  2196. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  2197. <xs:attribute fixed="4771" name="event_type" use="required"/>
  2198. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required"/>
  2199. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  2200. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  2201. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2202. <xs:annotation>
  2203. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  2204. </xs:annotation>
  2205. </xs:attribute>
  2206. <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
  2207. <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
  2208. <xs:attribute ref="system_cache__appinfo:ref" use="required">
  2209. <xs:annotation>
  2210. <xs:documentation>np. default_db:some_attr_refered
  2211. </xs:documentation>
  2212. </xs:annotation>
  2213. </xs:attribute>
  2214. <xs:attribute ref="system_cache__appinfo:xpath_local" use="prohibited">
  2215. <xs:annotation>
  2216. <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
  2217. </xs:annotation>
  2218. </xs:attribute>
  2219. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  2220. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  2221. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2222. <xs:attribute ref="system_cache__appinfo:restriction_path">
  2223. <xs:annotation>
  2224. <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>
  2225. </xs:annotation>
  2226. </xs:attribute>
  2227. <xs:attribute ref="system_cache__appinfo:loop_name"/>
  2228. <xs:attribute ref="system_cache__appinfo:loop_id"/>
  2229. <xs:attribute name="comment"/>
  2230. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2231. </xs:attributeGroup>
  2232. <xs:attributeGroup name="go_recurse_from_root_by_build_element_4777">
  2233. <xs:attribute fixed="parent::node()/ID" name="retrieve_PARENT_ID" use="required"/>
  2234. <xs:attribute fixed="not empty(REMOTE_ID)" name="retrieve_REMOTE_ID" use="required"/>
  2235. <xs:attribute fixed="element" name="local-name" use="required"/>
  2236. <xs:attribute name="local-name-name" use="required">
  2237. <xs:annotation>
  2238. <xs:documentation>np. default_db:TELBOXES</xs:documentation>
  2239. </xs:annotation>
  2240. </xs:attribute>
  2241. <xs:attribute name="create_element" use="required">
  2242. <xs:annotation>
  2243. <xs:documentation>np. default_db:TELBOXES</xs:documentation>
  2244. </xs:annotation>
  2245. </xs:attribute>
  2246. <xs:attribute fixed="INSTANCE" name="requested-table-type" use="required"/>
  2247. <xs:attribute fixed="4777" name="event_type" use="required"/>
  2248. <xs:attribute ref="system_cache__appinfo:xpath_full" use="required"/>
  2249. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  2250. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  2251. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2252. <xs:annotation>
  2253. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  2254. </xs:annotation>
  2255. </xs:attribute>
  2256. <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
  2257. <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
  2258. <xs:attribute ref="system_cache__appinfo:ref" use="required">
  2259. <xs:annotation>
  2260. <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
  2261. </xs:annotation>
  2262. </xs:attribute>
  2263. <xs:attribute ref="system_cache__appinfo:xpath_local" use="required">
  2264. <xs:annotation>
  2265. <xs:documentation>np. default_db:CRM_LISTA_ZASOBOW</xs:documentation>
  2266. </xs:annotation>
  2267. </xs:attribute>
  2268. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  2269. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  2270. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2271. <xs:attribute ref="system_cache__appinfo:restriction_path">
  2272. <xs:annotation>
  2273. <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>
  2274. </xs:annotation>
  2275. </xs:attribute>
  2276. <xs:attribute ref="system_cache__appinfo:loop_name"/>
  2277. <xs:attribute ref="system_cache__appinfo:loop_id"/>
  2278. <xs:attribute name="comment"/>
  2279. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2280. <xs:attribute fixed="0" name="position" use="required">
  2281. <xs:annotation>
  2282. <xs:documentation>Wyliczona pozycja elementu w schemacie - powinna byc pierwsza pozycja na lisciu schematu, zaraz za sequence, wiec=0 </xs:documentation>
  2283. </xs:annotation>
  2284. </xs:attribute>
  2285. </xs:attributeGroup>
  2286. <xs:attributeGroup name="go_recurse_from_root_by_build_element_734">
  2287. <xs:annotation>
  2288. <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>
  2289. </xs:annotation>
  2290. <xs:attribute fixed="parent::node()/REMOTE_ID" name="retrieve_ID" use="required"/>
  2291. <xs:attribute fixed="complexType" name="local-name" use="required"/>
  2292. <xs:attribute name="local-name-name" use="required">
  2293. <xs:annotation>
  2294. <xs:documentation>np. TELBOXES</xs:documentation>
  2295. </xs:annotation>
  2296. </xs:attribute>
  2297. <xs:attribute fixed="*" name="copy-retrieved-element" use="required"/>
  2298. <xs:attribute fixed="734" name="event_type" use="required"/>
  2299. <xs:attribute ref="system_cache__appinfo:name" use="required">
  2300. <xs:annotation>
  2301. <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
  2302. </xs:annotation>
  2303. </xs:attribute>
  2304. <xs:attribute fixed="0" ref="system_cache__appinfo:sort" use="required"/>
  2305. <xs:attribute fixed="true" ref="system_cache__appinfo:root_element_in_schema" use="required"/>
  2306. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  2307. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2308. <xs:attribute name="comment"/>
  2309. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  2310. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2311. </xs:attributeGroup>
  2312. <xs:attributeGroup name="go_recurse_from_root_by_build_element_428">
  2313. <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
  2314. <xs:attribute fixed="element" name="local-name" use="required"/>
  2315. <xs:attribute name="local-name-name" use="required">
  2316. <xs:annotation>
  2317. <xs:documentation>np. ID</xs:documentation>
  2318. </xs:annotation>
  2319. </xs:attribute>
  2320. <xs:attribute ref="system_cache__appinfo:xpath_full"/>
  2321. <xs:attribute ref="system_cache__appinfo:xpath"/>
  2322. <xs:attribute name="create_element" use="required">
  2323. <xs:annotation>
  2324. <xs:documentation>np. ID</xs:documentation>
  2325. </xs:annotation>
  2326. </xs:attribute>
  2327. <xs:attribute fixed="428" name="event_type" use="required"/>
  2328. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2329. <xs:annotation>
  2330. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  2331. </xs:annotation>
  2332. </xs:attribute>
  2333. <xs:attribute ref="system_cache__appinfo:targetNamespace"/>
  2334. <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
  2335. <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
  2336. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  2337. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  2338. <xs:attribute ref="system_cache__appinfo:name" use="required">
  2339. <xs:annotation>
  2340. <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
  2341. </xs:annotation>
  2342. </xs:attribute>
  2343. <xs:attribute ref="system_cache__appinfo:type" use="optional">
  2344. <xs:annotation>
  2345. <xs:documentation>np. xs:int TODO do potrzebny schemat typu prostego</xs:documentation>
  2346. </xs:annotation>
  2347. </xs:attribute>
  2348. <xs:attribute ref="system_cache__appinfo:xpath_local"/>
  2349. <xs:attribute name="restriction_base_attr">
  2350. <xs:annotation>
  2351. <xs:documentation>existient todo look for:xs:int; $restriction_path:_start_/element:ID/;</xs:documentation>
  2352. </xs:annotation>
  2353. </xs:attribute>
  2354. <xs:attribute name="id-orig-from-restriction">
  2355. <xs:annotation>
  2356. <xs:documentation>np. default_default_objects_types___d20e438-id-mag-restr
  2357. 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>
  2358. </xs:annotation>
  2359. </xs:attribute>
  2360. <xs:attribute name="xpath_local">
  2361. <xs:annotation>
  2362. <xs:documentation>TODO BLAD - w przykladzie z MAGAZYNU jest wartosc xs:int</xs:documentation>
  2363. </xs:annotation>
  2364. </xs:attribute>
  2365. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  2366. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  2367. <xs:annotation>
  2368. <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
  2369. </xs:annotation>
  2370. </xs:attribute>
  2371. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2372. <xs:attribute ref="system_cache__appinfo:restriction_path">
  2373. <xs:annotation>
  2374. <xs:documentation>eg. _start_/element:ID/</xs:documentation>
  2375. </xs:annotation>
  2376. </xs:attribute>
  2377. <xs:attribute name="comment"/>
  2378. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2379. </xs:attributeGroup>
  2380. <xs:attributeGroup name="go_recurse_from_root_by_build_element_428a">
  2381. <xs:annotation>
  2382. <xs:documentation>428a - parent_name:default_default_objects_types:MAGAZYN pusty element - tylko instancja</xs:documentation>
  2383. </xs:annotation>
  2384. <xs:attribute fixed="parent::node()/ID" name="retrieve_ID" use="required"/>
  2385. <xs:attribute fixed="element" name="local-name" use="required"/>
  2386. <xs:attribute name="local-name-name" use="required">
  2387. <xs:annotation>
  2388. <xs:documentation>np. ID</xs:documentation>
  2389. </xs:annotation>
  2390. </xs:attribute>
  2391. <xs:attribute ref="system_cache__appinfo:xpath_full"/>
  2392. <xs:attribute ref="system_cache__appinfo:xpath"/>
  2393. <xs:attribute name="create_element" use="required">
  2394. <xs:annotation>
  2395. <xs:documentation>np. ID</xs:documentation>
  2396. </xs:annotation>
  2397. </xs:attribute>
  2398. <xs:attribute fixed="428a" name="event_type" use="required"/>
  2399. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2400. <xs:annotation>
  2401. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  2402. </xs:annotation>
  2403. </xs:attribute>
  2404. <xs:attribute ref="system_cache__appinfo:targetNamespace"/>
  2405. <xs:attribute ref="system_cache__appinfo:restriction_base_attr"/>
  2406. <xs:attribute ref="system_cache__appinfo:id-orig-from-restriction"/>
  2407. <xs:attribute ref="system_cache__appinfo:maxOccurs"/>
  2408. <xs:attribute ref="system_cache__appinfo:minOccurs"/>
  2409. <xs:attribute ref="system_cache__appinfo:name" use="required">
  2410. <xs:annotation>
  2411. <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
  2412. </xs:annotation>
  2413. </xs:attribute>
  2414. <xs:attribute ref="system_cache__appinfo:type" use="optional">
  2415. <xs:annotation>
  2416. <xs:documentation>np. xs:int TODO do potrzebny schemat typu prostego</xs:documentation>
  2417. </xs:annotation>
  2418. </xs:attribute>
  2419. <xs:attribute ref="system_cache__appinfo:xpath_local"/>
  2420. <xs:attribute name="restriction_base_attr">
  2421. <xs:annotation>
  2422. <xs:documentation>existient todo look for:xs:int; $restriction_path:_start_/element:ID/;</xs:documentation>
  2423. </xs:annotation>
  2424. </xs:attribute>
  2425. <xs:attribute name="id-orig-from-restriction">
  2426. <xs:annotation>
  2427. <xs:documentation>np. default_default_objects_types___d20e438-id-mag-restr
  2428. 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>
  2429. </xs:annotation>
  2430. </xs:attribute>
  2431. <xs:attribute name="xpath_local">
  2432. <xs:annotation>
  2433. <xs:documentation>TODO BLAD - w przykladzie z MAGAZYNU jest wartosc xs:int</xs:documentation>
  2434. </xs:annotation>
  2435. </xs:attribute>
  2436. <xs:attribute fixed="1" ref="system_cache__appinfo:sort" use="required"/>
  2437. <xs:attribute ref="system_cache__appinfo:prefix" use="required">
  2438. <xs:annotation>
  2439. <xs:documentation>np. default_default_objects_types__d20e41</xs:documentation>
  2440. </xs:annotation>
  2441. </xs:attribute>
  2442. <xs:attribute ref="system_cache__appinfo:namespace_uri" use="required"/>
  2443. <xs:attribute ref="system_cache__appinfo:restriction_path">
  2444. <xs:annotation>
  2445. <xs:documentation>eg. _start_/element:ID/</xs:documentation>
  2446. </xs:annotation>
  2447. </xs:attribute>
  2448. <xs:attribute name="comment"/>
  2449. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2450. <xs:attribute ref="system_cache__appinfo:default"/>
  2451. </xs:attributeGroup>
  2452. <xs:attributeGroup name="go_recurse_from_root_by_build_element_loop">
  2453. <xs:attribute fixed="loop" name="local-name" use="required"/>
  2454. <xs:attribute ref="system_cache__appinfo:xpath_full"/>
  2455. <xs:attribute ref="system_cache__appinfo:xpath"/>
  2456. <xs:attribute name="root_name" use="required">
  2457. <xs:annotation>
  2458. <xs:documentation>np. default_default_objects_types:URZADZENIE</xs:documentation>
  2459. </xs:annotation>
  2460. </xs:attribute>
  2461. <xs:attribute fixed="loop" name="event_type" use="required"/>
  2462. <xs:attribute ref="system_cache__appinfo:id" use="required">
  2463. <xs:annotation>
  2464. <xs:documentation>The same like in retrieve_resource_id</xs:documentation>
  2465. </xs:annotation>
  2466. </xs:attribute>
  2467. <xs:attribute ref="system_cache__appinfo:path"/>
  2468. <xs:attribute ref="system_cache__appinfo:name" use="required">
  2469. <xs:annotation>
  2470. <xs:documentation>np. CRM_LISTA_ZASOBOW</xs:documentation>
  2471. </xs:annotation>
  2472. </xs:attribute>
  2473. <xs:attribute ref="system_cache__appinfo:restriction_path_TODEL"/>
  2474. <xs:attribute ref="system_cache__appinfo:restriciction_base_lenght_TODEL"/>
  2475. <xs:attribute name="comment"/>
  2476. <xs:attribute ref="p5_tr_map:uuid" use="required"/>
  2477. <xs:attribute ref="system_cache__appinfo:prefix" use="required"/>
  2478. <xs:attribute ref="system_cache__appinfo:name_with_prefix" use="required"/>
  2479. </xs:attributeGroup>
  2480. <!--<xs:attribute name="object_type_name_with_pref" type="xs:NMTOKEN"/>-->
  2481. <xs:attribute name="object_type_name_with_pref">
  2482. <xs:annotation>
  2483. <xs:documentation>jakiego typu dziedziczenia jest uzyty complexType</xs:documentation>
  2484. </xs:annotation>
  2485. </xs:attribute>
  2486. <xs:attributeGroup name="parent_name_with_pref">
  2487. <xs:attribute form="qualified" name="parent_name_with_pref" use="required"/>
  2488. </xs:attributeGroup>
  2489. <xs:attributeGroup name="parent_name_with_pref1">
  2490. <xs:attribute form="qualified" name="parent_name_with_pref" type="xs:NMTOKEN" use="required"
  2491. />
  2492. </xs:attributeGroup>
  2493. <!--<xs:attribute name="object_type_id" type="xs:NCName"/>-->
  2494. <xs:attribute name="event_type" type="xs:NMTOKEN"/>
  2495. <xs:attribute name="parent_type"/>
  2496. <!--<xs:element name="schema_4777">
  2497. <xs:complexType>
  2498. <xs:sequence>
  2499. <xs:element name="element" targetNamespace="http://www.w3.org/2001/XMLSchema">
  2500. <xs:complexType>
  2501. <xs:sequence>
  2502. <xs:element name="element"
  2503. targetNamespace="http://www.w3.org/2001/XMLSchema">
  2504. <xs:complexType>
  2505. <xs:sequence>
  2506. <xs:element name="complexType"
  2507. targetNamespace="http://www.w3.org/2001/XMLSchema">
  2508. <xs:complexType>
  2509. <xs:sequence>
  2510. <xs:element name="sequence"
  2511. targetNamespace="http://www.w3.org/2001/XMLSchema">
  2512. <xs:complexType>
  2513. <xs:sequence>
  2514. <xs:element maxOccurs="unbounded" name="element"
  2515. targetNamespace="http://www.w3.org/2001/XMLSchema">
  2516. <xs:complexType>
  2517. <xs:sequence minOccurs="0">
  2518. <xs:element name="simpleType"
  2519. targetNamespace="http://www.w3.org/2001/XMLSchema">
  2520. <xs:complexType>
  2521. <xs:sequence minOccurs="0">
  2522. <xs:element name="restriction"
  2523. targetNamespace="http://www.w3.org/2001/XMLSchema"
  2524. />
  2525. </xs:sequence>
  2526. </xs:complexType>
  2527. </xs:element>
  2528. </xs:sequence>
  2529. </xs:complexType>
  2530. </xs:element>
  2531. </xs:sequence>
  2532. </xs:complexType>
  2533. </xs:element>
  2534. </xs:sequence>
  2535. </xs:complexType>
  2536. </xs:element>
  2537. </xs:sequence>
  2538. </xs:complexType>
  2539. </xs:element>
  2540. </xs:sequence>
  2541. </xs:complexType>
  2542. </xs:element>
  2543. </xs:sequence>
  2544. </xs:complexType>
  2545. </xs:element>-->
  2546. <xs:attribute name="detect_loop_from_build_complexType_node_comment">
  2547. <xs:annotation>
  2548. <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>
  2549. </xs:annotation>
  2550. </xs:attribute>
  2551. <xs:attributeGroup name="relation_info_from_appinfo_not_flat">
  2552. <xs:annotation>
  2553. <xs:documentation>dorzucona struktura na potrzeby synchronizacji refow 2017-03 w p5_tr_map
  2554. </xs:documentation>
  2555. </xs:annotation>
  2556. <xs:attribute name="flat_relation_cache_name"/>
  2557. <xs:attribute name="flat_relation_cache_xpath"/>
  2558. </xs:attributeGroup>
  2559. </xs:schema>