Rozdzielcza_rurociagi_obce_wsg84.xsd 171 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769
  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_rurociagi_obce_wsg84="https://biuro.biall-net.pl/wfs/default_db/table/Rozdzielcza_rurociagi_obce_wsg84.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_rurociagi_obce_wsg84.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_rurociagi_obce_wsg84" 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_ru_d4e5338">
  32. <xs:element name="the_geom"
  33. type="gml:AbstractFeatureType"
  34. id="_obce_wsg84___d4e14973-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="_obce_wsg84___d4e14977-1_A_STATUS_I"/>
  42. <xs:element name="Dlugosc"
  43. type="xs:double"
  44. id="_obce_wsg84___d4e14978-1_Dlugosc"/>
  45. <xs:element name="Powierzchnia"
  46. type="xs:double"
  47. id="_obce_wsg84___d4e14979-1_Powierzchn"/>
  48. <xs:element name="L_APPOITMENT_USER"
  49. type="xs:string"
  50. id="_obce_wsg84___d4e14980-1_L_APPOITME"/>
  51. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  52. id="_obce_wsg84___d4e14981-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="_obce_wsg84___d4e14986-1_A_CLASSIFI"/>
  65. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  66. id="_obce_wsg84___d4e14987-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="_obce_wsg84___d4e14992-1_A_ADM_COMP"/>
  79. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  80. id="_obce_wsg84___d4e14993-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="_obce_wsg84___d4e14998-1_ID_PROJECT"/>
  93. <xs:element minOccurs="0"
  94. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  95. id="_obce_wsg84___d4e15000-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="_obce_wsg84___d4e15005-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="_obce_wsg84___d4e15012-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="_obce_wsg84___d4e15019-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="_obce_wsg84___d4e15026-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="_obce_wsg84___d4e15033-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="_obce_wsg84___d4e15040-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="_obce_wsg84___d4e15047-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="_obce_wsg84___d4e15054-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="_obce_wsg84___d4e15061-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="_obce_wsg84___d4e15068-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="_obce_wsg84___d4e15076-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_rurociagi_obce_wsg84"
  256. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84"
  257. id="Rozdzie_Rozd_d4e5452"/>
  258. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_PROJEKT"
  259. id="Rozdzie_Rozd_d4e5453">
  260. <xs:annotation>
  261. <xs:documentation>Generalnie prototyp obiektu już jest jego planem, dla tego na ten moment bedzie to extensions obiektu infrastruktury</xs:documentation>
  262. </xs:annotation>
  263. <xs:complexContent id="_obce_wsg84___d4e15088-1">
  264. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84">
  265. <xs:sequence id="Rozdzielcza_ru_d4e5459">
  266. <xs:element name="the_geom"
  267. type="gml:AbstractFeatureType"
  268. id="_obce_wsg84___d4e15091-1_the_geom"/>
  269. <xs:element name="A_STATUS_INFO"
  270. type="xs:string"
  271. id="_obce_wsg84___d4e15092-1_A_STATUS_I"/>
  272. <xs:element name="Dlugosc"
  273. type="xs:double"
  274. id="_obce_wsg84___d4e15093-1_Dlugosc"/>
  275. <xs:element name="Powierzchnia"
  276. type="xs:double"
  277. id="_obce_wsg84___d4e15094-1_Powierzchn"/>
  278. <xs:element name="L_APPOITMENT_USER"
  279. type="xs:string"
  280. id="_obce_wsg84___d4e15095-1_L_APPOITME"/>
  281. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  282. id="_obce_wsg84___d4e15096-1">
  283. <xs:annotation>
  284. <xs:appinfo>
  285. <system_cache__appinfo:flat_relation_cache>
  286. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  287. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  288. </system_cache__appinfo:flat_relation_cache>
  289. </xs:appinfo>
  290. </xs:annotation>
  291. </xs:element>
  292. <xs:element name="A_CLASSIFIED"
  293. type="xs:string"
  294. id="_obce_wsg84___d4e15101-1_A_CLASSIFI"/>
  295. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  296. id="_obce_wsg84___d4e15102-1">
  297. <xs:annotation>
  298. <xs:appinfo>
  299. <system_cache__appinfo:flat_relation_cache>
  300. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  301. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  302. </system_cache__appinfo:flat_relation_cache>
  303. </xs:appinfo>
  304. </xs:annotation>
  305. </xs:element>
  306. <xs:element name="A_ADM_COMPANY"
  307. type="xs:string"
  308. id="_obce_wsg84___d4e15107-1_A_ADM_COMP"/>
  309. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  310. id="_obce_wsg84___d4e15108-1">
  311. <xs:annotation>
  312. <xs:appinfo>
  313. <system_cache__appinfo:flat_relation_cache>
  314. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  315. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  316. </system_cache__appinfo:flat_relation_cache>
  317. </xs:appinfo>
  318. </xs:annotation>
  319. </xs:element>
  320. <xs:element name="ID_PROJECT"
  321. type="xs:int"
  322. id="_obce_wsg84___d4e15113-1_ID_PROJECT"/>
  323. <xs:element minOccurs="0"
  324. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  325. id="_obce_wsg84___d4e15115-1">
  326. <xs:annotation>
  327. <xs:appinfo>
  328. <system_cache__appinfo:flat_relation_cache>
  329. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  330. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  331. </system_cache__appinfo:flat_relation_cache>
  332. </xs:appinfo>
  333. </xs:annotation>
  334. </xs:element>
  335. <xs:element maxOccurs="unbounded"
  336. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  337. id="_obce_wsg84___d4e15120-1">
  338. <xs:annotation>
  339. <xs:appinfo>
  340. <system_cache__appinfo:flat_relation_cache>
  341. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  342. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  343. </system_cache__appinfo:flat_relation_cache>
  344. </xs:appinfo>
  345. <xs:documentation>stworzono i wydrukowano fizycznie dokument projektu dla danego zakresu elementow</xs:documentation>
  346. </xs:annotation>
  347. </xs:element>
  348. <xs:element minOccurs="0"
  349. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  350. id="_obce_wsg84___d4e15127-1">
  351. <xs:annotation>
  352. <xs:appinfo>
  353. <system_cache__appinfo:flat_relation_cache>
  354. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  355. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  356. </system_cache__appinfo:flat_relation_cache>
  357. </xs:appinfo>
  358. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  359. </xs:annotation>
  360. </xs:element>
  361. <xs:element minOccurs="0"
  362. maxOccurs="unbounded"
  363. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  364. id="_obce_wsg84___d4e15134-1">
  365. <xs:annotation>
  366. <xs:appinfo>
  367. <system_cache__appinfo:flat_relation_cache>
  368. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  369. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  370. </system_cache__appinfo:flat_relation_cache>
  371. </xs:appinfo>
  372. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  373. </xs:annotation>
  374. </xs:element>
  375. <xs:element minOccurs="0"
  376. maxOccurs="unbounded"
  377. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  378. id="_obce_wsg84___d4e15141-1">
  379. <xs:annotation>
  380. <xs:appinfo>
  381. <system_cache__appinfo:flat_relation_cache>
  382. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  383. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  384. </system_cache__appinfo:flat_relation_cache>
  385. </xs:appinfo>
  386. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  387. </xs:annotation>
  388. </xs:element>
  389. <xs:element minOccurs="0"
  390. maxOccurs="unbounded"
  391. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  392. id="_obce_wsg84___d4e15148-1">
  393. <xs:annotation>
  394. <xs:appinfo>
  395. <system_cache__appinfo:flat_relation_cache>
  396. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  397. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  398. </system_cache__appinfo:flat_relation_cache>
  399. </xs:appinfo>
  400. <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>
  401. </xs:annotation>
  402. </xs:element>
  403. <xs:element minOccurs="0"
  404. maxOccurs="unbounded"
  405. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  406. id="_obce_wsg84___d4e15155-1">
  407. <xs:annotation>
  408. <xs:appinfo>
  409. <system_cache__appinfo:flat_relation_cache>
  410. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  411. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  412. </system_cache__appinfo:flat_relation_cache>
  413. </xs:appinfo>
  414. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  415. </xs:annotation>
  416. </xs:element>
  417. <xs:element minOccurs="0"
  418. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  419. id="_obce_wsg84___d4e15162-1">
  420. <xs:annotation>
  421. <xs:appinfo>
  422. <system_cache__appinfo:flat_relation_cache>
  423. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  424. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  425. </system_cache__appinfo:flat_relation_cache>
  426. </xs:appinfo>
  427. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  428. </xs:annotation>
  429. </xs:element>
  430. <xs:element minOccurs="0"
  431. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  432. id="_obce_wsg84___d4e15169-1">
  433. <xs:annotation>
  434. <xs:appinfo>
  435. <system_cache__appinfo:flat_relation_cache>
  436. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  437. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  438. </system_cache__appinfo:flat_relation_cache>
  439. </xs:appinfo>
  440. <xs:documentation>Czy jest zlecenie</xs:documentation>
  441. </xs:annotation>
  442. </xs:element>
  443. <xs:element minOccurs="0"
  444. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  445. id="_obce_wsg84___d4e15176-1">
  446. <xs:annotation>
  447. <xs:appinfo>
  448. <system_cache__appinfo:flat_relation_cache>
  449. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  450. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  451. </system_cache__appinfo:flat_relation_cache>
  452. </xs:appinfo>
  453. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  454. </xs:annotation>
  455. </xs:element>
  456. <xs:element minOccurs="0"
  457. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  458. id="_obce_wsg84___d4e15183-1">
  459. <xs:annotation>
  460. <xs:appinfo>
  461. <system_cache__appinfo:flat_relation_cache>
  462. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  463. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  464. </system_cache__appinfo:flat_relation_cache>
  465. </xs:appinfo>
  466. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  467. </xs:annotation>
  468. </xs:element>
  469. <xs:element minOccurs="0"
  470. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  471. id="_obce_wsg84___d4e15191-1">
  472. <xs:annotation>
  473. <xs:appinfo>
  474. <system_cache__appinfo:flat_relation_cache>
  475. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  476. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  477. </system_cache__appinfo:flat_relation_cache>
  478. </xs:appinfo>
  479. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  480. </xs:annotation>
  481. </xs:element>
  482. </xs:sequence>
  483. </xs:restriction>
  484. </xs:complexContent>
  485. </xs:complexType>
  486. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_PROJEKT"
  487. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_PROJEKT"
  488. id="Rozdzie_Rozd_d4e5572">
  489. <xs:annotation>
  490. <xs:documentation>Zaprojektowany - został wydrukowany projekt dla danego rekordu</xs:documentation>
  491. </xs:annotation>
  492. </xs:element>
  493. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_DO_REALIZ"
  494. id="Rozdzie_Rozd_d4e5576">
  495. <xs:complexContent id="_obce_wsg84___d4e15203-1">
  496. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_PROJEKT">
  497. <xs:sequence id="Rozdzielcza_ru_d4e5579">
  498. <xs:element name="the_geom"
  499. type="gml:AbstractFeatureType"
  500. id="_obce_wsg84___d4e15206-1_the_geom"/>
  501. <xs:element name="A_STATUS_INFO"
  502. type="xs:string"
  503. id="_obce_wsg84___d4e15207-1_A_STATUS_I"/>
  504. <xs:element name="Dlugosc"
  505. type="xs:double"
  506. id="_obce_wsg84___d4e15208-1_Dlugosc"/>
  507. <xs:element name="Powierzchnia"
  508. type="xs:double"
  509. id="_obce_wsg84___d4e15209-1_Powierzchn"/>
  510. <xs:element name="L_APPOITMENT_USER"
  511. type="xs:string"
  512. id="_obce_wsg84___d4e15210-1_L_APPOITME"/>
  513. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  514. id="_obce_wsg84___d4e15211-1">
  515. <xs:annotation>
  516. <xs:appinfo>
  517. <system_cache__appinfo:flat_relation_cache>
  518. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  519. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  520. </system_cache__appinfo:flat_relation_cache>
  521. </xs:appinfo>
  522. </xs:annotation>
  523. </xs:element>
  524. <xs:element name="A_CLASSIFIED"
  525. type="xs:string"
  526. id="_obce_wsg84___d4e15216-1_A_CLASSIFI"/>
  527. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  528. id="_obce_wsg84___d4e15217-1">
  529. <xs:annotation>
  530. <xs:appinfo>
  531. <system_cache__appinfo:flat_relation_cache>
  532. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  533. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  534. </system_cache__appinfo:flat_relation_cache>
  535. </xs:appinfo>
  536. </xs:annotation>
  537. </xs:element>
  538. <xs:element name="A_ADM_COMPANY"
  539. type="xs:string"
  540. id="_obce_wsg84___d4e15222-1_A_ADM_COMP"/>
  541. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  542. id="_obce_wsg84___d4e15223-1">
  543. <xs:annotation>
  544. <xs:appinfo>
  545. <system_cache__appinfo:flat_relation_cache>
  546. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  547. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  548. </system_cache__appinfo:flat_relation_cache>
  549. </xs:appinfo>
  550. </xs:annotation>
  551. </xs:element>
  552. <xs:element name="ID_PROJECT"
  553. type="xs:int"
  554. id="_obce_wsg84___d4e15228-1_ID_PROJECT"/>
  555. <xs:element minOccurs="0"
  556. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  557. id="_obce_wsg84___d4e15230-1">
  558. <xs:annotation>
  559. <xs:appinfo>
  560. <system_cache__appinfo:flat_relation_cache>
  561. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  562. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  563. </system_cache__appinfo:flat_relation_cache>
  564. </xs:appinfo>
  565. </xs:annotation>
  566. </xs:element>
  567. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  568. id="_obce_wsg84___d4e15235-1">
  569. <xs:annotation>
  570. <xs:appinfo>
  571. <system_cache__appinfo:flat_relation_cache>
  572. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  573. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  574. </system_cache__appinfo:flat_relation_cache>
  575. </xs:appinfo>
  576. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  577. </xs:annotation>
  578. </xs:element>
  579. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  580. id="_obce_wsg84___d4e15242-1">
  581. <xs:annotation>
  582. <xs:appinfo>
  583. <system_cache__appinfo:flat_relation_cache>
  584. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  585. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  586. </system_cache__appinfo:flat_relation_cache>
  587. </xs:appinfo>
  588. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  589. </xs:annotation>
  590. </xs:element>
  591. <xs:element minOccurs="0"
  592. maxOccurs="unbounded"
  593. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  594. id="_obce_wsg84___d4e15249-1">
  595. <xs:annotation>
  596. <xs:appinfo>
  597. <system_cache__appinfo:flat_relation_cache>
  598. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  599. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  600. </system_cache__appinfo:flat_relation_cache>
  601. </xs:appinfo>
  602. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  603. </xs:annotation>
  604. </xs:element>
  605. <xs:element minOccurs="0"
  606. maxOccurs="unbounded"
  607. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  608. id="_obce_wsg84___d4e15256-1">
  609. <xs:annotation>
  610. <xs:appinfo>
  611. <system_cache__appinfo:flat_relation_cache>
  612. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  613. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  614. </system_cache__appinfo:flat_relation_cache>
  615. </xs:appinfo>
  616. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  617. </xs:annotation>
  618. </xs:element>
  619. <xs:element minOccurs="0"
  620. maxOccurs="unbounded"
  621. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  622. id="_obce_wsg84___d4e15263-1">
  623. <xs:annotation>
  624. <xs:appinfo>
  625. <system_cache__appinfo:flat_relation_cache>
  626. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  627. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  628. </system_cache__appinfo:flat_relation_cache>
  629. </xs:appinfo>
  630. <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>
  631. </xs:annotation>
  632. </xs:element>
  633. <xs:element minOccurs="0"
  634. maxOccurs="unbounded"
  635. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  636. id="_obce_wsg84___d4e15270-1">
  637. <xs:annotation>
  638. <xs:appinfo>
  639. <system_cache__appinfo:flat_relation_cache>
  640. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  641. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  642. </system_cache__appinfo:flat_relation_cache>
  643. </xs:appinfo>
  644. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  645. </xs:annotation>
  646. </xs:element>
  647. <xs:element minOccurs="0"
  648. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  649. id="_obce_wsg84___d4e15277-1">
  650. <xs:annotation>
  651. <xs:appinfo>
  652. <system_cache__appinfo:flat_relation_cache>
  653. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  654. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  655. </system_cache__appinfo:flat_relation_cache>
  656. </xs:appinfo>
  657. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  658. </xs:annotation>
  659. </xs:element>
  660. <xs:element minOccurs="0"
  661. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  662. id="_obce_wsg84___d4e15284-1">
  663. <xs:annotation>
  664. <xs:appinfo>
  665. <system_cache__appinfo:flat_relation_cache>
  666. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  667. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  668. </system_cache__appinfo:flat_relation_cache>
  669. </xs:appinfo>
  670. <xs:documentation>Czy jest zlecenie</xs:documentation>
  671. </xs:annotation>
  672. </xs:element>
  673. <xs:element minOccurs="0"
  674. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  675. id="_obce_wsg84___d4e15291-1">
  676. <xs:annotation>
  677. <xs:appinfo>
  678. <system_cache__appinfo:flat_relation_cache>
  679. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  680. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  681. </system_cache__appinfo:flat_relation_cache>
  682. </xs:appinfo>
  683. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  684. </xs:annotation>
  685. </xs:element>
  686. <xs:element minOccurs="0"
  687. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  688. id="_obce_wsg84___d4e15298-1">
  689. <xs:annotation>
  690. <xs:appinfo>
  691. <system_cache__appinfo:flat_relation_cache>
  692. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  693. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  694. </system_cache__appinfo:flat_relation_cache>
  695. </xs:appinfo>
  696. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  697. </xs:annotation>
  698. </xs:element>
  699. <xs:element minOccurs="0"
  700. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  701. id="_obce_wsg84___d4e15306-1">
  702. <xs:annotation>
  703. <xs:appinfo>
  704. <system_cache__appinfo:flat_relation_cache>
  705. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  706. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  707. </system_cache__appinfo:flat_relation_cache>
  708. </xs:appinfo>
  709. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  710. </xs:annotation>
  711. </xs:element>
  712. </xs:sequence>
  713. </xs:restriction>
  714. </xs:complexContent>
  715. </xs:complexType>
  716. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_DO_REALIZ"
  717. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_DO_REALIZ"
  718. id="Rozdzie_Rozd_d4e5693"/>
  719. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_OFFER" id="Rozdzie_Rozd_d4e5694">
  720. <xs:annotation>
  721. <xs:documentation>Obiekt, na ktory otryzmalismy oferte</xs:documentation>
  722. </xs:annotation>
  723. <xs:complexContent id="_obce_wsg84___d4e15319-1">
  724. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_PROJEKT">
  725. <xs:sequence id="Rozdzielcza_ru_d4e5700">
  726. <xs:element name="the_geom"
  727. type="gml:AbstractFeatureType"
  728. id="_obce_wsg84___d4e15322-1_the_geom"/>
  729. <xs:element name="A_STATUS_INFO"
  730. type="xs:string"
  731. id="_obce_wsg84___d4e15323-1_A_STATUS_I"/>
  732. <xs:element name="Dlugosc"
  733. type="xs:double"
  734. id="_obce_wsg84___d4e15324-1_Dlugosc"/>
  735. <xs:element name="Powierzchnia"
  736. type="xs:double"
  737. id="_obce_wsg84___d4e15325-1_Powierzchn"/>
  738. <xs:element name="L_APPOITMENT_USER"
  739. type="xs:string"
  740. id="_obce_wsg84___d4e15326-1_L_APPOITME"/>
  741. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  742. id="_obce_wsg84___d4e15327-1">
  743. <xs:annotation>
  744. <xs:appinfo>
  745. <system_cache__appinfo:flat_relation_cache>
  746. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  747. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  748. </system_cache__appinfo:flat_relation_cache>
  749. </xs:appinfo>
  750. </xs:annotation>
  751. </xs:element>
  752. <xs:element name="A_CLASSIFIED"
  753. type="xs:string"
  754. id="_obce_wsg84___d4e15332-1_A_CLASSIFI"/>
  755. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  756. id="_obce_wsg84___d4e15333-1">
  757. <xs:annotation>
  758. <xs:appinfo>
  759. <system_cache__appinfo:flat_relation_cache>
  760. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  761. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  762. </system_cache__appinfo:flat_relation_cache>
  763. </xs:appinfo>
  764. </xs:annotation>
  765. </xs:element>
  766. <xs:element name="A_ADM_COMPANY"
  767. type="xs:string"
  768. id="_obce_wsg84___d4e15338-1_A_ADM_COMP"/>
  769. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  770. id="_obce_wsg84___d4e15339-1">
  771. <xs:annotation>
  772. <xs:appinfo>
  773. <system_cache__appinfo:flat_relation_cache>
  774. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  775. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  776. </system_cache__appinfo:flat_relation_cache>
  777. </xs:appinfo>
  778. </xs:annotation>
  779. </xs:element>
  780. <xs:element name="ID_PROJECT"
  781. type="xs:int"
  782. id="_obce_wsg84___d4e15344-1_ID_PROJECT"/>
  783. <xs:element minOccurs="0"
  784. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  785. id="_obce_wsg84___d4e15346-1">
  786. <xs:annotation>
  787. <xs:appinfo>
  788. <system_cache__appinfo:flat_relation_cache>
  789. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  790. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  791. </system_cache__appinfo:flat_relation_cache>
  792. </xs:appinfo>
  793. </xs:annotation>
  794. </xs:element>
  795. <xs:element maxOccurs="unbounded"
  796. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  797. id="_obce_wsg84___d4e15351-1">
  798. <xs:annotation>
  799. <xs:appinfo>
  800. <system_cache__appinfo:flat_relation_cache>
  801. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  802. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  803. </system_cache__appinfo:flat_relation_cache>
  804. </xs:appinfo>
  805. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  806. </xs:annotation>
  807. </xs:element>
  808. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  809. id="_obce_wsg84___d4e15358-1">
  810. <xs:annotation>
  811. <xs:appinfo>
  812. <system_cache__appinfo:flat_relation_cache>
  813. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  814. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  815. </system_cache__appinfo:flat_relation_cache>
  816. </xs:appinfo>
  817. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  818. </xs:annotation>
  819. </xs:element>
  820. <xs:element minOccurs="1"
  821. maxOccurs="unbounded"
  822. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  823. id="_obce_wsg84___d4e15365-1">
  824. <xs:annotation>
  825. <xs:appinfo>
  826. <system_cache__appinfo:flat_relation_cache>
  827. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  828. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  829. </system_cache__appinfo:flat_relation_cache>
  830. </xs:appinfo>
  831. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  832. </xs:annotation>
  833. </xs:element>
  834. <xs:element minOccurs="0"
  835. maxOccurs="unbounded"
  836. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  837. id="_obce_wsg84___d4e15372-1">
  838. <xs:annotation>
  839. <xs:appinfo>
  840. <system_cache__appinfo:flat_relation_cache>
  841. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  842. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  843. </system_cache__appinfo:flat_relation_cache>
  844. </xs:appinfo>
  845. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  846. </xs:annotation>
  847. </xs:element>
  848. <xs:element minOccurs="0"
  849. maxOccurs="unbounded"
  850. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  851. id="_obce_wsg84___d4e15379-1">
  852. <xs:annotation>
  853. <xs:appinfo>
  854. <system_cache__appinfo:flat_relation_cache>
  855. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  856. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  857. </system_cache__appinfo:flat_relation_cache>
  858. </xs:appinfo>
  859. <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>
  860. </xs:annotation>
  861. </xs:element>
  862. <xs:element minOccurs="0"
  863. maxOccurs="unbounded"
  864. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  865. id="_obce_wsg84___d4e15386-1">
  866. <xs:annotation>
  867. <xs:appinfo>
  868. <system_cache__appinfo:flat_relation_cache>
  869. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  870. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  871. </system_cache__appinfo:flat_relation_cache>
  872. </xs:appinfo>
  873. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  874. </xs:annotation>
  875. </xs:element>
  876. <xs:element minOccurs="0"
  877. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  878. id="_obce_wsg84___d4e15393-1">
  879. <xs:annotation>
  880. <xs:appinfo>
  881. <system_cache__appinfo:flat_relation_cache>
  882. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  883. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  884. </system_cache__appinfo:flat_relation_cache>
  885. </xs:appinfo>
  886. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  887. </xs:annotation>
  888. </xs:element>
  889. <xs:element minOccurs="0"
  890. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  891. id="_obce_wsg84___d4e15400-1">
  892. <xs:annotation>
  893. <xs:appinfo>
  894. <system_cache__appinfo:flat_relation_cache>
  895. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  896. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  897. </system_cache__appinfo:flat_relation_cache>
  898. </xs:appinfo>
  899. <xs:documentation>Czy jest zlecenie</xs:documentation>
  900. </xs:annotation>
  901. </xs:element>
  902. <xs:element minOccurs="0"
  903. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  904. id="_obce_wsg84___d4e15407-1">
  905. <xs:annotation>
  906. <xs:appinfo>
  907. <system_cache__appinfo:flat_relation_cache>
  908. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  909. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  910. </system_cache__appinfo:flat_relation_cache>
  911. </xs:appinfo>
  912. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  913. </xs:annotation>
  914. </xs:element>
  915. <xs:element minOccurs="0"
  916. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  917. id="_obce_wsg84___d4e15414-1">
  918. <xs:annotation>
  919. <xs:appinfo>
  920. <system_cache__appinfo:flat_relation_cache>
  921. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  922. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  923. </system_cache__appinfo:flat_relation_cache>
  924. </xs:appinfo>
  925. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  926. </xs:annotation>
  927. </xs:element>
  928. <xs:element minOccurs="0"
  929. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  930. id="_obce_wsg84___d4e15422-1">
  931. <xs:annotation>
  932. <xs:appinfo>
  933. <system_cache__appinfo:flat_relation_cache>
  934. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  935. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  936. </system_cache__appinfo:flat_relation_cache>
  937. </xs:appinfo>
  938. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  939. </xs:annotation>
  940. </xs:element>
  941. </xs:sequence>
  942. </xs:restriction>
  943. </xs:complexContent>
  944. </xs:complexType>
  945. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_OFFER"
  946. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_OFFER"
  947. id="Rozdzie_Rozd_d4e5813"/>
  948. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_DO_UZG"
  949. id="Rozdzie_Rozd_d4e5814">
  950. <xs:complexContent id="_obce_wsg84___d4e15431-1">
  951. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_DO_REALIZ">
  952. <xs:sequence id="Rozdzielcza_ru_d4e5817">
  953. <xs:element name="the_geom"
  954. type="gml:AbstractFeatureType"
  955. id="_obce_wsg84___d4e15434-1_the_geom"/>
  956. <xs:element name="A_STATUS_INFO"
  957. type="xs:string"
  958. id="_obce_wsg84___d4e15435-1_A_STATUS_I"/>
  959. <xs:element name="Dlugosc"
  960. type="xs:double"
  961. id="_obce_wsg84___d4e15436-1_Dlugosc"/>
  962. <xs:element name="Powierzchnia"
  963. type="xs:double"
  964. id="_obce_wsg84___d4e15437-1_Powierzchn"/>
  965. <xs:element name="L_APPOITMENT_USER"
  966. type="xs:string"
  967. id="_obce_wsg84___d4e15438-1_L_APPOITME"/>
  968. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  969. id="_obce_wsg84___d4e15439-1">
  970. <xs:annotation>
  971. <xs:appinfo>
  972. <system_cache__appinfo:flat_relation_cache>
  973. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  974. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  975. </system_cache__appinfo:flat_relation_cache>
  976. </xs:appinfo>
  977. </xs:annotation>
  978. </xs:element>
  979. <xs:element name="A_CLASSIFIED"
  980. type="xs:string"
  981. id="_obce_wsg84___d4e15444-1_A_CLASSIFI"/>
  982. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  983. id="_obce_wsg84___d4e15445-1">
  984. <xs:annotation>
  985. <xs:appinfo>
  986. <system_cache__appinfo:flat_relation_cache>
  987. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  988. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  989. </system_cache__appinfo:flat_relation_cache>
  990. </xs:appinfo>
  991. </xs:annotation>
  992. </xs:element>
  993. <xs:element name="A_ADM_COMPANY"
  994. type="xs:string"
  995. id="_obce_wsg84___d4e15450-1_A_ADM_COMP"/>
  996. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  997. id="_obce_wsg84___d4e15451-1">
  998. <xs:annotation>
  999. <xs:appinfo>
  1000. <system_cache__appinfo:flat_relation_cache>
  1001. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1002. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1003. </system_cache__appinfo:flat_relation_cache>
  1004. </xs:appinfo>
  1005. </xs:annotation>
  1006. </xs:element>
  1007. <xs:element name="ID_PROJECT"
  1008. type="xs:int"
  1009. id="_obce_wsg84___d4e15456-1_ID_PROJECT"/>
  1010. <xs:element minOccurs="0"
  1011. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1012. id="_obce_wsg84___d4e15458-1">
  1013. <xs:annotation>
  1014. <xs:appinfo>
  1015. <system_cache__appinfo:flat_relation_cache>
  1016. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1017. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1018. </system_cache__appinfo:flat_relation_cache>
  1019. </xs:appinfo>
  1020. </xs:annotation>
  1021. </xs:element>
  1022. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1023. id="_obce_wsg84___d4e15463-1">
  1024. <xs:annotation>
  1025. <xs:appinfo>
  1026. <system_cache__appinfo:flat_relation_cache>
  1027. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1028. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1029. </system_cache__appinfo:flat_relation_cache>
  1030. </xs:appinfo>
  1031. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1032. </xs:annotation>
  1033. </xs:element>
  1034. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1035. id="_obce_wsg84___d4e15470-1">
  1036. <xs:annotation>
  1037. <xs:appinfo>
  1038. <system_cache__appinfo:flat_relation_cache>
  1039. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1040. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1041. </system_cache__appinfo:flat_relation_cache>
  1042. </xs:appinfo>
  1043. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1044. </xs:annotation>
  1045. </xs:element>
  1046. <xs:element minOccurs="0"
  1047. maxOccurs="unbounded"
  1048. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1049. id="_obce_wsg84___d4e15477-1">
  1050. <xs:annotation>
  1051. <xs:appinfo>
  1052. <system_cache__appinfo:flat_relation_cache>
  1053. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1054. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1055. </system_cache__appinfo:flat_relation_cache>
  1056. </xs:appinfo>
  1057. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1058. </xs:annotation>
  1059. </xs:element>
  1060. <xs:element minOccurs="1"
  1061. maxOccurs="unbounded"
  1062. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1063. id="_obce_wsg84___d4e15484-1">
  1064. <xs:annotation>
  1065. <xs:appinfo>
  1066. <system_cache__appinfo:flat_relation_cache>
  1067. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1068. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1069. </system_cache__appinfo:flat_relation_cache>
  1070. </xs:appinfo>
  1071. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1072. </xs:annotation>
  1073. </xs:element>
  1074. <xs:element minOccurs="0"
  1075. maxOccurs="unbounded"
  1076. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1077. id="_obce_wsg84___d4e15491-1">
  1078. <xs:annotation>
  1079. <xs:appinfo>
  1080. <system_cache__appinfo:flat_relation_cache>
  1081. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1082. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1083. </system_cache__appinfo:flat_relation_cache>
  1084. </xs:appinfo>
  1085. <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>
  1086. </xs:annotation>
  1087. </xs:element>
  1088. <xs:element minOccurs="0"
  1089. maxOccurs="unbounded"
  1090. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1091. id="_obce_wsg84___d4e15498-1">
  1092. <xs:annotation>
  1093. <xs:appinfo>
  1094. <system_cache__appinfo:flat_relation_cache>
  1095. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1096. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1097. </system_cache__appinfo:flat_relation_cache>
  1098. </xs:appinfo>
  1099. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  1100. </xs:annotation>
  1101. </xs:element>
  1102. <xs:element minOccurs="0"
  1103. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1104. id="_obce_wsg84___d4e15505-1">
  1105. <xs:annotation>
  1106. <xs:appinfo>
  1107. <system_cache__appinfo:flat_relation_cache>
  1108. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1109. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1110. </system_cache__appinfo:flat_relation_cache>
  1111. </xs:appinfo>
  1112. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1113. </xs:annotation>
  1114. </xs:element>
  1115. <xs:element minOccurs="0"
  1116. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1117. id="_obce_wsg84___d4e15512-1">
  1118. <xs:annotation>
  1119. <xs:appinfo>
  1120. <system_cache__appinfo:flat_relation_cache>
  1121. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1122. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1123. </system_cache__appinfo:flat_relation_cache>
  1124. </xs:appinfo>
  1125. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1126. </xs:annotation>
  1127. </xs:element>
  1128. <xs:element minOccurs="0"
  1129. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1130. id="_obce_wsg84___d4e15519-1">
  1131. <xs:annotation>
  1132. <xs:appinfo>
  1133. <system_cache__appinfo:flat_relation_cache>
  1134. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1135. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1136. </system_cache__appinfo:flat_relation_cache>
  1137. </xs:appinfo>
  1138. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  1139. </xs:annotation>
  1140. </xs:element>
  1141. <xs:element minOccurs="0"
  1142. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1143. id="_obce_wsg84___d4e15526-1">
  1144. <xs:annotation>
  1145. <xs:appinfo>
  1146. <system_cache__appinfo:flat_relation_cache>
  1147. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1148. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1149. </system_cache__appinfo:flat_relation_cache>
  1150. </xs:appinfo>
  1151. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  1152. </xs:annotation>
  1153. </xs:element>
  1154. <xs:element minOccurs="0"
  1155. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1156. id="_obce_wsg84___d4e15534-1">
  1157. <xs:annotation>
  1158. <xs:appinfo>
  1159. <system_cache__appinfo:flat_relation_cache>
  1160. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1161. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1162. </system_cache__appinfo:flat_relation_cache>
  1163. </xs:appinfo>
  1164. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  1165. </xs:annotation>
  1166. </xs:element>
  1167. </xs:sequence>
  1168. </xs:restriction>
  1169. </xs:complexContent>
  1170. </xs:complexType>
  1171. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_DO_UZG"
  1172. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_DO_UZG"
  1173. id="Rozdzie_Rozd_d4e5930">
  1174. <xs:annotation>
  1175. <xs:documentation>Taki co wyszedl do uzgodnien z wlascicielem nieruchomosci / dzialki
  1176. </xs:documentation>
  1177. </xs:annotation>
  1178. </xs:element>
  1179. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_UZG" id="Rozdzie_Rozd_d4e5934">
  1180. <xs:annotation>
  1181. <xs:documentation>Został uzgodniony, bo otrzymalismy dokument z uzogdnieniem pozytywnym</xs:documentation>
  1182. </xs:annotation>
  1183. <xs:complexContent id="_obce_wsg84___d4e15549-1">
  1184. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_DO_REALIZ">
  1185. <xs:sequence id="Rozdzielcza_ru_d4e5940">
  1186. <xs:element name="the_geom"
  1187. type="gml:AbstractFeatureType"
  1188. id="_obce_wsg84___d4e15552-1_the_geom"/>
  1189. <xs:element name="A_STATUS_INFO"
  1190. type="xs:string"
  1191. id="_obce_wsg84___d4e15553-1_A_STATUS_I"/>
  1192. <xs:element name="Dlugosc"
  1193. type="xs:double"
  1194. id="_obce_wsg84___d4e15554-1_Dlugosc"/>
  1195. <xs:element name="Powierzchnia"
  1196. type="xs:double"
  1197. id="_obce_wsg84___d4e15555-1_Powierzchn"/>
  1198. <xs:element name="L_APPOITMENT_USER"
  1199. type="xs:string"
  1200. id="_obce_wsg84___d4e15556-1_L_APPOITME"/>
  1201. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  1202. id="_obce_wsg84___d4e15557-1">
  1203. <xs:annotation>
  1204. <xs:appinfo>
  1205. <system_cache__appinfo:flat_relation_cache>
  1206. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1207. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  1208. </system_cache__appinfo:flat_relation_cache>
  1209. </xs:appinfo>
  1210. </xs:annotation>
  1211. </xs:element>
  1212. <xs:element name="A_CLASSIFIED"
  1213. type="xs:string"
  1214. id="_obce_wsg84___d4e15562-1_A_CLASSIFI"/>
  1215. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  1216. id="_obce_wsg84___d4e15563-1">
  1217. <xs:annotation>
  1218. <xs:appinfo>
  1219. <system_cache__appinfo:flat_relation_cache>
  1220. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1221. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  1222. </system_cache__appinfo:flat_relation_cache>
  1223. </xs:appinfo>
  1224. </xs:annotation>
  1225. </xs:element>
  1226. <xs:element name="A_ADM_COMPANY"
  1227. type="xs:string"
  1228. id="_obce_wsg84___d4e15568-1_A_ADM_COMP"/>
  1229. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  1230. id="_obce_wsg84___d4e15569-1">
  1231. <xs:annotation>
  1232. <xs:appinfo>
  1233. <system_cache__appinfo:flat_relation_cache>
  1234. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1235. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1236. </system_cache__appinfo:flat_relation_cache>
  1237. </xs:appinfo>
  1238. </xs:annotation>
  1239. </xs:element>
  1240. <xs:element name="ID_PROJECT"
  1241. type="xs:int"
  1242. id="_obce_wsg84___d4e15574-1_ID_PROJECT"/>
  1243. <xs:element minOccurs="0"
  1244. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1245. id="_obce_wsg84___d4e15576-1">
  1246. <xs:annotation>
  1247. <xs:appinfo>
  1248. <system_cache__appinfo:flat_relation_cache>
  1249. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1250. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1251. </system_cache__appinfo:flat_relation_cache>
  1252. </xs:appinfo>
  1253. </xs:annotation>
  1254. </xs:element>
  1255. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1256. id="_obce_wsg84___d4e15581-1">
  1257. <xs:annotation>
  1258. <xs:appinfo>
  1259. <system_cache__appinfo:flat_relation_cache>
  1260. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1261. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1262. </system_cache__appinfo:flat_relation_cache>
  1263. </xs:appinfo>
  1264. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1265. </xs:annotation>
  1266. </xs:element>
  1267. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1268. id="_obce_wsg84___d4e15588-1">
  1269. <xs:annotation>
  1270. <xs:appinfo>
  1271. <system_cache__appinfo:flat_relation_cache>
  1272. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1273. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1274. </system_cache__appinfo:flat_relation_cache>
  1275. </xs:appinfo>
  1276. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1277. </xs:annotation>
  1278. </xs:element>
  1279. <xs:element minOccurs="0"
  1280. maxOccurs="unbounded"
  1281. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1282. id="_obce_wsg84___d4e15595-1">
  1283. <xs:annotation>
  1284. <xs:appinfo>
  1285. <system_cache__appinfo:flat_relation_cache>
  1286. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1287. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1288. </system_cache__appinfo:flat_relation_cache>
  1289. </xs:appinfo>
  1290. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1291. </xs:annotation>
  1292. </xs:element>
  1293. <xs:element minOccurs="0"
  1294. maxOccurs="unbounded"
  1295. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1296. id="_obce_wsg84___d4e15602-1">
  1297. <xs:annotation>
  1298. <xs:appinfo>
  1299. <system_cache__appinfo:flat_relation_cache>
  1300. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1301. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1302. </system_cache__appinfo:flat_relation_cache>
  1303. </xs:appinfo>
  1304. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1305. </xs:annotation>
  1306. </xs:element>
  1307. <xs:element minOccurs="0"
  1308. maxOccurs="unbounded"
  1309. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1310. id="_obce_wsg84___d4e15609-1">
  1311. <xs:annotation>
  1312. <xs:appinfo>
  1313. <system_cache__appinfo:flat_relation_cache>
  1314. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1315. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1316. </system_cache__appinfo:flat_relation_cache>
  1317. </xs:appinfo>
  1318. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1319. </xs:annotation>
  1320. </xs:element>
  1321. <xs:element minOccurs="0"
  1322. maxOccurs="unbounded"
  1323. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1324. id="_obce_wsg84___d4e15616-1">
  1325. <xs:annotation>
  1326. <xs:appinfo>
  1327. <system_cache__appinfo:flat_relation_cache>
  1328. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1329. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1330. </system_cache__appinfo:flat_relation_cache>
  1331. </xs:appinfo>
  1332. <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>
  1333. </xs:annotation>
  1334. </xs:element>
  1335. <xs:element minOccurs="0"
  1336. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1337. id="_obce_wsg84___d4e15623-1">
  1338. <xs:annotation>
  1339. <xs:appinfo>
  1340. <system_cache__appinfo:flat_relation_cache>
  1341. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1342. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1343. </system_cache__appinfo:flat_relation_cache>
  1344. </xs:appinfo>
  1345. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  1346. </xs:annotation>
  1347. </xs:element>
  1348. <xs:element minOccurs="0"
  1349. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1350. id="_obce_wsg84___d4e15630-1">
  1351. <xs:annotation>
  1352. <xs:appinfo>
  1353. <system_cache__appinfo:flat_relation_cache>
  1354. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1355. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1356. </system_cache__appinfo:flat_relation_cache>
  1357. </xs:appinfo>
  1358. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1359. </xs:annotation>
  1360. </xs:element>
  1361. <xs:element minOccurs="0"
  1362. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1363. id="_obce_wsg84___d4e15637-1">
  1364. <xs:annotation>
  1365. <xs:appinfo>
  1366. <system_cache__appinfo:flat_relation_cache>
  1367. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1368. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1369. </system_cache__appinfo:flat_relation_cache>
  1370. </xs:appinfo>
  1371. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  1372. </xs:annotation>
  1373. </xs:element>
  1374. <xs:element minOccurs="0"
  1375. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1376. id="_obce_wsg84___d4e15644-1">
  1377. <xs:annotation>
  1378. <xs:appinfo>
  1379. <system_cache__appinfo:flat_relation_cache>
  1380. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1381. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1382. </system_cache__appinfo:flat_relation_cache>
  1383. </xs:appinfo>
  1384. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  1385. </xs:annotation>
  1386. </xs:element>
  1387. <xs:element minOccurs="0"
  1388. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1389. id="_obce_wsg84___d4e15652-1">
  1390. <xs:annotation>
  1391. <xs:appinfo>
  1392. <system_cache__appinfo:flat_relation_cache>
  1393. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1394. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1395. </system_cache__appinfo:flat_relation_cache>
  1396. </xs:appinfo>
  1397. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  1398. </xs:annotation>
  1399. </xs:element>
  1400. </xs:sequence>
  1401. </xs:restriction>
  1402. </xs:complexContent>
  1403. </xs:complexType>
  1404. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_UZG"
  1405. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_UZG"
  1406. id="Rozdzie_Rozd_d4e6053"/>
  1407. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_DO_UZG_ZUD"
  1408. id="Rozdzie_Rozd_d4e6054">
  1409. <xs:complexContent id="_obce_wsg84___d4e15661-1">
  1410. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_DO_REALIZ">
  1411. <xs:sequence id="Rozdzielcza_ru_d4e6057">
  1412. <xs:element name="the_geom"
  1413. type="gml:AbstractFeatureType"
  1414. id="_obce_wsg84___d4e15664-1_the_geom"/>
  1415. <xs:element name="A_STATUS_INFO"
  1416. type="xs:string"
  1417. id="_obce_wsg84___d4e15665-1_A_STATUS_I"/>
  1418. <xs:element name="Dlugosc"
  1419. type="xs:double"
  1420. id="_obce_wsg84___d4e15666-1_Dlugosc"/>
  1421. <xs:element name="Powierzchnia"
  1422. type="xs:double"
  1423. id="_obce_wsg84___d4e15667-1_Powierzchn"/>
  1424. <xs:element name="L_APPOITMENT_USER"
  1425. type="xs:string"
  1426. id="_obce_wsg84___d4e15668-1_L_APPOITME"/>
  1427. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  1428. id="_obce_wsg84___d4e15669-1">
  1429. <xs:annotation>
  1430. <xs:appinfo>
  1431. <system_cache__appinfo:flat_relation_cache>
  1432. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1433. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  1434. </system_cache__appinfo:flat_relation_cache>
  1435. </xs:appinfo>
  1436. </xs:annotation>
  1437. </xs:element>
  1438. <xs:element name="A_CLASSIFIED"
  1439. type="xs:string"
  1440. id="_obce_wsg84___d4e15674-1_A_CLASSIFI"/>
  1441. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  1442. id="_obce_wsg84___d4e15675-1">
  1443. <xs:annotation>
  1444. <xs:appinfo>
  1445. <system_cache__appinfo:flat_relation_cache>
  1446. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1447. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  1448. </system_cache__appinfo:flat_relation_cache>
  1449. </xs:appinfo>
  1450. </xs:annotation>
  1451. </xs:element>
  1452. <xs:element name="A_ADM_COMPANY"
  1453. type="xs:string"
  1454. id="_obce_wsg84___d4e15680-1_A_ADM_COMP"/>
  1455. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  1456. id="_obce_wsg84___d4e15681-1">
  1457. <xs:annotation>
  1458. <xs:appinfo>
  1459. <system_cache__appinfo:flat_relation_cache>
  1460. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1461. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1462. </system_cache__appinfo:flat_relation_cache>
  1463. </xs:appinfo>
  1464. </xs:annotation>
  1465. </xs:element>
  1466. <xs:element name="ID_PROJECT"
  1467. type="xs:int"
  1468. id="_obce_wsg84___d4e15686-1_ID_PROJECT"/>
  1469. <xs:element minOccurs="0"
  1470. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1471. id="_obce_wsg84___d4e15688-1">
  1472. <xs:annotation>
  1473. <xs:appinfo>
  1474. <system_cache__appinfo:flat_relation_cache>
  1475. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1476. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1477. </system_cache__appinfo:flat_relation_cache>
  1478. </xs:appinfo>
  1479. </xs:annotation>
  1480. </xs:element>
  1481. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1482. id="_obce_wsg84___d4e15693-1">
  1483. <xs:annotation>
  1484. <xs:appinfo>
  1485. <system_cache__appinfo:flat_relation_cache>
  1486. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1487. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1488. </system_cache__appinfo:flat_relation_cache>
  1489. </xs:appinfo>
  1490. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1491. </xs:annotation>
  1492. </xs:element>
  1493. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1494. id="_obce_wsg84___d4e15700-1">
  1495. <xs:annotation>
  1496. <xs:appinfo>
  1497. <system_cache__appinfo:flat_relation_cache>
  1498. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1499. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1500. </system_cache__appinfo:flat_relation_cache>
  1501. </xs:appinfo>
  1502. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1503. </xs:annotation>
  1504. </xs:element>
  1505. <xs:element minOccurs="0"
  1506. maxOccurs="unbounded"
  1507. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1508. id="_obce_wsg84___d4e15707-1">
  1509. <xs:annotation>
  1510. <xs:appinfo>
  1511. <system_cache__appinfo:flat_relation_cache>
  1512. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1513. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1514. </system_cache__appinfo:flat_relation_cache>
  1515. </xs:appinfo>
  1516. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1517. </xs:annotation>
  1518. </xs:element>
  1519. <xs:element minOccurs="0"
  1520. maxOccurs="unbounded"
  1521. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1522. id="_obce_wsg84___d4e15714-1">
  1523. <xs:annotation>
  1524. <xs:appinfo>
  1525. <system_cache__appinfo:flat_relation_cache>
  1526. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1527. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1528. </system_cache__appinfo:flat_relation_cache>
  1529. </xs:appinfo>
  1530. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1531. </xs:annotation>
  1532. </xs:element>
  1533. <xs:element minOccurs="0"
  1534. maxOccurs="unbounded"
  1535. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1536. id="_obce_wsg84___d4e15721-1">
  1537. <xs:annotation>
  1538. <xs:appinfo>
  1539. <system_cache__appinfo:flat_relation_cache>
  1540. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1541. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1542. </system_cache__appinfo:flat_relation_cache>
  1543. </xs:appinfo>
  1544. <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>
  1545. </xs:annotation>
  1546. </xs:element>
  1547. <xs:element minOccurs="1"
  1548. maxOccurs="unbounded"
  1549. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1550. id="_obce_wsg84___d4e15728-1">
  1551. <xs:annotation>
  1552. <xs:appinfo>
  1553. <system_cache__appinfo:flat_relation_cache>
  1554. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1555. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1556. </system_cache__appinfo:flat_relation_cache>
  1557. </xs:appinfo>
  1558. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  1559. </xs:annotation>
  1560. </xs:element>
  1561. <xs:element minOccurs="0"
  1562. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1563. id="_obce_wsg84___d4e15735-1">
  1564. <xs:annotation>
  1565. <xs:appinfo>
  1566. <system_cache__appinfo:flat_relation_cache>
  1567. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1568. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1569. </system_cache__appinfo:flat_relation_cache>
  1570. </xs:appinfo>
  1571. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1572. </xs:annotation>
  1573. </xs:element>
  1574. <xs:element minOccurs="0"
  1575. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1576. id="_obce_wsg84___d4e15742-1">
  1577. <xs:annotation>
  1578. <xs:appinfo>
  1579. <system_cache__appinfo:flat_relation_cache>
  1580. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1581. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1582. </system_cache__appinfo:flat_relation_cache>
  1583. </xs:appinfo>
  1584. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1585. </xs:annotation>
  1586. </xs:element>
  1587. <xs:element minOccurs="0"
  1588. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1589. id="_obce_wsg84___d4e15749-1">
  1590. <xs:annotation>
  1591. <xs:appinfo>
  1592. <system_cache__appinfo:flat_relation_cache>
  1593. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1594. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1595. </system_cache__appinfo:flat_relation_cache>
  1596. </xs:appinfo>
  1597. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  1598. </xs:annotation>
  1599. </xs:element>
  1600. <xs:element minOccurs="0"
  1601. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1602. id="_obce_wsg84___d4e15756-1">
  1603. <xs:annotation>
  1604. <xs:appinfo>
  1605. <system_cache__appinfo:flat_relation_cache>
  1606. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1607. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1608. </system_cache__appinfo:flat_relation_cache>
  1609. </xs:appinfo>
  1610. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  1611. </xs:annotation>
  1612. </xs:element>
  1613. <xs:element minOccurs="0"
  1614. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1615. id="_obce_wsg84___d4e15764-1">
  1616. <xs:annotation>
  1617. <xs:appinfo>
  1618. <system_cache__appinfo:flat_relation_cache>
  1619. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1620. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1621. </system_cache__appinfo:flat_relation_cache>
  1622. </xs:appinfo>
  1623. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  1624. </xs:annotation>
  1625. </xs:element>
  1626. </xs:sequence>
  1627. </xs:restriction>
  1628. </xs:complexContent>
  1629. </xs:complexType>
  1630. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_DO_UZG_ZUD"
  1631. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_DO_UZG_ZUD"
  1632. id="Rozdzie_Rozd_d4e6170"/>
  1633. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_UZG_ZUD"
  1634. id="Rozdzie_Rozd_d4e6171">
  1635. <xs:complexContent id="_obce_wsg84___d4e15773-1">
  1636. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_DO_UZG_ZUD">
  1637. <xs:sequence id="Rozdzielcza_ru_d4e6174">
  1638. <xs:element name="the_geom"
  1639. type="gml:AbstractFeatureType"
  1640. id="_obce_wsg84___d4e15776-1_the_geom"/>
  1641. <xs:element name="A_STATUS_INFO"
  1642. type="xs:string"
  1643. id="_obce_wsg84___d4e15777-1_A_STATUS_I"/>
  1644. <xs:element name="Dlugosc"
  1645. type="xs:double"
  1646. id="_obce_wsg84___d4e15778-1_Dlugosc"/>
  1647. <xs:element name="Powierzchnia"
  1648. type="xs:double"
  1649. id="_obce_wsg84___d4e15779-1_Powierzchn"/>
  1650. <xs:element name="L_APPOITMENT_USER"
  1651. type="xs:string"
  1652. id="_obce_wsg84___d4e15780-1_L_APPOITME"/>
  1653. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  1654. id="_obce_wsg84___d4e15781-1">
  1655. <xs:annotation>
  1656. <xs:appinfo>
  1657. <system_cache__appinfo:flat_relation_cache>
  1658. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1659. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  1660. </system_cache__appinfo:flat_relation_cache>
  1661. </xs:appinfo>
  1662. </xs:annotation>
  1663. </xs:element>
  1664. <xs:element name="A_CLASSIFIED"
  1665. type="xs:string"
  1666. id="_obce_wsg84___d4e15786-1_A_CLASSIFI"/>
  1667. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  1668. id="_obce_wsg84___d4e15787-1">
  1669. <xs:annotation>
  1670. <xs:appinfo>
  1671. <system_cache__appinfo:flat_relation_cache>
  1672. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1673. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  1674. </system_cache__appinfo:flat_relation_cache>
  1675. </xs:appinfo>
  1676. </xs:annotation>
  1677. </xs:element>
  1678. <xs:element name="A_ADM_COMPANY"
  1679. type="xs:string"
  1680. id="_obce_wsg84___d4e15792-1_A_ADM_COMP"/>
  1681. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  1682. id="_obce_wsg84___d4e15793-1">
  1683. <xs:annotation>
  1684. <xs:appinfo>
  1685. <system_cache__appinfo:flat_relation_cache>
  1686. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1687. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1688. </system_cache__appinfo:flat_relation_cache>
  1689. </xs:appinfo>
  1690. </xs:annotation>
  1691. </xs:element>
  1692. <xs:element name="ID_PROJECT"
  1693. type="xs:int"
  1694. id="_obce_wsg84___d4e15798-1_ID_PROJECT"/>
  1695. <xs:element minOccurs="0"
  1696. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1697. id="_obce_wsg84___d4e15800-1">
  1698. <xs:annotation>
  1699. <xs:appinfo>
  1700. <system_cache__appinfo:flat_relation_cache>
  1701. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1702. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1703. </system_cache__appinfo:flat_relation_cache>
  1704. </xs:appinfo>
  1705. </xs:annotation>
  1706. </xs:element>
  1707. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1708. id="_obce_wsg84___d4e15805-1">
  1709. <xs:annotation>
  1710. <xs:appinfo>
  1711. <system_cache__appinfo:flat_relation_cache>
  1712. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1713. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1714. </system_cache__appinfo:flat_relation_cache>
  1715. </xs:appinfo>
  1716. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1717. </xs:annotation>
  1718. </xs:element>
  1719. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1720. id="_obce_wsg84___d4e15812-1">
  1721. <xs:annotation>
  1722. <xs:appinfo>
  1723. <system_cache__appinfo:flat_relation_cache>
  1724. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1725. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1726. </system_cache__appinfo:flat_relation_cache>
  1727. </xs:appinfo>
  1728. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1729. </xs:annotation>
  1730. </xs:element>
  1731. <xs:element minOccurs="0"
  1732. maxOccurs="unbounded"
  1733. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1734. id="_obce_wsg84___d4e15819-1">
  1735. <xs:annotation>
  1736. <xs:appinfo>
  1737. <system_cache__appinfo:flat_relation_cache>
  1738. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1739. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1740. </system_cache__appinfo:flat_relation_cache>
  1741. </xs:appinfo>
  1742. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1743. </xs:annotation>
  1744. </xs:element>
  1745. <xs:element minOccurs="0"
  1746. maxOccurs="unbounded"
  1747. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1748. id="_obce_wsg84___d4e15826-1">
  1749. <xs:annotation>
  1750. <xs:appinfo>
  1751. <system_cache__appinfo:flat_relation_cache>
  1752. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1753. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1754. </system_cache__appinfo:flat_relation_cache>
  1755. </xs:appinfo>
  1756. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1757. </xs:annotation>
  1758. </xs:element>
  1759. <xs:element minOccurs="0"
  1760. maxOccurs="unbounded"
  1761. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1762. id="_obce_wsg84___d4e15833-1">
  1763. <xs:annotation>
  1764. <xs:appinfo>
  1765. <system_cache__appinfo:flat_relation_cache>
  1766. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1767. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1768. </system_cache__appinfo:flat_relation_cache>
  1769. </xs:appinfo>
  1770. <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>
  1771. </xs:annotation>
  1772. </xs:element>
  1773. <xs:element minOccurs="1"
  1774. maxOccurs="unbounded"
  1775. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1776. id="_obce_wsg84___d4e15840-1">
  1777. <xs:annotation>
  1778. <xs:appinfo>
  1779. <system_cache__appinfo:flat_relation_cache>
  1780. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1781. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1782. </system_cache__appinfo:flat_relation_cache>
  1783. </xs:appinfo>
  1784. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  1785. </xs:annotation>
  1786. </xs:element>
  1787. <xs:element minOccurs="1"
  1788. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1789. id="_obce_wsg84___d4e15847-1">
  1790. <xs:annotation>
  1791. <xs:appinfo>
  1792. <system_cache__appinfo:flat_relation_cache>
  1793. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1794. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1795. </system_cache__appinfo:flat_relation_cache>
  1796. </xs:appinfo>
  1797. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1798. </xs:annotation>
  1799. </xs:element>
  1800. <xs:element minOccurs="0"
  1801. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1802. id="_obce_wsg84___d4e15854-1">
  1803. <xs:annotation>
  1804. <xs:appinfo>
  1805. <system_cache__appinfo:flat_relation_cache>
  1806. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1807. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1808. </system_cache__appinfo:flat_relation_cache>
  1809. </xs:appinfo>
  1810. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1811. </xs:annotation>
  1812. </xs:element>
  1813. <xs:element minOccurs="0"
  1814. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1815. id="_obce_wsg84___d4e15861-1">
  1816. <xs:annotation>
  1817. <xs:appinfo>
  1818. <system_cache__appinfo:flat_relation_cache>
  1819. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1820. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1821. </system_cache__appinfo:flat_relation_cache>
  1822. </xs:appinfo>
  1823. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  1824. </xs:annotation>
  1825. </xs:element>
  1826. <xs:element minOccurs="0"
  1827. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1828. id="_obce_wsg84___d4e15868-1">
  1829. <xs:annotation>
  1830. <xs:appinfo>
  1831. <system_cache__appinfo:flat_relation_cache>
  1832. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1833. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1834. </system_cache__appinfo:flat_relation_cache>
  1835. </xs:appinfo>
  1836. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  1837. </xs:annotation>
  1838. </xs:element>
  1839. <xs:element minOccurs="0"
  1840. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1841. id="_obce_wsg84___d4e15876-1">
  1842. <xs:annotation>
  1843. <xs:appinfo>
  1844. <system_cache__appinfo:flat_relation_cache>
  1845. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1846. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1847. </system_cache__appinfo:flat_relation_cache>
  1848. </xs:appinfo>
  1849. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  1850. </xs:annotation>
  1851. </xs:element>
  1852. </xs:sequence>
  1853. </xs:restriction>
  1854. </xs:complexContent>
  1855. </xs:complexType>
  1856. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_UZG_ZUD"
  1857. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_UZG_ZUD"
  1858. id="Rozdzie_Rozd_d4e6282"/>
  1859. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_ZLECENIE"
  1860. id="Rozdzie_Rozd_d4e6284">
  1861. <xs:annotation>
  1862. <xs:documentation>Popdisano zlecenie na realizacje danego obiektu</xs:documentation>
  1863. </xs:annotation>
  1864. <xs:complexContent id="_obce_wsg84___d4e15888-1">
  1865. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_OFFER">
  1866. <xs:sequence id="Rozdzielcza_ru_d4e6290">
  1867. <xs:element name="the_geom"
  1868. type="gml:AbstractFeatureType"
  1869. id="_obce_wsg84___d4e15891-1_the_geom"/>
  1870. <xs:element name="A_STATUS_INFO"
  1871. type="xs:string"
  1872. id="_obce_wsg84___d4e15892-1_A_STATUS_I"/>
  1873. <xs:element name="Dlugosc"
  1874. type="xs:double"
  1875. id="_obce_wsg84___d4e15893-1_Dlugosc"/>
  1876. <xs:element name="Powierzchnia"
  1877. type="xs:double"
  1878. id="_obce_wsg84___d4e15894-1_Powierzchn"/>
  1879. <xs:element name="L_APPOITMENT_USER"
  1880. type="xs:string"
  1881. id="_obce_wsg84___d4e15895-1_L_APPOITME"/>
  1882. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  1883. id="_obce_wsg84___d4e15896-1">
  1884. <xs:annotation>
  1885. <xs:appinfo>
  1886. <system_cache__appinfo:flat_relation_cache>
  1887. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1888. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  1889. </system_cache__appinfo:flat_relation_cache>
  1890. </xs:appinfo>
  1891. </xs:annotation>
  1892. </xs:element>
  1893. <xs:element name="A_CLASSIFIED"
  1894. type="xs:string"
  1895. id="_obce_wsg84___d4e15901-1_A_CLASSIFI"/>
  1896. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  1897. id="_obce_wsg84___d4e15902-1">
  1898. <xs:annotation>
  1899. <xs:appinfo>
  1900. <system_cache__appinfo:flat_relation_cache>
  1901. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1902. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  1903. </system_cache__appinfo:flat_relation_cache>
  1904. </xs:appinfo>
  1905. </xs:annotation>
  1906. </xs:element>
  1907. <xs:element name="A_ADM_COMPANY"
  1908. type="xs:string"
  1909. id="_obce_wsg84___d4e15907-1_A_ADM_COMP"/>
  1910. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  1911. id="_obce_wsg84___d4e15908-1">
  1912. <xs:annotation>
  1913. <xs:appinfo>
  1914. <system_cache__appinfo:flat_relation_cache>
  1915. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1916. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1917. </system_cache__appinfo:flat_relation_cache>
  1918. </xs:appinfo>
  1919. </xs:annotation>
  1920. </xs:element>
  1921. <xs:element name="ID_PROJECT"
  1922. type="xs:int"
  1923. id="_obce_wsg84___d4e15913-1_ID_PROJECT"/>
  1924. <xs:element minOccurs="0"
  1925. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1926. id="_obce_wsg84___d4e15915-1">
  1927. <xs:annotation>
  1928. <xs:appinfo>
  1929. <system_cache__appinfo:flat_relation_cache>
  1930. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1931. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1932. </system_cache__appinfo:flat_relation_cache>
  1933. </xs:appinfo>
  1934. </xs:annotation>
  1935. </xs:element>
  1936. <xs:element maxOccurs="unbounded"
  1937. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1938. id="_obce_wsg84___d4e15920-1">
  1939. <xs:annotation>
  1940. <xs:appinfo>
  1941. <system_cache__appinfo:flat_relation_cache>
  1942. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1943. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1944. </system_cache__appinfo:flat_relation_cache>
  1945. </xs:appinfo>
  1946. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  1947. </xs:annotation>
  1948. </xs:element>
  1949. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1950. id="_obce_wsg84___d4e15927-1">
  1951. <xs:annotation>
  1952. <xs:appinfo>
  1953. <system_cache__appinfo:flat_relation_cache>
  1954. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1955. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1956. </system_cache__appinfo:flat_relation_cache>
  1957. </xs:appinfo>
  1958. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1959. </xs:annotation>
  1960. </xs:element>
  1961. <xs:element minOccurs="1"
  1962. maxOccurs="unbounded"
  1963. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1964. id="_obce_wsg84___d4e15934-1">
  1965. <xs:annotation>
  1966. <xs:appinfo>
  1967. <system_cache__appinfo:flat_relation_cache>
  1968. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1969. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1970. </system_cache__appinfo:flat_relation_cache>
  1971. </xs:appinfo>
  1972. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1973. </xs:annotation>
  1974. </xs:element>
  1975. <xs:element minOccurs="0"
  1976. maxOccurs="unbounded"
  1977. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1978. id="_obce_wsg84___d4e15941-1">
  1979. <xs:annotation>
  1980. <xs:appinfo>
  1981. <system_cache__appinfo:flat_relation_cache>
  1982. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1983. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1984. </system_cache__appinfo:flat_relation_cache>
  1985. </xs:appinfo>
  1986. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  1987. </xs:annotation>
  1988. </xs:element>
  1989. <xs:element minOccurs="0"
  1990. maxOccurs="unbounded"
  1991. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1992. id="_obce_wsg84___d4e15948-1">
  1993. <xs:annotation>
  1994. <xs:appinfo>
  1995. <system_cache__appinfo:flat_relation_cache>
  1996. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1997. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1998. </system_cache__appinfo:flat_relation_cache>
  1999. </xs:appinfo>
  2000. <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>
  2001. </xs:annotation>
  2002. </xs:element>
  2003. <xs:element minOccurs="0"
  2004. maxOccurs="unbounded"
  2005. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2006. id="_obce_wsg84___d4e15955-1">
  2007. <xs:annotation>
  2008. <xs:appinfo>
  2009. <system_cache__appinfo:flat_relation_cache>
  2010. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2011. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2012. </system_cache__appinfo:flat_relation_cache>
  2013. </xs:appinfo>
  2014. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  2015. </xs:annotation>
  2016. </xs:element>
  2017. <xs:element minOccurs="0"
  2018. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2019. id="_obce_wsg84___d4e15962-1">
  2020. <xs:annotation>
  2021. <xs:appinfo>
  2022. <system_cache__appinfo:flat_relation_cache>
  2023. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2024. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2025. </system_cache__appinfo:flat_relation_cache>
  2026. </xs:appinfo>
  2027. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2028. </xs:annotation>
  2029. </xs:element>
  2030. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2031. id="_obce_wsg84___d4e15969-1">
  2032. <xs:annotation>
  2033. <xs:appinfo>
  2034. <system_cache__appinfo:flat_relation_cache>
  2035. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2036. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2037. </system_cache__appinfo:flat_relation_cache>
  2038. </xs:appinfo>
  2039. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2040. </xs:annotation>
  2041. </xs:element>
  2042. <xs:element minOccurs="0"
  2043. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2044. id="_obce_wsg84___d4e15976-1">
  2045. <xs:annotation>
  2046. <xs:appinfo>
  2047. <system_cache__appinfo:flat_relation_cache>
  2048. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2049. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2050. </system_cache__appinfo:flat_relation_cache>
  2051. </xs:appinfo>
  2052. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  2053. </xs:annotation>
  2054. </xs:element>
  2055. <xs:element minOccurs="0"
  2056. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2057. id="_obce_wsg84___d4e15983-1">
  2058. <xs:annotation>
  2059. <xs:appinfo>
  2060. <system_cache__appinfo:flat_relation_cache>
  2061. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2062. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2063. </system_cache__appinfo:flat_relation_cache>
  2064. </xs:appinfo>
  2065. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  2066. </xs:annotation>
  2067. </xs:element>
  2068. <xs:element minOccurs="0"
  2069. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2070. id="_obce_wsg84___d4e15991-1">
  2071. <xs:annotation>
  2072. <xs:appinfo>
  2073. <system_cache__appinfo:flat_relation_cache>
  2074. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2075. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2076. </system_cache__appinfo:flat_relation_cache>
  2077. </xs:appinfo>
  2078. </xs:annotation>
  2079. </xs:element>
  2080. </xs:sequence>
  2081. </xs:restriction>
  2082. </xs:complexContent>
  2083. </xs:complexType>
  2084. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_ZLECENIE"
  2085. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_ZLECENIE"
  2086. id="Rozdzie_Rozd_d4e6396"/>
  2087. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_ZGL_ODB"
  2088. id="Rozdzie_Rozd_d4e6397">
  2089. <xs:annotation>
  2090. <xs:documentation>Wykonawca zgłasza wykonanie danego elementu do jego odbioru</xs:documentation>
  2091. </xs:annotation>
  2092. <xs:complexContent id="_obce_wsg84___d4e16002-1">
  2093. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_ZLECENIE">
  2094. <xs:sequence id="Rozdzielcza_ru_d4e6403">
  2095. <xs:element name="the_geom"
  2096. type="gml:AbstractFeatureType"
  2097. id="_obce_wsg84___d4e16005-1_the_geom"/>
  2098. <xs:element name="A_STATUS_INFO"
  2099. type="xs:string"
  2100. id="_obce_wsg84___d4e16006-1_A_STATUS_I"/>
  2101. <xs:element name="Dlugosc"
  2102. type="xs:double"
  2103. id="_obce_wsg84___d4e16007-1_Dlugosc"/>
  2104. <xs:element name="Powierzchnia"
  2105. type="xs:double"
  2106. id="_obce_wsg84___d4e16008-1_Powierzchn"/>
  2107. <xs:element name="L_APPOITMENT_USER"
  2108. type="xs:string"
  2109. id="_obce_wsg84___d4e16009-1_L_APPOITME"/>
  2110. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  2111. id="_obce_wsg84___d4e16010-1">
  2112. <xs:annotation>
  2113. <xs:appinfo>
  2114. <system_cache__appinfo:flat_relation_cache>
  2115. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  2116. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  2117. </system_cache__appinfo:flat_relation_cache>
  2118. </xs:appinfo>
  2119. </xs:annotation>
  2120. </xs:element>
  2121. <xs:element name="A_CLASSIFIED"
  2122. type="xs:string"
  2123. id="_obce_wsg84___d4e16015-1_A_CLASSIFI"/>
  2124. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  2125. id="_obce_wsg84___d4e16016-1">
  2126. <xs:annotation>
  2127. <xs:appinfo>
  2128. <system_cache__appinfo:flat_relation_cache>
  2129. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  2130. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  2131. </system_cache__appinfo:flat_relation_cache>
  2132. </xs:appinfo>
  2133. </xs:annotation>
  2134. </xs:element>
  2135. <xs:element name="A_ADM_COMPANY"
  2136. type="xs:string"
  2137. id="_obce_wsg84___d4e16021-1_A_ADM_COMP"/>
  2138. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  2139. id="_obce_wsg84___d4e16022-1">
  2140. <xs:annotation>
  2141. <xs:appinfo>
  2142. <system_cache__appinfo:flat_relation_cache>
  2143. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2144. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2145. </system_cache__appinfo:flat_relation_cache>
  2146. </xs:appinfo>
  2147. </xs:annotation>
  2148. </xs:element>
  2149. <xs:element name="ID_PROJECT"
  2150. type="xs:int"
  2151. id="_obce_wsg84___d4e16027-1_ID_PROJECT"/>
  2152. <xs:element minOccurs="0"
  2153. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2154. id="_obce_wsg84___d4e16029-1">
  2155. <xs:annotation>
  2156. <xs:appinfo>
  2157. <system_cache__appinfo:flat_relation_cache>
  2158. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2159. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2160. </system_cache__appinfo:flat_relation_cache>
  2161. </xs:appinfo>
  2162. </xs:annotation>
  2163. </xs:element>
  2164. <xs:element maxOccurs="unbounded"
  2165. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2166. id="_obce_wsg84___d4e16034-1">
  2167. <xs:annotation>
  2168. <xs:appinfo>
  2169. <system_cache__appinfo:flat_relation_cache>
  2170. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2171. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2172. </system_cache__appinfo:flat_relation_cache>
  2173. </xs:appinfo>
  2174. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  2175. </xs:annotation>
  2176. </xs:element>
  2177. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2178. id="_obce_wsg84___d4e16041-1">
  2179. <xs:annotation>
  2180. <xs:appinfo>
  2181. <system_cache__appinfo:flat_relation_cache>
  2182. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  2183. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2184. </system_cache__appinfo:flat_relation_cache>
  2185. </xs:appinfo>
  2186. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2187. </xs:annotation>
  2188. </xs:element>
  2189. <xs:element minOccurs="1"
  2190. maxOccurs="unbounded"
  2191. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2192. id="_obce_wsg84___d4e16048-1">
  2193. <xs:annotation>
  2194. <xs:appinfo>
  2195. <system_cache__appinfo:flat_relation_cache>
  2196. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2197. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2198. </system_cache__appinfo:flat_relation_cache>
  2199. </xs:appinfo>
  2200. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2201. </xs:annotation>
  2202. </xs:element>
  2203. <xs:element minOccurs="0"
  2204. maxOccurs="unbounded"
  2205. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2206. id="_obce_wsg84___d4e16055-1">
  2207. <xs:annotation>
  2208. <xs:appinfo>
  2209. <system_cache__appinfo:flat_relation_cache>
  2210. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2211. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2212. </system_cache__appinfo:flat_relation_cache>
  2213. </xs:appinfo>
  2214. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  2215. </xs:annotation>
  2216. </xs:element>
  2217. <xs:element minOccurs="0"
  2218. maxOccurs="unbounded"
  2219. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2220. id="_obce_wsg84___d4e16062-1">
  2221. <xs:annotation>
  2222. <xs:appinfo>
  2223. <system_cache__appinfo:flat_relation_cache>
  2224. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  2225. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  2226. </system_cache__appinfo:flat_relation_cache>
  2227. </xs:appinfo>
  2228. <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>
  2229. </xs:annotation>
  2230. </xs:element>
  2231. <xs:element minOccurs="0"
  2232. maxOccurs="unbounded"
  2233. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2234. id="_obce_wsg84___d4e16069-1">
  2235. <xs:annotation>
  2236. <xs:appinfo>
  2237. <system_cache__appinfo:flat_relation_cache>
  2238. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2239. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2240. </system_cache__appinfo:flat_relation_cache>
  2241. </xs:appinfo>
  2242. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  2243. </xs:annotation>
  2244. </xs:element>
  2245. <xs:element minOccurs="0"
  2246. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2247. id="_obce_wsg84___d4e16076-1">
  2248. <xs:annotation>
  2249. <xs:appinfo>
  2250. <system_cache__appinfo:flat_relation_cache>
  2251. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2252. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2253. </system_cache__appinfo:flat_relation_cache>
  2254. </xs:appinfo>
  2255. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2256. </xs:annotation>
  2257. </xs:element>
  2258. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2259. id="_obce_wsg84___d4e16083-1">
  2260. <xs:annotation>
  2261. <xs:appinfo>
  2262. <system_cache__appinfo:flat_relation_cache>
  2263. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2264. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2265. </system_cache__appinfo:flat_relation_cache>
  2266. </xs:appinfo>
  2267. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2268. </xs:annotation>
  2269. </xs:element>
  2270. <xs:element minOccurs="1"
  2271. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2272. id="_obce_wsg84___d4e16090-1">
  2273. <xs:annotation>
  2274. <xs:appinfo>
  2275. <system_cache__appinfo:flat_relation_cache>
  2276. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2277. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2278. </system_cache__appinfo:flat_relation_cache>
  2279. </xs:appinfo>
  2280. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  2281. </xs:annotation>
  2282. </xs:element>
  2283. <xs:element minOccurs="0"
  2284. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2285. id="_obce_wsg84___d4e16097-1">
  2286. <xs:annotation>
  2287. <xs:appinfo>
  2288. <system_cache__appinfo:flat_relation_cache>
  2289. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2290. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2291. </system_cache__appinfo:flat_relation_cache>
  2292. </xs:appinfo>
  2293. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  2294. </xs:annotation>
  2295. </xs:element>
  2296. <xs:element minOccurs="0"
  2297. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2298. id="_obce_wsg84___d4e16105-1">
  2299. <xs:annotation>
  2300. <xs:appinfo>
  2301. <system_cache__appinfo:flat_relation_cache>
  2302. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2303. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2304. </system_cache__appinfo:flat_relation_cache>
  2305. </xs:appinfo>
  2306. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  2307. </xs:annotation>
  2308. </xs:element>
  2309. </xs:sequence>
  2310. </xs:restriction>
  2311. </xs:complexContent>
  2312. </xs:complexType>
  2313. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_ZGL_ODB"
  2314. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_ZGL_ODB"
  2315. id="Rozdzie_Rozd_d4e6511"/>
  2316. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_POM_GEOD"
  2317. id="Rozdzie_Rozd_d4e6512">
  2318. <xs:complexContent id="_obce_wsg84___d4e16114-1">
  2319. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_ZGL_ODB">
  2320. <xs:sequence id="Rozdzielcza_ru_d4e6515">
  2321. <xs:element name="the_geom"
  2322. type="gml:AbstractFeatureType"
  2323. id="_obce_wsg84___d4e16117-1_the_geom"/>
  2324. <xs:element name="A_STATUS_INFO"
  2325. type="xs:string"
  2326. id="_obce_wsg84___d4e16118-1_A_STATUS_I"/>
  2327. <xs:element name="Dlugosc"
  2328. type="xs:double"
  2329. id="_obce_wsg84___d4e16119-1_Dlugosc"/>
  2330. <xs:element name="Powierzchnia"
  2331. type="xs:double"
  2332. id="_obce_wsg84___d4e16120-1_Powierzchn"/>
  2333. <xs:element name="L_APPOITMENT_USER"
  2334. type="xs:string"
  2335. id="_obce_wsg84___d4e16121-1_L_APPOITME"/>
  2336. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  2337. id="_obce_wsg84___d4e16122-1">
  2338. <xs:annotation>
  2339. <xs:appinfo>
  2340. <system_cache__appinfo:flat_relation_cache>
  2341. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  2342. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  2343. </system_cache__appinfo:flat_relation_cache>
  2344. </xs:appinfo>
  2345. </xs:annotation>
  2346. </xs:element>
  2347. <xs:element name="A_CLASSIFIED"
  2348. type="xs:string"
  2349. id="_obce_wsg84___d4e16127-1_A_CLASSIFI"/>
  2350. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  2351. id="_obce_wsg84___d4e16128-1">
  2352. <xs:annotation>
  2353. <xs:appinfo>
  2354. <system_cache__appinfo:flat_relation_cache>
  2355. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  2356. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  2357. </system_cache__appinfo:flat_relation_cache>
  2358. </xs:appinfo>
  2359. </xs:annotation>
  2360. </xs:element>
  2361. <xs:element name="A_ADM_COMPANY"
  2362. type="xs:string"
  2363. id="_obce_wsg84___d4e16133-1_A_ADM_COMP"/>
  2364. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  2365. id="_obce_wsg84___d4e16134-1">
  2366. <xs:annotation>
  2367. <xs:appinfo>
  2368. <system_cache__appinfo:flat_relation_cache>
  2369. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2370. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2371. </system_cache__appinfo:flat_relation_cache>
  2372. </xs:appinfo>
  2373. </xs:annotation>
  2374. </xs:element>
  2375. <xs:element name="ID_PROJECT"
  2376. type="xs:int"
  2377. id="_obce_wsg84___d4e16139-1_ID_PROJECT"/>
  2378. <xs:element minOccurs="0"
  2379. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2380. id="_obce_wsg84___d4e16141-1">
  2381. <xs:annotation>
  2382. <xs:appinfo>
  2383. <system_cache__appinfo:flat_relation_cache>
  2384. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2385. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2386. </system_cache__appinfo:flat_relation_cache>
  2387. </xs:appinfo>
  2388. </xs:annotation>
  2389. </xs:element>
  2390. <xs:element maxOccurs="unbounded"
  2391. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2392. id="_obce_wsg84___d4e16146-1">
  2393. <xs:annotation>
  2394. <xs:appinfo>
  2395. <system_cache__appinfo:flat_relation_cache>
  2396. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2397. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2398. </system_cache__appinfo:flat_relation_cache>
  2399. </xs:appinfo>
  2400. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  2401. </xs:annotation>
  2402. </xs:element>
  2403. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2404. id="_obce_wsg84___d4e16153-1">
  2405. <xs:annotation>
  2406. <xs:appinfo>
  2407. <system_cache__appinfo:flat_relation_cache>
  2408. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  2409. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2410. </system_cache__appinfo:flat_relation_cache>
  2411. </xs:appinfo>
  2412. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2413. </xs:annotation>
  2414. </xs:element>
  2415. <xs:element minOccurs="1"
  2416. maxOccurs="unbounded"
  2417. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2418. id="_obce_wsg84___d4e16160-1">
  2419. <xs:annotation>
  2420. <xs:appinfo>
  2421. <system_cache__appinfo:flat_relation_cache>
  2422. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2423. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2424. </system_cache__appinfo:flat_relation_cache>
  2425. </xs:appinfo>
  2426. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2427. </xs:annotation>
  2428. </xs:element>
  2429. <xs:element minOccurs="0"
  2430. maxOccurs="unbounded"
  2431. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2432. id="_obce_wsg84___d4e16167-1">
  2433. <xs:annotation>
  2434. <xs:appinfo>
  2435. <system_cache__appinfo:flat_relation_cache>
  2436. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2437. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2438. </system_cache__appinfo:flat_relation_cache>
  2439. </xs:appinfo>
  2440. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  2441. </xs:annotation>
  2442. </xs:element>
  2443. <xs:element minOccurs="0"
  2444. maxOccurs="unbounded"
  2445. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2446. id="_obce_wsg84___d4e16174-1">
  2447. <xs:annotation>
  2448. <xs:appinfo>
  2449. <system_cache__appinfo:flat_relation_cache>
  2450. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  2451. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  2452. </system_cache__appinfo:flat_relation_cache>
  2453. </xs:appinfo>
  2454. <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>
  2455. </xs:annotation>
  2456. </xs:element>
  2457. <xs:element minOccurs="0"
  2458. maxOccurs="unbounded"
  2459. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2460. id="_obce_wsg84___d4e16181-1">
  2461. <xs:annotation>
  2462. <xs:appinfo>
  2463. <system_cache__appinfo:flat_relation_cache>
  2464. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2465. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2466. </system_cache__appinfo:flat_relation_cache>
  2467. </xs:appinfo>
  2468. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  2469. </xs:annotation>
  2470. </xs:element>
  2471. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2472. id="_obce_wsg84___d4e16188-1">
  2473. <xs:annotation>
  2474. <xs:appinfo>
  2475. <system_cache__appinfo:flat_relation_cache>
  2476. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2477. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2478. </system_cache__appinfo:flat_relation_cache>
  2479. </xs:appinfo>
  2480. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2481. </xs:annotation>
  2482. </xs:element>
  2483. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2484. id="_obce_wsg84___d4e16195-1">
  2485. <xs:annotation>
  2486. <xs:appinfo>
  2487. <system_cache__appinfo:flat_relation_cache>
  2488. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2489. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2490. </system_cache__appinfo:flat_relation_cache>
  2491. </xs:appinfo>
  2492. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2493. </xs:annotation>
  2494. </xs:element>
  2495. <xs:element minOccurs="1"
  2496. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2497. id="_obce_wsg84___d4e16202-1">
  2498. <xs:annotation>
  2499. <xs:appinfo>
  2500. <system_cache__appinfo:flat_relation_cache>
  2501. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2502. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2503. </system_cache__appinfo:flat_relation_cache>
  2504. </xs:appinfo>
  2505. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  2506. </xs:annotation>
  2507. </xs:element>
  2508. <xs:element minOccurs="1"
  2509. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2510. id="_obce_wsg84___d4e16209-1">
  2511. <xs:annotation>
  2512. <xs:appinfo>
  2513. <system_cache__appinfo:flat_relation_cache>
  2514. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2515. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2516. </system_cache__appinfo:flat_relation_cache>
  2517. </xs:appinfo>
  2518. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  2519. </xs:annotation>
  2520. </xs:element>
  2521. <xs:element minOccurs="0"
  2522. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2523. id="_obce_wsg84___d4e16217-1">
  2524. <xs:annotation>
  2525. <xs:appinfo>
  2526. <system_cache__appinfo:flat_relation_cache>
  2527. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2528. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2529. </system_cache__appinfo:flat_relation_cache>
  2530. </xs:appinfo>
  2531. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  2532. </xs:annotation>
  2533. </xs:element>
  2534. </xs:sequence>
  2535. </xs:restriction>
  2536. </xs:complexContent>
  2537. </xs:complexType>
  2538. <xs:element name="Rozdzielcza_rurociagi_obce_wsg84_POM_GEOD"
  2539. type="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_POM_GEOD"
  2540. id="Rozdzie_Rozd_d4e6623"/>
  2541. <xs:complexType name="Rozdzielcza_rurociagi_obce_wsg84_PROTOK_ODB"
  2542. id="Rozdzie_Rozd_d4e6624">
  2543. <xs:annotation>
  2544. <xs:documentation>Podpisany protokol odbioru z podwykonawca oraz wlascicielem
  2545. </xs:documentation>
  2546. </xs:annotation>
  2547. <xs:complexContent id="_obce_wsg84___d4e16229-1">
  2548. <xs:restriction base="default_db__x3A__Rozdzielcza_rurociagi_obce_wsg84:Rozdzielcza_rurociagi_obce_wsg84_ZGL_ODB">
  2549. <xs:sequence id="Rozdzielcza_ru_d4e6630">
  2550. <xs:element name="the_geom"
  2551. type="gml:AbstractFeatureType"
  2552. id="_obce_wsg84___d4e16232-1_the_geom"/>
  2553. <xs:element name="A_STATUS_INFO"
  2554. type="xs:string"
  2555. id="_obce_wsg84___d4e16233-1_A_STATUS_I"/>
  2556. <xs:element name="Dlugosc"
  2557. type="xs:double"
  2558. id="_obce_wsg84___d4e16234-1_Dlugosc"/>
  2559. <xs:element name="Powierzchnia"
  2560. type="xs:double"
  2561. id="_obce_wsg84___d4e16235-1_Powierzchn"/>
  2562. <xs:element name="L_APPOITMENT_USER"
  2563. type="xs:string"
  2564. id="_obce_wsg84___d4e16236-1_L_APPOITME"/>
  2565. <xs:element ref="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER"
  2566. id="_obce_wsg84___d4e16237-1">
  2567. <xs:annotation>
  2568. <xs:appinfo>
  2569. <system_cache__appinfo:flat_relation_cache>
  2570. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  2571. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:L_APPOITMENT_USER/name"/>
  2572. </system_cache__appinfo:flat_relation_cache>
  2573. </xs:appinfo>
  2574. </xs:annotation>
  2575. </xs:element>
  2576. <xs:element name="A_CLASSIFIED"
  2577. type="xs:string"
  2578. id="_obce_wsg84___d4e16242-1_A_CLASSIFI"/>
  2579. <xs:element ref="SystemObjects__x3A__AccessGroup:A_CLASSIFIED"
  2580. id="_obce_wsg84___d4e16243-1">
  2581. <xs:annotation>
  2582. <xs:appinfo>
  2583. <system_cache__appinfo:flat_relation_cache>
  2584. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  2585. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_CLASSIFIED/name"/>
  2586. </system_cache__appinfo:flat_relation_cache>
  2587. </xs:appinfo>
  2588. </xs:annotation>
  2589. </xs:element>
  2590. <xs:element name="A_ADM_COMPANY"
  2591. type="xs:string"
  2592. id="_obce_wsg84___d4e16248-1_A_ADM_COMP"/>
  2593. <xs:element ref="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY"
  2594. id="_obce_wsg84___d4e16249-1">
  2595. <xs:annotation>
  2596. <xs:appinfo>
  2597. <system_cache__appinfo:flat_relation_cache>
  2598. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2599. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2600. </system_cache__appinfo:flat_relation_cache>
  2601. </xs:appinfo>
  2602. </xs:annotation>
  2603. </xs:element>
  2604. <xs:element name="ID_PROJECT"
  2605. type="xs:int"
  2606. id="_obce_wsg84___d4e16254-1_ID_PROJECT"/>
  2607. <xs:element minOccurs="0"
  2608. ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2609. id="_obce_wsg84___d4e16256-1">
  2610. <xs:annotation>
  2611. <xs:appinfo>
  2612. <system_cache__appinfo:flat_relation_cache>
  2613. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2614. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2615. </system_cache__appinfo:flat_relation_cache>
  2616. </xs:appinfo>
  2617. </xs:annotation>
  2618. </xs:element>
  2619. <xs:element maxOccurs="unbounded"
  2620. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2621. id="_obce_wsg84___d4e16261-1">
  2622. <xs:annotation>
  2623. <xs:appinfo>
  2624. <system_cache__appinfo:flat_relation_cache>
  2625. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2626. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2627. </system_cache__appinfo:flat_relation_cache>
  2628. </xs:appinfo>
  2629. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami projektowania</xs:documentation>
  2630. </xs:annotation>
  2631. </xs:element>
  2632. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2633. id="_obce_wsg84___d4e16268-1">
  2634. <xs:annotation>
  2635. <xs:appinfo>
  2636. <system_cache__appinfo:flat_relation_cache>
  2637. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  2638. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2639. </system_cache__appinfo:flat_relation_cache>
  2640. </xs:appinfo>
  2641. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2642. </xs:annotation>
  2643. </xs:element>
  2644. <xs:element minOccurs="1"
  2645. maxOccurs="unbounded"
  2646. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2647. id="_obce_wsg84___d4e16275-1">
  2648. <xs:annotation>
  2649. <xs:appinfo>
  2650. <system_cache__appinfo:flat_relation_cache>
  2651. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2652. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2653. </system_cache__appinfo:flat_relation_cache>
  2654. </xs:appinfo>
  2655. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2656. </xs:annotation>
  2657. </xs:element>
  2658. <xs:element minOccurs="0"
  2659. maxOccurs="unbounded"
  2660. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2661. id="_obce_wsg84___d4e16282-1">
  2662. <xs:annotation>
  2663. <xs:appinfo>
  2664. <system_cache__appinfo:flat_relation_cache>
  2665. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2666. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2667. </system_cache__appinfo:flat_relation_cache>
  2668. </xs:appinfo>
  2669. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do właściciela nieruchomości</xs:documentation>
  2670. </xs:annotation>
  2671. </xs:element>
  2672. <xs:element minOccurs="0"
  2673. maxOccurs="unbounded"
  2674. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2675. id="_obce_wsg84___d4e16289-1">
  2676. <xs:annotation>
  2677. <xs:appinfo>
  2678. <system_cache__appinfo:flat_relation_cache>
  2679. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  2680. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  2681. </system_cache__appinfo:flat_relation_cache>
  2682. </xs:appinfo>
  2683. <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>
  2684. </xs:annotation>
  2685. </xs:element>
  2686. <xs:element minOccurs="0"
  2687. maxOccurs="unbounded"
  2688. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2689. id="_obce_wsg84___d4e16296-1">
  2690. <xs:annotation>
  2691. <xs:appinfo>
  2692. <system_cache__appinfo:flat_relation_cache>
  2693. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2694. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2695. </system_cache__appinfo:flat_relation_cache>
  2696. </xs:appinfo>
  2697. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  2698. </xs:annotation>
  2699. </xs:element>
  2700. <xs:element minOccurs="0"
  2701. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2702. id="_obce_wsg84___d4e16303-1">
  2703. <xs:annotation>
  2704. <xs:appinfo>
  2705. <system_cache__appinfo:flat_relation_cache>
  2706. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2707. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2708. </system_cache__appinfo:flat_relation_cache>
  2709. </xs:appinfo>
  2710. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2711. </xs:annotation>
  2712. </xs:element>
  2713. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2714. id="_obce_wsg84___d4e16310-1">
  2715. <xs:annotation>
  2716. <xs:appinfo>
  2717. <system_cache__appinfo:flat_relation_cache>
  2718. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2719. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2720. </system_cache__appinfo:flat_relation_cache>
  2721. </xs:appinfo>
  2722. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2723. </xs:annotation>
  2724. </xs:element>
  2725. <xs:element minOccurs="1"
  2726. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2727. id="_obce_wsg84___d4e16317-1">
  2728. <xs:annotation>
  2729. <xs:appinfo>
  2730. <system_cache__appinfo:flat_relation_cache>
  2731. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2732. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2733. </system_cache__appinfo:flat_relation_cache>
  2734. </xs:appinfo>
  2735. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do odbioru=wykonanie</xs:documentation>
  2736. </xs:annotation>
  2737. </xs:element>
  2738. <xs:element minOccurs="0"
  2739. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2740. id="_obce_wsg84___d4e16324-1">
  2741. <xs:annotation>
  2742. <xs:appinfo>
  2743. <system_cache__appinfo:flat_relation_cache>
  2744. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2745. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2746. </system_cache__appinfo:flat_relation_cache>
  2747. </xs:appinfo>
  2748. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są powiązane do dokumentu z operatem</xs:documentation>
  2749. </xs:annotation>
  2750. </xs:element>
  2751. <xs:element minOccurs="1"
  2752. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2753. id="_obce_wsg84___d4e16332-1">
  2754. <xs:annotation>
  2755. <xs:appinfo>
  2756. <system_cache__appinfo:flat_relation_cache>
  2757. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2758. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2759. </system_cache__appinfo:flat_relation_cache>
  2760. </xs:appinfo>
  2761. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca, inwestor</xs:documentation>
  2762. </xs:annotation>
  2763. </xs:element>
  2764. </xs:sequence>
  2765. </xs:restriction>
  2766. </xs:complexContent>
  2767. </xs:complexType>
  2768. </xs:schema>