Rozdzielcza_lokalizacje.xsd 170 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  3. xmlns:gml="http://www.opengis.net/gml/3.2"
  4. xmlns:Types__x3A__default_Infrastructure="https://biuro.biall-net.pl/wfs/default_db/Types/Infrastructure.xsd"
  5. xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
  6. xmlns:default_db__x3A__IN7_DZIENNIK_KORESP="https://biuro.biall-net.pl/wfs/default_db/table/IN7_DZIENNIK_KORESP.xsd"
  7. xmlns:hfp="http://www.w3.org/2001/XMLSchema-hasFacetAndProperty"
  8. xmlns:default_db__x3A__ADMIN_USERS="https://biuro.biall-net.pl/wfs/default_db/table/ADMIN_USERS.xsd"
  9. xmlns:default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI="https://biuro.biall-net.pl/wfs/default_db/table/IN7_MK_BAZA_DYSTRYBUCJI.xsd"
  10. xmlns:SystemObjects__x3A__AccessGroup="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/AccessGroup.xsd"
  11. xmlns:SystemObjects__x3A__AccessOwner="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/AccessOwner.xsd"
  12. xmlns:default_db__x3A__Rozdzielcza_lokalizacje="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_lokalizacje.xsd"
  13. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  14. targetNamespace="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_lokalizacje.xsd">
  15. <xs:import namespace="http://www.opengis.net/gml/3.2"
  16. schemaLocation="../Types/gml.xsd"/>
  17. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/IN7_DZIENNIK_KORESP.xsd"
  18. schemaLocation="../table/IN7_DZIENNIK_KORESP.xsd"/>
  19. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/IN7_MK_BAZA_DYSTRYBUCJI.xsd"
  20. schemaLocation="../table/IN7_MK_BAZA_DYSTRYBUCJI.xsd"/>
  21. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/AccessGroup.xsd"
  22. schemaLocation="../SystemObjects/AccessGroup.xsd"/>
  23. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/AccessOwner.xsd"
  24. schemaLocation="../SystemObjects/AccessOwner.xsd"/>
  25. <xs:complexType name="Rozdzielcza_lokalizacje" id="Rozdzie_Rozd_d4e5334">
  26. <xs:annotation>
  27. <xs:documentation>Instancyjny -
  28. Protopyowy obiekt, który powinien mieć typy konkretnych rodzaji dla różnych technologii. Podzielony z uwagi na stany projektowania oraz realizacji.
  29. </xs:documentation>
  30. </xs:annotation>
  31. <xs:sequence id="Rozdzielcza_lo_d4e5338">
  32. <xs:element name="the_geom"
  33. type="gml:AbstractFeatureType"
  34. id="lokalizacje___d4e8082-1_the_geom">
  35. <xs:annotation>
  36. <xs:documentation>Dane geograficzne obiektu - linia, punkt, polygon</xs:documentation>
  37. </xs:annotation>
  38. </xs:element>
  39. <xs:element name="A_STATUS_INFO"
  40. type="xs:string"
  41. id="lokalizacje___d4e8086-1_A_STATUS_I"/>
  42. <xs:element name="Dlugosc"
  43. type="xs:double"
  44. id="lokalizacje___d4e8087-1_Dlugosc"/>
  45. <xs:element name="Powierzchnia"
  46. type="xs:double"
  47. id="lokalizacje___d4e8088-1_Powierzchn"/>
  48. <xs:element name="L_APPOITMENT_USER"
  49. type="xs:string"
  50. id="lokalizacje___d4e8089-1_L_APPOITME"/>
  51. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  52. id="lokalizacje___d4e8090-1">
  53. <xs:annotation>
  54. <xs:appinfo>
  55. <system_cache__appinfo:flat_relation_cache>
  56. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  57. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  58. </system_cache__appinfo:flat_relation_cache>
  59. </xs:appinfo>
  60. </xs:annotation>
  61. </xs:element>
  62. <xs:element name="A_CLASSIFIED"
  63. type="xs:string"
  64. id="lokalizacje___d4e8095-1_A_CLASSIFI"/>
  65. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  66. id="lokalizacje___d4e8096-1">
  67. <xs:annotation>
  68. <xs:appinfo>
  69. <system_cache__appinfo:flat_relation_cache>
  70. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  71. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  72. </system_cache__appinfo:flat_relation_cache>
  73. </xs:appinfo>
  74. </xs:annotation>
  75. </xs:element>
  76. <xs:element name="A_ADM_COMPANY"
  77. type="xs:string"
  78. id="lokalizacje___d4e8101-1_A_ADM_COMP"/>
  79. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  80. id="lokalizacje___d4e8102-1">
  81. <xs:annotation>
  82. <xs:appinfo>
  83. <system_cache__appinfo:flat_relation_cache>
  84. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  85. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  86. </system_cache__appinfo:flat_relation_cache>
  87. </xs:appinfo>
  88. </xs:annotation>
  89. </xs:element>
  90. <xs:element name="ID_PROJECT"
  91. type="xs:int"
  92. id="lokalizacje___d4e8107-1_ID_PROJECT"/>
  93. <xs:element minOccurs="0"
  94. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  95. id="lokalizacje___d4e8109-1">
  96. <xs:annotation>
  97. <xs:appinfo>
  98. <system_cache__appinfo:flat_relation_cache>
  99. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  100. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  101. </system_cache__appinfo:flat_relation_cache>
  102. </xs:appinfo>
  103. </xs:annotation>
  104. </xs:element>
  105. <xs:element minOccurs="0"
  106. maxOccurs="unbounded"
  107. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  108. id="lokalizacje___d4e8114-1">
  109. <xs:annotation>
  110. <xs:appinfo>
  111. <system_cache__appinfo:flat_relation_cache>
  112. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  113. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  114. </system_cache__appinfo:flat_relation_cache>
  115. </xs:appinfo>
  116. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  117. </xs:annotation>
  118. </xs:element>
  119. <xs:element minOccurs="0"
  120. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  121. id="lokalizacje___d4e8121-1">
  122. <xs:annotation>
  123. <xs:appinfo>
  124. <system_cache__appinfo:flat_relation_cache>
  125. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  126. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  127. </system_cache__appinfo:flat_relation_cache>
  128. </xs:appinfo>
  129. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  130. </xs:annotation>
  131. </xs:element>
  132. <xs:element minOccurs="0"
  133. maxOccurs="unbounded"
  134. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  135. id="lokalizacje___d4e8128-1">
  136. <xs:annotation>
  137. <xs:appinfo>
  138. <system_cache__appinfo:flat_relation_cache>
  139. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  140. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  141. </system_cache__appinfo:flat_relation_cache>
  142. </xs:appinfo>
  143. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  144. </xs:annotation>
  145. </xs:element>
  146. <xs:element minOccurs="0"
  147. maxOccurs="unbounded"
  148. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  149. id="lokalizacje___d4e8135-1">
  150. <xs:annotation>
  151. <xs:appinfo>
  152. <system_cache__appinfo:flat_relation_cache>
  153. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  154. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  155. </system_cache__appinfo:flat_relation_cache>
  156. </xs:appinfo>
  157. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  158. </xs:annotation>
  159. </xs:element>
  160. <xs:element minOccurs="0"
  161. maxOccurs="unbounded"
  162. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  163. id="lokalizacje___d4e8142-1">
  164. <xs:annotation>
  165. <xs:appinfo>
  166. <system_cache__appinfo:flat_relation_cache>
  167. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  168. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  169. </system_cache__appinfo:flat_relation_cache>
  170. </xs:appinfo>
  171. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  172. </xs:annotation>
  173. </xs:element>
  174. <xs:element minOccurs="0"
  175. maxOccurs="unbounded"
  176. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  177. id="lokalizacje___d4e8149-1">
  178. <xs:annotation>
  179. <xs:appinfo>
  180. <system_cache__appinfo:flat_relation_cache>
  181. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  182. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  183. </system_cache__appinfo:flat_relation_cache>
  184. </xs:appinfo>
  185. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  186. </xs:annotation>
  187. </xs:element>
  188. <xs:element minOccurs="0"
  189. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  190. id="lokalizacje___d4e8156-1">
  191. <xs:annotation>
  192. <xs:appinfo>
  193. <system_cache__appinfo:flat_relation_cache>
  194. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  195. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  196. </system_cache__appinfo:flat_relation_cache>
  197. </xs:appinfo>
  198. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  199. </xs:annotation>
  200. </xs:element>
  201. <xs:element minOccurs="0"
  202. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  203. id="lokalizacje___d4e8163-1">
  204. <xs:annotation>
  205. <xs:appinfo>
  206. <system_cache__appinfo:flat_relation_cache>
  207. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  208. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  209. </system_cache__appinfo:flat_relation_cache>
  210. </xs:appinfo>
  211. <xs:documentation>Powiązanie obiektu ze zleceniem na wykonanie obiektu przez wykonawce</xs:documentation>
  212. </xs:annotation>
  213. </xs:element>
  214. <xs:element minOccurs="0"
  215. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  216. id="lokalizacje___d4e8170-1">
  217. <xs:annotation>
  218. <xs:appinfo>
  219. <system_cache__appinfo:flat_relation_cache>
  220. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  221. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  222. </system_cache__appinfo:flat_relation_cache>
  223. </xs:appinfo>
  224. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  225. </xs:annotation>
  226. </xs:element>
  227. <xs:element minOccurs="0"
  228. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  229. id="lokalizacje___d4e8177-1">
  230. <xs:annotation>
  231. <xs:appinfo>
  232. <system_cache__appinfo:flat_relation_cache>
  233. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  234. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  235. </system_cache__appinfo:flat_relation_cache>
  236. </xs:appinfo>
  237. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  238. </xs:annotation>
  239. </xs:element>
  240. <xs:element minOccurs="0"
  241. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  242. id="lokalizacje___d4e8185-1">
  243. <xs:annotation>
  244. <xs:appinfo>
  245. <system_cache__appinfo:flat_relation_cache>
  246. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  247. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  248. </system_cache__appinfo:flat_relation_cache>
  249. </xs:appinfo>
  250. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  251. </xs:annotation>
  252. </xs:element>
  253. </xs:sequence>
  254. </xs:complexType>
  255. <xs:element name="Rozdzielcza_lokalizacje"
  256. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje"
  257. id="Rozdzie_Rozd_d4e5452"/>
  258. <xs:complexType name="Rozdzielcza_lokalizacje_PROJEKT" id="Rozdzie_Rozd_d4e5453">
  259. <xs:annotation>
  260. <xs:documentation>Generalnie prototyp obiektu już jest jego planem, dla tego na ten moment bedzie to extensions obiektu infrastruktury</xs:documentation>
  261. </xs:annotation>
  262. <xs:complexContent id="lokalizacje___d4e8197-1">
  263. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje">
  264. <xs:sequence id="Rozdzielcza_lo_d4e5459">
  265. <xs:element name="the_geom"
  266. type="gml:AbstractFeatureType"
  267. id="lokalizacje___d4e8200-1_the_geom"/>
  268. <xs:element name="A_STATUS_INFO"
  269. type="xs:string"
  270. id="lokalizacje___d4e8201-1_A_STATUS_I"/>
  271. <xs:element name="Dlugosc"
  272. type="xs:double"
  273. id="lokalizacje___d4e8202-1_Dlugosc"/>
  274. <xs:element name="Powierzchnia"
  275. type="xs:double"
  276. id="lokalizacje___d4e8203-1_Powierzchn"/>
  277. <xs:element name="L_APPOITMENT_USER"
  278. type="xs:string"
  279. id="lokalizacje___d4e8204-1_L_APPOITME"/>
  280. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  281. id="lokalizacje___d4e8205-1">
  282. <xs:annotation>
  283. <xs:appinfo>
  284. <system_cache__appinfo:flat_relation_cache>
  285. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  286. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  287. </system_cache__appinfo:flat_relation_cache>
  288. </xs:appinfo>
  289. </xs:annotation>
  290. </xs:element>
  291. <xs:element name="A_CLASSIFIED"
  292. type="xs:string"
  293. id="lokalizacje___d4e8210-1_A_CLASSIFI"/>
  294. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  295. id="lokalizacje___d4e8211-1">
  296. <xs:annotation>
  297. <xs:appinfo>
  298. <system_cache__appinfo:flat_relation_cache>
  299. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  300. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  301. </system_cache__appinfo:flat_relation_cache>
  302. </xs:appinfo>
  303. </xs:annotation>
  304. </xs:element>
  305. <xs:element name="A_ADM_COMPANY"
  306. type="xs:string"
  307. id="lokalizacje___d4e8216-1_A_ADM_COMP"/>
  308. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  309. id="lokalizacje___d4e8217-1">
  310. <xs:annotation>
  311. <xs:appinfo>
  312. <system_cache__appinfo:flat_relation_cache>
  313. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  314. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  315. </system_cache__appinfo:flat_relation_cache>
  316. </xs:appinfo>
  317. </xs:annotation>
  318. </xs:element>
  319. <xs:element name="ID_PROJECT"
  320. type="xs:int"
  321. id="lokalizacje___d4e8222-1_ID_PROJECT"/>
  322. <xs:element minOccurs="0"
  323. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  324. id="lokalizacje___d4e8224-1">
  325. <xs:annotation>
  326. <xs:appinfo>
  327. <system_cache__appinfo:flat_relation_cache>
  328. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  329. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  330. </system_cache__appinfo:flat_relation_cache>
  331. </xs:appinfo>
  332. </xs:annotation>
  333. </xs:element>
  334. <xs:element maxOccurs="unbounded"
  335. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  336. id="lokalizacje___d4e8229-1">
  337. <xs:annotation>
  338. <xs:appinfo>
  339. <system_cache__appinfo:flat_relation_cache>
  340. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  341. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  342. </system_cache__appinfo:flat_relation_cache>
  343. </xs:appinfo>
  344. <xs:documentation>stworzono i wydrukowano fizycznie dokument projektu dla danego zakresu elementow</xs:documentation>
  345. </xs:annotation>
  346. </xs:element>
  347. <xs:element minOccurs="0"
  348. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  349. id="lokalizacje___d4e8236-1">
  350. <xs:annotation>
  351. <xs:appinfo>
  352. <system_cache__appinfo:flat_relation_cache>
  353. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  354. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  355. </system_cache__appinfo:flat_relation_cache>
  356. </xs:appinfo>
  357. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  358. </xs:annotation>
  359. </xs:element>
  360. <xs:element minOccurs="0"
  361. maxOccurs="unbounded"
  362. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  363. id="lokalizacje___d4e8243-1">
  364. <xs:annotation>
  365. <xs:appinfo>
  366. <system_cache__appinfo:flat_relation_cache>
  367. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  368. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  369. </system_cache__appinfo:flat_relation_cache>
  370. </xs:appinfo>
  371. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  372. </xs:annotation>
  373. </xs:element>
  374. <xs:element minOccurs="0"
  375. maxOccurs="unbounded"
  376. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  377. id="lokalizacje___d4e8250-1">
  378. <xs:annotation>
  379. <xs:appinfo>
  380. <system_cache__appinfo:flat_relation_cache>
  381. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  382. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  383. </system_cache__appinfo:flat_relation_cache>
  384. </xs:appinfo>
  385. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  386. </xs:annotation>
  387. </xs:element>
  388. <xs:element minOccurs="0"
  389. maxOccurs="unbounded"
  390. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  391. id="lokalizacje___d4e8257-1">
  392. <xs:annotation>
  393. <xs:appinfo>
  394. <system_cache__appinfo:flat_relation_cache>
  395. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  396. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  397. </system_cache__appinfo:flat_relation_cache>
  398. </xs:appinfo>
  399. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  400. </xs:annotation>
  401. </xs:element>
  402. <xs:element minOccurs="0"
  403. maxOccurs="unbounded"
  404. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  405. id="lokalizacje___d4e8264-1">
  406. <xs:annotation>
  407. <xs:appinfo>
  408. <system_cache__appinfo:flat_relation_cache>
  409. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  410. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  411. </system_cache__appinfo:flat_relation_cache>
  412. </xs:appinfo>
  413. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  414. </xs:annotation>
  415. </xs:element>
  416. <xs:element minOccurs="0"
  417. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  418. id="lokalizacje___d4e8271-1">
  419. <xs:annotation>
  420. <xs:appinfo>
  421. <system_cache__appinfo:flat_relation_cache>
  422. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  423. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  424. </system_cache__appinfo:flat_relation_cache>
  425. </xs:appinfo>
  426. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  427. </xs:annotation>
  428. </xs:element>
  429. <xs:element minOccurs="0"
  430. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  431. id="lokalizacje___d4e8278-1">
  432. <xs:annotation>
  433. <xs:appinfo>
  434. <system_cache__appinfo:flat_relation_cache>
  435. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  436. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  437. </system_cache__appinfo:flat_relation_cache>
  438. </xs:appinfo>
  439. <xs:documentation>Czy jest zlecenie</xs:documentation>
  440. </xs:annotation>
  441. </xs:element>
  442. <xs:element minOccurs="0"
  443. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  444. id="lokalizacje___d4e8285-1">
  445. <xs:annotation>
  446. <xs:appinfo>
  447. <system_cache__appinfo:flat_relation_cache>
  448. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  449. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  450. </system_cache__appinfo:flat_relation_cache>
  451. </xs:appinfo>
  452. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  453. </xs:annotation>
  454. </xs:element>
  455. <xs:element minOccurs="0"
  456. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  457. id="lokalizacje___d4e8292-1">
  458. <xs:annotation>
  459. <xs:appinfo>
  460. <system_cache__appinfo:flat_relation_cache>
  461. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  462. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  463. </system_cache__appinfo:flat_relation_cache>
  464. </xs:appinfo>
  465. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  466. </xs:annotation>
  467. </xs:element>
  468. <xs:element minOccurs="0"
  469. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  470. id="lokalizacje___d4e8300-1">
  471. <xs:annotation>
  472. <xs:appinfo>
  473. <system_cache__appinfo:flat_relation_cache>
  474. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  475. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  476. </system_cache__appinfo:flat_relation_cache>
  477. </xs:appinfo>
  478. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  479. </xs:annotation>
  480. </xs:element>
  481. </xs:sequence>
  482. </xs:restriction>
  483. </xs:complexContent>
  484. </xs:complexType>
  485. <xs:element name="Rozdzielcza_lokalizacje_PROJEKT"
  486. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_PROJEKT"
  487. id="Rozdzie_Rozd_d4e5572">
  488. <xs:annotation>
  489. <xs:documentation>Zaprojektowany - został wydrukowany projekt dla danego rekordu</xs:documentation>
  490. </xs:annotation>
  491. </xs:element>
  492. <xs:complexType name="Rozdzielcza_lokalizacje_DO_REALIZ" id="Rozdzie_Rozd_d4e5576">
  493. <xs:complexContent id="lokalizacje___d4e8312-1">
  494. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_PROJEKT">
  495. <xs:sequence id="Rozdzielcza_lo_d4e5579">
  496. <xs:element name="the_geom"
  497. type="gml:AbstractFeatureType"
  498. id="lokalizacje___d4e8315-1_the_geom"/>
  499. <xs:element name="A_STATUS_INFO"
  500. type="xs:string"
  501. id="lokalizacje___d4e8316-1_A_STATUS_I"/>
  502. <xs:element name="Dlugosc"
  503. type="xs:double"
  504. id="lokalizacje___d4e8317-1_Dlugosc"/>
  505. <xs:element name="Powierzchnia"
  506. type="xs:double"
  507. id="lokalizacje___d4e8318-1_Powierzchn"/>
  508. <xs:element name="L_APPOITMENT_USER"
  509. type="xs:string"
  510. id="lokalizacje___d4e8319-1_L_APPOITME"/>
  511. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  512. id="lokalizacje___d4e8320-1">
  513. <xs:annotation>
  514. <xs:appinfo>
  515. <system_cache__appinfo:flat_relation_cache>
  516. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  517. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  518. </system_cache__appinfo:flat_relation_cache>
  519. </xs:appinfo>
  520. </xs:annotation>
  521. </xs:element>
  522. <xs:element name="A_CLASSIFIED"
  523. type="xs:string"
  524. id="lokalizacje___d4e8325-1_A_CLASSIFI"/>
  525. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  526. id="lokalizacje___d4e8326-1">
  527. <xs:annotation>
  528. <xs:appinfo>
  529. <system_cache__appinfo:flat_relation_cache>
  530. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  531. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  532. </system_cache__appinfo:flat_relation_cache>
  533. </xs:appinfo>
  534. </xs:annotation>
  535. </xs:element>
  536. <xs:element name="A_ADM_COMPANY"
  537. type="xs:string"
  538. id="lokalizacje___d4e8331-1_A_ADM_COMP"/>
  539. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  540. id="lokalizacje___d4e8332-1">
  541. <xs:annotation>
  542. <xs:appinfo>
  543. <system_cache__appinfo:flat_relation_cache>
  544. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  545. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  546. </system_cache__appinfo:flat_relation_cache>
  547. </xs:appinfo>
  548. </xs:annotation>
  549. </xs:element>
  550. <xs:element name="ID_PROJECT"
  551. type="xs:int"
  552. id="lokalizacje___d4e8337-1_ID_PROJECT"/>
  553. <xs:element minOccurs="0"
  554. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  555. id="lokalizacje___d4e8339-1">
  556. <xs:annotation>
  557. <xs:appinfo>
  558. <system_cache__appinfo:flat_relation_cache>
  559. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  560. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  561. </system_cache__appinfo:flat_relation_cache>
  562. </xs:appinfo>
  563. </xs:annotation>
  564. </xs:element>
  565. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  566. id="lokalizacje___d4e8344-1">
  567. <xs:annotation>
  568. <xs:appinfo>
  569. <system_cache__appinfo:flat_relation_cache>
  570. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  571. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  572. </system_cache__appinfo:flat_relation_cache>
  573. </xs:appinfo>
  574. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  575. </xs:annotation>
  576. </xs:element>
  577. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  578. id="lokalizacje___d4e8351-1">
  579. <xs:annotation>
  580. <xs:appinfo>
  581. <system_cache__appinfo:flat_relation_cache>
  582. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  583. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  584. </system_cache__appinfo:flat_relation_cache>
  585. </xs:appinfo>
  586. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  587. </xs:annotation>
  588. </xs:element>
  589. <xs:element minOccurs="0"
  590. maxOccurs="unbounded"
  591. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  592. id="lokalizacje___d4e8358-1">
  593. <xs:annotation>
  594. <xs:appinfo>
  595. <system_cache__appinfo:flat_relation_cache>
  596. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  597. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  598. </system_cache__appinfo:flat_relation_cache>
  599. </xs:appinfo>
  600. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  601. </xs:annotation>
  602. </xs:element>
  603. <xs:element minOccurs="0"
  604. maxOccurs="unbounded"
  605. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  606. id="lokalizacje___d4e8365-1">
  607. <xs:annotation>
  608. <xs:appinfo>
  609. <system_cache__appinfo:flat_relation_cache>
  610. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  611. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  612. </system_cache__appinfo:flat_relation_cache>
  613. </xs:appinfo>
  614. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  615. </xs:annotation>
  616. </xs:element>
  617. <xs:element minOccurs="0"
  618. maxOccurs="unbounded"
  619. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  620. id="lokalizacje___d4e8372-1">
  621. <xs:annotation>
  622. <xs:appinfo>
  623. <system_cache__appinfo:flat_relation_cache>
  624. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  625. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  626. </system_cache__appinfo:flat_relation_cache>
  627. </xs:appinfo>
  628. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  629. </xs:annotation>
  630. </xs:element>
  631. <xs:element minOccurs="0"
  632. maxOccurs="unbounded"
  633. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  634. id="lokalizacje___d4e8379-1">
  635. <xs:annotation>
  636. <xs:appinfo>
  637. <system_cache__appinfo:flat_relation_cache>
  638. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  639. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  640. </system_cache__appinfo:flat_relation_cache>
  641. </xs:appinfo>
  642. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  643. </xs:annotation>
  644. </xs:element>
  645. <xs:element minOccurs="0"
  646. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  647. id="lokalizacje___d4e8386-1">
  648. <xs:annotation>
  649. <xs:appinfo>
  650. <system_cache__appinfo:flat_relation_cache>
  651. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  652. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  653. </system_cache__appinfo:flat_relation_cache>
  654. </xs:appinfo>
  655. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  656. </xs:annotation>
  657. </xs:element>
  658. <xs:element minOccurs="0"
  659. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  660. id="lokalizacje___d4e8393-1">
  661. <xs:annotation>
  662. <xs:appinfo>
  663. <system_cache__appinfo:flat_relation_cache>
  664. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  665. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  666. </system_cache__appinfo:flat_relation_cache>
  667. </xs:appinfo>
  668. <xs:documentation>Czy jest zlecenie</xs:documentation>
  669. </xs:annotation>
  670. </xs:element>
  671. <xs:element minOccurs="0"
  672. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  673. id="lokalizacje___d4e8400-1">
  674. <xs:annotation>
  675. <xs:appinfo>
  676. <system_cache__appinfo:flat_relation_cache>
  677. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  678. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  679. </system_cache__appinfo:flat_relation_cache>
  680. </xs:appinfo>
  681. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  682. </xs:annotation>
  683. </xs:element>
  684. <xs:element minOccurs="0"
  685. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  686. id="lokalizacje___d4e8407-1">
  687. <xs:annotation>
  688. <xs:appinfo>
  689. <system_cache__appinfo:flat_relation_cache>
  690. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  691. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  692. </system_cache__appinfo:flat_relation_cache>
  693. </xs:appinfo>
  694. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  695. </xs:annotation>
  696. </xs:element>
  697. <xs:element minOccurs="0"
  698. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  699. id="lokalizacje___d4e8415-1">
  700. <xs:annotation>
  701. <xs:appinfo>
  702. <system_cache__appinfo:flat_relation_cache>
  703. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  704. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  705. </system_cache__appinfo:flat_relation_cache>
  706. </xs:appinfo>
  707. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  708. </xs:annotation>
  709. </xs:element>
  710. </xs:sequence>
  711. </xs:restriction>
  712. </xs:complexContent>
  713. </xs:complexType>
  714. <xs:element name="Rozdzielcza_lokalizacje_DO_REALIZ"
  715. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_DO_REALIZ"
  716. id="Rozdzie_Rozd_d4e5693"/>
  717. <xs:complexType name="Rozdzielcza_lokalizacje_OFFER" id="Rozdzie_Rozd_d4e5694">
  718. <xs:annotation>
  719. <xs:documentation>Obiekt, na ktory otryzmalismy oferte</xs:documentation>
  720. </xs:annotation>
  721. <xs:complexContent id="lokalizacje___d4e8428-1">
  722. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_PROJEKT">
  723. <xs:sequence id="Rozdzielcza_lo_d4e5700">
  724. <xs:element name="the_geom"
  725. type="gml:AbstractFeatureType"
  726. id="lokalizacje___d4e8431-1_the_geom"/>
  727. <xs:element name="A_STATUS_INFO"
  728. type="xs:string"
  729. id="lokalizacje___d4e8432-1_A_STATUS_I"/>
  730. <xs:element name="Dlugosc"
  731. type="xs:double"
  732. id="lokalizacje___d4e8433-1_Dlugosc"/>
  733. <xs:element name="Powierzchnia"
  734. type="xs:double"
  735. id="lokalizacje___d4e8434-1_Powierzchn"/>
  736. <xs:element name="L_APPOITMENT_USER"
  737. type="xs:string"
  738. id="lokalizacje___d4e8435-1_L_APPOITME"/>
  739. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  740. id="lokalizacje___d4e8436-1">
  741. <xs:annotation>
  742. <xs:appinfo>
  743. <system_cache__appinfo:flat_relation_cache>
  744. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  745. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  746. </system_cache__appinfo:flat_relation_cache>
  747. </xs:appinfo>
  748. </xs:annotation>
  749. </xs:element>
  750. <xs:element name="A_CLASSIFIED"
  751. type="xs:string"
  752. id="lokalizacje___d4e8441-1_A_CLASSIFI"/>
  753. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  754. id="lokalizacje___d4e8442-1">
  755. <xs:annotation>
  756. <xs:appinfo>
  757. <system_cache__appinfo:flat_relation_cache>
  758. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  759. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  760. </system_cache__appinfo:flat_relation_cache>
  761. </xs:appinfo>
  762. </xs:annotation>
  763. </xs:element>
  764. <xs:element name="A_ADM_COMPANY"
  765. type="xs:string"
  766. id="lokalizacje___d4e8447-1_A_ADM_COMP"/>
  767. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  768. id="lokalizacje___d4e8448-1">
  769. <xs:annotation>
  770. <xs:appinfo>
  771. <system_cache__appinfo:flat_relation_cache>
  772. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  773. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  774. </system_cache__appinfo:flat_relation_cache>
  775. </xs:appinfo>
  776. </xs:annotation>
  777. </xs:element>
  778. <xs:element name="ID_PROJECT"
  779. type="xs:int"
  780. id="lokalizacje___d4e8453-1_ID_PROJECT"/>
  781. <xs:element minOccurs="0"
  782. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  783. id="lokalizacje___d4e8455-1">
  784. <xs:annotation>
  785. <xs:appinfo>
  786. <system_cache__appinfo:flat_relation_cache>
  787. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  788. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  789. </system_cache__appinfo:flat_relation_cache>
  790. </xs:appinfo>
  791. </xs:annotation>
  792. </xs:element>
  793. <xs:element maxOccurs="unbounded"
  794. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  795. id="lokalizacje___d4e8460-1">
  796. <xs:annotation>
  797. <xs:appinfo>
  798. <system_cache__appinfo:flat_relation_cache>
  799. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  800. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  801. </system_cache__appinfo:flat_relation_cache>
  802. </xs:appinfo>
  803. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  804. </xs:annotation>
  805. </xs:element>
  806. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  807. id="lokalizacje___d4e8467-1">
  808. <xs:annotation>
  809. <xs:appinfo>
  810. <system_cache__appinfo:flat_relation_cache>
  811. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  812. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  813. </system_cache__appinfo:flat_relation_cache>
  814. </xs:appinfo>
  815. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  816. </xs:annotation>
  817. </xs:element>
  818. <xs:element minOccurs="1"
  819. maxOccurs="unbounded"
  820. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  821. id="lokalizacje___d4e8474-1">
  822. <xs:annotation>
  823. <xs:appinfo>
  824. <system_cache__appinfo:flat_relation_cache>
  825. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  826. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  827. </system_cache__appinfo:flat_relation_cache>
  828. </xs:appinfo>
  829. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  830. </xs:annotation>
  831. </xs:element>
  832. <xs:element minOccurs="0"
  833. maxOccurs="unbounded"
  834. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  835. id="lokalizacje___d4e8481-1">
  836. <xs:annotation>
  837. <xs:appinfo>
  838. <system_cache__appinfo:flat_relation_cache>
  839. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  840. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  841. </system_cache__appinfo:flat_relation_cache>
  842. </xs:appinfo>
  843. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  844. </xs:annotation>
  845. </xs:element>
  846. <xs:element minOccurs="0"
  847. maxOccurs="unbounded"
  848. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  849. id="lokalizacje___d4e8488-1">
  850. <xs:annotation>
  851. <xs:appinfo>
  852. <system_cache__appinfo:flat_relation_cache>
  853. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  854. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  855. </system_cache__appinfo:flat_relation_cache>
  856. </xs:appinfo>
  857. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  858. </xs:annotation>
  859. </xs:element>
  860. <xs:element minOccurs="0"
  861. maxOccurs="unbounded"
  862. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  863. id="lokalizacje___d4e8495-1">
  864. <xs:annotation>
  865. <xs:appinfo>
  866. <system_cache__appinfo:flat_relation_cache>
  867. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  868. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  869. </system_cache__appinfo:flat_relation_cache>
  870. </xs:appinfo>
  871. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  872. </xs:annotation>
  873. </xs:element>
  874. <xs:element minOccurs="0"
  875. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  876. id="lokalizacje___d4e8502-1">
  877. <xs:annotation>
  878. <xs:appinfo>
  879. <system_cache__appinfo:flat_relation_cache>
  880. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  881. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  882. </system_cache__appinfo:flat_relation_cache>
  883. </xs:appinfo>
  884. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  885. </xs:annotation>
  886. </xs:element>
  887. <xs:element minOccurs="0"
  888. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  889. id="lokalizacje___d4e8509-1">
  890. <xs:annotation>
  891. <xs:appinfo>
  892. <system_cache__appinfo:flat_relation_cache>
  893. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  894. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  895. </system_cache__appinfo:flat_relation_cache>
  896. </xs:appinfo>
  897. <xs:documentation>Czy jest zlecenie</xs:documentation>
  898. </xs:annotation>
  899. </xs:element>
  900. <xs:element minOccurs="0"
  901. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  902. id="lokalizacje___d4e8516-1">
  903. <xs:annotation>
  904. <xs:appinfo>
  905. <system_cache__appinfo:flat_relation_cache>
  906. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  907. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  908. </system_cache__appinfo:flat_relation_cache>
  909. </xs:appinfo>
  910. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  911. </xs:annotation>
  912. </xs:element>
  913. <xs:element minOccurs="0"
  914. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  915. id="lokalizacje___d4e8523-1">
  916. <xs:annotation>
  917. <xs:appinfo>
  918. <system_cache__appinfo:flat_relation_cache>
  919. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  920. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  921. </system_cache__appinfo:flat_relation_cache>
  922. </xs:appinfo>
  923. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  924. </xs:annotation>
  925. </xs:element>
  926. <xs:element minOccurs="0"
  927. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  928. id="lokalizacje___d4e8531-1">
  929. <xs:annotation>
  930. <xs:appinfo>
  931. <system_cache__appinfo:flat_relation_cache>
  932. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  933. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  934. </system_cache__appinfo:flat_relation_cache>
  935. </xs:appinfo>
  936. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  937. </xs:annotation>
  938. </xs:element>
  939. </xs:sequence>
  940. </xs:restriction>
  941. </xs:complexContent>
  942. </xs:complexType>
  943. <xs:element name="Rozdzielcza_lokalizacje_OFFER"
  944. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_OFFER"
  945. id="Rozdzie_Rozd_d4e5813"/>
  946. <xs:complexType name="Rozdzielcza_lokalizacje_DO_UZG" id="Rozdzie_Rozd_d4e5814">
  947. <xs:complexContent id="lokalizacje___d4e8540-1">
  948. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_DO_REALIZ">
  949. <xs:sequence id="Rozdzielcza_lo_d4e5817">
  950. <xs:element name="the_geom"
  951. type="gml:AbstractFeatureType"
  952. id="lokalizacje___d4e8543-1_the_geom"/>
  953. <xs:element name="A_STATUS_INFO"
  954. type="xs:string"
  955. id="lokalizacje___d4e8544-1_A_STATUS_I"/>
  956. <xs:element name="Dlugosc"
  957. type="xs:double"
  958. id="lokalizacje___d4e8545-1_Dlugosc"/>
  959. <xs:element name="Powierzchnia"
  960. type="xs:double"
  961. id="lokalizacje___d4e8546-1_Powierzchn"/>
  962. <xs:element name="L_APPOITMENT_USER"
  963. type="xs:string"
  964. id="lokalizacje___d4e8547-1_L_APPOITME"/>
  965. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  966. id="lokalizacje___d4e8548-1">
  967. <xs:annotation>
  968. <xs:appinfo>
  969. <system_cache__appinfo:flat_relation_cache>
  970. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  971. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  972. </system_cache__appinfo:flat_relation_cache>
  973. </xs:appinfo>
  974. </xs:annotation>
  975. </xs:element>
  976. <xs:element name="A_CLASSIFIED"
  977. type="xs:string"
  978. id="lokalizacje___d4e8553-1_A_CLASSIFI"/>
  979. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  980. id="lokalizacje___d4e8554-1">
  981. <xs:annotation>
  982. <xs:appinfo>
  983. <system_cache__appinfo:flat_relation_cache>
  984. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  985. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  986. </system_cache__appinfo:flat_relation_cache>
  987. </xs:appinfo>
  988. </xs:annotation>
  989. </xs:element>
  990. <xs:element name="A_ADM_COMPANY"
  991. type="xs:string"
  992. id="lokalizacje___d4e8559-1_A_ADM_COMP"/>
  993. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  994. id="lokalizacje___d4e8560-1">
  995. <xs:annotation>
  996. <xs:appinfo>
  997. <system_cache__appinfo:flat_relation_cache>
  998. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  999. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1000. </system_cache__appinfo:flat_relation_cache>
  1001. </xs:appinfo>
  1002. </xs:annotation>
  1003. </xs:element>
  1004. <xs:element name="ID_PROJECT"
  1005. type="xs:int"
  1006. id="lokalizacje___d4e8565-1_ID_PROJECT"/>
  1007. <xs:element minOccurs="0"
  1008. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1009. id="lokalizacje___d4e8567-1">
  1010. <xs:annotation>
  1011. <xs:appinfo>
  1012. <system_cache__appinfo:flat_relation_cache>
  1013. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1014. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1015. </system_cache__appinfo:flat_relation_cache>
  1016. </xs:appinfo>
  1017. </xs:annotation>
  1018. </xs:element>
  1019. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1020. id="lokalizacje___d4e8572-1">
  1021. <xs:annotation>
  1022. <xs:appinfo>
  1023. <system_cache__appinfo:flat_relation_cache>
  1024. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1025. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1026. </system_cache__appinfo:flat_relation_cache>
  1027. </xs:appinfo>
  1028. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1029. </xs:annotation>
  1030. </xs:element>
  1031. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1032. id="lokalizacje___d4e8579-1">
  1033. <xs:annotation>
  1034. <xs:appinfo>
  1035. <system_cache__appinfo:flat_relation_cache>
  1036. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1037. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1038. </system_cache__appinfo:flat_relation_cache>
  1039. </xs:appinfo>
  1040. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1041. </xs:annotation>
  1042. </xs:element>
  1043. <xs:element minOccurs="0"
  1044. maxOccurs="unbounded"
  1045. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1046. id="lokalizacje___d4e8586-1">
  1047. <xs:annotation>
  1048. <xs:appinfo>
  1049. <system_cache__appinfo:flat_relation_cache>
  1050. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1051. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1052. </system_cache__appinfo:flat_relation_cache>
  1053. </xs:appinfo>
  1054. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1055. </xs:annotation>
  1056. </xs:element>
  1057. <xs:element minOccurs="1"
  1058. maxOccurs="unbounded"
  1059. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1060. id="lokalizacje___d4e8593-1">
  1061. <xs:annotation>
  1062. <xs:appinfo>
  1063. <system_cache__appinfo:flat_relation_cache>
  1064. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1065. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1066. </system_cache__appinfo:flat_relation_cache>
  1067. </xs:appinfo>
  1068. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1069. </xs:annotation>
  1070. </xs:element>
  1071. <xs:element minOccurs="0"
  1072. maxOccurs="unbounded"
  1073. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1074. id="lokalizacje___d4e8600-1">
  1075. <xs:annotation>
  1076. <xs:appinfo>
  1077. <system_cache__appinfo:flat_relation_cache>
  1078. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1079. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1080. </system_cache__appinfo:flat_relation_cache>
  1081. </xs:appinfo>
  1082. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  1083. </xs:annotation>
  1084. </xs:element>
  1085. <xs:element minOccurs="0"
  1086. maxOccurs="unbounded"
  1087. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1088. id="lokalizacje___d4e8607-1">
  1089. <xs:annotation>
  1090. <xs:appinfo>
  1091. <system_cache__appinfo:flat_relation_cache>
  1092. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1093. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1094. </system_cache__appinfo:flat_relation_cache>
  1095. </xs:appinfo>
  1096. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  1097. </xs:annotation>
  1098. </xs:element>
  1099. <xs:element minOccurs="0"
  1100. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1101. id="lokalizacje___d4e8614-1">
  1102. <xs:annotation>
  1103. <xs:appinfo>
  1104. <system_cache__appinfo:flat_relation_cache>
  1105. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1106. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1107. </system_cache__appinfo:flat_relation_cache>
  1108. </xs:appinfo>
  1109. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1110. </xs:annotation>
  1111. </xs:element>
  1112. <xs:element minOccurs="0"
  1113. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1114. id="lokalizacje___d4e8621-1">
  1115. <xs:annotation>
  1116. <xs:appinfo>
  1117. <system_cache__appinfo:flat_relation_cache>
  1118. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1119. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1120. </system_cache__appinfo:flat_relation_cache>
  1121. </xs:appinfo>
  1122. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1123. </xs:annotation>
  1124. </xs:element>
  1125. <xs:element minOccurs="0"
  1126. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1127. id="lokalizacje___d4e8628-1">
  1128. <xs:annotation>
  1129. <xs:appinfo>
  1130. <system_cache__appinfo:flat_relation_cache>
  1131. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1132. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1133. </system_cache__appinfo:flat_relation_cache>
  1134. </xs:appinfo>
  1135. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  1136. </xs:annotation>
  1137. </xs:element>
  1138. <xs:element minOccurs="0"
  1139. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1140. id="lokalizacje___d4e8635-1">
  1141. <xs:annotation>
  1142. <xs:appinfo>
  1143. <system_cache__appinfo:flat_relation_cache>
  1144. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1145. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1146. </system_cache__appinfo:flat_relation_cache>
  1147. </xs:appinfo>
  1148. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  1149. </xs:annotation>
  1150. </xs:element>
  1151. <xs:element minOccurs="0"
  1152. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1153. id="lokalizacje___d4e8643-1">
  1154. <xs:annotation>
  1155. <xs:appinfo>
  1156. <system_cache__appinfo:flat_relation_cache>
  1157. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1158. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1159. </system_cache__appinfo:flat_relation_cache>
  1160. </xs:appinfo>
  1161. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  1162. </xs:annotation>
  1163. </xs:element>
  1164. </xs:sequence>
  1165. </xs:restriction>
  1166. </xs:complexContent>
  1167. </xs:complexType>
  1168. <xs:element name="Rozdzielcza_lokalizacje_DO_UZG"
  1169. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_DO_UZG"
  1170. id="Rozdzie_Rozd_d4e5930">
  1171. <xs:annotation>
  1172. <xs:documentation>Taki co wyszedl do uzgodnien z wlascicielem nieruchomosci / dzialki
  1173. </xs:documentation>
  1174. </xs:annotation>
  1175. </xs:element>
  1176. <xs:complexType name="Rozdzielcza_lokalizacje_UZG" id="Rozdzie_Rozd_d4e5934">
  1177. <xs:annotation>
  1178. <xs:documentation>Został uzgodniony, bo otrzymalismy dokument z uzogdnieniem pozytywnym</xs:documentation>
  1179. </xs:annotation>
  1180. <xs:complexContent id="lokalizacje___d4e8658-1">
  1181. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_DO_REALIZ">
  1182. <xs:sequence id="Rozdzielcza_lo_d4e5940">
  1183. <xs:element name="the_geom"
  1184. type="gml:AbstractFeatureType"
  1185. id="lokalizacje___d4e8661-1_the_geom"/>
  1186. <xs:element name="A_STATUS_INFO"
  1187. type="xs:string"
  1188. id="lokalizacje___d4e8662-1_A_STATUS_I"/>
  1189. <xs:element name="Dlugosc"
  1190. type="xs:double"
  1191. id="lokalizacje___d4e8663-1_Dlugosc"/>
  1192. <xs:element name="Powierzchnia"
  1193. type="xs:double"
  1194. id="lokalizacje___d4e8664-1_Powierzchn"/>
  1195. <xs:element name="L_APPOITMENT_USER"
  1196. type="xs:string"
  1197. id="lokalizacje___d4e8665-1_L_APPOITME"/>
  1198. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  1199. id="lokalizacje___d4e8666-1">
  1200. <xs:annotation>
  1201. <xs:appinfo>
  1202. <system_cache__appinfo:flat_relation_cache>
  1203. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1204. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  1205. </system_cache__appinfo:flat_relation_cache>
  1206. </xs:appinfo>
  1207. </xs:annotation>
  1208. </xs:element>
  1209. <xs:element name="A_CLASSIFIED"
  1210. type="xs:string"
  1211. id="lokalizacje___d4e8671-1_A_CLASSIFI"/>
  1212. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  1213. id="lokalizacje___d4e8672-1">
  1214. <xs:annotation>
  1215. <xs:appinfo>
  1216. <system_cache__appinfo:flat_relation_cache>
  1217. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1218. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  1219. </system_cache__appinfo:flat_relation_cache>
  1220. </xs:appinfo>
  1221. </xs:annotation>
  1222. </xs:element>
  1223. <xs:element name="A_ADM_COMPANY"
  1224. type="xs:string"
  1225. id="lokalizacje___d4e8677-1_A_ADM_COMP"/>
  1226. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  1227. id="lokalizacje___d4e8678-1">
  1228. <xs:annotation>
  1229. <xs:appinfo>
  1230. <system_cache__appinfo:flat_relation_cache>
  1231. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1232. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1233. </system_cache__appinfo:flat_relation_cache>
  1234. </xs:appinfo>
  1235. </xs:annotation>
  1236. </xs:element>
  1237. <xs:element name="ID_PROJECT"
  1238. type="xs:int"
  1239. id="lokalizacje___d4e8683-1_ID_PROJECT"/>
  1240. <xs:element minOccurs="0"
  1241. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1242. id="lokalizacje___d4e8685-1">
  1243. <xs:annotation>
  1244. <xs:appinfo>
  1245. <system_cache__appinfo:flat_relation_cache>
  1246. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1247. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1248. </system_cache__appinfo:flat_relation_cache>
  1249. </xs:appinfo>
  1250. </xs:annotation>
  1251. </xs:element>
  1252. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1253. id="lokalizacje___d4e8690-1">
  1254. <xs:annotation>
  1255. <xs:appinfo>
  1256. <system_cache__appinfo:flat_relation_cache>
  1257. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1258. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1259. </system_cache__appinfo:flat_relation_cache>
  1260. </xs:appinfo>
  1261. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1262. </xs:annotation>
  1263. </xs:element>
  1264. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1265. id="lokalizacje___d4e8697-1">
  1266. <xs:annotation>
  1267. <xs:appinfo>
  1268. <system_cache__appinfo:flat_relation_cache>
  1269. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1270. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1271. </system_cache__appinfo:flat_relation_cache>
  1272. </xs:appinfo>
  1273. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1274. </xs:annotation>
  1275. </xs:element>
  1276. <xs:element minOccurs="0"
  1277. maxOccurs="unbounded"
  1278. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1279. id="lokalizacje___d4e8704-1">
  1280. <xs:annotation>
  1281. <xs:appinfo>
  1282. <system_cache__appinfo:flat_relation_cache>
  1283. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1284. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1285. </system_cache__appinfo:flat_relation_cache>
  1286. </xs:appinfo>
  1287. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1288. </xs:annotation>
  1289. </xs:element>
  1290. <xs:element minOccurs="0"
  1291. maxOccurs="unbounded"
  1292. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1293. id="lokalizacje___d4e8711-1">
  1294. <xs:annotation>
  1295. <xs:appinfo>
  1296. <system_cache__appinfo:flat_relation_cache>
  1297. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1298. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1299. </system_cache__appinfo:flat_relation_cache>
  1300. </xs:appinfo>
  1301. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1302. </xs:annotation>
  1303. </xs:element>
  1304. <xs:element minOccurs="0"
  1305. maxOccurs="unbounded"
  1306. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1307. id="lokalizacje___d4e8718-1">
  1308. <xs:annotation>
  1309. <xs:appinfo>
  1310. <system_cache__appinfo:flat_relation_cache>
  1311. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1312. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1313. </system_cache__appinfo:flat_relation_cache>
  1314. </xs:appinfo>
  1315. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1316. </xs:annotation>
  1317. </xs:element>
  1318. <xs:element minOccurs="0"
  1319. maxOccurs="unbounded"
  1320. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1321. id="lokalizacje___d4e8725-1">
  1322. <xs:annotation>
  1323. <xs:appinfo>
  1324. <system_cache__appinfo:flat_relation_cache>
  1325. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1326. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1327. </system_cache__appinfo:flat_relation_cache>
  1328. </xs:appinfo>
  1329. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  1330. </xs:annotation>
  1331. </xs:element>
  1332. <xs:element minOccurs="0"
  1333. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1334. id="lokalizacje___d4e8732-1">
  1335. <xs:annotation>
  1336. <xs:appinfo>
  1337. <system_cache__appinfo:flat_relation_cache>
  1338. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1339. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1340. </system_cache__appinfo:flat_relation_cache>
  1341. </xs:appinfo>
  1342. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  1343. </xs:annotation>
  1344. </xs:element>
  1345. <xs:element minOccurs="0"
  1346. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1347. id="lokalizacje___d4e8739-1">
  1348. <xs:annotation>
  1349. <xs:appinfo>
  1350. <system_cache__appinfo:flat_relation_cache>
  1351. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1352. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1353. </system_cache__appinfo:flat_relation_cache>
  1354. </xs:appinfo>
  1355. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1356. </xs:annotation>
  1357. </xs:element>
  1358. <xs:element minOccurs="0"
  1359. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1360. id="lokalizacje___d4e8746-1">
  1361. <xs:annotation>
  1362. <xs:appinfo>
  1363. <system_cache__appinfo:flat_relation_cache>
  1364. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1365. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1366. </system_cache__appinfo:flat_relation_cache>
  1367. </xs:appinfo>
  1368. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  1369. </xs:annotation>
  1370. </xs:element>
  1371. <xs:element minOccurs="0"
  1372. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1373. id="lokalizacje___d4e8753-1">
  1374. <xs:annotation>
  1375. <xs:appinfo>
  1376. <system_cache__appinfo:flat_relation_cache>
  1377. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1378. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1379. </system_cache__appinfo:flat_relation_cache>
  1380. </xs:appinfo>
  1381. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  1382. </xs:annotation>
  1383. </xs:element>
  1384. <xs:element minOccurs="0"
  1385. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1386. id="lokalizacje___d4e8761-1">
  1387. <xs:annotation>
  1388. <xs:appinfo>
  1389. <system_cache__appinfo:flat_relation_cache>
  1390. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1391. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1392. </system_cache__appinfo:flat_relation_cache>
  1393. </xs:appinfo>
  1394. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  1395. </xs:annotation>
  1396. </xs:element>
  1397. </xs:sequence>
  1398. </xs:restriction>
  1399. </xs:complexContent>
  1400. </xs:complexType>
  1401. <xs:element name="Rozdzielcza_lokalizacje_UZG"
  1402. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_UZG"
  1403. id="Rozdzie_Rozd_d4e6053"/>
  1404. <xs:complexType name="Rozdzielcza_lokalizacje_DO_UZG_ZUD" id="Rozdzie_Rozd_d4e6054">
  1405. <xs:complexContent id="lokalizacje___d4e8770-1">
  1406. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_DO_REALIZ">
  1407. <xs:sequence id="Rozdzielcza_lo_d4e6057">
  1408. <xs:element name="the_geom"
  1409. type="gml:AbstractFeatureType"
  1410. id="lokalizacje___d4e8773-1_the_geom"/>
  1411. <xs:element name="A_STATUS_INFO"
  1412. type="xs:string"
  1413. id="lokalizacje___d4e8774-1_A_STATUS_I"/>
  1414. <xs:element name="Dlugosc"
  1415. type="xs:double"
  1416. id="lokalizacje___d4e8775-1_Dlugosc"/>
  1417. <xs:element name="Powierzchnia"
  1418. type="xs:double"
  1419. id="lokalizacje___d4e8776-1_Powierzchn"/>
  1420. <xs:element name="L_APPOITMENT_USER"
  1421. type="xs:string"
  1422. id="lokalizacje___d4e8777-1_L_APPOITME"/>
  1423. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  1424. id="lokalizacje___d4e8778-1">
  1425. <xs:annotation>
  1426. <xs:appinfo>
  1427. <system_cache__appinfo:flat_relation_cache>
  1428. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1429. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  1430. </system_cache__appinfo:flat_relation_cache>
  1431. </xs:appinfo>
  1432. </xs:annotation>
  1433. </xs:element>
  1434. <xs:element name="A_CLASSIFIED"
  1435. type="xs:string"
  1436. id="lokalizacje___d4e8783-1_A_CLASSIFI"/>
  1437. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  1438. id="lokalizacje___d4e8784-1">
  1439. <xs:annotation>
  1440. <xs:appinfo>
  1441. <system_cache__appinfo:flat_relation_cache>
  1442. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1443. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  1444. </system_cache__appinfo:flat_relation_cache>
  1445. </xs:appinfo>
  1446. </xs:annotation>
  1447. </xs:element>
  1448. <xs:element name="A_ADM_COMPANY"
  1449. type="xs:string"
  1450. id="lokalizacje___d4e8789-1_A_ADM_COMP"/>
  1451. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  1452. id="lokalizacje___d4e8790-1">
  1453. <xs:annotation>
  1454. <xs:appinfo>
  1455. <system_cache__appinfo:flat_relation_cache>
  1456. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1457. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1458. </system_cache__appinfo:flat_relation_cache>
  1459. </xs:appinfo>
  1460. </xs:annotation>
  1461. </xs:element>
  1462. <xs:element name="ID_PROJECT"
  1463. type="xs:int"
  1464. id="lokalizacje___d4e8795-1_ID_PROJECT"/>
  1465. <xs:element minOccurs="0"
  1466. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1467. id="lokalizacje___d4e8797-1">
  1468. <xs:annotation>
  1469. <xs:appinfo>
  1470. <system_cache__appinfo:flat_relation_cache>
  1471. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1472. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1473. </system_cache__appinfo:flat_relation_cache>
  1474. </xs:appinfo>
  1475. </xs:annotation>
  1476. </xs:element>
  1477. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1478. id="lokalizacje___d4e8802-1">
  1479. <xs:annotation>
  1480. <xs:appinfo>
  1481. <system_cache__appinfo:flat_relation_cache>
  1482. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1483. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1484. </system_cache__appinfo:flat_relation_cache>
  1485. </xs:appinfo>
  1486. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1487. </xs:annotation>
  1488. </xs:element>
  1489. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1490. id="lokalizacje___d4e8809-1">
  1491. <xs:annotation>
  1492. <xs:appinfo>
  1493. <system_cache__appinfo:flat_relation_cache>
  1494. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1495. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1496. </system_cache__appinfo:flat_relation_cache>
  1497. </xs:appinfo>
  1498. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1499. </xs:annotation>
  1500. </xs:element>
  1501. <xs:element minOccurs="0"
  1502. maxOccurs="unbounded"
  1503. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1504. id="lokalizacje___d4e8816-1">
  1505. <xs:annotation>
  1506. <xs:appinfo>
  1507. <system_cache__appinfo:flat_relation_cache>
  1508. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1509. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1510. </system_cache__appinfo:flat_relation_cache>
  1511. </xs:appinfo>
  1512. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1513. </xs:annotation>
  1514. </xs:element>
  1515. <xs:element minOccurs="0"
  1516. maxOccurs="unbounded"
  1517. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1518. id="lokalizacje___d4e8823-1">
  1519. <xs:annotation>
  1520. <xs:appinfo>
  1521. <system_cache__appinfo:flat_relation_cache>
  1522. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1523. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1524. </system_cache__appinfo:flat_relation_cache>
  1525. </xs:appinfo>
  1526. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1527. </xs:annotation>
  1528. </xs:element>
  1529. <xs:element minOccurs="0"
  1530. maxOccurs="unbounded"
  1531. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1532. id="lokalizacje___d4e8830-1">
  1533. <xs:annotation>
  1534. <xs:appinfo>
  1535. <system_cache__appinfo:flat_relation_cache>
  1536. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1537. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1538. </system_cache__appinfo:flat_relation_cache>
  1539. </xs:appinfo>
  1540. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  1541. </xs:annotation>
  1542. </xs:element>
  1543. <xs:element minOccurs="1"
  1544. maxOccurs="unbounded"
  1545. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1546. id="lokalizacje___d4e8837-1">
  1547. <xs:annotation>
  1548. <xs:appinfo>
  1549. <system_cache__appinfo:flat_relation_cache>
  1550. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1551. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1552. </system_cache__appinfo:flat_relation_cache>
  1553. </xs:appinfo>
  1554. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  1555. </xs:annotation>
  1556. </xs:element>
  1557. <xs:element minOccurs="0"
  1558. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1559. id="lokalizacje___d4e8844-1">
  1560. <xs:annotation>
  1561. <xs:appinfo>
  1562. <system_cache__appinfo:flat_relation_cache>
  1563. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1564. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1565. </system_cache__appinfo:flat_relation_cache>
  1566. </xs:appinfo>
  1567. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1568. </xs:annotation>
  1569. </xs:element>
  1570. <xs:element minOccurs="0"
  1571. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1572. id="lokalizacje___d4e8851-1">
  1573. <xs:annotation>
  1574. <xs:appinfo>
  1575. <system_cache__appinfo:flat_relation_cache>
  1576. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1577. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1578. </system_cache__appinfo:flat_relation_cache>
  1579. </xs:appinfo>
  1580. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1581. </xs:annotation>
  1582. </xs:element>
  1583. <xs:element minOccurs="0"
  1584. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1585. id="lokalizacje___d4e8858-1">
  1586. <xs:annotation>
  1587. <xs:appinfo>
  1588. <system_cache__appinfo:flat_relation_cache>
  1589. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1590. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1591. </system_cache__appinfo:flat_relation_cache>
  1592. </xs:appinfo>
  1593. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  1594. </xs:annotation>
  1595. </xs:element>
  1596. <xs:element minOccurs="0"
  1597. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1598. id="lokalizacje___d4e8865-1">
  1599. <xs:annotation>
  1600. <xs:appinfo>
  1601. <system_cache__appinfo:flat_relation_cache>
  1602. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1603. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1604. </system_cache__appinfo:flat_relation_cache>
  1605. </xs:appinfo>
  1606. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  1607. </xs:annotation>
  1608. </xs:element>
  1609. <xs:element minOccurs="0"
  1610. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1611. id="lokalizacje___d4e8873-1">
  1612. <xs:annotation>
  1613. <xs:appinfo>
  1614. <system_cache__appinfo:flat_relation_cache>
  1615. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1616. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1617. </system_cache__appinfo:flat_relation_cache>
  1618. </xs:appinfo>
  1619. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  1620. </xs:annotation>
  1621. </xs:element>
  1622. </xs:sequence>
  1623. </xs:restriction>
  1624. </xs:complexContent>
  1625. </xs:complexType>
  1626. <xs:element name="Rozdzielcza_lokalizacje_DO_UZG_ZUD"
  1627. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_DO_UZG_ZUD"
  1628. id="Rozdzie_Rozd_d4e6170"/>
  1629. <xs:complexType name="Rozdzielcza_lokalizacje_UZG_ZUD" id="Rozdzie_Rozd_d4e6171">
  1630. <xs:complexContent id="lokalizacje___d4e8882-1">
  1631. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_DO_UZG_ZUD">
  1632. <xs:sequence id="Rozdzielcza_lo_d4e6174">
  1633. <xs:element name="the_geom"
  1634. type="gml:AbstractFeatureType"
  1635. id="lokalizacje___d4e8885-1_the_geom"/>
  1636. <xs:element name="A_STATUS_INFO"
  1637. type="xs:string"
  1638. id="lokalizacje___d4e8886-1_A_STATUS_I"/>
  1639. <xs:element name="Dlugosc"
  1640. type="xs:double"
  1641. id="lokalizacje___d4e8887-1_Dlugosc"/>
  1642. <xs:element name="Powierzchnia"
  1643. type="xs:double"
  1644. id="lokalizacje___d4e8888-1_Powierzchn"/>
  1645. <xs:element name="L_APPOITMENT_USER"
  1646. type="xs:string"
  1647. id="lokalizacje___d4e8889-1_L_APPOITME"/>
  1648. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  1649. id="lokalizacje___d4e8890-1">
  1650. <xs:annotation>
  1651. <xs:appinfo>
  1652. <system_cache__appinfo:flat_relation_cache>
  1653. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1654. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  1655. </system_cache__appinfo:flat_relation_cache>
  1656. </xs:appinfo>
  1657. </xs:annotation>
  1658. </xs:element>
  1659. <xs:element name="A_CLASSIFIED"
  1660. type="xs:string"
  1661. id="lokalizacje___d4e8895-1_A_CLASSIFI"/>
  1662. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  1663. id="lokalizacje___d4e8896-1">
  1664. <xs:annotation>
  1665. <xs:appinfo>
  1666. <system_cache__appinfo:flat_relation_cache>
  1667. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1668. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  1669. </system_cache__appinfo:flat_relation_cache>
  1670. </xs:appinfo>
  1671. </xs:annotation>
  1672. </xs:element>
  1673. <xs:element name="A_ADM_COMPANY"
  1674. type="xs:string"
  1675. id="lokalizacje___d4e8901-1_A_ADM_COMP"/>
  1676. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  1677. id="lokalizacje___d4e8902-1">
  1678. <xs:annotation>
  1679. <xs:appinfo>
  1680. <system_cache__appinfo:flat_relation_cache>
  1681. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1682. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1683. </system_cache__appinfo:flat_relation_cache>
  1684. </xs:appinfo>
  1685. </xs:annotation>
  1686. </xs:element>
  1687. <xs:element name="ID_PROJECT"
  1688. type="xs:int"
  1689. id="lokalizacje___d4e8907-1_ID_PROJECT"/>
  1690. <xs:element minOccurs="0"
  1691. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1692. id="lokalizacje___d4e8909-1">
  1693. <xs:annotation>
  1694. <xs:appinfo>
  1695. <system_cache__appinfo:flat_relation_cache>
  1696. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1697. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1698. </system_cache__appinfo:flat_relation_cache>
  1699. </xs:appinfo>
  1700. </xs:annotation>
  1701. </xs:element>
  1702. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1703. id="lokalizacje___d4e8914-1">
  1704. <xs:annotation>
  1705. <xs:appinfo>
  1706. <system_cache__appinfo:flat_relation_cache>
  1707. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1708. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1709. </system_cache__appinfo:flat_relation_cache>
  1710. </xs:appinfo>
  1711. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1712. </xs:annotation>
  1713. </xs:element>
  1714. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1715. id="lokalizacje___d4e8921-1">
  1716. <xs:annotation>
  1717. <xs:appinfo>
  1718. <system_cache__appinfo:flat_relation_cache>
  1719. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1720. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1721. </system_cache__appinfo:flat_relation_cache>
  1722. </xs:appinfo>
  1723. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1724. </xs:annotation>
  1725. </xs:element>
  1726. <xs:element minOccurs="0"
  1727. maxOccurs="unbounded"
  1728. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1729. id="lokalizacje___d4e8928-1">
  1730. <xs:annotation>
  1731. <xs:appinfo>
  1732. <system_cache__appinfo:flat_relation_cache>
  1733. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1734. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1735. </system_cache__appinfo:flat_relation_cache>
  1736. </xs:appinfo>
  1737. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1738. </xs:annotation>
  1739. </xs:element>
  1740. <xs:element minOccurs="0"
  1741. maxOccurs="unbounded"
  1742. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1743. id="lokalizacje___d4e8935-1">
  1744. <xs:annotation>
  1745. <xs:appinfo>
  1746. <system_cache__appinfo:flat_relation_cache>
  1747. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1748. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1749. </system_cache__appinfo:flat_relation_cache>
  1750. </xs:appinfo>
  1751. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1752. </xs:annotation>
  1753. </xs:element>
  1754. <xs:element minOccurs="0"
  1755. maxOccurs="unbounded"
  1756. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1757. id="lokalizacje___d4e8942-1">
  1758. <xs:annotation>
  1759. <xs:appinfo>
  1760. <system_cache__appinfo:flat_relation_cache>
  1761. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1762. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1763. </system_cache__appinfo:flat_relation_cache>
  1764. </xs:appinfo>
  1765. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  1766. </xs:annotation>
  1767. </xs:element>
  1768. <xs:element minOccurs="1"
  1769. maxOccurs="unbounded"
  1770. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1771. id="lokalizacje___d4e8949-1">
  1772. <xs:annotation>
  1773. <xs:appinfo>
  1774. <system_cache__appinfo:flat_relation_cache>
  1775. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1776. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1777. </system_cache__appinfo:flat_relation_cache>
  1778. </xs:appinfo>
  1779. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  1780. </xs:annotation>
  1781. </xs:element>
  1782. <xs:element minOccurs="1"
  1783. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1784. id="lokalizacje___d4e8956-1">
  1785. <xs:annotation>
  1786. <xs:appinfo>
  1787. <system_cache__appinfo:flat_relation_cache>
  1788. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1789. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1790. </system_cache__appinfo:flat_relation_cache>
  1791. </xs:appinfo>
  1792. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1793. </xs:annotation>
  1794. </xs:element>
  1795. <xs:element minOccurs="0"
  1796. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1797. id="lokalizacje___d4e8963-1">
  1798. <xs:annotation>
  1799. <xs:appinfo>
  1800. <system_cache__appinfo:flat_relation_cache>
  1801. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1802. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1803. </system_cache__appinfo:flat_relation_cache>
  1804. </xs:appinfo>
  1805. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1806. </xs:annotation>
  1807. </xs:element>
  1808. <xs:element minOccurs="0"
  1809. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1810. id="lokalizacje___d4e8970-1">
  1811. <xs:annotation>
  1812. <xs:appinfo>
  1813. <system_cache__appinfo:flat_relation_cache>
  1814. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1815. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1816. </system_cache__appinfo:flat_relation_cache>
  1817. </xs:appinfo>
  1818. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  1819. </xs:annotation>
  1820. </xs:element>
  1821. <xs:element minOccurs="0"
  1822. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1823. id="lokalizacje___d4e8977-1">
  1824. <xs:annotation>
  1825. <xs:appinfo>
  1826. <system_cache__appinfo:flat_relation_cache>
  1827. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1828. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1829. </system_cache__appinfo:flat_relation_cache>
  1830. </xs:appinfo>
  1831. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  1832. </xs:annotation>
  1833. </xs:element>
  1834. <xs:element minOccurs="0"
  1835. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1836. id="lokalizacje___d4e8985-1">
  1837. <xs:annotation>
  1838. <xs:appinfo>
  1839. <system_cache__appinfo:flat_relation_cache>
  1840. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1841. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1842. </system_cache__appinfo:flat_relation_cache>
  1843. </xs:appinfo>
  1844. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  1845. </xs:annotation>
  1846. </xs:element>
  1847. </xs:sequence>
  1848. </xs:restriction>
  1849. </xs:complexContent>
  1850. </xs:complexType>
  1851. <xs:element name="Rozdzielcza_lokalizacje_UZG_ZUD"
  1852. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_UZG_ZUD"
  1853. id="Rozdzie_Rozd_d4e6282"/>
  1854. <xs:complexType name="Rozdzielcza_lokalizacje_ZLECENIE" id="Rozdzie_Rozd_d4e6284">
  1855. <xs:annotation>
  1856. <xs:documentation>Popdisano zlecenie na realizacje danego obiektu</xs:documentation>
  1857. </xs:annotation>
  1858. <xs:complexContent id="lokalizacje___d4e8997-1">
  1859. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_OFFER">
  1860. <xs:sequence id="Rozdzielcza_lo_d4e6290">
  1861. <xs:element name="the_geom"
  1862. type="gml:AbstractFeatureType"
  1863. id="lokalizacje___d4e9000-1_the_geom"/>
  1864. <xs:element name="A_STATUS_INFO"
  1865. type="xs:string"
  1866. id="lokalizacje___d4e9001-1_A_STATUS_I"/>
  1867. <xs:element name="Dlugosc"
  1868. type="xs:double"
  1869. id="lokalizacje___d4e9002-1_Dlugosc"/>
  1870. <xs:element name="Powierzchnia"
  1871. type="xs:double"
  1872. id="lokalizacje___d4e9003-1_Powierzchn"/>
  1873. <xs:element name="L_APPOITMENT_USER"
  1874. type="xs:string"
  1875. id="lokalizacje___d4e9004-1_L_APPOITME"/>
  1876. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  1877. id="lokalizacje___d4e9005-1">
  1878. <xs:annotation>
  1879. <xs:appinfo>
  1880. <system_cache__appinfo:flat_relation_cache>
  1881. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1882. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  1883. </system_cache__appinfo:flat_relation_cache>
  1884. </xs:appinfo>
  1885. </xs:annotation>
  1886. </xs:element>
  1887. <xs:element name="A_CLASSIFIED"
  1888. type="xs:string"
  1889. id="lokalizacje___d4e9010-1_A_CLASSIFI"/>
  1890. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  1891. id="lokalizacje___d4e9011-1">
  1892. <xs:annotation>
  1893. <xs:appinfo>
  1894. <system_cache__appinfo:flat_relation_cache>
  1895. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1896. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  1897. </system_cache__appinfo:flat_relation_cache>
  1898. </xs:appinfo>
  1899. </xs:annotation>
  1900. </xs:element>
  1901. <xs:element name="A_ADM_COMPANY"
  1902. type="xs:string"
  1903. id="lokalizacje___d4e9016-1_A_ADM_COMP"/>
  1904. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  1905. id="lokalizacje___d4e9017-1">
  1906. <xs:annotation>
  1907. <xs:appinfo>
  1908. <system_cache__appinfo:flat_relation_cache>
  1909. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1910. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1911. </system_cache__appinfo:flat_relation_cache>
  1912. </xs:appinfo>
  1913. </xs:annotation>
  1914. </xs:element>
  1915. <xs:element name="ID_PROJECT"
  1916. type="xs:int"
  1917. id="lokalizacje___d4e9022-1_ID_PROJECT"/>
  1918. <xs:element minOccurs="0"
  1919. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1920. id="lokalizacje___d4e9024-1">
  1921. <xs:annotation>
  1922. <xs:appinfo>
  1923. <system_cache__appinfo:flat_relation_cache>
  1924. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1925. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1926. </system_cache__appinfo:flat_relation_cache>
  1927. </xs:appinfo>
  1928. </xs:annotation>
  1929. </xs:element>
  1930. <xs:element maxOccurs="unbounded"
  1931. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1932. id="lokalizacje___d4e9029-1">
  1933. <xs:annotation>
  1934. <xs:appinfo>
  1935. <system_cache__appinfo:flat_relation_cache>
  1936. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1937. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1938. </system_cache__appinfo:flat_relation_cache>
  1939. </xs:appinfo>
  1940. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1941. </xs:annotation>
  1942. </xs:element>
  1943. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1944. id="lokalizacje___d4e9036-1">
  1945. <xs:annotation>
  1946. <xs:appinfo>
  1947. <system_cache__appinfo:flat_relation_cache>
  1948. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1949. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1950. </system_cache__appinfo:flat_relation_cache>
  1951. </xs:appinfo>
  1952. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1953. </xs:annotation>
  1954. </xs:element>
  1955. <xs:element minOccurs="1"
  1956. maxOccurs="unbounded"
  1957. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1958. id="lokalizacje___d4e9043-1">
  1959. <xs:annotation>
  1960. <xs:appinfo>
  1961. <system_cache__appinfo:flat_relation_cache>
  1962. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1963. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1964. </system_cache__appinfo:flat_relation_cache>
  1965. </xs:appinfo>
  1966. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1967. </xs:annotation>
  1968. </xs:element>
  1969. <xs:element minOccurs="0"
  1970. maxOccurs="unbounded"
  1971. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1972. id="lokalizacje___d4e9050-1">
  1973. <xs:annotation>
  1974. <xs:appinfo>
  1975. <system_cache__appinfo:flat_relation_cache>
  1976. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1977. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1978. </system_cache__appinfo:flat_relation_cache>
  1979. </xs:appinfo>
  1980. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1981. </xs:annotation>
  1982. </xs:element>
  1983. <xs:element minOccurs="0"
  1984. maxOccurs="unbounded"
  1985. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1986. id="lokalizacje___d4e9057-1">
  1987. <xs:annotation>
  1988. <xs:appinfo>
  1989. <system_cache__appinfo:flat_relation_cache>
  1990. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1991. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1992. </system_cache__appinfo:flat_relation_cache>
  1993. </xs:appinfo>
  1994. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  1995. </xs:annotation>
  1996. </xs:element>
  1997. <xs:element minOccurs="0"
  1998. maxOccurs="unbounded"
  1999. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2000. id="lokalizacje___d4e9064-1">
  2001. <xs:annotation>
  2002. <xs:appinfo>
  2003. <system_cache__appinfo:flat_relation_cache>
  2004. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2005. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2006. </system_cache__appinfo:flat_relation_cache>
  2007. </xs:appinfo>
  2008. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  2009. </xs:annotation>
  2010. </xs:element>
  2011. <xs:element minOccurs="0"
  2012. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2013. id="lokalizacje___d4e9071-1">
  2014. <xs:annotation>
  2015. <xs:appinfo>
  2016. <system_cache__appinfo:flat_relation_cache>
  2017. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2018. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2019. </system_cache__appinfo:flat_relation_cache>
  2020. </xs:appinfo>
  2021. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2022. </xs:annotation>
  2023. </xs:element>
  2024. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2025. id="lokalizacje___d4e9078-1">
  2026. <xs:annotation>
  2027. <xs:appinfo>
  2028. <system_cache__appinfo:flat_relation_cache>
  2029. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2030. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2031. </system_cache__appinfo:flat_relation_cache>
  2032. </xs:appinfo>
  2033. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2034. </xs:annotation>
  2035. </xs:element>
  2036. <xs:element minOccurs="0"
  2037. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2038. id="lokalizacje___d4e9085-1">
  2039. <xs:annotation>
  2040. <xs:appinfo>
  2041. <system_cache__appinfo:flat_relation_cache>
  2042. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2043. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2044. </system_cache__appinfo:flat_relation_cache>
  2045. </xs:appinfo>
  2046. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  2047. </xs:annotation>
  2048. </xs:element>
  2049. <xs:element minOccurs="0"
  2050. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2051. id="lokalizacje___d4e9092-1">
  2052. <xs:annotation>
  2053. <xs:appinfo>
  2054. <system_cache__appinfo:flat_relation_cache>
  2055. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2056. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2057. </system_cache__appinfo:flat_relation_cache>
  2058. </xs:appinfo>
  2059. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  2060. </xs:annotation>
  2061. </xs:element>
  2062. <xs:element minOccurs="0"
  2063. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2064. id="lokalizacje___d4e9100-1">
  2065. <xs:annotation>
  2066. <xs:appinfo>
  2067. <system_cache__appinfo:flat_relation_cache>
  2068. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2069. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2070. </system_cache__appinfo:flat_relation_cache>
  2071. </xs:appinfo>
  2072. </xs:annotation>
  2073. </xs:element>
  2074. </xs:sequence>
  2075. </xs:restriction>
  2076. </xs:complexContent>
  2077. </xs:complexType>
  2078. <xs:element name="Rozdzielcza_lokalizacje_ZLECENIE"
  2079. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_ZLECENIE"
  2080. id="Rozdzie_Rozd_d4e6396"/>
  2081. <xs:complexType name="Rozdzielcza_lokalizacje_ZGL_ODB" id="Rozdzie_Rozd_d4e6397">
  2082. <xs:annotation>
  2083. <xs:documentation>Wykonawca zgłasza wykonanie danego elementu do jego odbioru</xs:documentation>
  2084. </xs:annotation>
  2085. <xs:complexContent id="lokalizacje___d4e9111-1">
  2086. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_ZLECENIE">
  2087. <xs:sequence id="Rozdzielcza_lo_d4e6403">
  2088. <xs:element name="the_geom"
  2089. type="gml:AbstractFeatureType"
  2090. id="lokalizacje___d4e9114-1_the_geom"/>
  2091. <xs:element name="A_STATUS_INFO"
  2092. type="xs:string"
  2093. id="lokalizacje___d4e9115-1_A_STATUS_I"/>
  2094. <xs:element name="Dlugosc"
  2095. type="xs:double"
  2096. id="lokalizacje___d4e9116-1_Dlugosc"/>
  2097. <xs:element name="Powierzchnia"
  2098. type="xs:double"
  2099. id="lokalizacje___d4e9117-1_Powierzchn"/>
  2100. <xs:element name="L_APPOITMENT_USER"
  2101. type="xs:string"
  2102. id="lokalizacje___d4e9118-1_L_APPOITME"/>
  2103. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  2104. id="lokalizacje___d4e9119-1">
  2105. <xs:annotation>
  2106. <xs:appinfo>
  2107. <system_cache__appinfo:flat_relation_cache>
  2108. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  2109. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  2110. </system_cache__appinfo:flat_relation_cache>
  2111. </xs:appinfo>
  2112. </xs:annotation>
  2113. </xs:element>
  2114. <xs:element name="A_CLASSIFIED"
  2115. type="xs:string"
  2116. id="lokalizacje___d4e9124-1_A_CLASSIFI"/>
  2117. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  2118. id="lokalizacje___d4e9125-1">
  2119. <xs:annotation>
  2120. <xs:appinfo>
  2121. <system_cache__appinfo:flat_relation_cache>
  2122. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  2123. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  2124. </system_cache__appinfo:flat_relation_cache>
  2125. </xs:appinfo>
  2126. </xs:annotation>
  2127. </xs:element>
  2128. <xs:element name="A_ADM_COMPANY"
  2129. type="xs:string"
  2130. id="lokalizacje___d4e9130-1_A_ADM_COMP"/>
  2131. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  2132. id="lokalizacje___d4e9131-1">
  2133. <xs:annotation>
  2134. <xs:appinfo>
  2135. <system_cache__appinfo:flat_relation_cache>
  2136. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2137. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2138. </system_cache__appinfo:flat_relation_cache>
  2139. </xs:appinfo>
  2140. </xs:annotation>
  2141. </xs:element>
  2142. <xs:element name="ID_PROJECT"
  2143. type="xs:int"
  2144. id="lokalizacje___d4e9136-1_ID_PROJECT"/>
  2145. <xs:element minOccurs="0"
  2146. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2147. id="lokalizacje___d4e9138-1">
  2148. <xs:annotation>
  2149. <xs:appinfo>
  2150. <system_cache__appinfo:flat_relation_cache>
  2151. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2152. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2153. </system_cache__appinfo:flat_relation_cache>
  2154. </xs:appinfo>
  2155. </xs:annotation>
  2156. </xs:element>
  2157. <xs:element maxOccurs="unbounded"
  2158. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2159. id="lokalizacje___d4e9143-1">
  2160. <xs:annotation>
  2161. <xs:appinfo>
  2162. <system_cache__appinfo:flat_relation_cache>
  2163. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2164. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2165. </system_cache__appinfo:flat_relation_cache>
  2166. </xs:appinfo>
  2167. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  2168. </xs:annotation>
  2169. </xs:element>
  2170. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2171. id="lokalizacje___d4e9150-1">
  2172. <xs:annotation>
  2173. <xs:appinfo>
  2174. <system_cache__appinfo:flat_relation_cache>
  2175. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  2176. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2177. </system_cache__appinfo:flat_relation_cache>
  2178. </xs:appinfo>
  2179. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2180. </xs:annotation>
  2181. </xs:element>
  2182. <xs:element minOccurs="1"
  2183. maxOccurs="unbounded"
  2184. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2185. id="lokalizacje___d4e9157-1">
  2186. <xs:annotation>
  2187. <xs:appinfo>
  2188. <system_cache__appinfo:flat_relation_cache>
  2189. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2190. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2191. </system_cache__appinfo:flat_relation_cache>
  2192. </xs:appinfo>
  2193. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2194. </xs:annotation>
  2195. </xs:element>
  2196. <xs:element minOccurs="0"
  2197. maxOccurs="unbounded"
  2198. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2199. id="lokalizacje___d4e9164-1">
  2200. <xs:annotation>
  2201. <xs:appinfo>
  2202. <system_cache__appinfo:flat_relation_cache>
  2203. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2204. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2205. </system_cache__appinfo:flat_relation_cache>
  2206. </xs:appinfo>
  2207. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  2208. </xs:annotation>
  2209. </xs:element>
  2210. <xs:element minOccurs="0"
  2211. maxOccurs="unbounded"
  2212. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2213. id="lokalizacje___d4e9171-1">
  2214. <xs:annotation>
  2215. <xs:appinfo>
  2216. <system_cache__appinfo:flat_relation_cache>
  2217. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  2218. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  2219. </system_cache__appinfo:flat_relation_cache>
  2220. </xs:appinfo>
  2221. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  2222. </xs:annotation>
  2223. </xs:element>
  2224. <xs:element minOccurs="0"
  2225. maxOccurs="unbounded"
  2226. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2227. id="lokalizacje___d4e9178-1">
  2228. <xs:annotation>
  2229. <xs:appinfo>
  2230. <system_cache__appinfo:flat_relation_cache>
  2231. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2232. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2233. </system_cache__appinfo:flat_relation_cache>
  2234. </xs:appinfo>
  2235. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  2236. </xs:annotation>
  2237. </xs:element>
  2238. <xs:element minOccurs="0"
  2239. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2240. id="lokalizacje___d4e9185-1">
  2241. <xs:annotation>
  2242. <xs:appinfo>
  2243. <system_cache__appinfo:flat_relation_cache>
  2244. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2245. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2246. </system_cache__appinfo:flat_relation_cache>
  2247. </xs:appinfo>
  2248. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2249. </xs:annotation>
  2250. </xs:element>
  2251. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2252. id="lokalizacje___d4e9192-1">
  2253. <xs:annotation>
  2254. <xs:appinfo>
  2255. <system_cache__appinfo:flat_relation_cache>
  2256. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2257. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2258. </system_cache__appinfo:flat_relation_cache>
  2259. </xs:appinfo>
  2260. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2261. </xs:annotation>
  2262. </xs:element>
  2263. <xs:element minOccurs="1"
  2264. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2265. id="lokalizacje___d4e9199-1">
  2266. <xs:annotation>
  2267. <xs:appinfo>
  2268. <system_cache__appinfo:flat_relation_cache>
  2269. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2270. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2271. </system_cache__appinfo:flat_relation_cache>
  2272. </xs:appinfo>
  2273. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  2274. </xs:annotation>
  2275. </xs:element>
  2276. <xs:element minOccurs="0"
  2277. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2278. id="lokalizacje___d4e9206-1">
  2279. <xs:annotation>
  2280. <xs:appinfo>
  2281. <system_cache__appinfo:flat_relation_cache>
  2282. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2283. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2284. </system_cache__appinfo:flat_relation_cache>
  2285. </xs:appinfo>
  2286. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  2287. </xs:annotation>
  2288. </xs:element>
  2289. <xs:element minOccurs="0"
  2290. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2291. id="lokalizacje___d4e9214-1">
  2292. <xs:annotation>
  2293. <xs:appinfo>
  2294. <system_cache__appinfo:flat_relation_cache>
  2295. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2296. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2297. </system_cache__appinfo:flat_relation_cache>
  2298. </xs:appinfo>
  2299. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  2300. </xs:annotation>
  2301. </xs:element>
  2302. </xs:sequence>
  2303. </xs:restriction>
  2304. </xs:complexContent>
  2305. </xs:complexType>
  2306. <xs:element name="Rozdzielcza_lokalizacje_ZGL_ODB"
  2307. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_ZGL_ODB"
  2308. id="Rozdzie_Rozd_d4e6511"/>
  2309. <xs:complexType name="Rozdzielcza_lokalizacje_POM_GEOD" id="Rozdzie_Rozd_d4e6512">
  2310. <xs:complexContent id="lokalizacje___d4e9223-1">
  2311. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_ZGL_ODB">
  2312. <xs:sequence id="Rozdzielcza_lo_d4e6515">
  2313. <xs:element name="the_geom"
  2314. type="gml:AbstractFeatureType"
  2315. id="lokalizacje___d4e9226-1_the_geom"/>
  2316. <xs:element name="A_STATUS_INFO"
  2317. type="xs:string"
  2318. id="lokalizacje___d4e9227-1_A_STATUS_I"/>
  2319. <xs:element name="Dlugosc"
  2320. type="xs:double"
  2321. id="lokalizacje___d4e9228-1_Dlugosc"/>
  2322. <xs:element name="Powierzchnia"
  2323. type="xs:double"
  2324. id="lokalizacje___d4e9229-1_Powierzchn"/>
  2325. <xs:element name="L_APPOITMENT_USER"
  2326. type="xs:string"
  2327. id="lokalizacje___d4e9230-1_L_APPOITME"/>
  2328. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  2329. id="lokalizacje___d4e9231-1">
  2330. <xs:annotation>
  2331. <xs:appinfo>
  2332. <system_cache__appinfo:flat_relation_cache>
  2333. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  2334. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  2335. </system_cache__appinfo:flat_relation_cache>
  2336. </xs:appinfo>
  2337. </xs:annotation>
  2338. </xs:element>
  2339. <xs:element name="A_CLASSIFIED"
  2340. type="xs:string"
  2341. id="lokalizacje___d4e9236-1_A_CLASSIFI"/>
  2342. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  2343. id="lokalizacje___d4e9237-1">
  2344. <xs:annotation>
  2345. <xs:appinfo>
  2346. <system_cache__appinfo:flat_relation_cache>
  2347. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  2348. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  2349. </system_cache__appinfo:flat_relation_cache>
  2350. </xs:appinfo>
  2351. </xs:annotation>
  2352. </xs:element>
  2353. <xs:element name="A_ADM_COMPANY"
  2354. type="xs:string"
  2355. id="lokalizacje___d4e9242-1_A_ADM_COMP"/>
  2356. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  2357. id="lokalizacje___d4e9243-1">
  2358. <xs:annotation>
  2359. <xs:appinfo>
  2360. <system_cache__appinfo:flat_relation_cache>
  2361. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2362. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2363. </system_cache__appinfo:flat_relation_cache>
  2364. </xs:appinfo>
  2365. </xs:annotation>
  2366. </xs:element>
  2367. <xs:element name="ID_PROJECT"
  2368. type="xs:int"
  2369. id="lokalizacje___d4e9248-1_ID_PROJECT"/>
  2370. <xs:element minOccurs="0"
  2371. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2372. id="lokalizacje___d4e9250-1">
  2373. <xs:annotation>
  2374. <xs:appinfo>
  2375. <system_cache__appinfo:flat_relation_cache>
  2376. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2377. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2378. </system_cache__appinfo:flat_relation_cache>
  2379. </xs:appinfo>
  2380. </xs:annotation>
  2381. </xs:element>
  2382. <xs:element maxOccurs="unbounded"
  2383. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2384. id="lokalizacje___d4e9255-1">
  2385. <xs:annotation>
  2386. <xs:appinfo>
  2387. <system_cache__appinfo:flat_relation_cache>
  2388. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2389. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2390. </system_cache__appinfo:flat_relation_cache>
  2391. </xs:appinfo>
  2392. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  2393. </xs:annotation>
  2394. </xs:element>
  2395. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2396. id="lokalizacje___d4e9262-1">
  2397. <xs:annotation>
  2398. <xs:appinfo>
  2399. <system_cache__appinfo:flat_relation_cache>
  2400. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  2401. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2402. </system_cache__appinfo:flat_relation_cache>
  2403. </xs:appinfo>
  2404. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2405. </xs:annotation>
  2406. </xs:element>
  2407. <xs:element minOccurs="1"
  2408. maxOccurs="unbounded"
  2409. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2410. id="lokalizacje___d4e9269-1">
  2411. <xs:annotation>
  2412. <xs:appinfo>
  2413. <system_cache__appinfo:flat_relation_cache>
  2414. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2415. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2416. </system_cache__appinfo:flat_relation_cache>
  2417. </xs:appinfo>
  2418. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2419. </xs:annotation>
  2420. </xs:element>
  2421. <xs:element minOccurs="0"
  2422. maxOccurs="unbounded"
  2423. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2424. id="lokalizacje___d4e9276-1">
  2425. <xs:annotation>
  2426. <xs:appinfo>
  2427. <system_cache__appinfo:flat_relation_cache>
  2428. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2429. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2430. </system_cache__appinfo:flat_relation_cache>
  2431. </xs:appinfo>
  2432. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  2433. </xs:annotation>
  2434. </xs:element>
  2435. <xs:element minOccurs="0"
  2436. maxOccurs="unbounded"
  2437. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2438. id="lokalizacje___d4e9283-1">
  2439. <xs:annotation>
  2440. <xs:appinfo>
  2441. <system_cache__appinfo:flat_relation_cache>
  2442. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  2443. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  2444. </system_cache__appinfo:flat_relation_cache>
  2445. </xs:appinfo>
  2446. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  2447. </xs:annotation>
  2448. </xs:element>
  2449. <xs:element minOccurs="0"
  2450. maxOccurs="unbounded"
  2451. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2452. id="lokalizacje___d4e9290-1">
  2453. <xs:annotation>
  2454. <xs:appinfo>
  2455. <system_cache__appinfo:flat_relation_cache>
  2456. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2457. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2458. </system_cache__appinfo:flat_relation_cache>
  2459. </xs:appinfo>
  2460. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  2461. </xs:annotation>
  2462. </xs:element>
  2463. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2464. id="lokalizacje___d4e9297-1">
  2465. <xs:annotation>
  2466. <xs:appinfo>
  2467. <system_cache__appinfo:flat_relation_cache>
  2468. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2469. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2470. </system_cache__appinfo:flat_relation_cache>
  2471. </xs:appinfo>
  2472. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2473. </xs:annotation>
  2474. </xs:element>
  2475. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2476. id="lokalizacje___d4e9304-1">
  2477. <xs:annotation>
  2478. <xs:appinfo>
  2479. <system_cache__appinfo:flat_relation_cache>
  2480. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2481. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2482. </system_cache__appinfo:flat_relation_cache>
  2483. </xs:appinfo>
  2484. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2485. </xs:annotation>
  2486. </xs:element>
  2487. <xs:element minOccurs="1"
  2488. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2489. id="lokalizacje___d4e9311-1">
  2490. <xs:annotation>
  2491. <xs:appinfo>
  2492. <system_cache__appinfo:flat_relation_cache>
  2493. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2494. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2495. </system_cache__appinfo:flat_relation_cache>
  2496. </xs:appinfo>
  2497. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  2498. </xs:annotation>
  2499. </xs:element>
  2500. <xs:element minOccurs="1"
  2501. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2502. id="lokalizacje___d4e9318-1">
  2503. <xs:annotation>
  2504. <xs:appinfo>
  2505. <system_cache__appinfo:flat_relation_cache>
  2506. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2507. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2508. </system_cache__appinfo:flat_relation_cache>
  2509. </xs:appinfo>
  2510. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  2511. </xs:annotation>
  2512. </xs:element>
  2513. <xs:element minOccurs="0"
  2514. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2515. id="lokalizacje___d4e9326-1">
  2516. <xs:annotation>
  2517. <xs:appinfo>
  2518. <system_cache__appinfo:flat_relation_cache>
  2519. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2520. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2521. </system_cache__appinfo:flat_relation_cache>
  2522. </xs:appinfo>
  2523. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  2524. </xs:annotation>
  2525. </xs:element>
  2526. </xs:sequence>
  2527. </xs:restriction>
  2528. </xs:complexContent>
  2529. </xs:complexType>
  2530. <xs:element name="Rozdzielcza_lokalizacje_POM_GEOD"
  2531. type="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_POM_GEOD"
  2532. id="Rozdzie_Rozd_d4e6623"/>
  2533. <xs:complexType name="Rozdzielcza_lokalizacje_PROTOK_ODB" id="Rozdzie_Rozd_d4e6624">
  2534. <xs:annotation>
  2535. <xs:documentation>Podpisany protokol odbioru z podwykonawca oraz wlascicielem
  2536. </xs:documentation>
  2537. </xs:annotation>
  2538. <xs:complexContent id="lokalizacje___d4e9338-1">
  2539. <xs:restriction base="default_db__x3A__Rozdzielcza_lokalizacje:Rozdzielcza_lokalizacje_ZGL_ODB">
  2540. <xs:sequence id="Rozdzielcza_lo_d4e6630">
  2541. <xs:element name="the_geom"
  2542. type="gml:AbstractFeatureType"
  2543. id="lokalizacje___d4e9341-1_the_geom"/>
  2544. <xs:element name="A_STATUS_INFO"
  2545. type="xs:string"
  2546. id="lokalizacje___d4e9342-1_A_STATUS_I"/>
  2547. <xs:element name="Dlugosc"
  2548. type="xs:double"
  2549. id="lokalizacje___d4e9343-1_Dlugosc"/>
  2550. <xs:element name="Powierzchnia"
  2551. type="xs:double"
  2552. id="lokalizacje___d4e9344-1_Powierzchn"/>
  2553. <xs:element name="L_APPOITMENT_USER"
  2554. type="xs:string"
  2555. id="lokalizacje___d4e9345-1_L_APPOITME"/>
  2556. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  2557. id="lokalizacje___d4e9346-1">
  2558. <xs:annotation>
  2559. <xs:appinfo>
  2560. <system_cache__appinfo:flat_relation_cache>
  2561. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  2562. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  2563. </system_cache__appinfo:flat_relation_cache>
  2564. </xs:appinfo>
  2565. </xs:annotation>
  2566. </xs:element>
  2567. <xs:element name="A_CLASSIFIED"
  2568. type="xs:string"
  2569. id="lokalizacje___d4e9351-1_A_CLASSIFI"/>
  2570. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  2571. id="lokalizacje___d4e9352-1">
  2572. <xs:annotation>
  2573. <xs:appinfo>
  2574. <system_cache__appinfo:flat_relation_cache>
  2575. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  2576. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  2577. </system_cache__appinfo:flat_relation_cache>
  2578. </xs:appinfo>
  2579. </xs:annotation>
  2580. </xs:element>
  2581. <xs:element name="A_ADM_COMPANY"
  2582. type="xs:string"
  2583. id="lokalizacje___d4e9357-1_A_ADM_COMP"/>
  2584. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  2585. id="lokalizacje___d4e9358-1">
  2586. <xs:annotation>
  2587. <xs:appinfo>
  2588. <system_cache__appinfo:flat_relation_cache>
  2589. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2590. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2591. </system_cache__appinfo:flat_relation_cache>
  2592. </xs:appinfo>
  2593. </xs:annotation>
  2594. </xs:element>
  2595. <xs:element name="ID_PROJECT"
  2596. type="xs:int"
  2597. id="lokalizacje___d4e9363-1_ID_PROJECT"/>
  2598. <xs:element minOccurs="0"
  2599. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2600. id="lokalizacje___d4e9365-1">
  2601. <xs:annotation>
  2602. <xs:appinfo>
  2603. <system_cache__appinfo:flat_relation_cache>
  2604. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2605. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2606. </system_cache__appinfo:flat_relation_cache>
  2607. </xs:appinfo>
  2608. </xs:annotation>
  2609. </xs:element>
  2610. <xs:element maxOccurs="unbounded"
  2611. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2612. id="lokalizacje___d4e9370-1">
  2613. <xs:annotation>
  2614. <xs:appinfo>
  2615. <system_cache__appinfo:flat_relation_cache>
  2616. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2617. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2618. </system_cache__appinfo:flat_relation_cache>
  2619. </xs:appinfo>
  2620. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  2621. </xs:annotation>
  2622. </xs:element>
  2623. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2624. id="lokalizacje___d4e9377-1">
  2625. <xs:annotation>
  2626. <xs:appinfo>
  2627. <system_cache__appinfo:flat_relation_cache>
  2628. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  2629. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2630. </system_cache__appinfo:flat_relation_cache>
  2631. </xs:appinfo>
  2632. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2633. </xs:annotation>
  2634. </xs:element>
  2635. <xs:element minOccurs="1"
  2636. maxOccurs="unbounded"
  2637. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2638. id="lokalizacje___d4e9384-1">
  2639. <xs:annotation>
  2640. <xs:appinfo>
  2641. <system_cache__appinfo:flat_relation_cache>
  2642. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2643. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2644. </system_cache__appinfo:flat_relation_cache>
  2645. </xs:appinfo>
  2646. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2647. </xs:annotation>
  2648. </xs:element>
  2649. <xs:element minOccurs="0"
  2650. maxOccurs="unbounded"
  2651. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2652. id="lokalizacje___d4e9391-1">
  2653. <xs:annotation>
  2654. <xs:appinfo>
  2655. <system_cache__appinfo:flat_relation_cache>
  2656. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2657. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2658. </system_cache__appinfo:flat_relation_cache>
  2659. </xs:appinfo>
  2660. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  2661. </xs:annotation>
  2662. </xs:element>
  2663. <xs:element minOccurs="0"
  2664. maxOccurs="unbounded"
  2665. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2666. id="lokalizacje___d4e9398-1">
  2667. <xs:annotation>
  2668. <xs:appinfo>
  2669. <system_cache__appinfo:flat_relation_cache>
  2670. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  2671. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  2672. </system_cache__appinfo:flat_relation_cache>
  2673. </xs:appinfo>
  2674. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o zgody</xs:documentation>
  2675. </xs:annotation>
  2676. </xs:element>
  2677. <xs:element minOccurs="0"
  2678. maxOccurs="unbounded"
  2679. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2680. id="lokalizacje___d4e9405-1">
  2681. <xs:annotation>
  2682. <xs:appinfo>
  2683. <system_cache__appinfo:flat_relation_cache>
  2684. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2685. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2686. </system_cache__appinfo:flat_relation_cache>
  2687. </xs:appinfo>
  2688. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  2689. </xs:annotation>
  2690. </xs:element>
  2691. <xs:element minOccurs="0"
  2692. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2693. id="lokalizacje___d4e9412-1">
  2694. <xs:annotation>
  2695. <xs:appinfo>
  2696. <system_cache__appinfo:flat_relation_cache>
  2697. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2698. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2699. </system_cache__appinfo:flat_relation_cache>
  2700. </xs:appinfo>
  2701. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2702. </xs:annotation>
  2703. </xs:element>
  2704. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2705. id="lokalizacje___d4e9419-1">
  2706. <xs:annotation>
  2707. <xs:appinfo>
  2708. <system_cache__appinfo:flat_relation_cache>
  2709. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2710. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2711. </system_cache__appinfo:flat_relation_cache>
  2712. </xs:appinfo>
  2713. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2714. </xs:annotation>
  2715. </xs:element>
  2716. <xs:element minOccurs="1"
  2717. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2718. id="lokalizacje___d4e9426-1">
  2719. <xs:annotation>
  2720. <xs:appinfo>
  2721. <system_cache__appinfo:flat_relation_cache>
  2722. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2723. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2724. </system_cache__appinfo:flat_relation_cache>
  2725. </xs:appinfo>
  2726. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  2727. </xs:annotation>
  2728. </xs:element>
  2729. <xs:element minOccurs="0"
  2730. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2731. id="lokalizacje___d4e9433-1">
  2732. <xs:annotation>
  2733. <xs:appinfo>
  2734. <system_cache__appinfo:flat_relation_cache>
  2735. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2736. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2737. </system_cache__appinfo:flat_relation_cache>
  2738. </xs:appinfo>
  2739. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  2740. </xs:annotation>
  2741. </xs:element>
  2742. <xs:element minOccurs="1"
  2743. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2744. id="lokalizacje___d4e9441-1">
  2745. <xs:annotation>
  2746. <xs:appinfo>
  2747. <system_cache__appinfo:flat_relation_cache>
  2748. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2749. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2750. </system_cache__appinfo:flat_relation_cache>
  2751. </xs:appinfo>
  2752. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  2753. </xs:annotation>
  2754. </xs:element>
  2755. </xs:sequence>
  2756. </xs:restriction>
  2757. </xs:complexContent>
  2758. </xs:complexType>
  2759. </xs:schema>