Rozdzielcza_Mikrokanalizacja_do_klienta.xsd 172 KB

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