infrastructure.xsd 288 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710
  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:default_db__x3A__IN7_DZIENNIK_KORESP="https://biuro.biall-net.pl/wfs/default_db/table/IN7_DZIENNIK_KORESP.xsd"
  6. xmlns:hfp="http://www.w3.org/2001/XMLSchema-hasFacetAndProperty"
  7. xmlns:default_db__x3A__ADMIN_USERS="https://biuro.biall-net.pl/wfs/default_db/table/ADMIN_USERS.xsd"
  8. xmlns:default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI="https://biuro.biall-net.pl/wfs/default_db/table/IN7_MK_BAZA_DYSTRYBUCJI.xsd"
  9. xmlns:SystemObjects__x3A__AccessGroup="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/AccessGroup.xsd"
  10. xmlns:SystemObjects__x3A__AccessOwner="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/AccessOwner.xsd"
  11. xmlns:default_db__x3A__CRM_LISTA_ZASOBOW="https://biuro.biall-net.pl/wfs/default_db/table/CRM_LISTA_ZASOBOW.xsd"
  12. xmlns:default_db__x3A__InvestArrangements="https://biuro.biall-net.pl/wfs/default_db/table/InvestArrangements.xsd"
  13. xmlns:p5_tr_map="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/procesy5_translate_map.xsd"
  14. xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
  15. xmlns:system_cache__resources_tree_generate_xsl_required_occurs_raport="http://biuro.biall-net.pl/xmlschema_procesy5/system_cache/resources_tree_generate_xsl_require_occurs_raport"
  16. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  17. elementFormDefault="qualified"
  18. targetNamespace="https://biuro.biall-net.pl/wfs/default_db/Types/infrastructure.xsd"
  19. vc:minVersion="1.1">
  20. <xs:annotation>
  21. <xs:documentation xml:lang="pl">LICENCJA: Wszelkie prawa zastrzeżone na rzecz firmy BIALL-NET
  22. sp. z o.o. 80-174 Gdańsk, Otomin ul. Słoneczna 43. Rozprowadzanie i dystrybucja i tworzenie
  23. materiałów zależnych zabronione. Dokumentacja bazowych elementów do zarządzania
  24. infrastrukturą.</xs:documentation>
  25. </xs:annotation>
  26. <xs:import namespace="http://www.opengis.net/gml/3.2"
  27. schemaLocation="../Types/gml.xsd"/>
  28. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/IN7_DZIENNIK_KORESP.xsd"
  29. schemaLocation="../table/IN7_DZIENNIK_KORESP.xsd"/>
  30. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/IN7_MK_BAZA_DYSTRYBUCJI.xsd"
  31. schemaLocation="../table/IN7_MK_BAZA_DYSTRYBUCJI.xsd"/>
  32. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/AccessGroup.xsd"
  33. schemaLocation="../SystemObjects/AccessGroup.xsd"/>
  34. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/SystemObjects/AccessOwner.xsd"
  35. schemaLocation="../SystemObjects/AccessOwner.xsd"/>
  36. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/CRM_LISTA_ZASOBOW.xsd"
  37. schemaLocation="../table/CRM_LISTA_ZASOBOW.xsd"/>
  38. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/InvestArrangements.xsd"
  39. schemaLocation="../table/InvestArrangements.xsd"/>
  40. <!--<xs:import namespace="https://biuro.biall-net.pl/wfs/default_objects"
  41. schemaLocation="../SystemObjects/default_objects.xsd"/>-->
  42. <xs:simpleType name="ID_KORESP" id="rastructure___d4e39783-1_ID_KORESP">
  43. <xs:restriction base="xs:int"/>
  44. </xs:simpleType>
  45. <xs:simpleType name="ID_KORESP_SET" id="rastructure___d4e39785-1_ID_KORESP_">
  46. <xs:restriction base="Types__x3A__default_infrastructure:ID_KORESP">
  47. <xs:minInclusive value="1"/>
  48. </xs:restriction>
  49. </xs:simpleType>
  50. <xs:simpleType name="ID_KORESP_UNSET" id="rastructure___d4e39788-1_ID_KORESP_">
  51. <xs:restriction base="Types__x3A__default_infrastructure:ID_KORESP">
  52. <xs:enumeration value="0"/>
  53. </xs:restriction>
  54. </xs:simpleType>
  55. <xs:complexType name="infrastructure"
  56. abstract="true"
  57. id="rastructure___d4e39792-1_Infrastruc">
  58. <xs:annotation>
  59. <xs:documentation>Instancyjny - Protopyowy obiekt, który powinien mieć typy konkretnych
  60. rodzaji dla różnych technologii. Podzielony z uwagi na stany projektowania oraz
  61. realizacji. </xs:documentation>
  62. </xs:annotation>
  63. <xs:sequence id="rastructure___d4e39796-1">
  64. <xs:element name="ID" type="xs:int" id="rastructure___d4e39797-1_ID"/>
  65. <xs:element name="the_geom"
  66. type="gml:AbstractFeatureType"
  67. id="rastructure___d4e39798-1_the_geom">
  68. <xs:annotation>
  69. <xs:documentation>Dane geograficzne obiektu - linia, punkt,
  70. polygon</xs:documentation>
  71. </xs:annotation>
  72. </xs:element>
  73. <xs:element name="A_STATUS_INFO"
  74. type="xs:string"
  75. id="rastructure___d4e39802-1_A_STATUS_I"/>
  76. <xs:element name="opis" type="xs:string" id="rastructure___d4e39803-1_opis">
  77. <xs:annotation>
  78. <xs:documentation>To zmiany na ID_ZASOBU pod katem kosztorysowym</xs:documentation>
  79. </xs:annotation>
  80. </xs:element>
  81. <xs:element name="ID_ZASOB"
  82. type="xs:int"
  83. id="rastructure___d4e39807-1_ID_ZASOB"/>
  84. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  85. id="rastructure___d4e39808-1">
  86. <xs:annotation>
  87. <xs:appinfo>
  88. <system_cache__appinfo:flat_relation_cache>
  89. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  90. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  91. </system_cache__appinfo:flat_relation_cache>
  92. </xs:appinfo>
  93. </xs:annotation>
  94. </xs:element>
  95. <xs:element name="Dlugosc"
  96. type="xs:double"
  97. id="rastructure___d4e39813-1_Dlugosc"/>
  98. <xs:element name="Powierzchnia"
  99. type="xs:double"
  100. id="rastructure___d4e39814-1_Powierzchn"/>
  101. <xs:element name="L_APPOITMENT_USER"
  102. type="xs:string"
  103. id="rastructure___d4e39815-1_L_APPOITME"/>
  104. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  105. id="rastructure___d4e39816-1">
  106. <xs:annotation>
  107. <xs:appinfo>
  108. <system_cache__appinfo:flat_relation_cache>
  109. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  110. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/login"/>
  111. </system_cache__appinfo:flat_relation_cache>
  112. </xs:appinfo>
  113. </xs:annotation>
  114. </xs:element>
  115. <xs:element name="A_CLASSIFIED"
  116. type="xs:string"
  117. id="rastructure___d4e39821-1_A_CLASSIFI"/>
  118. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  119. id="rastructure___d4e39823-1">
  120. <xs:annotation>
  121. <xs:appinfo>
  122. <system_cache__appinfo:flat_relation_cache>
  123. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  124. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/uid"/>
  125. </system_cache__appinfo:flat_relation_cache>
  126. </xs:appinfo>
  127. </xs:annotation>
  128. </xs:element>
  129. <xs:element name="A_ADM_COMPANY"
  130. type="xs:string"
  131. id="rastructure___d4e39828-1_A_ADM_COMP"/>
  132. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  133. id="rastructure___d4e39829-1">
  134. <xs:annotation>
  135. <xs:appinfo>
  136. <system_cache__appinfo:flat_relation_cache>
  137. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  138. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupWrite/uid"/>
  139. </system_cache__appinfo:flat_relation_cache>
  140. </xs:appinfo>
  141. </xs:annotation>
  142. </xs:element>
  143. <xs:element name="ID_PROJECT"
  144. type="xs:int"
  145. id="rastructure___d4e39834-1_ID_PROJECT"/>
  146. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  147. minOccurs="0"
  148. id="rastructure___d4e31111-1">
  149. <xs:annotation>
  150. <xs:appinfo>
  151. <system_cache__appinfo:flat_relation_cache>
  152. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  153. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  154. </system_cache__appinfo:flat_relation_cache>
  155. </xs:appinfo>
  156. </xs:annotation>
  157. </xs:element>-->
  158. <xs:element name="ID_KORESP_PROJEKT"
  159. type="Types__x3A__default_infrastructure:ID_KORESP"
  160. id="rastructure___d4e39836-1_ID_KORESP_"/>
  161. <xs:element minOccurs="0"
  162. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  163. maxOccurs="unbounded"
  164. id="rastructure___d4e39837-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_PROJEKT"
  169. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  170. </system_cache__appinfo:flat_relation_cache>
  171. </xs:appinfo>
  172. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami
  173. projektowania</xs:documentation>
  174. </xs:annotation>
  175. </xs:element>
  176. <xs:element name="ID_KORESP_PROJEKT_WYK"
  177. type="Types__x3A__default_infrastructure:ID_KORESP"
  178. id="rastructure___d4e39844-1_ID_KORESP_"/>
  179. <xs:element minOccurs="0"
  180. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  181. maxOccurs="unbounded"
  182. id="rastructure___d4e39845-1">
  183. <xs:annotation>
  184. <xs:appinfo>
  185. <system_cache__appinfo:flat_relation_cache>
  186. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  187. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  188. </system_cache__appinfo:flat_relation_cache>
  189. </xs:appinfo>
  190. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z zasadami
  191. projektowania - proj wykonawczy</xs:documentation>
  192. </xs:annotation>
  193. </xs:element>
  194. <xs:element name="ID_KORESP_DO_REALIZ"
  195. type="Types__x3A__default_infrastructure:ID_KORESP"
  196. id="rastructure___d4e39852-1_ID_KORESP_"/>
  197. <xs:element minOccurs="0"
  198. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  199. id="rastructure___d4e39853-1">
  200. <xs:annotation>
  201. <xs:appinfo>
  202. <system_cache__appinfo:flat_relation_cache>
  203. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  204. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  205. </system_cache__appinfo:flat_relation_cache>
  206. </xs:appinfo>
  207. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  208. </xs:annotation>
  209. </xs:element>
  210. <xs:element name="ID_KORESP_OFFER"
  211. type="Types__x3A__default_infrastructure:ID_KORESP"
  212. id="rastructure___d4e39861-1_ID_KORESP_"/>
  213. <xs:element maxOccurs="unbounded"
  214. minOccurs="0"
  215. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  216. id="rastructure___d4e39862-1">
  217. <xs:annotation>
  218. <xs:appinfo>
  219. <system_cache__appinfo:flat_relation_cache>
  220. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  221. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  222. </system_cache__appinfo:flat_relation_cache>
  223. </xs:appinfo>
  224. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  225. </xs:annotation>
  226. </xs:element>
  227. <xs:element name="ID_KORESP_DO_UZG"
  228. type="Types__x3A__default_infrastructure:ID_KORESP"
  229. id="rastructure___d4e39869-1_ID_KORESP_"/>
  230. <xs:element maxOccurs="unbounded"
  231. minOccurs="0"
  232. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  233. id="rastructure___d4e39870-1">
  234. <xs:annotation>
  235. <xs:appinfo>
  236. <system_cache__appinfo:flat_relation_cache>
  237. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  238. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  239. </system_cache__appinfo:flat_relation_cache>
  240. </xs:appinfo>
  241. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu, do
  242. właściciela nieruchomości</xs:documentation>
  243. </xs:annotation>
  244. </xs:element>
  245. <xs:element name="ID_KORESP_UZG"
  246. type="Types__x3A__default_infrastructure:ID_KORESP"
  247. id="rastructure___d4e39877-1_ID_KORESP_"/>
  248. <xs:element maxOccurs="unbounded"
  249. minOccurs="0"
  250. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  251. id="rastructure___d4e39878-1">
  252. <xs:annotation>
  253. <xs:appinfo>
  254. <system_cache__appinfo:flat_relation_cache>
  255. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  256. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  257. </system_cache__appinfo:flat_relation_cache>
  258. </xs:appinfo>
  259. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela. Brak
  260. zgody powinien być wiązany z relacją dla wysyłania wniosków o
  261. zgody</xs:documentation>
  262. </xs:annotation>
  263. </xs:element>
  264. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  265. type="Types__x3A__default_infrastructure:ID_KORESP"
  266. id="rastructure___d4e39885-1_ID_KORESP_"/>
  267. <xs:element maxOccurs="unbounded"
  268. minOccurs="0"
  269. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  270. id="rastructure___d4e39886-1">
  271. <xs:annotation>
  272. <xs:appinfo>
  273. <system_cache__appinfo:flat_relation_cache>
  274. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  275. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  276. </system_cache__appinfo:flat_relation_cache>
  277. </xs:appinfo>
  278. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie ZUD</xs:documentation>
  279. </xs:annotation>
  280. </xs:element>
  281. <xs:element name="ID_KORESP_UZG_ZUD"
  282. type="Types__x3A__default_infrastructure:ID_KORESP"
  283. id="rastructure___d4e39893-1_ID_KORESP_"/>
  284. <xs:element minOccurs="0"
  285. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  286. id="rastructure___d4e39894-1">
  287. <xs:annotation>
  288. <xs:appinfo>
  289. <system_cache__appinfo:flat_relation_cache>
  290. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  291. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  292. </system_cache__appinfo:flat_relation_cache>
  293. </xs:appinfo>
  294. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  295. </xs:annotation>
  296. </xs:element>
  297. <xs:element name="ID_KORESP_ZLECENIE"
  298. type="Types__x3A__default_infrastructure:ID_KORESP"
  299. id="rastructure___d4e39901-1_ID_KORESP_"/>
  300. <xs:element minOccurs="0"
  301. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  302. id="rastructure___d4e39903-1">
  303. <xs:annotation>
  304. <xs:appinfo>
  305. <system_cache__appinfo:flat_relation_cache>
  306. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  307. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  308. </system_cache__appinfo:flat_relation_cache>
  309. </xs:appinfo>
  310. <xs:documentation>Powiązanie obiektu ze zleceniem na wykonanie obiektu przez
  311. wykonawce</xs:documentation>
  312. </xs:annotation>
  313. </xs:element>
  314. <xs:element name="ID_KORESP_ZGL_ODB"
  315. type="Types__x3A__default_infrastructure:ID_KORESP"
  316. id="rastructure___d4e39910-1_ID_KORESP_"/>
  317. <xs:element minOccurs="0"
  318. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  319. id="rastructure___d4e39911-1">
  320. <xs:annotation>
  321. <xs:appinfo>
  322. <system_cache__appinfo:flat_relation_cache>
  323. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  324. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  325. </system_cache__appinfo:flat_relation_cache>
  326. </xs:appinfo>
  327. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  328. odbioru=wykonanie</xs:documentation>
  329. </xs:annotation>
  330. </xs:element>
  331. <xs:element name="ID_KORESP_POM_GEOD"
  332. type="Types__x3A__default_infrastructure:ID_KORESP"
  333. id="rastructure___d4e39918-1_ID_KORESP_"/>
  334. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  335. minOccurs="0"
  336. id="rastructure___d4e39919-1">
  337. <xs:annotation>
  338. <xs:appinfo>
  339. <system_cache__appinfo:flat_relation_cache>
  340. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  341. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  342. </system_cache__appinfo:flat_relation_cache>
  343. </xs:appinfo>
  344. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane oraz są
  345. powiązane do dokumentu z operatem</xs:documentation>
  346. </xs:annotation>
  347. </xs:element>
  348. <xs:element name="ID_KORESP_PROTOK_ODB"
  349. type="Types__x3A__default_infrastructure:ID_KORESP"
  350. id="rastructure___d4e39926-1_ID_KORESP_"/>
  351. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  352. minOccurs="0"
  353. id="rastructure___d4e39927-1">
  354. <xs:annotation>
  355. <xs:appinfo>
  356. <system_cache__appinfo:flat_relation_cache>
  357. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  358. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  359. </system_cache__appinfo:flat_relation_cache>
  360. </xs:appinfo>
  361. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel, wykonawca,
  362. inwestor</xs:documentation>
  363. </xs:annotation>
  364. </xs:element>
  365. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  366. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_deal"
  367. id="default_infrastructure___d24e156">
  368. <xs:annotation>
  369. <xs:documentation>Istnienie obiektu warunkuje stan obiektu dotyczący przyjęcia jego na realizację. Rozumiemy to jako obiekt ustalen, który będize mieć strukturę kto i za ile</xs:documentation>
  370. </xs:annotation>
  371. </xs:element> Do pozniejszej implementacji pozycji dokumentu -->
  372. <!--<xs:element minOccurs="0" ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_protocol"
  373. id="default_infrastructure___d24e175">
  374. <xs:annotation>
  375. <xs:documentation>Specjalny typ dokumentu dla weryfikacji obiektow przed zakryciem
  376. </xs:documentation>
  377. </xs:annotation>
  378. </xs:element>-->
  379. <!--<xs:element name="protokol_odbioru" minOccurs="0"
  380. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/infrastructure.xsd"
  381. id="default_infrastructure___d24e184">
  382. <xs:annotation>
  383. <xs:documentation>dokument, będący pismem, potwierdzający, że dany obiekt został właściwie odebrany</xs:documentation>
  384. </xs:annotation>
  385. </xs:element>-->
  386. <xs:element name="InvestArrangements_Network_Crossings"
  387. type="xs:int"
  388. id="rastructure___d4e39937-1_InvestArra"/>
  389. <xs:element minOccurs="0"
  390. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  391. id="rastructure___d4e39939-1">
  392. <xs:annotation>
  393. <xs:appinfo>
  394. <system_cache__appinfo:flat_relation_cache>
  395. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  396. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  397. </system_cache__appinfo:flat_relation_cache>
  398. </xs:appinfo>
  399. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  400. </xs:annotation>
  401. </xs:element>
  402. </xs:sequence>
  403. <xs:attribute name="label" type="xs:string" id="rastructure___d5e156011-1_label"/>
  404. <xs:assert test="@label = concat(opis, ID_PROJECT, Dlugosc)"
  405. id="rastructure___d6e158274-1"/>
  406. <xs:assert test="Dlugosc = gml:shape_size(the_geom)"
  407. id="rastructure___d6e158275-1">
  408. <xs:annotation>
  409. <xs:documentation>TODO Powinna być funkcja licząca długość dynamicznie na podstawie danych w GMLu - natywnie przeskakujaca jako trigger lub/i w silniku przy aktualizacjach</xs:documentation>
  410. </xs:annotation>
  411. </xs:assert>
  412. </xs:complexType>
  413. <xs:element name="infrastructure"
  414. type="Types__x3A__default_infrastructure:infrastructure"
  415. abstract="true"
  416. id="rastructure___d4e39946-1_Infrastruc"/>
  417. <xs:complexType name="infrastructure_DRAFT" id="rastructure___d4e39947-1_Infrastruc">
  418. <xs:complexContent id="rastructure___d4e39948-1">
  419. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure">
  420. <xs:sequence id="rastructure___d4e39950-1">
  421. <xs:element name="ID" type="xs:int" id="rastructure___d4e39951-1_ID"/>
  422. <xs:element name="the_geom"
  423. type="gml:AbstractFeatureType"
  424. id="rastructure___d4e39952-1_the_geom">
  425. <xs:annotation>
  426. <xs:documentation>Dane geograficzne obiektu - linia, punkt,
  427. polygon</xs:documentation>
  428. </xs:annotation>
  429. </xs:element>
  430. <xs:element name="A_STATUS_INFO"
  431. type="xs:string"
  432. id="rastructure___d4e39956-1_A_STATUS_I"/>
  433. <xs:element name="opis" type="xs:string" id="rastructure___d4e39957-1_opis">
  434. <xs:annotation>
  435. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  436. kosztorysowym</xs:documentation>
  437. </xs:annotation>
  438. </xs:element>
  439. <xs:element name="ID_ZASOB"
  440. type="xs:int"
  441. id="rastructure___d4e39961-1_ID_ZASOB"/>
  442. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  443. id="rastructure___d4e39962-1">
  444. <xs:annotation>
  445. <xs:appinfo>
  446. <system_cache__appinfo:flat_relation_cache>
  447. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  448. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  449. </system_cache__appinfo:flat_relation_cache>
  450. </xs:appinfo>
  451. </xs:annotation>
  452. </xs:element>
  453. <xs:element name="Dlugosc"
  454. type="xs:double"
  455. id="rastructure___d4e39967-1_Dlugosc"/>
  456. <xs:element name="Powierzchnia"
  457. type="xs:double"
  458. id="rastructure___d4e39968-1_Powierzchn"/>
  459. <xs:element name="L_APPOITMENT_USER"
  460. type="xs:string"
  461. id="rastructure___d4e39969-1_L_APPOITME"/>
  462. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  463. id="rastructure___d4e39970-1">
  464. <xs:annotation>
  465. <xs:appinfo>
  466. <system_cache__appinfo:flat_relation_cache>
  467. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  468. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/login"/>
  469. </system_cache__appinfo:flat_relation_cache>
  470. </xs:appinfo>
  471. </xs:annotation>
  472. </xs:element>
  473. <xs:element name="A_CLASSIFIED"
  474. type="xs:string"
  475. id="rastructure___d4e39975-1_A_CLASSIFI"/>
  476. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  477. id="rastructure___d4e39977-1">
  478. <xs:annotation>
  479. <xs:appinfo>
  480. <system_cache__appinfo:flat_relation_cache>
  481. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  482. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/uid"/>
  483. </system_cache__appinfo:flat_relation_cache>
  484. </xs:appinfo>
  485. </xs:annotation>
  486. </xs:element>
  487. <xs:element name="A_ADM_COMPANY"
  488. type="xs:string"
  489. id="rastructure___d4e39982-1_A_ADM_COMP"/>
  490. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  491. id="rastructure___d4e39983-1">
  492. <xs:annotation>
  493. <xs:appinfo>
  494. <system_cache__appinfo:flat_relation_cache>
  495. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  496. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupWrite/uid"/>
  497. </system_cache__appinfo:flat_relation_cache>
  498. </xs:appinfo>
  499. </xs:annotation>
  500. </xs:element>
  501. <xs:element name="ID_PROJECT"
  502. type="xs:int"
  503. id="rastructure___d4e39988-1_ID_PROJECT"/>
  504. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  505. minOccurs="0"
  506. id="rastructure___d4e31111-1">
  507. <xs:annotation>
  508. <xs:appinfo>
  509. <system_cache__appinfo:flat_relation_cache>
  510. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  511. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  512. </system_cache__appinfo:flat_relation_cache>
  513. </xs:appinfo>
  514. </xs:annotation>
  515. </xs:element>-->
  516. <xs:element name="ID_KORESP_PROJEKT"
  517. type="Types__x3A__default_infrastructure:ID_KORESP_UNSET"
  518. id="rastructure___d4e39990-1_ID_KORESP_"/>
  519. <xs:element minOccurs="0"
  520. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  521. maxOccurs="0"
  522. id="rastructure___d4e39991-1">
  523. <xs:annotation>
  524. <xs:appinfo>
  525. <system_cache__appinfo:flat_relation_cache>
  526. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  527. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  528. </system_cache__appinfo:flat_relation_cache>
  529. </xs:appinfo>
  530. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  531. zasadami projektowania</xs:documentation>
  532. </xs:annotation>
  533. </xs:element>
  534. <xs:element name="ID_KORESP_PROJEKT_WYK"
  535. type="Types__x3A__default_infrastructure:ID_KORESP"
  536. id="rastructure___d4e39998-1_ID_KORESP_"/>
  537. <xs:element minOccurs="0"
  538. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  539. maxOccurs="unbounded"
  540. id="rastructure___d4e39999-1">
  541. <xs:annotation>
  542. <xs:appinfo>
  543. <system_cache__appinfo:flat_relation_cache>
  544. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  545. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  546. </system_cache__appinfo:flat_relation_cache>
  547. </xs:appinfo>
  548. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  549. zasadami projektowania - proj wykonawczy</xs:documentation>
  550. </xs:annotation>
  551. </xs:element>
  552. <xs:element name="ID_KORESP_DO_REALIZ"
  553. type="Types__x3A__default_infrastructure:ID_KORESP"
  554. id="rastructure___d4e40006-1_ID_KORESP_"/>
  555. <xs:element minOccurs="0"
  556. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  557. id="rastructure___d4e40007-1">
  558. <xs:annotation>
  559. <xs:appinfo>
  560. <system_cache__appinfo:flat_relation_cache>
  561. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  562. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  563. </system_cache__appinfo:flat_relation_cache>
  564. </xs:appinfo>
  565. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  566. </xs:annotation>
  567. </xs:element>
  568. <xs:element name="ID_KORESP_OFFER"
  569. type="Types__x3A__default_infrastructure:ID_KORESP"
  570. id="rastructure___d4e40015-1_ID_KORESP_"/>
  571. <xs:element maxOccurs="unbounded"
  572. minOccurs="0"
  573. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  574. id="rastructure___d4e40016-1">
  575. <xs:annotation>
  576. <xs:appinfo>
  577. <system_cache__appinfo:flat_relation_cache>
  578. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  579. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  580. </system_cache__appinfo:flat_relation_cache>
  581. </xs:appinfo>
  582. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  583. </xs:annotation>
  584. </xs:element>
  585. <xs:element name="ID_KORESP_DO_UZG"
  586. type="Types__x3A__default_infrastructure:ID_KORESP"
  587. id="rastructure___d4e40023-1_ID_KORESP_"/>
  588. <xs:element maxOccurs="unbounded"
  589. minOccurs="0"
  590. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  591. id="rastructure___d4e40024-1">
  592. <xs:annotation>
  593. <xs:appinfo>
  594. <system_cache__appinfo:flat_relation_cache>
  595. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  596. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  597. </system_cache__appinfo:flat_relation_cache>
  598. </xs:appinfo>
  599. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  600. do właściciela nieruchomości</xs:documentation>
  601. </xs:annotation>
  602. </xs:element>
  603. <xs:element name="ID_KORESP_UZG"
  604. type="Types__x3A__default_infrastructure:ID_KORESP"
  605. id="rastructure___d4e40031-1_ID_KORESP_"/>
  606. <xs:element maxOccurs="unbounded"
  607. minOccurs="0"
  608. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  609. id="rastructure___d4e40032-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_UZG"
  614. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  615. </system_cache__appinfo:flat_relation_cache>
  616. </xs:appinfo>
  617. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  618. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  619. zgody</xs:documentation>
  620. </xs:annotation>
  621. </xs:element>
  622. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  623. type="Types__x3A__default_infrastructure:ID_KORESP"
  624. id="rastructure___d4e40039-1_ID_KORESP_"/>
  625. <xs:element maxOccurs="unbounded"
  626. minOccurs="0"
  627. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  628. id="rastructure___d4e40040-1">
  629. <xs:annotation>
  630. <xs:appinfo>
  631. <system_cache__appinfo:flat_relation_cache>
  632. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  633. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  634. </system_cache__appinfo:flat_relation_cache>
  635. </xs:appinfo>
  636. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  637. ZUD</xs:documentation>
  638. </xs:annotation>
  639. </xs:element>
  640. <xs:element name="ID_KORESP_UZG_ZUD"
  641. type="Types__x3A__default_infrastructure:ID_KORESP"
  642. id="rastructure___d4e40047-1_ID_KORESP_"/>
  643. <xs:element minOccurs="0"
  644. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  645. id="rastructure___d4e40048-1">
  646. <xs:annotation>
  647. <xs:appinfo>
  648. <system_cache__appinfo:flat_relation_cache>
  649. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  650. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  651. </system_cache__appinfo:flat_relation_cache>
  652. </xs:appinfo>
  653. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  654. </xs:annotation>
  655. </xs:element>
  656. <xs:element name="ID_KORESP_ZLECENIE"
  657. type="Types__x3A__default_infrastructure:ID_KORESP"
  658. id="rastructure___d4e40055-1_ID_KORESP_"/>
  659. <xs:element minOccurs="0"
  660. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  661. id="rastructure___d4e40057-1">
  662. <xs:annotation>
  663. <xs:appinfo>
  664. <system_cache__appinfo:flat_relation_cache>
  665. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  666. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  667. </system_cache__appinfo:flat_relation_cache>
  668. </xs:appinfo>
  669. <xs:documentation>Powiązanie obiektu ze zleceniem na wykonanie obiektu przez
  670. wykonawce</xs:documentation>
  671. </xs:annotation>
  672. </xs:element>
  673. <xs:element name="ID_KORESP_ZGL_ODB"
  674. type="Types__x3A__default_infrastructure:ID_KORESP"
  675. id="rastructure___d4e40064-1_ID_KORESP_"/>
  676. <xs:element minOccurs="0"
  677. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  678. id="rastructure___d4e40065-1">
  679. <xs:annotation>
  680. <xs:appinfo>
  681. <system_cache__appinfo:flat_relation_cache>
  682. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  683. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  684. </system_cache__appinfo:flat_relation_cache>
  685. </xs:appinfo>
  686. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  687. odbioru=wykonanie</xs:documentation>
  688. </xs:annotation>
  689. </xs:element>
  690. <xs:element name="ID_KORESP_POM_GEOD"
  691. type="Types__x3A__default_infrastructure:ID_KORESP"
  692. id="rastructure___d4e40072-1_ID_KORESP_"/>
  693. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  694. minOccurs="0"
  695. id="rastructure___d4e40073-1">
  696. <xs:annotation>
  697. <xs:appinfo>
  698. <system_cache__appinfo:flat_relation_cache>
  699. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  700. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  701. </system_cache__appinfo:flat_relation_cache>
  702. </xs:appinfo>
  703. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  704. oraz są powiązane do dokumentu z operatem</xs:documentation>
  705. </xs:annotation>
  706. </xs:element>
  707. <xs:element name="ID_KORESP_PROTOK_ODB"
  708. type="Types__x3A__default_infrastructure:ID_KORESP"
  709. id="rastructure___d4e40080-1_ID_KORESP_"/>
  710. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  711. minOccurs="0"
  712. id="rastructure___d4e40081-1">
  713. <xs:annotation>
  714. <xs:appinfo>
  715. <system_cache__appinfo:flat_relation_cache>
  716. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  717. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  718. </system_cache__appinfo:flat_relation_cache>
  719. </xs:appinfo>
  720. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  721. wykonawca, inwestor</xs:documentation>
  722. </xs:annotation>
  723. </xs:element>
  724. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  725. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_deal"
  726. id="default_infrastructure___d24e156">
  727. <xs:annotation>
  728. <xs:documentation>Istnienie obiektu warunkuje stan obiektu dotyczący przyjęcia jego na realizację. Rozumiemy to jako obiekt ustalen, który będize mieć strukturę kto i za ile</xs:documentation>
  729. </xs:annotation>
  730. </xs:element> Do pozniejszej implementacji pozycji dokumentu -->
  731. <!--<xs:element minOccurs="0" ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_protocol"
  732. id="default_infrastructure___d24e175">
  733. <xs:annotation>
  734. <xs:documentation>Specjalny typ dokumentu dla weryfikacji obiektow przed zakryciem
  735. </xs:documentation>
  736. </xs:annotation>
  737. </xs:element>-->
  738. <!--<xs:element name="protokol_odbioru" minOccurs="0"
  739. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/infrastructure.xsd"
  740. id="default_infrastructure___d24e184">
  741. <xs:annotation>
  742. <xs:documentation>dokument, będący pismem, potwierdzający, że dany obiekt został właściwie odebrany</xs:documentation>
  743. </xs:annotation>
  744. </xs:element>-->
  745. <xs:element name="InvestArrangements_Network_Crossings"
  746. type="xs:int"
  747. id="rastructure___d4e40091-1_InvestArra"/>
  748. <xs:element minOccurs="0"
  749. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  750. id="rastructure___d4e40093-1">
  751. <xs:annotation>
  752. <xs:appinfo>
  753. <system_cache__appinfo:flat_relation_cache>
  754. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  755. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  756. </system_cache__appinfo:flat_relation_cache>
  757. </xs:appinfo>
  758. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  759. </xs:annotation>
  760. </xs:element>
  761. </xs:sequence>
  762. </xs:restriction>
  763. </xs:complexContent>
  764. </xs:complexType>
  765. <xs:element name="infrastructure_DRAFT"
  766. type="Types__x3A__default_infrastructure:infrastructure_DRAFT"
  767. id="rastructure___d4e40100-1_Infrastruc">
  768. <xs:annotation>
  769. <xs:appinfo>
  770. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  771. system_cache__appinfo:base_type_name="Draft"/>
  772. </xs:appinfo>
  773. </xs:annotation>
  774. <xs:unique name="primary.infrastructure_DRAFT">
  775. <xs:selector xpath="."/>
  776. <xs:field xpath="ID"/>
  777. </xs:unique>
  778. </xs:element>
  779. <xs:complexType name="infrastructure_PROJEKT"
  780. abstract="true"
  781. id="rastructure___d4e40107-1_Infrastruc">
  782. <xs:annotation>
  783. <xs:documentation>Generalnie prototyp obiektu już jest jego planem, dla tego na ten moment
  784. bedzie to extensions obiektu infrastruktury</xs:documentation>
  785. </xs:annotation>
  786. <xs:complexContent id="rastructure___d4e40111-1">
  787. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure">
  788. <xs:sequence id="rastructure___d4e40113-1">
  789. <xs:element name="ID" type="xs:int" id="rastructure___d4e40114-1_ID"/>
  790. <xs:element name="the_geom"
  791. type="gml:AbstractFeatureType"
  792. id="rastructure___d4e40115-1_the_geom"/>
  793. <!--<xs:choice maxOccurs="unbounded" minOccurs="0" >
  794. <xs:annotation>
  795. <xs:documentation>@2015-03-30 - obiekt moze posiadac wiecej wymagan zgod. Alternatywnie zgody muszą być wszystkie wyrażone, z uwagi na prawidłowe działanie restrykcji, dla obiektów możliwych dla realizacji.</xs:documentation>
  796. </xs:annotation>
  797. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement"
  798. />
  799. <xs:element
  800. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement_accepted"
  801. />
  802. </xs:choice> Do pozniejszej implementacji zaleznych relacji w sekwencji -->
  803. <xs:element name="A_STATUS_INFO"
  804. type="xs:string"
  805. id="rastructure___d4e40117-1_A_STATUS_I"/>
  806. <xs:element name="opis" type="xs:string" id="rastructure___d4e40118-1_opis">
  807. <xs:annotation>
  808. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  809. kosztorysowym</xs:documentation>
  810. </xs:annotation>
  811. </xs:element>
  812. <xs:element name="ID_ZASOB"
  813. type="xs:int"
  814. id="rastructure___d4e40122-1_ID_ZASOB"/>
  815. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  816. id="rastructure___d4e40123-1">
  817. <xs:annotation>
  818. <xs:appinfo>
  819. <system_cache__appinfo:flat_relation_cache>
  820. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  821. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  822. </system_cache__appinfo:flat_relation_cache>
  823. </xs:appinfo>
  824. </xs:annotation>
  825. </xs:element>
  826. <xs:element name="Dlugosc"
  827. type="xs:double"
  828. id="rastructure___d4e40128-1_Dlugosc"/>
  829. <xs:element name="Powierzchnia"
  830. type="xs:double"
  831. id="rastructure___d4e40129-1_Powierzchn"/>
  832. <xs:element name="L_APPOITMENT_USER"
  833. type="xs:string"
  834. id="rastructure___d4e40130-1_L_APPOITME"/>
  835. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  836. id="rastructure___d4e40131-1">
  837. <xs:annotation>
  838. <xs:appinfo>
  839. <system_cache__appinfo:flat_relation_cache>
  840. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  841. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/login"/>
  842. </system_cache__appinfo:flat_relation_cache>
  843. </xs:appinfo>
  844. </xs:annotation>
  845. </xs:element>
  846. <xs:element name="A_CLASSIFIED"
  847. type="xs:string"
  848. id="rastructure___d4e40137-1_A_CLASSIFI"/>
  849. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  850. id="rastructure___d4e40138-1">
  851. <xs:annotation>
  852. <xs:appinfo>
  853. <system_cache__appinfo:flat_relation_cache>
  854. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  855. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/uid"/>
  856. </system_cache__appinfo:flat_relation_cache>
  857. </xs:appinfo>
  858. </xs:annotation>
  859. </xs:element>
  860. <xs:element name="A_ADM_COMPANY"
  861. type="xs:string"
  862. id="rastructure___d4e40143-1_A_ADM_COMP"/>
  863. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  864. id="rastructure___d4e40144-1">
  865. <xs:annotation>
  866. <xs:appinfo>
  867. <system_cache__appinfo:flat_relation_cache>
  868. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  869. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupWrite/uid"/>
  870. </system_cache__appinfo:flat_relation_cache>
  871. </xs:appinfo>
  872. </xs:annotation>
  873. </xs:element>
  874. <xs:element name="ID_PROJECT"
  875. type="xs:int"
  876. id="rastructure___d4e40149-1_ID_PROJECT"/>
  877. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  878. minOccurs="0"
  879. id="rastructure___d4e31247-1">
  880. <xs:annotation>
  881. <xs:appinfo>
  882. <system_cache__appinfo:flat_relation_cache>
  883. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  884. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  885. </system_cache__appinfo:flat_relation_cache>
  886. </xs:appinfo>
  887. </xs:annotation>
  888. </xs:element>-->
  889. <xs:element name="ID_KORESP_PROJEKT"
  890. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  891. id="rastructure___d4e40151-1_ID_KORESP_"/>
  892. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  893. maxOccurs="unbounded"
  894. id="rastructure___d4e40152-1">
  895. <xs:annotation>
  896. <xs:appinfo>
  897. <system_cache__appinfo:flat_relation_cache>
  898. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  899. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  900. </system_cache__appinfo:flat_relation_cache>
  901. </xs:appinfo>
  902. <xs:documentation>stworzono i wydrukowano fizycznie dokument projektu dla
  903. danego zakresu elementow</xs:documentation>
  904. </xs:annotation>
  905. </xs:element>
  906. <xs:element name="ID_KORESP_PROJEKT_WYK"
  907. type="Types__x3A__default_infrastructure:ID_KORESP"
  908. id="rastructure___d4e40159-1_ID_KORESP_"/>
  909. <xs:element minOccurs="0"
  910. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  911. maxOccurs="unbounded"
  912. id="rastructure___d4e40160-1">
  913. <xs:annotation>
  914. <xs:appinfo>
  915. <system_cache__appinfo:flat_relation_cache>
  916. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  917. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  918. </system_cache__appinfo:flat_relation_cache>
  919. </xs:appinfo>
  920. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  921. zasadami projektowania - proj wykonawczy</xs:documentation>
  922. </xs:annotation>
  923. </xs:element>
  924. <xs:element name="ID_KORESP_DO_REALIZ"
  925. type="Types__x3A__default_infrastructure:ID_KORESP"
  926. id="rastructure___d4e40167-1_ID_KORESP_"/>
  927. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  928. minOccurs="0"
  929. id="rastructure___d4e40169-1">
  930. <xs:annotation>
  931. <xs:appinfo>
  932. <system_cache__appinfo:flat_relation_cache>
  933. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  934. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  935. </system_cache__appinfo:flat_relation_cache>
  936. </xs:appinfo>
  937. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  938. </xs:annotation>
  939. </xs:element>
  940. <xs:element name="ID_KORESP_OFFER"
  941. type="Types__x3A__default_infrastructure:ID_KORESP"
  942. id="rastructure___d4e40176-1_ID_KORESP_"/>
  943. <xs:element maxOccurs="unbounded"
  944. minOccurs="0"
  945. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  946. id="rastructure___d4e40177-1">
  947. <xs:annotation>
  948. <xs:appinfo>
  949. <system_cache__appinfo:flat_relation_cache>
  950. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  951. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  952. </system_cache__appinfo:flat_relation_cache>
  953. </xs:appinfo>
  954. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  955. </xs:annotation>
  956. </xs:element>
  957. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  958. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_offer"
  959. >
  960. <xs:annotation >
  961. <xs:documentation>Istnienie ofert na danym obiekcie inftastruktury
  962. </xs:documentation>
  963. </xs:annotation>
  964. </xs:element> Do pozniejszej implementacji zaleznych relacji w sekwencji-->
  965. <xs:element name="ID_KORESP_DO_UZG"
  966. type="Types__x3A__default_infrastructure:ID_KORESP"
  967. id="rastructure___d4e40185-1_ID_KORESP_"/>
  968. <xs:element maxOccurs="unbounded"
  969. minOccurs="0"
  970. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  971. id="rastructure___d4e40186-1">
  972. <xs:annotation>
  973. <xs:appinfo>
  974. <system_cache__appinfo:flat_relation_cache>
  975. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  976. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  977. </system_cache__appinfo:flat_relation_cache>
  978. </xs:appinfo>
  979. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  980. do właściciela nieruchomości</xs:documentation>
  981. </xs:annotation>
  982. </xs:element>
  983. <xs:element name="ID_KORESP_UZG"
  984. type="Types__x3A__default_infrastructure:ID_KORESP"
  985. id="rastructure___d4e40193-1_ID_KORESP_"/>
  986. <xs:element maxOccurs="unbounded"
  987. minOccurs="0"
  988. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  989. id="rastructure___d4e40194-1">
  990. <xs:annotation>
  991. <xs:appinfo>
  992. <system_cache__appinfo:flat_relation_cache>
  993. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  994. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  995. </system_cache__appinfo:flat_relation_cache>
  996. </xs:appinfo>
  997. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  998. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  999. zgody</xs:documentation>
  1000. </xs:annotation>
  1001. </xs:element>
  1002. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  1003. type="Types__x3A__default_infrastructure:ID_KORESP"
  1004. id="rastructure___d4e40201-1_ID_KORESP_"/>
  1005. <xs:element maxOccurs="unbounded"
  1006. minOccurs="0"
  1007. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1008. id="rastructure___d4e40202-1">
  1009. <xs:annotation>
  1010. <xs:appinfo>
  1011. <system_cache__appinfo:flat_relation_cache>
  1012. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1013. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1014. </system_cache__appinfo:flat_relation_cache>
  1015. </xs:appinfo>
  1016. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  1017. ZUD</xs:documentation>
  1018. </xs:annotation>
  1019. </xs:element>
  1020. <xs:element name="ID_KORESP_UZG_ZUD"
  1021. type="Types__x3A__default_infrastructure:ID_KORESP"
  1022. id="rastructure___d4e40209-1_ID_KORESP_"/>
  1023. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1024. minOccurs="0"
  1025. id="rastructure___d4e40211-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_UZG_ZUD"
  1030. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1031. </system_cache__appinfo:flat_relation_cache>
  1032. </xs:appinfo>
  1033. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1034. </xs:annotation>
  1035. </xs:element>
  1036. <xs:element name="ID_KORESP_ZLECENIE"
  1037. type="Types__x3A__default_infrastructure:ID_KORESP"
  1038. id="rastructure___d4e40218-1_ID_KORESP_"/>
  1039. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1040. minOccurs="0"
  1041. id="rastructure___d4e40219-1">
  1042. <xs:annotation>
  1043. <xs:appinfo>
  1044. <system_cache__appinfo:flat_relation_cache>
  1045. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1046. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1047. </system_cache__appinfo:flat_relation_cache>
  1048. </xs:appinfo>
  1049. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1050. </xs:annotation>
  1051. </xs:element>
  1052. <xs:element name="ID_KORESP_ZGL_ODB"
  1053. type="Types__x3A__default_infrastructure:ID_KORESP"
  1054. id="rastructure___d4e40226-1_ID_KORESP_"/>
  1055. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1056. minOccurs="0"
  1057. id="rastructure___d4e40227-1">
  1058. <xs:annotation>
  1059. <xs:appinfo>
  1060. <system_cache__appinfo:flat_relation_cache>
  1061. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1062. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1063. </system_cache__appinfo:flat_relation_cache>
  1064. </xs:appinfo>
  1065. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  1066. odbioru=wykonanie</xs:documentation>
  1067. </xs:annotation>
  1068. </xs:element>
  1069. <xs:element name="ID_KORESP_POM_GEOD"
  1070. type="Types__x3A__default_infrastructure:ID_KORESP"
  1071. id="rastructure___d4e40234-1_ID_KORESP_"/>
  1072. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1073. minOccurs="0"
  1074. id="rastructure___d4e40235-1">
  1075. <xs:annotation>
  1076. <xs:appinfo>
  1077. <system_cache__appinfo:flat_relation_cache>
  1078. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1079. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1080. </system_cache__appinfo:flat_relation_cache>
  1081. </xs:appinfo>
  1082. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  1083. oraz są powiązane do dokumentu z operatem</xs:documentation>
  1084. </xs:annotation>
  1085. </xs:element>
  1086. <xs:element name="ID_KORESP_PROTOK_ODB"
  1087. type="Types__x3A__default_infrastructure:ID_KORESP"
  1088. id="rastructure___d4e40242-1_ID_KORESP_"/>
  1089. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1090. minOccurs="0"
  1091. id="rastructure___d4e40243-1">
  1092. <xs:annotation>
  1093. <xs:appinfo>
  1094. <system_cache__appinfo:flat_relation_cache>
  1095. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1096. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1097. </system_cache__appinfo:flat_relation_cache>
  1098. </xs:appinfo>
  1099. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  1100. wykonawca, inwestor</xs:documentation>
  1101. </xs:annotation>
  1102. </xs:element>
  1103. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  1104. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_deal"
  1105. >
  1106. <xs:annotation>
  1107. <xs:documentation>Istnienie obiektu warunkuje stan obiektu dotyczący przyjęcia jego na realizację. Rozumiemy to jako obiekt ustalen, który będize mieć strukturę kto i za ile</xs:documentation>
  1108. </xs:annotation>
  1109. </xs:element> Do pozniejszej implementacji pozycji dokumentu -->
  1110. <!--<xs:element minOccurs="0" ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_protocol"
  1111. >
  1112. <xs:annotation>
  1113. <xs:documentation>Specjalny typ dokumentu dla weryfikacji obiektow przed zakryciem
  1114. </xs:documentation>
  1115. </xs:annotation>
  1116. </xs:element>-->
  1117. <!--<xs:element name="protokol_odbioru" minOccurs="0"
  1118. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/infrastructure.xsd"
  1119. >
  1120. <xs:annotation>
  1121. <xs:documentation>dokument, będący pismem, potwierdzający, że dany obiekt został właściwie odebrany</xs:documentation>
  1122. </xs:annotation>
  1123. </xs:element>-->
  1124. <xs:element name="InvestArrangements_Network_Crossings"
  1125. type="xs:int"
  1126. id="rastructure___d4e40254-1_InvestArra"/>
  1127. <xs:element minOccurs="0"
  1128. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  1129. id="rastructure___d4e40255-1">
  1130. <xs:annotation>
  1131. <xs:appinfo>
  1132. <system_cache__appinfo:flat_relation_cache>
  1133. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  1134. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  1135. </system_cache__appinfo:flat_relation_cache>
  1136. </xs:appinfo>
  1137. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  1138. </xs:annotation>
  1139. </xs:element>
  1140. </xs:sequence>
  1141. <xs:attribute name="label" type="xs:string" id="rastructure___d6e158595-1_label">
  1142. <xs:annotation>
  1143. <xs:documentation>Not needed to be there label</xs:documentation>
  1144. </xs:annotation>
  1145. </xs:attribute>
  1146. <xs:assert test="@label = concat('Projekt ', ID)" id="rastructure___d6e158599-1">
  1147. <xs:annotation>
  1148. <xs:documentation>Test override parent assert for @label</xs:documentation>
  1149. </xs:annotation>
  1150. </xs:assert>
  1151. <!--<xs:assert test="@label_projekt = ID">
  1152. <xs:annotation>
  1153. <xs:documentation>Assert new label for child</xs:documentation>
  1154. </xs:annotation>
  1155. </xs:assert>-->
  1156. </xs:restriction>
  1157. </xs:complexContent>
  1158. </xs:complexType>
  1159. <xs:element name="infrastructure_PROJEKT"
  1160. type="Types__x3A__default_infrastructure:infrastructure_PROJEKT"
  1161. abstract="true"
  1162. id="rastructure___d4e40262-1_Infrastruc">
  1163. <xs:annotation>
  1164. <xs:appinfo>
  1165. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  1166. system_cache__appinfo:base_type_name="PROJEKT"/>
  1167. </xs:appinfo>
  1168. <xs:documentation>Zaprojektowany - został wydrukowany projekt dla danego
  1169. rekordu</xs:documentation>
  1170. </xs:annotation>
  1171. </xs:element>
  1172. <xs:complexType name="infrastructure_DO_REALIZ"
  1173. abstract="true"
  1174. id="rastructure___d4e40268-1_Infrastruc">
  1175. <xs:complexContent id="rastructure___d4e40269-1">
  1176. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_PROJEKT">
  1177. <xs:sequence id="rastructure___d4e40271-1">
  1178. <xs:element name="ID" type="xs:int" id="rastructure___d4e40272-1_ID"/>
  1179. <xs:element name="the_geom"
  1180. type="gml:AbstractFeatureType"
  1181. id="rastructure___d4e40273-1_the_geom"/>
  1182. <!--<xs:choice maxOccurs="unbounded" minOccurs="0" >
  1183. <xs:annotation>
  1184. <xs:documentation>@2015-03-30 - obiekt moze posiadac wiecej wymagan zgod. Alternatywnie zgody muszą być wszystkie wyrażone, z uwagi na prawidłowe działanie restrykcji, dla obiektów możliwych dla realizacji.</xs:documentation>
  1185. </xs:annotation>
  1186. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement"
  1187. />
  1188. <xs:element
  1189. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement_accepted"
  1190. />
  1191. </xs:choice> Do pozniejszej implementacji zaleznych relacji w sekwencji -->
  1192. <xs:element name="A_STATUS_INFO"
  1193. type="xs:string"
  1194. id="rastructure___d4e40275-1_A_STATUS_I"/>
  1195. <xs:element name="opis" type="xs:string" id="rastructure___d4e40276-1_opis">
  1196. <xs:annotation>
  1197. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  1198. kosztorysowym</xs:documentation>
  1199. </xs:annotation>
  1200. </xs:element>
  1201. <xs:element name="ID_ZASOB"
  1202. type="xs:int"
  1203. id="rastructure___d4e40280-1_ID_ZASOB"/>
  1204. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  1205. id="rastructure___d4e40281-1">
  1206. <xs:annotation>
  1207. <xs:appinfo>
  1208. <system_cache__appinfo:flat_relation_cache>
  1209. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  1210. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  1211. </system_cache__appinfo:flat_relation_cache>
  1212. </xs:appinfo>
  1213. </xs:annotation>
  1214. </xs:element>
  1215. <xs:element name="Dlugosc"
  1216. type="xs:double"
  1217. id="rastructure___d4e40286-1_Dlugosc"/>
  1218. <xs:element name="Powierzchnia"
  1219. type="xs:double"
  1220. id="rastructure___d4e40287-1_Powierzchn"/>
  1221. <xs:element name="L_APPOITMENT_USER"
  1222. type="xs:string"
  1223. id="rastructure___d4e40288-1_L_APPOITME"/>
  1224. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  1225. id="rastructure___d4e40289-1">
  1226. <xs:annotation>
  1227. <xs:appinfo>
  1228. <system_cache__appinfo:flat_relation_cache>
  1229. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1230. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  1231. </system_cache__appinfo:flat_relation_cache>
  1232. </xs:appinfo>
  1233. </xs:annotation>
  1234. </xs:element>
  1235. <xs:element name="A_CLASSIFIED"
  1236. type="xs:string"
  1237. id="rastructure___d4e40295-1_A_CLASSIFI"/>
  1238. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  1239. id="rastructure___d4e40296-1">
  1240. <xs:annotation>
  1241. <xs:appinfo>
  1242. <system_cache__appinfo:flat_relation_cache>
  1243. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1244. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  1245. </system_cache__appinfo:flat_relation_cache>
  1246. </xs:appinfo>
  1247. </xs:annotation>
  1248. </xs:element>
  1249. <xs:element name="A_ADM_COMPANY"
  1250. type="xs:string"
  1251. id="rastructure___d4e40301-1_A_ADM_COMP"/>
  1252. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  1253. id="rastructure___d4e40302-1">
  1254. <xs:annotation>
  1255. <xs:appinfo>
  1256. <system_cache__appinfo:flat_relation_cache>
  1257. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1258. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1259. </system_cache__appinfo:flat_relation_cache>
  1260. </xs:appinfo>
  1261. </xs:annotation>
  1262. </xs:element>
  1263. <xs:element name="ID_PROJECT"
  1264. type="xs:int"
  1265. id="rastructure___d4e40307-1_ID_PROJECT"/>
  1266. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1267. minOccurs="0"
  1268. id="rastructure___d4e31385-1">
  1269. <xs:annotation>
  1270. <xs:appinfo>
  1271. <system_cache__appinfo:flat_relation_cache>
  1272. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1273. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1274. </system_cache__appinfo:flat_relation_cache>
  1275. </xs:appinfo>
  1276. </xs:annotation>
  1277. </xs:element>-->
  1278. <xs:element name="ID_KORESP_PROJEKT"
  1279. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  1280. id="rastructure___d4e40309-1_ID_KORESP_"/>
  1281. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1282. id="rastructure___d4e40310-1">
  1283. <xs:annotation>
  1284. <xs:appinfo>
  1285. <system_cache__appinfo:flat_relation_cache>
  1286. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1287. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1288. </system_cache__appinfo:flat_relation_cache>
  1289. </xs:appinfo>
  1290. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  1291. zasadami projektowania</xs:documentation>
  1292. </xs:annotation>
  1293. </xs:element>
  1294. <xs:element name="ID_KORESP_PROJEKT_WYK"
  1295. type="Types__x3A__default_infrastructure:ID_KORESP"
  1296. id="rastructure___d4e40317-1_ID_KORESP_"/>
  1297. <xs:element minOccurs="0"
  1298. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  1299. maxOccurs="unbounded"
  1300. id="rastructure___d4e40318-1">
  1301. <xs:annotation>
  1302. <xs:appinfo>
  1303. <system_cache__appinfo:flat_relation_cache>
  1304. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  1305. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  1306. </system_cache__appinfo:flat_relation_cache>
  1307. </xs:appinfo>
  1308. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  1309. zasadami projektowania - proj wykonawczy</xs:documentation>
  1310. </xs:annotation>
  1311. </xs:element>
  1312. <xs:element name="ID_KORESP_DO_REALIZ"
  1313. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  1314. id="rastructure___d4e40325-1_ID_KORESP_"/>
  1315. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1316. id="rastructure___d4e40327-1">
  1317. <xs:annotation>
  1318. <xs:appinfo>
  1319. <system_cache__appinfo:flat_relation_cache>
  1320. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1321. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1322. </system_cache__appinfo:flat_relation_cache>
  1323. </xs:appinfo>
  1324. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1325. </xs:annotation>
  1326. </xs:element>
  1327. <xs:element name="ID_KORESP_OFFER"
  1328. type="Types__x3A__default_infrastructure:ID_KORESP"
  1329. id="rastructure___d4e40334-1_ID_KORESP_"/>
  1330. <xs:element maxOccurs="unbounded"
  1331. minOccurs="0"
  1332. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1333. id="rastructure___d4e40335-1">
  1334. <xs:annotation>
  1335. <xs:appinfo>
  1336. <system_cache__appinfo:flat_relation_cache>
  1337. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1338. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1339. </system_cache__appinfo:flat_relation_cache>
  1340. </xs:appinfo>
  1341. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1342. </xs:annotation>
  1343. </xs:element>
  1344. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  1345. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_offer"
  1346. >
  1347. <xs:annotation >
  1348. <xs:documentation>Istnienie ofert na danym obiekcie inftastruktury
  1349. </xs:documentation>
  1350. </xs:annotation>
  1351. </xs:element> Do pozniejszej implementacji zaleznych relacji w sekwencji-->
  1352. <xs:element name="ID_KORESP_DO_UZG"
  1353. type="Types__x3A__default_infrastructure:ID_KORESP"
  1354. id="rastructure___d4e40343-1_ID_KORESP_"/>
  1355. <xs:element maxOccurs="unbounded"
  1356. minOccurs="0"
  1357. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1358. id="rastructure___d4e40344-1">
  1359. <xs:annotation>
  1360. <xs:appinfo>
  1361. <system_cache__appinfo:flat_relation_cache>
  1362. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1363. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1364. </system_cache__appinfo:flat_relation_cache>
  1365. </xs:appinfo>
  1366. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  1367. do właściciela nieruchomości</xs:documentation>
  1368. </xs:annotation>
  1369. </xs:element>
  1370. <xs:element name="ID_KORESP_UZG"
  1371. type="Types__x3A__default_infrastructure:ID_KORESP"
  1372. id="rastructure___d4e40351-1_ID_KORESP_"/>
  1373. <xs:element maxOccurs="unbounded"
  1374. minOccurs="0"
  1375. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1376. id="rastructure___d4e40352-1">
  1377. <xs:annotation>
  1378. <xs:appinfo>
  1379. <system_cache__appinfo:flat_relation_cache>
  1380. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1381. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1382. </system_cache__appinfo:flat_relation_cache>
  1383. </xs:appinfo>
  1384. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  1385. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  1386. zgody</xs:documentation>
  1387. </xs:annotation>
  1388. </xs:element>
  1389. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  1390. type="Types__x3A__default_infrastructure:ID_KORESP"
  1391. id="rastructure___d4e40359-1_ID_KORESP_"/>
  1392. <xs:element maxOccurs="unbounded"
  1393. minOccurs="0"
  1394. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1395. id="rastructure___d4e40360-1">
  1396. <xs:annotation>
  1397. <xs:appinfo>
  1398. <system_cache__appinfo:flat_relation_cache>
  1399. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1400. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1401. </system_cache__appinfo:flat_relation_cache>
  1402. </xs:appinfo>
  1403. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  1404. ZUD</xs:documentation>
  1405. </xs:annotation>
  1406. </xs:element>
  1407. <xs:element name="ID_KORESP_UZG_ZUD"
  1408. type="Types__x3A__default_infrastructure:ID_KORESP"
  1409. id="rastructure___d4e40367-1_ID_KORESP_"/>
  1410. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1411. minOccurs="0"
  1412. id="rastructure___d4e40369-1">
  1413. <xs:annotation>
  1414. <xs:appinfo>
  1415. <system_cache__appinfo:flat_relation_cache>
  1416. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1417. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1418. </system_cache__appinfo:flat_relation_cache>
  1419. </xs:appinfo>
  1420. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1421. </xs:annotation>
  1422. </xs:element>
  1423. <xs:element name="ID_KORESP_ZLECENIE"
  1424. type="Types__x3A__default_infrastructure:ID_KORESP"
  1425. id="rastructure___d4e40376-1_ID_KORESP_"/>
  1426. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1427. minOccurs="0"
  1428. id="rastructure___d4e40377-1">
  1429. <xs:annotation>
  1430. <xs:appinfo>
  1431. <system_cache__appinfo:flat_relation_cache>
  1432. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1433. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1434. </system_cache__appinfo:flat_relation_cache>
  1435. </xs:appinfo>
  1436. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1437. </xs:annotation>
  1438. </xs:element>
  1439. <xs:element name="ID_KORESP_ZGL_ODB"
  1440. type="Types__x3A__default_infrastructure:ID_KORESP"
  1441. id="rastructure___d4e40384-1_ID_KORESP_"/>
  1442. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1443. minOccurs="0"
  1444. id="rastructure___d4e40385-1">
  1445. <xs:annotation>
  1446. <xs:appinfo>
  1447. <system_cache__appinfo:flat_relation_cache>
  1448. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  1449. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  1450. </system_cache__appinfo:flat_relation_cache>
  1451. </xs:appinfo>
  1452. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  1453. odbioru=wykonanie</xs:documentation>
  1454. </xs:annotation>
  1455. </xs:element>
  1456. <xs:element name="ID_KORESP_POM_GEOD"
  1457. type="Types__x3A__default_infrastructure:ID_KORESP"
  1458. id="rastructure___d4e40392-1_ID_KORESP_"/>
  1459. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1460. minOccurs="0"
  1461. id="rastructure___d4e40393-1">
  1462. <xs:annotation>
  1463. <xs:appinfo>
  1464. <system_cache__appinfo:flat_relation_cache>
  1465. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1466. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1467. </system_cache__appinfo:flat_relation_cache>
  1468. </xs:appinfo>
  1469. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  1470. oraz są powiązane do dokumentu z operatem</xs:documentation>
  1471. </xs:annotation>
  1472. </xs:element>
  1473. <xs:element name="ID_KORESP_PROTOK_ODB"
  1474. type="Types__x3A__default_infrastructure:ID_KORESP"
  1475. id="rastructure___d4e40400-1_ID_KORESP_"/>
  1476. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1477. minOccurs="0"
  1478. id="rastructure___d4e40401-1">
  1479. <xs:annotation>
  1480. <xs:appinfo>
  1481. <system_cache__appinfo:flat_relation_cache>
  1482. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1483. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1484. </system_cache__appinfo:flat_relation_cache>
  1485. </xs:appinfo>
  1486. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  1487. wykonawca, inwestor</xs:documentation>
  1488. </xs:annotation>
  1489. </xs:element>
  1490. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  1491. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_deal"
  1492. >
  1493. <xs:annotation>
  1494. <xs:documentation>Istnienie obiektu warunkuje stan obiektu dotyczący przyjęcia jego na realizację. Rozumiemy to jako obiekt ustalen, który będize mieć strukturę kto i za ile</xs:documentation>
  1495. </xs:annotation>
  1496. </xs:element> Do pozniejszej implementacji pozycji dokumentu -->
  1497. <!--<xs:element minOccurs="0" ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_protocol"
  1498. >
  1499. <xs:annotation>
  1500. <xs:documentation>Specjalny typ dokumentu dla weryfikacji obiektow przed zakryciem
  1501. </xs:documentation>
  1502. </xs:annotation>
  1503. </xs:element>-->
  1504. <!--<xs:element name="protokol_odbioru" minOccurs="0"
  1505. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/infrastructure.xsd"
  1506. >
  1507. <xs:annotation>
  1508. <xs:documentation>dokument, będący pismem, potwierdzający, że dany obiekt został właściwie odebrany</xs:documentation>
  1509. </xs:annotation>
  1510. </xs:element>-->
  1511. <xs:element name="InvestArrangements_Network_Crossings"
  1512. type="xs:int"
  1513. id="rastructure___d4e40412-1_InvestArra"/>
  1514. <xs:element minOccurs="0"
  1515. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  1516. id="rastructure___d4e40413-1">
  1517. <xs:annotation>
  1518. <xs:appinfo>
  1519. <system_cache__appinfo:flat_relation_cache>
  1520. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  1521. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  1522. </system_cache__appinfo:flat_relation_cache>
  1523. </xs:appinfo>
  1524. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  1525. </xs:annotation>
  1526. </xs:element>
  1527. </xs:sequence>
  1528. </xs:restriction>
  1529. </xs:complexContent>
  1530. </xs:complexType>
  1531. <xs:element name="infrastructure_DO_REALIZ"
  1532. type="Types__x3A__default_infrastructure:infrastructure_DO_REALIZ"
  1533. abstract="true"
  1534. id="rastructure___d4e40420-1_Infrastruc">
  1535. <xs:annotation>
  1536. <xs:appinfo>
  1537. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  1538. system_cache__appinfo:base_type_name="DO_REALIZ"/>
  1539. </xs:appinfo>
  1540. </xs:annotation>
  1541. </xs:element>
  1542. <xs:complexType name="infrastructure_OFFER"
  1543. abstract="true"
  1544. id="rastructure___d4e40424-1_Infrastruc">
  1545. <xs:annotation>
  1546. <xs:documentation>Obiekt, na ktory otryzmalismy oferte</xs:documentation>
  1547. </xs:annotation>
  1548. <xs:complexContent id="rastructure___d4e40428-1">
  1549. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_PROJEKT">
  1550. <xs:sequence id="rastructure___d4e40430-1">
  1551. <xs:element name="ID" type="xs:int" id="rastructure___d4e40431-1_ID"/>
  1552. <xs:element name="the_geom"
  1553. type="gml:AbstractFeatureType"
  1554. id="rastructure___d4e40432-1_the_geom"/>
  1555. <!--<xs:choice maxOccurs="unbounded" minOccurs="0" >
  1556. <xs:annotation>
  1557. <xs:documentation>@2015-03-30 - obiekt moze posiadac wiecej wymagan zgod. Alternatywnie zgody muszą być wszystkie wyrażone, z uwagi na prawidłowe działanie restrykcji, dla obiektów możliwych dla realizacji.</xs:documentation>
  1558. </xs:annotation>
  1559. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement"
  1560. />
  1561. <xs:element
  1562. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement_accepted"
  1563. />
  1564. </xs:choice> Do pozniejszej implementacji zaleznych relacji w sekwencji -->
  1565. <xs:element name="A_STATUS_INFO"
  1566. type="xs:string"
  1567. id="rastructure___d4e40434-1_A_STATUS_I"/>
  1568. <xs:element name="opis" type="xs:string" id="rastructure___d4e40435-1_opis">
  1569. <xs:annotation>
  1570. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  1571. kosztorysowym</xs:documentation>
  1572. </xs:annotation>
  1573. </xs:element>
  1574. <xs:element name="ID_ZASOB"
  1575. type="xs:int"
  1576. id="rastructure___d4e40439-1_ID_ZASOB"/>
  1577. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  1578. id="rastructure___d4e40440-1">
  1579. <xs:annotation>
  1580. <xs:appinfo>
  1581. <system_cache__appinfo:flat_relation_cache>
  1582. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  1583. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  1584. </system_cache__appinfo:flat_relation_cache>
  1585. </xs:appinfo>
  1586. </xs:annotation>
  1587. </xs:element>
  1588. <xs:element name="Dlugosc"
  1589. type="xs:double"
  1590. id="rastructure___d4e40445-1_Dlugosc"/>
  1591. <xs:element name="Powierzchnia"
  1592. type="xs:double"
  1593. id="rastructure___d4e40446-1_Powierzchn"/>
  1594. <xs:element name="L_APPOITMENT_USER"
  1595. type="xs:string"
  1596. id="rastructure___d4e40447-1_L_APPOITME"/>
  1597. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  1598. id="rastructure___d4e40448-1">
  1599. <xs:annotation>
  1600. <xs:appinfo>
  1601. <system_cache__appinfo:flat_relation_cache>
  1602. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1603. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  1604. </system_cache__appinfo:flat_relation_cache>
  1605. </xs:appinfo>
  1606. </xs:annotation>
  1607. </xs:element>
  1608. <xs:element name="A_CLASSIFIED"
  1609. type="xs:string"
  1610. id="rastructure___d4e40454-1_A_CLASSIFI"/>
  1611. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  1612. id="rastructure___d4e40455-1">
  1613. <xs:annotation>
  1614. <xs:appinfo>
  1615. <system_cache__appinfo:flat_relation_cache>
  1616. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1617. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  1618. </system_cache__appinfo:flat_relation_cache>
  1619. </xs:appinfo>
  1620. </xs:annotation>
  1621. </xs:element>
  1622. <xs:element name="A_ADM_COMPANY"
  1623. type="xs:string"
  1624. id="rastructure___d4e40460-1_A_ADM_COMP"/>
  1625. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  1626. id="rastructure___d4e40461-1">
  1627. <xs:annotation>
  1628. <xs:appinfo>
  1629. <system_cache__appinfo:flat_relation_cache>
  1630. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  1631. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  1632. </system_cache__appinfo:flat_relation_cache>
  1633. </xs:appinfo>
  1634. </xs:annotation>
  1635. </xs:element>
  1636. <xs:element name="ID_PROJECT"
  1637. type="xs:int"
  1638. id="rastructure___d4e40466-1_ID_PROJECT"/>
  1639. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  1640. minOccurs="0"
  1641. id="rastructure___d4e31522-1">
  1642. <xs:annotation>
  1643. <xs:appinfo>
  1644. <system_cache__appinfo:flat_relation_cache>
  1645. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  1646. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  1647. </system_cache__appinfo:flat_relation_cache>
  1648. </xs:appinfo>
  1649. </xs:annotation>
  1650. </xs:element>-->
  1651. <xs:element name="ID_KORESP_PROJEKT"
  1652. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  1653. id="rastructure___d4e40468-1_ID_KORESP_"/>
  1654. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  1655. maxOccurs="unbounded"
  1656. id="rastructure___d4e40469-1">
  1657. <xs:annotation>
  1658. <xs:appinfo>
  1659. <system_cache__appinfo:flat_relation_cache>
  1660. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  1661. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  1662. </system_cache__appinfo:flat_relation_cache>
  1663. </xs:appinfo>
  1664. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  1665. zasadami projektowania</xs:documentation>
  1666. </xs:annotation>
  1667. </xs:element>
  1668. <xs:element name="ID_KORESP_PROJEKT_WYK"
  1669. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  1670. id="rastructure___d4e40476-1_ID_KORESP_"/>
  1671. <xs:element minOccurs="1"
  1672. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  1673. maxOccurs="unbounded"
  1674. id="rastructure___d4e40477-1">
  1675. <xs:annotation>
  1676. <xs:appinfo>
  1677. <system_cache__appinfo:flat_relation_cache>
  1678. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  1679. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  1680. </system_cache__appinfo:flat_relation_cache>
  1681. </xs:appinfo>
  1682. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  1683. zasadami projektowania - proj wykonawczy</xs:documentation>
  1684. </xs:annotation>
  1685. </xs:element>
  1686. <xs:element name="ID_KORESP_DO_REALIZ"
  1687. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  1688. id="rastructure___d4e40484-1_ID_KORESP_"/>
  1689. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  1690. id="rastructure___d4e40486-1">
  1691. <xs:annotation>
  1692. <xs:appinfo>
  1693. <system_cache__appinfo:flat_relation_cache>
  1694. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  1695. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  1696. </system_cache__appinfo:flat_relation_cache>
  1697. </xs:appinfo>
  1698. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  1699. </xs:annotation>
  1700. </xs:element>
  1701. <xs:element name="ID_KORESP_OFFER"
  1702. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  1703. id="rastructure___d4e40493-1_ID_KORESP_"/>
  1704. <xs:element maxOccurs="unbounded"
  1705. minOccurs="1"
  1706. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  1707. id="rastructure___d4e40494-1">
  1708. <xs:annotation>
  1709. <xs:appinfo>
  1710. <system_cache__appinfo:flat_relation_cache>
  1711. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  1712. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  1713. </system_cache__appinfo:flat_relation_cache>
  1714. </xs:appinfo>
  1715. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  1716. </xs:annotation>
  1717. </xs:element>
  1718. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  1719. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_offer"
  1720. >
  1721. <xs:annotation >
  1722. <xs:documentation>Istnienie ofert na danym obiekcie inftastruktury
  1723. </xs:documentation>
  1724. </xs:annotation>
  1725. </xs:element> Do pozniejszej implementacji zaleznych relacji w sekwencji-->
  1726. <xs:element name="ID_KORESP_DO_UZG"
  1727. type="Types__x3A__default_infrastructure:ID_KORESP"
  1728. id="rastructure___d4e40502-1_ID_KORESP_"/>
  1729. <xs:element maxOccurs="unbounded"
  1730. minOccurs="0"
  1731. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  1732. id="rastructure___d4e40503-1">
  1733. <xs:annotation>
  1734. <xs:appinfo>
  1735. <system_cache__appinfo:flat_relation_cache>
  1736. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  1737. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  1738. </system_cache__appinfo:flat_relation_cache>
  1739. </xs:appinfo>
  1740. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  1741. do właściciela nieruchomości</xs:documentation>
  1742. </xs:annotation>
  1743. </xs:element>
  1744. <xs:element name="ID_KORESP_UZG"
  1745. type="Types__x3A__default_infrastructure:ID_KORESP"
  1746. id="rastructure___d4e40510-1_ID_KORESP_"/>
  1747. <xs:element maxOccurs="unbounded"
  1748. minOccurs="0"
  1749. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  1750. id="rastructure___d4e40511-1">
  1751. <xs:annotation>
  1752. <xs:appinfo>
  1753. <system_cache__appinfo:flat_relation_cache>
  1754. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  1755. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  1756. </system_cache__appinfo:flat_relation_cache>
  1757. </xs:appinfo>
  1758. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  1759. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  1760. zgody</xs:documentation>
  1761. </xs:annotation>
  1762. </xs:element>
  1763. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  1764. type="Types__x3A__default_infrastructure:ID_KORESP"
  1765. id="rastructure___d4e40518-1_ID_KORESP_"/>
  1766. <xs:element maxOccurs="unbounded"
  1767. minOccurs="0"
  1768. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  1769. id="rastructure___d4e40519-1">
  1770. <xs:annotation>
  1771. <xs:appinfo>
  1772. <system_cache__appinfo:flat_relation_cache>
  1773. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  1774. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  1775. </system_cache__appinfo:flat_relation_cache>
  1776. </xs:appinfo>
  1777. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  1778. ZUD</xs:documentation>
  1779. </xs:annotation>
  1780. </xs:element>
  1781. <xs:element name="ID_KORESP_UZG_ZUD"
  1782. type="Types__x3A__default_infrastructure:ID_KORESP"
  1783. id="rastructure___d4e40526-1_ID_KORESP_"/>
  1784. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  1785. minOccurs="0"
  1786. id="rastructure___d4e40528-1">
  1787. <xs:annotation>
  1788. <xs:appinfo>
  1789. <system_cache__appinfo:flat_relation_cache>
  1790. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  1791. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  1792. </system_cache__appinfo:flat_relation_cache>
  1793. </xs:appinfo>
  1794. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  1795. </xs:annotation>
  1796. </xs:element>
  1797. <xs:element name="ID_KORESP_ZLECENIE"
  1798. type="Types__x3A__default_infrastructure:ID_KORESP"
  1799. id="rastructure___d4e40535-1_ID_KORESP_"/>
  1800. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  1801. minOccurs="0"
  1802. id="rastructure___d4e40536-1">
  1803. <xs:annotation>
  1804. <xs:appinfo>
  1805. <system_cache__appinfo:flat_relation_cache>
  1806. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  1807. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  1808. </system_cache__appinfo:flat_relation_cache>
  1809. </xs:appinfo>
  1810. <xs:documentation>Czy jest zlecenie</xs:documentation>
  1811. </xs:annotation>
  1812. </xs:element>
  1813. <xs:element name="ID_KORESP_ZGL_ODB"
  1814. type="Types__x3A__default_infrastructure:ID_KORESP"
  1815. id="rastructure___d4e40543-1_ID_KORESP_"/>
  1816. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  1817. minOccurs="0"
  1818. id="rastructure___d4e40544-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
  1827. odbioru=wykonanie</xs:documentation>
  1828. </xs:annotation>
  1829. </xs:element>
  1830. <xs:element name="ID_KORESP_POM_GEOD"
  1831. type="Types__x3A__default_infrastructure:ID_KORESP"
  1832. id="rastructure___d4e40551-1_ID_KORESP_"/>
  1833. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  1834. minOccurs="0"
  1835. id="rastructure___d4e40552-1">
  1836. <xs:annotation>
  1837. <xs:appinfo>
  1838. <system_cache__appinfo:flat_relation_cache>
  1839. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  1840. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  1841. </system_cache__appinfo:flat_relation_cache>
  1842. </xs:appinfo>
  1843. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  1844. oraz są powiązane do dokumentu z operatem</xs:documentation>
  1845. </xs:annotation>
  1846. </xs:element>
  1847. <xs:element name="ID_KORESP_PROTOK_ODB"
  1848. type="Types__x3A__default_infrastructure:ID_KORESP"
  1849. id="rastructure___d4e40559-1_ID_KORESP_"/>
  1850. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  1851. minOccurs="0"
  1852. id="rastructure___d4e40560-1">
  1853. <xs:annotation>
  1854. <xs:appinfo>
  1855. <system_cache__appinfo:flat_relation_cache>
  1856. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  1857. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  1858. </system_cache__appinfo:flat_relation_cache>
  1859. </xs:appinfo>
  1860. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  1861. wykonawca, inwestor</xs:documentation>
  1862. </xs:annotation>
  1863. </xs:element>
  1864. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  1865. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_deal"
  1866. >
  1867. <xs:annotation>
  1868. <xs:documentation>Istnienie obiektu warunkuje stan obiektu dotyczący przyjęcia jego na realizację. Rozumiemy to jako obiekt ustalen, który będize mieć strukturę kto i za ile</xs:documentation>
  1869. </xs:annotation>
  1870. </xs:element> Do pozniejszej implementacji pozycji dokumentu -->
  1871. <!--<xs:element minOccurs="0" ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_protocol"
  1872. >
  1873. <xs:annotation>
  1874. <xs:documentation>Specjalny typ dokumentu dla weryfikacji obiektow przed zakryciem
  1875. </xs:documentation>
  1876. </xs:annotation>
  1877. </xs:element>-->
  1878. <!--<xs:element name="protokol_odbioru" minOccurs="0"
  1879. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/infrastructure.xsd"
  1880. >
  1881. <xs:annotation>
  1882. <xs:documentation>dokument, będący pismem, potwierdzający, że dany obiekt został właściwie odebrany</xs:documentation>
  1883. </xs:annotation>
  1884. </xs:element>-->
  1885. <xs:element name="InvestArrangements_Network_Crossings"
  1886. type="xs:int"
  1887. id="rastructure___d4e40571-1_InvestArra"/>
  1888. <xs:element minOccurs="0"
  1889. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  1890. id="rastructure___d4e40572-1">
  1891. <xs:annotation>
  1892. <xs:appinfo>
  1893. <system_cache__appinfo:flat_relation_cache>
  1894. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  1895. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  1896. </system_cache__appinfo:flat_relation_cache>
  1897. </xs:appinfo>
  1898. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  1899. </xs:annotation>
  1900. </xs:element>
  1901. </xs:sequence>
  1902. </xs:restriction>
  1903. </xs:complexContent>
  1904. </xs:complexType>
  1905. <xs:element name="infrastructure_OFFER"
  1906. type="Types__x3A__default_infrastructure:infrastructure_OFFER"
  1907. abstract="true"
  1908. id="rastructure___d4e40579-1_Infrastruc">
  1909. <xs:annotation>
  1910. <xs:appinfo>
  1911. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  1912. system_cache__appinfo:base_type_name="OFFER"/>
  1913. </xs:appinfo>
  1914. </xs:annotation>
  1915. </xs:element>
  1916. <xs:complexType name="infrastructure_DO_UZG"
  1917. abstract="true"
  1918. id="rastructure___d4e40583-1_Infrastruc">
  1919. <xs:complexContent id="rastructure___d4e40584-1">
  1920. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_DO_REALIZ">
  1921. <xs:sequence id="rastructure___d4e40586-1">
  1922. <xs:element name="ID" type="xs:int" id="rastructure___d4e40587-1_ID"/>
  1923. <xs:element name="the_geom"
  1924. type="gml:AbstractFeatureType"
  1925. id="rastructure___d4e40588-1_the_geom"/>
  1926. <!--<xs:choice maxOccurs="unbounded" minOccurs="0" >
  1927. <xs:annotation>
  1928. <xs:documentation>@2015-03-30 - obiekt moze posiadac wiecej wymagan zgod. Alternatywnie zgody muszą być wszystkie wyrażone, z uwagi na prawidłowe działanie restrykcji, dla obiektów możliwych dla realizacji.</xs:documentation>
  1929. </xs:annotation>
  1930. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement"
  1931. />
  1932. <xs:element
  1933. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement_accepted"
  1934. />
  1935. </xs:choice> Do pozniejszej implementacji zaleznych relacji w sekwencji -->
  1936. <xs:element name="A_STATUS_INFO"
  1937. type="xs:string"
  1938. id="rastructure___d4e40590-1_A_STATUS_I"/>
  1939. <xs:element name="opis" type="xs:string" id="rastructure___d4e40591-1_opis">
  1940. <xs:annotation>
  1941. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  1942. kosztorysowym</xs:documentation>
  1943. </xs:annotation>
  1944. </xs:element>
  1945. <xs:element name="ID_ZASOB"
  1946. type="xs:int"
  1947. id="rastructure___d4e40595-1_ID_ZASOB"/>
  1948. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  1949. id="rastructure___d4e40596-1">
  1950. <xs:annotation>
  1951. <xs:appinfo>
  1952. <system_cache__appinfo:flat_relation_cache>
  1953. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  1954. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  1955. </system_cache__appinfo:flat_relation_cache>
  1956. </xs:appinfo>
  1957. </xs:annotation>
  1958. </xs:element>
  1959. <xs:element name="Dlugosc"
  1960. type="xs:double"
  1961. id="rastructure___d4e40601-1_Dlugosc"/>
  1962. <xs:element name="Powierzchnia"
  1963. type="xs:double"
  1964. id="rastructure___d4e40602-1_Powierzchn"/>
  1965. <xs:element name="L_APPOITMENT_USER"
  1966. type="xs:string"
  1967. id="rastructure___d4e40603-1_L_APPOITME"/>
  1968. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  1969. id="rastructure___d4e40604-1">
  1970. <xs:annotation>
  1971. <xs:appinfo>
  1972. <system_cache__appinfo:flat_relation_cache>
  1973. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  1974. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  1975. </system_cache__appinfo:flat_relation_cache>
  1976. </xs:appinfo>
  1977. </xs:annotation>
  1978. </xs:element>
  1979. <xs:element name="A_CLASSIFIED"
  1980. type="xs:string"
  1981. id="rastructure___d4e40610-1_A_CLASSIFI"/>
  1982. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  1983. id="rastructure___d4e40611-1">
  1984. <xs:annotation>
  1985. <xs:appinfo>
  1986. <system_cache__appinfo:flat_relation_cache>
  1987. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  1988. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  1989. </system_cache__appinfo:flat_relation_cache>
  1990. </xs:appinfo>
  1991. </xs:annotation>
  1992. </xs:element>
  1993. <xs:element name="A_ADM_COMPANY"
  1994. type="xs:string"
  1995. id="rastructure___d4e40616-1_A_ADM_COMP"/>
  1996. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  1997. id="rastructure___d4e40617-1">
  1998. <xs:annotation>
  1999. <xs:appinfo>
  2000. <system_cache__appinfo:flat_relation_cache>
  2001. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2002. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2003. </system_cache__appinfo:flat_relation_cache>
  2004. </xs:appinfo>
  2005. </xs:annotation>
  2006. </xs:element>
  2007. <xs:element name="ID_PROJECT"
  2008. type="xs:int"
  2009. id="rastructure___d4e40622-1_ID_PROJECT"/>
  2010. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2011. minOccurs="0"
  2012. id="rastructure___d4e31656-1">
  2013. <xs:annotation>
  2014. <xs:appinfo>
  2015. <system_cache__appinfo:flat_relation_cache>
  2016. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2017. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2018. </system_cache__appinfo:flat_relation_cache>
  2019. </xs:appinfo>
  2020. </xs:annotation>
  2021. </xs:element>-->
  2022. <xs:element name="ID_KORESP_PROJEKT"
  2023. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2024. id="rastructure___d4e40624-1_ID_KORESP_"/>
  2025. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2026. id="rastructure___d4e40625-1">
  2027. <xs:annotation>
  2028. <xs:appinfo>
  2029. <system_cache__appinfo:flat_relation_cache>
  2030. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2031. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2032. </system_cache__appinfo:flat_relation_cache>
  2033. </xs:appinfo>
  2034. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  2035. zasadami projektowania</xs:documentation>
  2036. </xs:annotation>
  2037. </xs:element>
  2038. <xs:element name="ID_KORESP_PROJEKT_WYK"
  2039. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2040. id="rastructure___d4e40632-1_ID_KORESP_"/>
  2041. <xs:element minOccurs="1"
  2042. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  2043. maxOccurs="unbounded"
  2044. id="rastructure___d4e40633-1">
  2045. <xs:annotation>
  2046. <xs:appinfo>
  2047. <system_cache__appinfo:flat_relation_cache>
  2048. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  2049. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  2050. </system_cache__appinfo:flat_relation_cache>
  2051. </xs:appinfo>
  2052. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  2053. zasadami projektowania - proj wykonawczy</xs:documentation>
  2054. </xs:annotation>
  2055. </xs:element>
  2056. <xs:element name="ID_KORESP_DO_REALIZ"
  2057. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2058. id="rastructure___d4e40640-1_ID_KORESP_"/>
  2059. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2060. id="rastructure___d4e40642-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_DO_REALIZ"
  2065. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2066. </system_cache__appinfo:flat_relation_cache>
  2067. </xs:appinfo>
  2068. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2069. </xs:annotation>
  2070. </xs:element>
  2071. <xs:element name="ID_KORESP_OFFER"
  2072. type="Types__x3A__default_infrastructure:ID_KORESP"
  2073. id="rastructure___d4e40649-1_ID_KORESP_"/>
  2074. <xs:element maxOccurs="unbounded"
  2075. minOccurs="0"
  2076. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2077. id="rastructure___d4e40650-1">
  2078. <xs:annotation>
  2079. <xs:appinfo>
  2080. <system_cache__appinfo:flat_relation_cache>
  2081. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2082. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2083. </system_cache__appinfo:flat_relation_cache>
  2084. </xs:appinfo>
  2085. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2086. </xs:annotation>
  2087. </xs:element>
  2088. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  2089. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_offer"
  2090. >
  2091. <xs:annotation >
  2092. <xs:documentation>Istnienie ofert na danym obiekcie inftastruktury
  2093. </xs:documentation>
  2094. </xs:annotation>
  2095. </xs:element> Do pozniejszej implementacji zaleznych relacji w sekwencji-->
  2096. <xs:element name="ID_KORESP_DO_UZG"
  2097. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2098. id="rastructure___d4e40658-1_ID_KORESP_"/>
  2099. <xs:element maxOccurs="unbounded"
  2100. minOccurs="1"
  2101. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2102. id="rastructure___d4e40659-1">
  2103. <xs:annotation>
  2104. <xs:appinfo>
  2105. <system_cache__appinfo:flat_relation_cache>
  2106. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2107. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2108. </system_cache__appinfo:flat_relation_cache>
  2109. </xs:appinfo>
  2110. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  2111. do właściciela nieruchomości</xs:documentation>
  2112. </xs:annotation>
  2113. </xs:element>
  2114. <xs:element name="ID_KORESP_UZG"
  2115. type="Types__x3A__default_infrastructure:ID_KORESP"
  2116. id="rastructure___d4e40666-1_ID_KORESP_"/>
  2117. <xs:element maxOccurs="unbounded"
  2118. minOccurs="0"
  2119. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2120. id="rastructure___d4e40667-1">
  2121. <xs:annotation>
  2122. <xs:appinfo>
  2123. <system_cache__appinfo:flat_relation_cache>
  2124. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  2125. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  2126. </system_cache__appinfo:flat_relation_cache>
  2127. </xs:appinfo>
  2128. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  2129. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  2130. zgody</xs:documentation>
  2131. </xs:annotation>
  2132. </xs:element>
  2133. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  2134. type="Types__x3A__default_infrastructure:ID_KORESP"
  2135. id="rastructure___d4e40674-1_ID_KORESP_"/>
  2136. <xs:element maxOccurs="unbounded"
  2137. minOccurs="0"
  2138. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2139. id="rastructure___d4e40675-1">
  2140. <xs:annotation>
  2141. <xs:appinfo>
  2142. <system_cache__appinfo:flat_relation_cache>
  2143. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2144. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2145. </system_cache__appinfo:flat_relation_cache>
  2146. </xs:appinfo>
  2147. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  2148. ZUD</xs:documentation>
  2149. </xs:annotation>
  2150. </xs:element>
  2151. <xs:element name="ID_KORESP_UZG_ZUD"
  2152. type="Types__x3A__default_infrastructure:ID_KORESP"
  2153. id="rastructure___d4e40682-1_ID_KORESP_"/>
  2154. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2155. minOccurs="0"
  2156. id="rastructure___d4e40684-1">
  2157. <xs:annotation>
  2158. <xs:appinfo>
  2159. <system_cache__appinfo:flat_relation_cache>
  2160. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2161. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2162. </system_cache__appinfo:flat_relation_cache>
  2163. </xs:appinfo>
  2164. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2165. </xs:annotation>
  2166. </xs:element>
  2167. <xs:element name="ID_KORESP_ZLECENIE"
  2168. type="Types__x3A__default_infrastructure:ID_KORESP"
  2169. id="rastructure___d4e40691-1_ID_KORESP_"/>
  2170. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2171. minOccurs="0"
  2172. id="rastructure___d4e40692-1">
  2173. <xs:annotation>
  2174. <xs:appinfo>
  2175. <system_cache__appinfo:flat_relation_cache>
  2176. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2177. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2178. </system_cache__appinfo:flat_relation_cache>
  2179. </xs:appinfo>
  2180. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2181. </xs:annotation>
  2182. </xs:element>
  2183. <xs:element name="ID_KORESP_ZGL_ODB"
  2184. type="Types__x3A__default_infrastructure:ID_KORESP"
  2185. id="rastructure___d4e40699-1_ID_KORESP_"/>
  2186. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2187. minOccurs="0"
  2188. id="rastructure___d4e40700-1">
  2189. <xs:annotation>
  2190. <xs:appinfo>
  2191. <system_cache__appinfo:flat_relation_cache>
  2192. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2193. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2194. </system_cache__appinfo:flat_relation_cache>
  2195. </xs:appinfo>
  2196. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  2197. odbioru=wykonanie</xs:documentation>
  2198. </xs:annotation>
  2199. </xs:element>
  2200. <xs:element name="ID_KORESP_POM_GEOD"
  2201. type="Types__x3A__default_infrastructure:ID_KORESP"
  2202. id="rastructure___d4e40707-1_ID_KORESP_"/>
  2203. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2204. minOccurs="0"
  2205. id="rastructure___d4e40708-1">
  2206. <xs:annotation>
  2207. <xs:appinfo>
  2208. <system_cache__appinfo:flat_relation_cache>
  2209. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2210. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2211. </system_cache__appinfo:flat_relation_cache>
  2212. </xs:appinfo>
  2213. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  2214. oraz są powiązane do dokumentu z operatem</xs:documentation>
  2215. </xs:annotation>
  2216. </xs:element>
  2217. <xs:element name="ID_KORESP_PROTOK_ODB"
  2218. type="Types__x3A__default_infrastructure:ID_KORESP"
  2219. id="rastructure___d4e40715-1_ID_KORESP_"/>
  2220. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2221. minOccurs="0"
  2222. id="rastructure___d4e40716-1">
  2223. <xs:annotation>
  2224. <xs:appinfo>
  2225. <system_cache__appinfo:flat_relation_cache>
  2226. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2227. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2228. </system_cache__appinfo:flat_relation_cache>
  2229. </xs:appinfo>
  2230. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  2231. wykonawca, inwestor</xs:documentation>
  2232. </xs:annotation>
  2233. </xs:element>
  2234. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  2235. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_deal"
  2236. >
  2237. <xs:annotation>
  2238. <xs:documentation>Istnienie obiektu warunkuje stan obiektu dotyczący przyjęcia jego na realizację. Rozumiemy to jako obiekt ustalen, który będize mieć strukturę kto i za ile</xs:documentation>
  2239. </xs:annotation>
  2240. </xs:element> Do pozniejszej implementacji pozycji dokumentu -->
  2241. <!--<xs:element minOccurs="0" ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_protocol"
  2242. >
  2243. <xs:annotation>
  2244. <xs:documentation>Specjalny typ dokumentu dla weryfikacji obiektow przed zakryciem
  2245. </xs:documentation>
  2246. </xs:annotation>
  2247. </xs:element>-->
  2248. <!--<xs:element name="protokol_odbioru" minOccurs="0"
  2249. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/infrastructure.xsd"
  2250. >
  2251. <xs:annotation>
  2252. <xs:documentation>dokument, będący pismem, potwierdzający, że dany obiekt został właściwie odebrany</xs:documentation>
  2253. </xs:annotation>
  2254. </xs:element>-->
  2255. <xs:element name="InvestArrangements_Network_Crossings"
  2256. type="xs:int"
  2257. id="rastructure___d4e40727-1_InvestArra"/>
  2258. <xs:element minOccurs="0"
  2259. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  2260. id="rastructure___d4e40728-1">
  2261. <xs:annotation>
  2262. <xs:appinfo>
  2263. <system_cache__appinfo:flat_relation_cache>
  2264. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  2265. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  2266. </system_cache__appinfo:flat_relation_cache>
  2267. </xs:appinfo>
  2268. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki.
  2269. </xs:documentation>
  2270. </xs:annotation>
  2271. </xs:element>
  2272. </xs:sequence>
  2273. </xs:restriction>
  2274. </xs:complexContent>
  2275. </xs:complexType>
  2276. <xs:element name="infrastructure_DO_UZG"
  2277. type="Types__x3A__default_infrastructure:infrastructure_DO_UZG"
  2278. abstract="true"
  2279. id="rastructure___d4e40736-1_Infrastruc">
  2280. <xs:annotation>
  2281. <xs:appinfo>
  2282. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  2283. system_cache__appinfo:base_type_name="DO_UZG"/>
  2284. </xs:appinfo>
  2285. <xs:documentation>Taki co wyszedl do uzgodnien z wlascicielem nieruchomosci / dzialki
  2286. </xs:documentation>
  2287. </xs:annotation>
  2288. </xs:element>
  2289. <xs:complexType name="infrastructure_UZG"
  2290. abstract="true"
  2291. id="rastructure___d4e40742-1_Infrastruc">
  2292. <xs:annotation>
  2293. <xs:documentation>Został uzgodniony, bo otrzymalismy dokument z uzogdnieniem
  2294. pozytywnym</xs:documentation>
  2295. </xs:annotation>
  2296. <xs:complexContent id="rastructure___d4e40746-1">
  2297. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_DO_REALIZ">
  2298. <xs:sequence id="rastructure___d4e40748-1">
  2299. <xs:element name="ID" type="xs:int" id="rastructure___d4e40749-1_ID"/>
  2300. <xs:element name="the_geom"
  2301. type="gml:AbstractFeatureType"
  2302. id="rastructure___d4e40750-1_the_geom"/>
  2303. <!--<xs:choice maxOccurs="unbounded" minOccurs="0" >
  2304. <xs:annotation>
  2305. <xs:documentation>@2015-03-30 - obiekt moze posiadac wiecej wymagan zgod. Alternatywnie zgody muszą być wszystkie wyrażone, z uwagi na prawidłowe działanie restrykcji, dla obiektów możliwych dla realizacji.</xs:documentation>
  2306. </xs:annotation>
  2307. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement"
  2308. />
  2309. <xs:element
  2310. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement_accepted"
  2311. />
  2312. </xs:choice> Do pozniejszej implementacji zaleznych relacji w sekwencji -->
  2313. <xs:element name="A_STATUS_INFO"
  2314. type="xs:string"
  2315. id="rastructure___d4e40752-1_A_STATUS_I"/>
  2316. <xs:element name="opis" type="xs:string" id="rastructure___d4e40753-1_opis">
  2317. <xs:annotation>
  2318. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  2319. kosztorysowym</xs:documentation>
  2320. </xs:annotation>
  2321. </xs:element>
  2322. <xs:element name="ID_ZASOB"
  2323. type="xs:int"
  2324. id="rastructure___d4e40757-1_ID_ZASOB"/>
  2325. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  2326. id="rastructure___d4e40758-1">
  2327. <xs:annotation>
  2328. <xs:appinfo>
  2329. <system_cache__appinfo:flat_relation_cache>
  2330. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  2331. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  2332. </system_cache__appinfo:flat_relation_cache>
  2333. </xs:appinfo>
  2334. </xs:annotation>
  2335. </xs:element>
  2336. <xs:element name="Dlugosc"
  2337. type="xs:double"
  2338. id="rastructure___d4e40763-1_Dlugosc"/>
  2339. <xs:element name="Powierzchnia"
  2340. type="xs:double"
  2341. id="rastructure___d4e40764-1_Powierzchn"/>
  2342. <xs:element name="L_APPOITMENT_USER"
  2343. type="xs:string"
  2344. id="rastructure___d4e40765-1_L_APPOITME"/>
  2345. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  2346. id="rastructure___d4e40766-1">
  2347. <xs:annotation>
  2348. <xs:appinfo>
  2349. <system_cache__appinfo:flat_relation_cache>
  2350. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  2351. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  2352. </system_cache__appinfo:flat_relation_cache>
  2353. </xs:appinfo>
  2354. </xs:annotation>
  2355. </xs:element>
  2356. <xs:element name="A_CLASSIFIED"
  2357. type="xs:string"
  2358. id="rastructure___d4e40772-1_A_CLASSIFI"/>
  2359. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  2360. id="rastructure___d4e40773-1">
  2361. <xs:annotation>
  2362. <xs:appinfo>
  2363. <system_cache__appinfo:flat_relation_cache>
  2364. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  2365. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  2366. </system_cache__appinfo:flat_relation_cache>
  2367. </xs:appinfo>
  2368. </xs:annotation>
  2369. </xs:element>
  2370. <xs:element name="A_ADM_COMPANY"
  2371. type="xs:string"
  2372. id="rastructure___d4e40778-1_A_ADM_COMP"/>
  2373. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  2374. id="rastructure___d4e40779-1">
  2375. <xs:annotation>
  2376. <xs:appinfo>
  2377. <system_cache__appinfo:flat_relation_cache>
  2378. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2379. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2380. </system_cache__appinfo:flat_relation_cache>
  2381. </xs:appinfo>
  2382. </xs:annotation>
  2383. </xs:element>
  2384. <xs:element name="ID_PROJECT"
  2385. type="xs:int"
  2386. id="rastructure___d4e40784-1_ID_PROJECT"/>
  2387. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2388. minOccurs="0"
  2389. id="rastructure___d4e31796-1">
  2390. <xs:annotation>
  2391. <xs:appinfo>
  2392. <system_cache__appinfo:flat_relation_cache>
  2393. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2394. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2395. </system_cache__appinfo:flat_relation_cache>
  2396. </xs:appinfo>
  2397. </xs:annotation>
  2398. </xs:element>-->
  2399. <xs:element name="ID_KORESP_PROJEKT"
  2400. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2401. id="rastructure___d4e40786-1_ID_KORESP_"/>
  2402. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2403. id="rastructure___d4e40787-1">
  2404. <xs:annotation>
  2405. <xs:appinfo>
  2406. <system_cache__appinfo:flat_relation_cache>
  2407. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2408. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2409. </system_cache__appinfo:flat_relation_cache>
  2410. </xs:appinfo>
  2411. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  2412. zasadami projektowania</xs:documentation>
  2413. </xs:annotation>
  2414. </xs:element>
  2415. <xs:element name="ID_KORESP_PROJEKT_WYK"
  2416. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2417. id="rastructure___d4e40794-1_ID_KORESP_"/>
  2418. <xs:element minOccurs="1"
  2419. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  2420. maxOccurs="unbounded"
  2421. id="rastructure___d4e40795-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_PROJEKT_WYK"
  2426. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  2427. </system_cache__appinfo:flat_relation_cache>
  2428. </xs:appinfo>
  2429. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  2430. zasadami projektowania - proj wykonawczy</xs:documentation>
  2431. </xs:annotation>
  2432. </xs:element>
  2433. <xs:element name="ID_KORESP_DO_REALIZ"
  2434. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2435. id="rastructure___d4e40802-1_ID_KORESP_"/>
  2436. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2437. id="rastructure___d4e40804-1">
  2438. <xs:annotation>
  2439. <xs:appinfo>
  2440. <system_cache__appinfo:flat_relation_cache>
  2441. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  2442. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2443. </system_cache__appinfo:flat_relation_cache>
  2444. </xs:appinfo>
  2445. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2446. </xs:annotation>
  2447. </xs:element>
  2448. <xs:element name="ID_KORESP_OFFER"
  2449. type="Types__x3A__default_infrastructure:ID_KORESP"
  2450. id="rastructure___d4e40811-1_ID_KORESP_"/>
  2451. <xs:element maxOccurs="unbounded"
  2452. minOccurs="0"
  2453. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2454. id="rastructure___d4e40812-1">
  2455. <xs:annotation>
  2456. <xs:appinfo>
  2457. <system_cache__appinfo:flat_relation_cache>
  2458. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2459. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2460. </system_cache__appinfo:flat_relation_cache>
  2461. </xs:appinfo>
  2462. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2463. </xs:annotation>
  2464. </xs:element>
  2465. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  2466. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_offer"
  2467. >
  2468. <xs:annotation >
  2469. <xs:documentation>Istnienie ofert na danym obiekcie inftastruktury
  2470. </xs:documentation>
  2471. </xs:annotation>
  2472. </xs:element> Do pozniejszej implementacji zaleznych relacji w sekwencji-->
  2473. <xs:element name="ID_KORESP_DO_UZG"
  2474. type="Types__x3A__default_infrastructure:ID_KORESP"
  2475. id="rastructure___d4e40820-1_ID_KORESP_"/>
  2476. <xs:element maxOccurs="unbounded"
  2477. minOccurs="0"
  2478. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2479. id="rastructure___d4e40821-1">
  2480. <xs:annotation>
  2481. <xs:appinfo>
  2482. <system_cache__appinfo:flat_relation_cache>
  2483. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2484. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2485. </system_cache__appinfo:flat_relation_cache>
  2486. </xs:appinfo>
  2487. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  2488. do właściciela nieruchomości</xs:documentation>
  2489. </xs:annotation>
  2490. </xs:element>
  2491. <xs:element name="ID_KORESP_UZG"
  2492. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2493. id="rastructure___d4e40828-1_ID_KORESP_"/>
  2494. <xs:element maxOccurs="unbounded"
  2495. minOccurs="1"
  2496. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2497. id="rastructure___d4e40829-1">
  2498. <xs:annotation>
  2499. <xs:appinfo>
  2500. <system_cache__appinfo:flat_relation_cache>
  2501. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2502. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2503. </system_cache__appinfo:flat_relation_cache>
  2504. </xs:appinfo>
  2505. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  2506. do właściciela nieruchomości</xs:documentation>
  2507. </xs:annotation>
  2508. </xs:element>
  2509. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  2510. type="Types__x3A__default_infrastructure:ID_KORESP"
  2511. id="rastructure___d4e40836-1_ID_KORESP_"/>
  2512. <xs:element maxOccurs="unbounded"
  2513. minOccurs="0"
  2514. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2515. id="rastructure___d4e40837-1">
  2516. <xs:annotation>
  2517. <xs:appinfo>
  2518. <system_cache__appinfo:flat_relation_cache>
  2519. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2520. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2521. </system_cache__appinfo:flat_relation_cache>
  2522. </xs:appinfo>
  2523. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  2524. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  2525. zgody</xs:documentation>
  2526. </xs:annotation>
  2527. </xs:element>
  2528. <xs:element name="ID_KORESP_UZG_ZUD"
  2529. type="Types__x3A__default_infrastructure:ID_KORESP"
  2530. id="rastructure___d4e40844-1_ID_KORESP_"/>
  2531. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2532. minOccurs="0"
  2533. id="rastructure___d4e40846-1">
  2534. <xs:annotation>
  2535. <xs:appinfo>
  2536. <system_cache__appinfo:flat_relation_cache>
  2537. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2538. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2539. </system_cache__appinfo:flat_relation_cache>
  2540. </xs:appinfo>
  2541. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  2542. ZUD</xs:documentation>
  2543. </xs:annotation>
  2544. </xs:element>
  2545. <xs:element name="ID_KORESP_ZLECENIE"
  2546. type="Types__x3A__default_infrastructure:ID_KORESP"
  2547. id="rastructure___d4e40853-1_ID_KORESP_"/>
  2548. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2549. minOccurs="0"
  2550. id="rastructure___d4e40854-1">
  2551. <xs:annotation>
  2552. <xs:appinfo>
  2553. <system_cache__appinfo:flat_relation_cache>
  2554. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2555. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2556. </system_cache__appinfo:flat_relation_cache>
  2557. </xs:appinfo>
  2558. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2559. </xs:annotation>
  2560. </xs:element>
  2561. <xs:element name="ID_KORESP_ZGL_ODB"
  2562. type="Types__x3A__default_infrastructure:ID_KORESP"
  2563. id="rastructure___d4e40861-1_ID_KORESP_"/>
  2564. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2565. minOccurs="0"
  2566. id="rastructure___d4e40862-1">
  2567. <xs:annotation>
  2568. <xs:appinfo>
  2569. <system_cache__appinfo:flat_relation_cache>
  2570. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2571. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2572. </system_cache__appinfo:flat_relation_cache>
  2573. </xs:appinfo>
  2574. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  2575. odbioru=wykonanie</xs:documentation>
  2576. </xs:annotation>
  2577. </xs:element>
  2578. <xs:element name="ID_KORESP_POM_GEOD"
  2579. type="Types__x3A__default_infrastructure:ID_KORESP"
  2580. id="rastructure___d4e40869-1_ID_KORESP_"/>
  2581. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2582. minOccurs="0"
  2583. id="rastructure___d4e40870-1">
  2584. <xs:annotation>
  2585. <xs:appinfo>
  2586. <system_cache__appinfo:flat_relation_cache>
  2587. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2588. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2589. </system_cache__appinfo:flat_relation_cache>
  2590. </xs:appinfo>
  2591. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  2592. oraz są powiązane do dokumentu z operatem</xs:documentation>
  2593. </xs:annotation>
  2594. </xs:element>
  2595. <xs:element name="ID_KORESP_PROTOK_ODB"
  2596. type="Types__x3A__default_infrastructure:ID_KORESP"
  2597. id="rastructure___d4e40877-1_ID_KORESP_"/>
  2598. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2599. minOccurs="0"
  2600. id="rastructure___d4e40878-1">
  2601. <xs:annotation>
  2602. <xs:appinfo>
  2603. <system_cache__appinfo:flat_relation_cache>
  2604. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2605. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2606. </system_cache__appinfo:flat_relation_cache>
  2607. </xs:appinfo>
  2608. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  2609. wykonawca, inwestor</xs:documentation>
  2610. </xs:annotation>
  2611. </xs:element>
  2612. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  2613. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_deal"
  2614. >
  2615. <xs:annotation>
  2616. <xs:documentation>Istnienie obiektu warunkuje stan obiektu dotyczący przyjęcia jego na realizację. Rozumiemy to jako obiekt ustalen, który będize mieć strukturę kto i za ile</xs:documentation>
  2617. </xs:annotation>
  2618. </xs:element> Do pozniejszej implementacji pozycji dokumentu -->
  2619. <!--<xs:element minOccurs="0" ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_protocol"
  2620. >
  2621. <xs:annotation>
  2622. <xs:documentation>Specjalny typ dokumentu dla weryfikacji obiektow przed zakryciem
  2623. </xs:documentation>
  2624. </xs:annotation>
  2625. </xs:element>-->
  2626. <!--<xs:element name="protokol_odbioru" minOccurs="0"
  2627. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/infrastructure.xsd"
  2628. >
  2629. <xs:annotation>
  2630. <xs:documentation>dokument, będący pismem, potwierdzający, że dany obiekt został właściwie odebrany</xs:documentation>
  2631. </xs:annotation>
  2632. </xs:element>-->
  2633. <xs:element name="InvestArrangements_Network_Crossings"
  2634. type="xs:int"
  2635. id="rastructure___d4e40889-1_InvestArra"/>
  2636. <xs:element minOccurs="0"
  2637. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  2638. id="rastructure___d4e40890-1">
  2639. <xs:annotation>
  2640. <xs:appinfo>
  2641. <system_cache__appinfo:flat_relation_cache>
  2642. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  2643. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  2644. </system_cache__appinfo:flat_relation_cache>
  2645. </xs:appinfo>
  2646. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki
  2647. Warunek uzgodnienia na bazie ..network_crossing to:
  2648. ./default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/parent::complexTypeNode()[of ComplexType refered base = 'ID_KORESP_INVEST_ARRANGEMENT_DEAL]/ID_KORESP_INVEST_ARRANGEMENT_DEAL_SIGNED</xs:documentation>
  2649. </xs:annotation>
  2650. </xs:element>
  2651. </xs:sequence>
  2652. </xs:restriction>
  2653. </xs:complexContent>
  2654. </xs:complexType>
  2655. <xs:element name="infrastructure_UZG"
  2656. type="Types__x3A__default_infrastructure:infrastructure_UZG"
  2657. abstract="true"
  2658. id="rastructure___d4e40897-1_Infrastruc">
  2659. <xs:annotation>
  2660. <xs:appinfo>
  2661. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  2662. system_cache__appinfo:base_type_name="UZG"/>
  2663. </xs:appinfo>
  2664. </xs:annotation>
  2665. </xs:element>
  2666. <xs:complexType name="infrastructure_DO_UZG_ZUD"
  2667. abstract="true"
  2668. id="rastructure___d4e40901-1_Infrastruc">
  2669. <xs:complexContent id="rastructure___d4e40902-1">
  2670. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_DO_REALIZ">
  2671. <xs:sequence id="rastructure___d4e40904-1">
  2672. <xs:element name="ID" type="xs:int" id="rastructure___d4e40905-1_ID"/>
  2673. <xs:element name="the_geom"
  2674. type="gml:AbstractFeatureType"
  2675. id="rastructure___d4e40906-1_the_geom"/>
  2676. <!--<xs:choice maxOccurs="unbounded" minOccurs="0" >
  2677. <xs:annotation>
  2678. <xs:documentation>@2015-03-30 - obiekt moze posiadac wiecej wymagan zgod. Alternatywnie zgody muszą być wszystkie wyrażone, z uwagi na prawidłowe działanie restrykcji, dla obiektów możliwych dla realizacji.</xs:documentation>
  2679. </xs:annotation>
  2680. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement"
  2681. />
  2682. <xs:element
  2683. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement_accepted"
  2684. />
  2685. </xs:choice> Do pozniejszej implementacji zaleznych relacji w sekwencji -->
  2686. <xs:element name="A_STATUS_INFO"
  2687. type="xs:string"
  2688. id="rastructure___d4e40908-1_A_STATUS_I"/>
  2689. <xs:element name="opis" type="xs:string" id="rastructure___d4e40909-1_opis">
  2690. <xs:annotation>
  2691. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  2692. kosztorysowym</xs:documentation>
  2693. </xs:annotation>
  2694. </xs:element>
  2695. <xs:element name="ID_ZASOB"
  2696. type="xs:int"
  2697. id="rastructure___d4e40913-1_ID_ZASOB"/>
  2698. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  2699. id="rastructure___d4e40914-1">
  2700. <xs:annotation>
  2701. <xs:appinfo>
  2702. <system_cache__appinfo:flat_relation_cache>
  2703. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  2704. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  2705. </system_cache__appinfo:flat_relation_cache>
  2706. </xs:appinfo>
  2707. </xs:annotation>
  2708. </xs:element>
  2709. <xs:element name="Dlugosc"
  2710. type="xs:double"
  2711. id="rastructure___d4e40919-1_Dlugosc"/>
  2712. <xs:element name="Powierzchnia"
  2713. type="xs:double"
  2714. id="rastructure___d4e40920-1_Powierzchn"/>
  2715. <xs:element name="L_APPOITMENT_USER"
  2716. type="xs:string"
  2717. id="rastructure___d4e40921-1_L_APPOITME"/>
  2718. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  2719. id="rastructure___d4e40922-1">
  2720. <xs:annotation>
  2721. <xs:appinfo>
  2722. <system_cache__appinfo:flat_relation_cache>
  2723. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  2724. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  2725. </system_cache__appinfo:flat_relation_cache>
  2726. </xs:appinfo>
  2727. </xs:annotation>
  2728. </xs:element>
  2729. <xs:element name="A_CLASSIFIED"
  2730. type="xs:string"
  2731. id="rastructure___d4e40928-1_A_CLASSIFI"/>
  2732. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  2733. id="rastructure___d4e40929-1">
  2734. <xs:annotation>
  2735. <xs:appinfo>
  2736. <system_cache__appinfo:flat_relation_cache>
  2737. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  2738. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  2739. </system_cache__appinfo:flat_relation_cache>
  2740. </xs:appinfo>
  2741. </xs:annotation>
  2742. </xs:element>
  2743. <xs:element name="A_ADM_COMPANY"
  2744. type="xs:string"
  2745. id="rastructure___d4e40934-1_A_ADM_COMP"/>
  2746. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  2747. id="rastructure___d4e40935-1">
  2748. <xs:annotation>
  2749. <xs:appinfo>
  2750. <system_cache__appinfo:flat_relation_cache>
  2751. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  2752. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  2753. </system_cache__appinfo:flat_relation_cache>
  2754. </xs:appinfo>
  2755. </xs:annotation>
  2756. </xs:element>
  2757. <xs:element name="ID_PROJECT"
  2758. type="xs:int"
  2759. id="rastructure___d4e40940-1_ID_PROJECT"/>
  2760. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  2761. minOccurs="0"
  2762. id="rastructure___d4e31930-1">
  2763. <xs:annotation>
  2764. <xs:appinfo>
  2765. <system_cache__appinfo:flat_relation_cache>
  2766. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  2767. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  2768. </system_cache__appinfo:flat_relation_cache>
  2769. </xs:appinfo>
  2770. </xs:annotation>
  2771. </xs:element>-->
  2772. <xs:element name="ID_KORESP_PROJEKT"
  2773. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2774. id="rastructure___d4e40942-1_ID_KORESP_"/>
  2775. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  2776. id="rastructure___d4e40943-1">
  2777. <xs:annotation>
  2778. <xs:appinfo>
  2779. <system_cache__appinfo:flat_relation_cache>
  2780. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  2781. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  2782. </system_cache__appinfo:flat_relation_cache>
  2783. </xs:appinfo>
  2784. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  2785. zasadami projektowania</xs:documentation>
  2786. </xs:annotation>
  2787. </xs:element>
  2788. <xs:element name="ID_KORESP_PROJEKT_WYK"
  2789. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2790. id="rastructure___d4e40950-1_ID_KORESP_"/>
  2791. <xs:element minOccurs="1"
  2792. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  2793. maxOccurs="unbounded"
  2794. id="rastructure___d4e40951-1">
  2795. <xs:annotation>
  2796. <xs:appinfo>
  2797. <system_cache__appinfo:flat_relation_cache>
  2798. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  2799. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  2800. </system_cache__appinfo:flat_relation_cache>
  2801. </xs:appinfo>
  2802. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  2803. zasadami projektowania - proj wykonawczy</xs:documentation>
  2804. </xs:annotation>
  2805. </xs:element>
  2806. <xs:element name="ID_KORESP_DO_REALIZ"
  2807. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2808. id="rastructure___d4e40958-1_ID_KORESP_"/>
  2809. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  2810. id="rastructure___d4e40960-1">
  2811. <xs:annotation>
  2812. <xs:appinfo>
  2813. <system_cache__appinfo:flat_relation_cache>
  2814. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  2815. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  2816. </system_cache__appinfo:flat_relation_cache>
  2817. </xs:appinfo>
  2818. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  2819. </xs:annotation>
  2820. </xs:element>
  2821. <xs:element name="ID_KORESP_OFFER"
  2822. type="Types__x3A__default_infrastructure:ID_KORESP"
  2823. id="rastructure___d4e40967-1_ID_KORESP_"/>
  2824. <xs:element maxOccurs="unbounded"
  2825. minOccurs="0"
  2826. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  2827. id="rastructure___d4e40968-1">
  2828. <xs:annotation>
  2829. <xs:appinfo>
  2830. <system_cache__appinfo:flat_relation_cache>
  2831. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  2832. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  2833. </system_cache__appinfo:flat_relation_cache>
  2834. </xs:appinfo>
  2835. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  2836. </xs:annotation>
  2837. </xs:element>
  2838. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  2839. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_offer"
  2840. >
  2841. <xs:annotation >
  2842. <xs:documentation>Istnienie ofert na danym obiekcie inftastruktury
  2843. </xs:documentation>
  2844. </xs:annotation>
  2845. </xs:element> Do pozniejszej implementacji zaleznych relacji w sekwencji-->
  2846. <xs:element name="ID_KORESP_DO_UZG"
  2847. type="Types__x3A__default_infrastructure:ID_KORESP"
  2848. id="rastructure___d4e40976-1_ID_KORESP_"/>
  2849. <xs:element maxOccurs="unbounded"
  2850. minOccurs="0"
  2851. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  2852. id="rastructure___d4e40977-1">
  2853. <xs:annotation>
  2854. <xs:appinfo>
  2855. <system_cache__appinfo:flat_relation_cache>
  2856. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  2857. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  2858. </system_cache__appinfo:flat_relation_cache>
  2859. </xs:appinfo>
  2860. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  2861. do właściciela nieruchomości</xs:documentation>
  2862. </xs:annotation>
  2863. </xs:element>
  2864. <xs:element name="ID_KORESP_UZG"
  2865. type="Types__x3A__default_infrastructure:ID_KORESP"
  2866. id="rastructure___d4e40984-1_ID_KORESP_"/>
  2867. <xs:element maxOccurs="unbounded"
  2868. minOccurs="0"
  2869. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  2870. id="rastructure___d4e40985-1">
  2871. <xs:annotation>
  2872. <xs:appinfo>
  2873. <system_cache__appinfo:flat_relation_cache>
  2874. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  2875. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  2876. </system_cache__appinfo:flat_relation_cache>
  2877. </xs:appinfo>
  2878. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  2879. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  2880. zgody</xs:documentation>
  2881. </xs:annotation>
  2882. </xs:element>
  2883. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  2884. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  2885. id="rastructure___d4e40992-1_ID_KORESP_"/>
  2886. <xs:element maxOccurs="unbounded"
  2887. minOccurs="1"
  2888. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  2889. id="rastructure___d4e40993-1">
  2890. <xs:annotation>
  2891. <xs:appinfo>
  2892. <system_cache__appinfo:flat_relation_cache>
  2893. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  2894. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  2895. </system_cache__appinfo:flat_relation_cache>
  2896. </xs:appinfo>
  2897. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  2898. ZUD</xs:documentation>
  2899. </xs:annotation>
  2900. </xs:element>
  2901. <xs:element name="ID_KORESP_UZG_ZUD"
  2902. type="Types__x3A__default_infrastructure:ID_KORESP"
  2903. id="rastructure___d4e41000-1_ID_KORESP_"/>
  2904. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  2905. minOccurs="0"
  2906. id="rastructure___d4e41002-1">
  2907. <xs:annotation>
  2908. <xs:appinfo>
  2909. <system_cache__appinfo:flat_relation_cache>
  2910. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  2911. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  2912. </system_cache__appinfo:flat_relation_cache>
  2913. </xs:appinfo>
  2914. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  2915. </xs:annotation>
  2916. </xs:element>
  2917. <xs:element name="ID_KORESP_ZLECENIE"
  2918. type="Types__x3A__default_infrastructure:ID_KORESP"
  2919. id="rastructure___d4e41009-1_ID_KORESP_"/>
  2920. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  2921. minOccurs="0"
  2922. id="rastructure___d4e41010-1">
  2923. <xs:annotation>
  2924. <xs:appinfo>
  2925. <system_cache__appinfo:flat_relation_cache>
  2926. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  2927. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  2928. </system_cache__appinfo:flat_relation_cache>
  2929. </xs:appinfo>
  2930. <xs:documentation>Czy jest zlecenie</xs:documentation>
  2931. </xs:annotation>
  2932. </xs:element>
  2933. <xs:element name="ID_KORESP_ZGL_ODB"
  2934. type="Types__x3A__default_infrastructure:ID_KORESP"
  2935. id="rastructure___d4e41017-1_ID_KORESP_"/>
  2936. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  2937. minOccurs="0"
  2938. id="rastructure___d4e41018-1">
  2939. <xs:annotation>
  2940. <xs:appinfo>
  2941. <system_cache__appinfo:flat_relation_cache>
  2942. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  2943. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  2944. </system_cache__appinfo:flat_relation_cache>
  2945. </xs:appinfo>
  2946. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  2947. odbioru=wykonanie</xs:documentation>
  2948. </xs:annotation>
  2949. </xs:element>
  2950. <xs:element name="ID_KORESP_POM_GEOD"
  2951. type="Types__x3A__default_infrastructure:ID_KORESP"
  2952. id="rastructure___d4e41025-1_ID_KORESP_"/>
  2953. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  2954. minOccurs="0"
  2955. id="rastructure___d4e41026-1">
  2956. <xs:annotation>
  2957. <xs:appinfo>
  2958. <system_cache__appinfo:flat_relation_cache>
  2959. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  2960. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  2961. </system_cache__appinfo:flat_relation_cache>
  2962. </xs:appinfo>
  2963. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  2964. oraz są powiązane do dokumentu z operatem</xs:documentation>
  2965. </xs:annotation>
  2966. </xs:element>
  2967. <xs:element name="ID_KORESP_PROTOK_ODB"
  2968. type="Types__x3A__default_infrastructure:ID_KORESP"
  2969. id="rastructure___d4e41033-1_ID_KORESP_"/>
  2970. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  2971. minOccurs="0"
  2972. id="rastructure___d4e41034-1">
  2973. <xs:annotation>
  2974. <xs:appinfo>
  2975. <system_cache__appinfo:flat_relation_cache>
  2976. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  2977. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  2978. </system_cache__appinfo:flat_relation_cache>
  2979. </xs:appinfo>
  2980. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  2981. wykonawca, inwestor</xs:documentation>
  2982. </xs:annotation>
  2983. </xs:element>
  2984. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  2985. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_deal"
  2986. >
  2987. <xs:annotation>
  2988. <xs:documentation>Istnienie obiektu warunkuje stan obiektu dotyczący przyjęcia jego na realizację. Rozumiemy to jako obiekt ustalen, który będize mieć strukturę kto i za ile</xs:documentation>
  2989. </xs:annotation>
  2990. </xs:element> Do pozniejszej implementacji pozycji dokumentu -->
  2991. <!--<xs:element minOccurs="0" ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_protocol"
  2992. >
  2993. <xs:annotation>
  2994. <xs:documentation>Specjalny typ dokumentu dla weryfikacji obiektow przed zakryciem
  2995. </xs:documentation>
  2996. </xs:annotation>
  2997. </xs:element>-->
  2998. <!--<xs:element name="protokol_odbioru" minOccurs="0"
  2999. targetNamespace="http://biuro.biall-net.pl/xmlschema_procesy5/default_objects/infrastructure.xsd"
  3000. >
  3001. <xs:annotation>
  3002. <xs:documentation>dokument, będący pismem, potwierdzający, że dany obiekt został właściwie odebrany</xs:documentation>
  3003. </xs:annotation>
  3004. </xs:element>-->
  3005. <xs:element name="InvestArrangements_Network_Crossings"
  3006. type="xs:int"
  3007. id="rastructure___d4e41045-1_InvestArra"/>
  3008. <xs:element minOccurs="0"
  3009. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  3010. id="rastructure___d4e41046-1">
  3011. <xs:annotation>
  3012. <xs:appinfo>
  3013. <system_cache__appinfo:flat_relation_cache>
  3014. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  3015. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  3016. </system_cache__appinfo:flat_relation_cache>
  3017. </xs:appinfo>
  3018. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  3019. </xs:annotation>
  3020. </xs:element>
  3021. </xs:sequence>
  3022. </xs:restriction>
  3023. </xs:complexContent>
  3024. </xs:complexType>
  3025. <xs:element name="infrastructure_DO_UZG_ZUD"
  3026. type="Types__x3A__default_infrastructure:infrastructure_DO_UZG_ZUD"
  3027. abstract="true"
  3028. id="rastructure___d4e41053-1_Infrastruc">
  3029. <xs:annotation>
  3030. <xs:appinfo>
  3031. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  3032. system_cache__appinfo:base_type_name="DO_UZG_ZUD"/>
  3033. </xs:appinfo>
  3034. </xs:annotation>
  3035. </xs:element>
  3036. <xs:complexType name="infrastructure_UZG_ZUD"
  3037. abstract="true"
  3038. id="rastructure___d4e41057-1_Infrastruc">
  3039. <xs:complexContent id="rastructure___d4e41058-1">
  3040. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_DO_UZG_ZUD">
  3041. <xs:sequence id="rastructure___d4e41060-1">
  3042. <xs:element name="ID" type="xs:int" id="rastructure___d4e41061-1_ID"/>
  3043. <xs:element name="the_geom"
  3044. type="gml:AbstractFeatureType"
  3045. id="rastructure___d4e41062-1_the_geom"/>
  3046. <xs:element name="A_STATUS_INFO"
  3047. type="xs:string"
  3048. id="rastructure___d4e41063-1_A_STATUS_I"/>
  3049. <xs:element name="opis" type="xs:string" id="rastructure___d4e41064-1_opis">
  3050. <xs:annotation>
  3051. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  3052. kosztorysowym</xs:documentation>
  3053. </xs:annotation>
  3054. </xs:element>
  3055. <xs:element name="ID_ZASOB"
  3056. type="xs:int"
  3057. id="rastructure___d4e41068-1_ID_ZASOB"/>
  3058. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  3059. id="rastructure___d4e41069-1">
  3060. <xs:annotation>
  3061. <xs:appinfo>
  3062. <system_cache__appinfo:flat_relation_cache>
  3063. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  3064. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  3065. </system_cache__appinfo:flat_relation_cache>
  3066. </xs:appinfo>
  3067. </xs:annotation>
  3068. </xs:element>
  3069. <xs:element name="Dlugosc"
  3070. type="xs:double"
  3071. id="rastructure___d4e41074-1_Dlugosc"/>
  3072. <xs:element name="Powierzchnia"
  3073. type="xs:double"
  3074. id="rastructure___d4e41075-1_Powierzchn"/>
  3075. <xs:element name="L_APPOITMENT_USER"
  3076. type="xs:string"
  3077. id="rastructure___d4e41076-1_L_APPOITME"/>
  3078. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  3079. id="rastructure___d4e41077-1">
  3080. <xs:annotation>
  3081. <xs:appinfo>
  3082. <system_cache__appinfo:flat_relation_cache>
  3083. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  3084. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  3085. </system_cache__appinfo:flat_relation_cache>
  3086. </xs:appinfo>
  3087. </xs:annotation>
  3088. </xs:element>
  3089. <xs:element name="A_CLASSIFIED"
  3090. type="xs:string"
  3091. id="rastructure___d4e41082-1_A_CLASSIFI"/>
  3092. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  3093. id="rastructure___d4e41084-1">
  3094. <xs:annotation>
  3095. <xs:appinfo>
  3096. <system_cache__appinfo:flat_relation_cache>
  3097. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  3098. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  3099. </system_cache__appinfo:flat_relation_cache>
  3100. </xs:appinfo>
  3101. </xs:annotation>
  3102. </xs:element>
  3103. <xs:element name="A_ADM_COMPANY"
  3104. type="xs:string"
  3105. id="rastructure___d4e41089-1_A_ADM_COMP"/>
  3106. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  3107. id="rastructure___d4e41090-1">
  3108. <xs:annotation>
  3109. <xs:appinfo>
  3110. <system_cache__appinfo:flat_relation_cache>
  3111. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  3112. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  3113. </system_cache__appinfo:flat_relation_cache>
  3114. </xs:appinfo>
  3115. </xs:annotation>
  3116. </xs:element>
  3117. <xs:element name="ID_PROJECT"
  3118. type="xs:int"
  3119. id="rastructure___d4e41095-1_ID_PROJECT"/>
  3120. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  3121. minOccurs="0"
  3122. id="rastructure___d4e32063-1">
  3123. <xs:annotation>
  3124. <xs:appinfo>
  3125. <system_cache__appinfo:flat_relation_cache>
  3126. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  3127. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  3128. </system_cache__appinfo:flat_relation_cache>
  3129. </xs:appinfo>
  3130. </xs:annotation>
  3131. </xs:element>-->
  3132. <xs:element name="ID_KORESP_PROJEKT"
  3133. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3134. id="rastructure___d4e41097-1_ID_KORESP_"/>
  3135. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  3136. id="rastructure___d4e41098-1">
  3137. <xs:annotation>
  3138. <xs:appinfo>
  3139. <system_cache__appinfo:flat_relation_cache>
  3140. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  3141. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  3142. </system_cache__appinfo:flat_relation_cache>
  3143. </xs:appinfo>
  3144. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  3145. zasadami projektowania</xs:documentation>
  3146. </xs:annotation>
  3147. </xs:element>
  3148. <xs:element name="ID_KORESP_PROJEKT_WYK"
  3149. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3150. id="rastructure___d4e41105-1_ID_KORESP_"/>
  3151. <xs:element minOccurs="1"
  3152. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  3153. maxOccurs="unbounded"
  3154. id="rastructure___d4e41106-1">
  3155. <xs:annotation>
  3156. <xs:appinfo>
  3157. <system_cache__appinfo:flat_relation_cache>
  3158. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  3159. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  3160. </system_cache__appinfo:flat_relation_cache>
  3161. </xs:appinfo>
  3162. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  3163. zasadami projektowania - proj wykonawczy</xs:documentation>
  3164. </xs:annotation>
  3165. </xs:element>
  3166. <xs:element name="ID_KORESP_DO_REALIZ"
  3167. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3168. id="rastructure___d4e41113-1_ID_KORESP_"/>
  3169. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  3170. id="rastructure___d4e41114-1">
  3171. <xs:annotation>
  3172. <xs:appinfo>
  3173. <system_cache__appinfo:flat_relation_cache>
  3174. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  3175. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  3176. </system_cache__appinfo:flat_relation_cache>
  3177. </xs:appinfo>
  3178. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  3179. </xs:annotation>
  3180. </xs:element>
  3181. <xs:element name="ID_KORESP_OFFER"
  3182. type="Types__x3A__default_infrastructure:ID_KORESP"
  3183. id="rastructure___d4e41122-1_ID_KORESP_"/>
  3184. <xs:element maxOccurs="unbounded"
  3185. minOccurs="0"
  3186. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  3187. id="rastructure___d4e41123-1">
  3188. <xs:annotation>
  3189. <xs:appinfo>
  3190. <system_cache__appinfo:flat_relation_cache>
  3191. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  3192. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  3193. </system_cache__appinfo:flat_relation_cache>
  3194. </xs:appinfo>
  3195. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  3196. </xs:annotation>
  3197. </xs:element>
  3198. <xs:element name="ID_KORESP_DO_UZG"
  3199. type="Types__x3A__default_infrastructure:ID_KORESP"
  3200. id="rastructure___d4e41130-1_ID_KORESP_"/>
  3201. <xs:element maxOccurs="unbounded"
  3202. minOccurs="0"
  3203. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  3204. id="rastructure___d4e41131-1">
  3205. <xs:annotation>
  3206. <xs:appinfo>
  3207. <system_cache__appinfo:flat_relation_cache>
  3208. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  3209. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  3210. </system_cache__appinfo:flat_relation_cache>
  3211. </xs:appinfo>
  3212. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  3213. do właściciela nieruchomości</xs:documentation>
  3214. </xs:annotation>
  3215. </xs:element>
  3216. <xs:element name="ID_KORESP_UZG"
  3217. type="Types__x3A__default_infrastructure:ID_KORESP"
  3218. id="rastructure___d4e41138-1_ID_KORESP_"/>
  3219. <xs:element maxOccurs="unbounded"
  3220. minOccurs="0"
  3221. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  3222. id="rastructure___d4e41139-1">
  3223. <xs:annotation>
  3224. <xs:appinfo>
  3225. <system_cache__appinfo:flat_relation_cache>
  3226. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  3227. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  3228. </system_cache__appinfo:flat_relation_cache>
  3229. </xs:appinfo>
  3230. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  3231. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  3232. zgody</xs:documentation>
  3233. </xs:annotation>
  3234. </xs:element>
  3235. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  3236. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3237. id="rastructure___d4e41146-1_ID_KORESP_"/>
  3238. <xs:element maxOccurs="unbounded"
  3239. minOccurs="1"
  3240. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  3241. id="rastructure___d4e41147-1">
  3242. <xs:annotation>
  3243. <xs:appinfo>
  3244. <system_cache__appinfo:flat_relation_cache>
  3245. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  3246. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  3247. </system_cache__appinfo:flat_relation_cache>
  3248. </xs:appinfo>
  3249. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  3250. ZUD</xs:documentation>
  3251. </xs:annotation>
  3252. </xs:element>
  3253. <xs:element name="ID_KORESP_UZG_ZUD"
  3254. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3255. id="rastructure___d4e41154-1_ID_KORESP_"/>
  3256. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  3257. minOccurs="1"
  3258. id="rastructure___d4e41155-1">
  3259. <xs:annotation>
  3260. <xs:appinfo>
  3261. <system_cache__appinfo:flat_relation_cache>
  3262. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  3263. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  3264. </system_cache__appinfo:flat_relation_cache>
  3265. </xs:appinfo>
  3266. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  3267. </xs:annotation>
  3268. </xs:element>
  3269. <xs:element name="ID_KORESP_ZLECENIE"
  3270. type="Types__x3A__default_infrastructure:ID_KORESP"
  3271. id="rastructure___d4e41162-1_ID_KORESP_"/>
  3272. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  3273. minOccurs="0"
  3274. id="rastructure___d4e41164-1">
  3275. <xs:annotation>
  3276. <xs:appinfo>
  3277. <system_cache__appinfo:flat_relation_cache>
  3278. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  3279. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  3280. </system_cache__appinfo:flat_relation_cache>
  3281. </xs:appinfo>
  3282. <xs:documentation>Czy jest zlecenie</xs:documentation>
  3283. </xs:annotation>
  3284. </xs:element>
  3285. <xs:element name="ID_KORESP_ZGL_ODB"
  3286. type="Types__x3A__default_infrastructure:ID_KORESP"
  3287. id="rastructure___d4e41171-1_ID_KORESP_"/>
  3288. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  3289. minOccurs="0"
  3290. id="rastructure___d4e41172-1">
  3291. <xs:annotation>
  3292. <xs:appinfo>
  3293. <system_cache__appinfo:flat_relation_cache>
  3294. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  3295. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  3296. </system_cache__appinfo:flat_relation_cache>
  3297. </xs:appinfo>
  3298. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  3299. odbioru=wykonanie</xs:documentation>
  3300. </xs:annotation>
  3301. </xs:element>
  3302. <xs:element name="ID_KORESP_POM_GEOD"
  3303. type="Types__x3A__default_infrastructure:ID_KORESP"
  3304. id="rastructure___d4e41179-1_ID_KORESP_"/>
  3305. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  3306. minOccurs="0"
  3307. id="rastructure___d4e41180-1">
  3308. <xs:annotation>
  3309. <xs:appinfo>
  3310. <system_cache__appinfo:flat_relation_cache>
  3311. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  3312. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  3313. </system_cache__appinfo:flat_relation_cache>
  3314. </xs:appinfo>
  3315. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  3316. oraz są powiązane do dokumentu z operatem</xs:documentation>
  3317. </xs:annotation>
  3318. </xs:element>
  3319. <xs:element name="ID_KORESP_PROTOK_ODB"
  3320. type="Types__x3A__default_infrastructure:ID_KORESP"
  3321. id="rastructure___d4e41187-1_ID_KORESP_"/>
  3322. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  3323. minOccurs="0"
  3324. id="rastructure___d4e41188-1">
  3325. <xs:annotation>
  3326. <xs:appinfo>
  3327. <system_cache__appinfo:flat_relation_cache>
  3328. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  3329. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  3330. </system_cache__appinfo:flat_relation_cache>
  3331. </xs:appinfo>
  3332. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  3333. wykonawca, inwestor</xs:documentation>
  3334. </xs:annotation>
  3335. </xs:element>
  3336. <xs:element name="InvestArrangements_Network_Crossings"
  3337. type="xs:int"
  3338. id="rastructure___d4e41195-1_InvestArra"/>
  3339. <xs:element minOccurs="0"
  3340. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  3341. id="rastructure___d4e41196-1">
  3342. <xs:annotation>
  3343. <xs:appinfo>
  3344. <system_cache__appinfo:flat_relation_cache>
  3345. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  3346. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  3347. </system_cache__appinfo:flat_relation_cache>
  3348. </xs:appinfo>
  3349. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  3350. </xs:annotation>
  3351. </xs:element>
  3352. </xs:sequence>
  3353. </xs:restriction>
  3354. </xs:complexContent>
  3355. </xs:complexType>
  3356. <xs:element name="infrastructure_UZG_ZUD"
  3357. type="Types__x3A__default_infrastructure:infrastructure_UZG_ZUD"
  3358. abstract="true"
  3359. id="rastructure___d4e41203-1_Infrastruc">
  3360. <xs:annotation>
  3361. <xs:appinfo>
  3362. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  3363. system_cache__appinfo:base_type_name="UZG_ZUD"/>
  3364. </xs:appinfo>
  3365. </xs:annotation>
  3366. </xs:element>
  3367. <xs:complexType name="infrastructure_ZLECENIE"
  3368. abstract="true"
  3369. id="rastructure___d4e41207-1_Infrastruc">
  3370. <xs:annotation>
  3371. <xs:documentation>Popdisano zlecenie na realizacje danego obiektu</xs:documentation>
  3372. </xs:annotation>
  3373. <xs:complexContent id="rastructure___d4e41211-1">
  3374. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_OFFER">
  3375. <xs:sequence id="rastructure___d4e41213-1">
  3376. <xs:element name="ID" type="xs:int" id="rastructure___d4e41214-1_ID"/>
  3377. <xs:element name="the_geom"
  3378. type="gml:AbstractFeatureType"
  3379. id="rastructure___d4e41215-1_the_geom"/>
  3380. <xs:element name="A_STATUS_INFO"
  3381. type="xs:string"
  3382. id="rastructure___d4e41216-1_A_STATUS_I"/>
  3383. <xs:element name="opis" type="xs:string" id="rastructure___d4e41217-1_opis">
  3384. <xs:annotation>
  3385. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  3386. kosztorysowym</xs:documentation>
  3387. </xs:annotation>
  3388. </xs:element>
  3389. <xs:element name="ID_ZASOB"
  3390. type="xs:int"
  3391. id="rastructure___d4e41221-1_ID_ZASOB"/>
  3392. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  3393. id="rastructure___d4e41222-1">
  3394. <xs:annotation>
  3395. <xs:appinfo>
  3396. <system_cache__appinfo:flat_relation_cache>
  3397. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  3398. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  3399. </system_cache__appinfo:flat_relation_cache>
  3400. </xs:appinfo>
  3401. </xs:annotation>
  3402. </xs:element>
  3403. <xs:element name="Dlugosc"
  3404. type="xs:double"
  3405. id="rastructure___d4e41227-1_Dlugosc"/>
  3406. <xs:element name="Powierzchnia"
  3407. type="xs:double"
  3408. id="rastructure___d4e41228-1_Powierzchn"/>
  3409. <xs:element name="L_APPOITMENT_USER"
  3410. type="xs:string"
  3411. id="rastructure___d4e41229-1_L_APPOITME"/>
  3412. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  3413. id="rastructure___d4e41230-1">
  3414. <xs:annotation>
  3415. <xs:appinfo>
  3416. <system_cache__appinfo:flat_relation_cache>
  3417. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  3418. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  3419. </system_cache__appinfo:flat_relation_cache>
  3420. </xs:appinfo>
  3421. </xs:annotation>
  3422. </xs:element>
  3423. <xs:element name="A_CLASSIFIED"
  3424. type="xs:string"
  3425. id="rastructure___d4e41235-1_A_CLASSIFI"/>
  3426. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  3427. id="rastructure___d4e41237-1">
  3428. <xs:annotation>
  3429. <xs:appinfo>
  3430. <system_cache__appinfo:flat_relation_cache>
  3431. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  3432. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  3433. </system_cache__appinfo:flat_relation_cache>
  3434. </xs:appinfo>
  3435. </xs:annotation>
  3436. </xs:element>
  3437. <xs:element name="A_ADM_COMPANY"
  3438. type="xs:string"
  3439. id="rastructure___d4e41242-1_A_ADM_COMP"/>
  3440. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  3441. id="rastructure___d4e41243-1">
  3442. <xs:annotation>
  3443. <xs:appinfo>
  3444. <system_cache__appinfo:flat_relation_cache>
  3445. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  3446. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  3447. </system_cache__appinfo:flat_relation_cache>
  3448. </xs:appinfo>
  3449. </xs:annotation>
  3450. </xs:element>
  3451. <xs:element name="ID_PROJECT"
  3452. type="xs:int"
  3453. id="rastructure___d4e41248-1_ID_PROJECT"/>
  3454. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  3455. minOccurs="0"
  3456. id="rastructure___d4e32196-1">
  3457. <xs:annotation>
  3458. <xs:appinfo>
  3459. <system_cache__appinfo:flat_relation_cache>
  3460. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  3461. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  3462. </system_cache__appinfo:flat_relation_cache>
  3463. </xs:appinfo>
  3464. </xs:annotation>
  3465. </xs:element>-->
  3466. <xs:element name="ID_KORESP_PROJEKT"
  3467. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3468. id="rastructure___d4e41250-1_ID_KORESP_"/>
  3469. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  3470. maxOccurs="unbounded"
  3471. id="rastructure___d4e41251-1">
  3472. <xs:annotation>
  3473. <xs:appinfo>
  3474. <system_cache__appinfo:flat_relation_cache>
  3475. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  3476. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  3477. </system_cache__appinfo:flat_relation_cache>
  3478. </xs:appinfo>
  3479. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  3480. zasadami projektowania</xs:documentation>
  3481. </xs:annotation>
  3482. </xs:element>
  3483. <xs:element name="ID_KORESP_PROJEKT_WYK"
  3484. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3485. id="rastructure___d4e41258-1_ID_KORESP_"/>
  3486. <xs:element minOccurs="1"
  3487. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  3488. maxOccurs="unbounded"
  3489. id="rastructure___d4e41259-1">
  3490. <xs:annotation>
  3491. <xs:appinfo>
  3492. <system_cache__appinfo:flat_relation_cache>
  3493. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  3494. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  3495. </system_cache__appinfo:flat_relation_cache>
  3496. </xs:appinfo>
  3497. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  3498. zasadami projektowania - proj wykonawczy</xs:documentation>
  3499. </xs:annotation>
  3500. </xs:element>
  3501. <xs:element name="ID_KORESP_DO_REALIZ"
  3502. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3503. id="rastructure___d4e41266-1_ID_KORESP_"/>
  3504. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  3505. id="rastructure___d4e41267-1">
  3506. <xs:annotation>
  3507. <xs:appinfo>
  3508. <system_cache__appinfo:flat_relation_cache>
  3509. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  3510. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  3511. </system_cache__appinfo:flat_relation_cache>
  3512. </xs:appinfo>
  3513. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  3514. </xs:annotation>
  3515. </xs:element>
  3516. <xs:element name="ID_KORESP_OFFER"
  3517. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3518. id="rastructure___d4e41275-1_ID_KORESP_"/>
  3519. <xs:element maxOccurs="unbounded"
  3520. minOccurs="1"
  3521. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  3522. id="rastructure___d4e41276-1">
  3523. <xs:annotation>
  3524. <xs:appinfo>
  3525. <system_cache__appinfo:flat_relation_cache>
  3526. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  3527. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  3528. </system_cache__appinfo:flat_relation_cache>
  3529. </xs:appinfo>
  3530. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  3531. </xs:annotation>
  3532. </xs:element>
  3533. <xs:element name="ID_KORESP_DO_UZG"
  3534. type="Types__x3A__default_infrastructure:ID_KORESP"
  3535. id="rastructure___d4e41283-1_ID_KORESP_"/>
  3536. <xs:element maxOccurs="unbounded"
  3537. minOccurs="0"
  3538. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  3539. id="rastructure___d4e41284-1">
  3540. <xs:annotation>
  3541. <xs:appinfo>
  3542. <system_cache__appinfo:flat_relation_cache>
  3543. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  3544. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  3545. </system_cache__appinfo:flat_relation_cache>
  3546. </xs:appinfo>
  3547. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  3548. do właściciela nieruchomości</xs:documentation>
  3549. </xs:annotation>
  3550. </xs:element>
  3551. <xs:element name="ID_KORESP_UZG"
  3552. type="Types__x3A__default_infrastructure:ID_KORESP"
  3553. id="rastructure___d4e41291-1_ID_KORESP_"/>
  3554. <xs:element maxOccurs="unbounded"
  3555. minOccurs="0"
  3556. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  3557. id="rastructure___d4e41292-1">
  3558. <xs:annotation>
  3559. <xs:appinfo>
  3560. <system_cache__appinfo:flat_relation_cache>
  3561. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  3562. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  3563. </system_cache__appinfo:flat_relation_cache>
  3564. </xs:appinfo>
  3565. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  3566. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  3567. zgody</xs:documentation>
  3568. </xs:annotation>
  3569. </xs:element>
  3570. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  3571. type="Types__x3A__default_infrastructure:ID_KORESP"
  3572. id="rastructure___d4e41299-1_ID_KORESP_"/>
  3573. <xs:element maxOccurs="unbounded"
  3574. minOccurs="0"
  3575. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  3576. id="rastructure___d4e41300-1">
  3577. <xs:annotation>
  3578. <xs:appinfo>
  3579. <system_cache__appinfo:flat_relation_cache>
  3580. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  3581. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  3582. </system_cache__appinfo:flat_relation_cache>
  3583. </xs:appinfo>
  3584. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  3585. ZUD</xs:documentation>
  3586. </xs:annotation>
  3587. </xs:element>
  3588. <xs:element name="ID_KORESP_UZG_ZUD"
  3589. type="Types__x3A__default_infrastructure:ID_KORESP"
  3590. id="rastructure___d4e41307-1_ID_KORESP_"/>
  3591. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  3592. minOccurs="0"
  3593. id="rastructure___d4e41308-1">
  3594. <xs:annotation>
  3595. <xs:appinfo>
  3596. <system_cache__appinfo:flat_relation_cache>
  3597. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  3598. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  3599. </system_cache__appinfo:flat_relation_cache>
  3600. </xs:appinfo>
  3601. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  3602. </xs:annotation>
  3603. </xs:element>
  3604. <xs:element name="ID_KORESP_ZLECENIE"
  3605. type="Types__x3A__default_infrastructure:ID_KORESP"
  3606. id="rastructure___d4e41315-1_ID_KORESP_"/>
  3607. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  3608. id="rastructure___d4e41317-1">
  3609. <xs:annotation>
  3610. <xs:appinfo>
  3611. <system_cache__appinfo:flat_relation_cache>
  3612. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  3613. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  3614. </system_cache__appinfo:flat_relation_cache>
  3615. </xs:appinfo>
  3616. <xs:documentation>Czy jest zlecenie</xs:documentation>
  3617. </xs:annotation>
  3618. </xs:element>
  3619. <xs:element name="ID_KORESP_ZGL_ODB"
  3620. type="Types__x3A__default_infrastructure:ID_KORESP"
  3621. id="rastructure___d4e41324-1_ID_KORESP_"/>
  3622. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  3623. minOccurs="0"
  3624. id="rastructure___d4e41325-1">
  3625. <xs:annotation>
  3626. <xs:appinfo>
  3627. <system_cache__appinfo:flat_relation_cache>
  3628. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  3629. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  3630. </system_cache__appinfo:flat_relation_cache>
  3631. </xs:appinfo>
  3632. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  3633. odbioru=wykonanie</xs:documentation>
  3634. </xs:annotation>
  3635. </xs:element>
  3636. <xs:element name="ID_KORESP_POM_GEOD"
  3637. type="Types__x3A__default_infrastructure:ID_KORESP"
  3638. id="rastructure___d4e41332-1_ID_KORESP_"/>
  3639. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  3640. minOccurs="0"
  3641. id="rastructure___d4e41333-1">
  3642. <xs:annotation>
  3643. <xs:appinfo>
  3644. <system_cache__appinfo:flat_relation_cache>
  3645. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  3646. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  3647. </system_cache__appinfo:flat_relation_cache>
  3648. </xs:appinfo>
  3649. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  3650. oraz są powiązane do dokumentu z operatem</xs:documentation>
  3651. </xs:annotation>
  3652. </xs:element>
  3653. <xs:element name="ID_KORESP_PROTOK_ODB"
  3654. type="Types__x3A__default_infrastructure:ID_KORESP"
  3655. id="rastructure___d4e41340-1_ID_KORESP_"/>
  3656. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  3657. minOccurs="0"
  3658. id="rastructure___d4e41341-1">
  3659. <xs:annotation>
  3660. <xs:appinfo>
  3661. <system_cache__appinfo:flat_relation_cache>
  3662. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  3663. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  3664. </system_cache__appinfo:flat_relation_cache>
  3665. </xs:appinfo>
  3666. </xs:annotation>
  3667. </xs:element>
  3668. <xs:element name="InvestArrangements_Network_Crossings"
  3669. type="xs:int"
  3670. id="rastructure___d4e41346-1_InvestArra"/>
  3671. <xs:element minOccurs="0"
  3672. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  3673. id="rastructure___d4e41347-1">
  3674. <xs:annotation>
  3675. <xs:appinfo>
  3676. <system_cache__appinfo:flat_relation_cache>
  3677. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  3678. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  3679. </system_cache__appinfo:flat_relation_cache>
  3680. </xs:appinfo>
  3681. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  3682. </xs:annotation>
  3683. </xs:element>
  3684. </xs:sequence>
  3685. </xs:restriction>
  3686. </xs:complexContent>
  3687. </xs:complexType>
  3688. <xs:element name="infrastructure_ZLECENIE"
  3689. type="Types__x3A__default_infrastructure:infrastructure_ZLECENIE"
  3690. abstract="true"
  3691. id="rastructure___d4e41354-1_Infrastruc">
  3692. <xs:annotation>
  3693. <xs:appinfo>
  3694. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  3695. system_cache__appinfo:base_type_name="ZLECENIE"/>
  3696. </xs:appinfo>
  3697. </xs:annotation>
  3698. </xs:element>
  3699. <xs:complexType name="infrastructure_ZGL_ODB"
  3700. abstract="true"
  3701. id="rastructure___d4e41358-1_Infrastruc">
  3702. <xs:annotation>
  3703. <xs:documentation>Wykonawca zgłasza wykonanie danego elementu do jego
  3704. odbioru</xs:documentation>
  3705. </xs:annotation>
  3706. <xs:complexContent id="rastructure___d4e41362-1">
  3707. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_ZLECENIE">
  3708. <xs:sequence id="rastructure___d4e41364-1">
  3709. <xs:element name="ID" type="xs:int" id="rastructure___d4e41365-1_ID"/>
  3710. <xs:element name="the_geom"
  3711. type="gml:AbstractFeatureType"
  3712. id="rastructure___d4e41366-1_the_geom"/>
  3713. <xs:element name="A_STATUS_INFO"
  3714. type="xs:string"
  3715. id="rastructure___d4e41367-1_A_STATUS_I"/>
  3716. <xs:element name="opis" type="xs:string" id="rastructure___d4e41368-1_opis">
  3717. <xs:annotation>
  3718. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  3719. kosztorysowym</xs:documentation>
  3720. </xs:annotation>
  3721. </xs:element>
  3722. <xs:element name="ID_ZASOB"
  3723. type="xs:int"
  3724. id="rastructure___d4e41372-1_ID_ZASOB"/>
  3725. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  3726. id="rastructure___d4e41373-1">
  3727. <xs:annotation>
  3728. <xs:appinfo>
  3729. <system_cache__appinfo:flat_relation_cache>
  3730. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  3731. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  3732. </system_cache__appinfo:flat_relation_cache>
  3733. </xs:appinfo>
  3734. </xs:annotation>
  3735. </xs:element>
  3736. <xs:element name="Dlugosc"
  3737. type="xs:double"
  3738. id="rastructure___d4e41378-1_Dlugosc"/>
  3739. <xs:element name="Powierzchnia"
  3740. type="xs:double"
  3741. id="rastructure___d4e41379-1_Powierzchn"/>
  3742. <xs:element name="L_APPOITMENT_USER"
  3743. type="xs:string"
  3744. id="rastructure___d4e41380-1_L_APPOITME"/>
  3745. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  3746. id="rastructure___d4e41381-1">
  3747. <xs:annotation>
  3748. <xs:appinfo>
  3749. <system_cache__appinfo:flat_relation_cache>
  3750. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  3751. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  3752. </system_cache__appinfo:flat_relation_cache>
  3753. </xs:appinfo>
  3754. </xs:annotation>
  3755. </xs:element>
  3756. <xs:element name="A_CLASSIFIED"
  3757. type="xs:string"
  3758. id="rastructure___d4e41386-1_A_CLASSIFI"/>
  3759. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  3760. id="rastructure___d4e41388-1">
  3761. <xs:annotation>
  3762. <xs:appinfo>
  3763. <system_cache__appinfo:flat_relation_cache>
  3764. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  3765. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  3766. </system_cache__appinfo:flat_relation_cache>
  3767. </xs:appinfo>
  3768. </xs:annotation>
  3769. </xs:element>
  3770. <xs:element name="A_ADM_COMPANY"
  3771. type="xs:string"
  3772. id="rastructure___d4e41393-1_A_ADM_COMP"/>
  3773. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  3774. id="rastructure___d4e41394-1">
  3775. <xs:annotation>
  3776. <xs:appinfo>
  3777. <system_cache__appinfo:flat_relation_cache>
  3778. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  3779. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  3780. </system_cache__appinfo:flat_relation_cache>
  3781. </xs:appinfo>
  3782. </xs:annotation>
  3783. </xs:element>
  3784. <xs:element name="ID_PROJECT"
  3785. type="xs:int"
  3786. id="rastructure___d4e41399-1_ID_PROJECT"/>
  3787. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  3788. minOccurs="0"
  3789. id="rastructure___d4e32326-1">
  3790. <xs:annotation>
  3791. <xs:appinfo>
  3792. <system_cache__appinfo:flat_relation_cache>
  3793. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  3794. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  3795. </system_cache__appinfo:flat_relation_cache>
  3796. </xs:appinfo>
  3797. </xs:annotation>
  3798. </xs:element>-->
  3799. <xs:element name="ID_KORESP_PROJEKT"
  3800. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3801. id="rastructure___d4e41401-1_ID_KORESP_"/>
  3802. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  3803. maxOccurs="unbounded"
  3804. id="rastructure___d4e41402-1">
  3805. <xs:annotation>
  3806. <xs:appinfo>
  3807. <system_cache__appinfo:flat_relation_cache>
  3808. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  3809. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  3810. </system_cache__appinfo:flat_relation_cache>
  3811. </xs:appinfo>
  3812. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  3813. zasadami projektowania</xs:documentation>
  3814. </xs:annotation>
  3815. </xs:element>
  3816. <xs:element name="ID_KORESP_PROJEKT_WYK"
  3817. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3818. id="rastructure___d4e41409-1_ID_KORESP_"/>
  3819. <xs:element minOccurs="1"
  3820. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  3821. maxOccurs="unbounded"
  3822. id="rastructure___d4e41410-1">
  3823. <xs:annotation>
  3824. <xs:appinfo>
  3825. <system_cache__appinfo:flat_relation_cache>
  3826. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  3827. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  3828. </system_cache__appinfo:flat_relation_cache>
  3829. </xs:appinfo>
  3830. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  3831. zasadami projektowania - proj wykonawczy</xs:documentation>
  3832. </xs:annotation>
  3833. </xs:element>
  3834. <xs:element name="ID_KORESP_DO_REALIZ"
  3835. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3836. id="rastructure___d4e41417-1_ID_KORESP_"/>
  3837. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  3838. id="rastructure___d4e41418-1">
  3839. <xs:annotation>
  3840. <xs:appinfo>
  3841. <system_cache__appinfo:flat_relation_cache>
  3842. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  3843. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  3844. </system_cache__appinfo:flat_relation_cache>
  3845. </xs:appinfo>
  3846. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  3847. </xs:annotation>
  3848. </xs:element>
  3849. <xs:element name="ID_KORESP_OFFER"
  3850. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3851. id="rastructure___d4e41426-1_ID_KORESP_"/>
  3852. <xs:element maxOccurs="unbounded"
  3853. minOccurs="1"
  3854. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  3855. id="rastructure___d4e41427-1">
  3856. <xs:annotation>
  3857. <xs:appinfo>
  3858. <system_cache__appinfo:flat_relation_cache>
  3859. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  3860. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  3861. </system_cache__appinfo:flat_relation_cache>
  3862. </xs:appinfo>
  3863. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  3864. </xs:annotation>
  3865. </xs:element>
  3866. <xs:element name="ID_KORESP_DO_UZG"
  3867. type="Types__x3A__default_infrastructure:ID_KORESP"
  3868. id="rastructure___d4e41434-1_ID_KORESP_"/>
  3869. <xs:element maxOccurs="unbounded"
  3870. minOccurs="0"
  3871. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  3872. id="rastructure___d4e41435-1">
  3873. <xs:annotation>
  3874. <xs:appinfo>
  3875. <system_cache__appinfo:flat_relation_cache>
  3876. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  3877. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  3878. </system_cache__appinfo:flat_relation_cache>
  3879. </xs:appinfo>
  3880. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  3881. do właściciela nieruchomości</xs:documentation>
  3882. </xs:annotation>
  3883. </xs:element>
  3884. <xs:element name="ID_KORESP_UZG"
  3885. type="Types__x3A__default_infrastructure:ID_KORESP"
  3886. id="rastructure___d4e41442-1_ID_KORESP_"/>
  3887. <xs:element maxOccurs="unbounded"
  3888. minOccurs="0"
  3889. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  3890. id="rastructure___d4e41443-1">
  3891. <xs:annotation>
  3892. <xs:appinfo>
  3893. <system_cache__appinfo:flat_relation_cache>
  3894. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  3895. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  3896. </system_cache__appinfo:flat_relation_cache>
  3897. </xs:appinfo>
  3898. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  3899. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  3900. zgody</xs:documentation>
  3901. </xs:annotation>
  3902. </xs:element>
  3903. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  3904. type="Types__x3A__default_infrastructure:ID_KORESP"
  3905. id="rastructure___d4e41450-1_ID_KORESP_"/>
  3906. <xs:element maxOccurs="unbounded"
  3907. minOccurs="0"
  3908. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  3909. id="rastructure___d4e41451-1">
  3910. <xs:annotation>
  3911. <xs:appinfo>
  3912. <system_cache__appinfo:flat_relation_cache>
  3913. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  3914. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  3915. </system_cache__appinfo:flat_relation_cache>
  3916. </xs:appinfo>
  3917. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  3918. ZUD</xs:documentation>
  3919. </xs:annotation>
  3920. </xs:element>
  3921. <xs:element name="ID_KORESP_UZG_ZUD"
  3922. type="Types__x3A__default_infrastructure:ID_KORESP"
  3923. id="rastructure___d4e41458-1_ID_KORESP_"/>
  3924. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  3925. minOccurs="0"
  3926. id="rastructure___d4e41459-1">
  3927. <xs:annotation>
  3928. <xs:appinfo>
  3929. <system_cache__appinfo:flat_relation_cache>
  3930. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  3931. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  3932. </system_cache__appinfo:flat_relation_cache>
  3933. </xs:appinfo>
  3934. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  3935. </xs:annotation>
  3936. </xs:element>
  3937. <xs:element name="ID_KORESP_ZLECENIE"
  3938. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3939. id="rastructure___d4e41466-1_ID_KORESP_"/>
  3940. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  3941. id="rastructure___d4e41468-1">
  3942. <xs:annotation>
  3943. <xs:appinfo>
  3944. <system_cache__appinfo:flat_relation_cache>
  3945. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  3946. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  3947. </system_cache__appinfo:flat_relation_cache>
  3948. </xs:appinfo>
  3949. <xs:documentation>Czy jest zlecenie</xs:documentation>
  3950. </xs:annotation>
  3951. </xs:element>
  3952. <xs:element name="ID_KORESP_ZGL_ODB"
  3953. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  3954. id="rastructure___d4e41475-1_ID_KORESP_"/>
  3955. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  3956. minOccurs="1"
  3957. id="rastructure___d4e41476-1">
  3958. <xs:annotation>
  3959. <xs:appinfo>
  3960. <system_cache__appinfo:flat_relation_cache>
  3961. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  3962. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  3963. </system_cache__appinfo:flat_relation_cache>
  3964. </xs:appinfo>
  3965. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  3966. odbioru=wykonanie</xs:documentation>
  3967. </xs:annotation>
  3968. </xs:element>
  3969. <xs:element name="ID_KORESP_POM_GEOD"
  3970. type="Types__x3A__default_infrastructure:ID_KORESP"
  3971. id="rastructure___d4e41483-1_ID_KORESP_"/>
  3972. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  3973. minOccurs="0"
  3974. id="rastructure___d4e41484-1">
  3975. <xs:annotation>
  3976. <xs:appinfo>
  3977. <system_cache__appinfo:flat_relation_cache>
  3978. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  3979. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  3980. </system_cache__appinfo:flat_relation_cache>
  3981. </xs:appinfo>
  3982. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  3983. oraz są powiązane do dokumentu z operatem</xs:documentation>
  3984. </xs:annotation>
  3985. </xs:element>
  3986. <xs:element name="ID_KORESP_PROTOK_ODB"
  3987. type="Types__x3A__default_infrastructure:ID_KORESP"
  3988. id="rastructure___d4e41491-1_ID_KORESP_"/>
  3989. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  3990. minOccurs="0"
  3991. id="rastructure___d4e41492-1">
  3992. <xs:annotation>
  3993. <xs:appinfo>
  3994. <system_cache__appinfo:flat_relation_cache>
  3995. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  3996. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  3997. </system_cache__appinfo:flat_relation_cache>
  3998. </xs:appinfo>
  3999. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  4000. wykonawca, inwestor</xs:documentation>
  4001. </xs:annotation>
  4002. </xs:element>
  4003. <xs:element name="InvestArrangements_Network_Crossings"
  4004. type="xs:int"
  4005. id="rastructure___d4e41499-1_InvestArra"/>
  4006. <xs:element minOccurs="0"
  4007. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  4008. id="rastructure___d4e41500-1">
  4009. <xs:annotation>
  4010. <xs:appinfo>
  4011. <system_cache__appinfo:flat_relation_cache>
  4012. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  4013. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  4014. </system_cache__appinfo:flat_relation_cache>
  4015. </xs:appinfo>
  4016. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  4017. </xs:annotation>
  4018. </xs:element>
  4019. </xs:sequence>
  4020. </xs:restriction>
  4021. </xs:complexContent>
  4022. </xs:complexType>
  4023. <xs:element name="infrastructure_ZGL_ODB"
  4024. type="Types__x3A__default_infrastructure:infrastructure_ZGL_ODB"
  4025. abstract="true"
  4026. id="rastructure___d4e41507-1_Infrastruc">
  4027. <xs:annotation>
  4028. <xs:appinfo>
  4029. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  4030. system_cache__appinfo:base_type_name="ZGL_ODB"/>
  4031. </xs:appinfo>
  4032. </xs:annotation>
  4033. </xs:element>
  4034. <xs:complexType name="infrastructure_POM_GEOD"
  4035. abstract="true"
  4036. id="rastructure___d4e41512-1_Infrastruc">
  4037. <xs:complexContent id="rastructure___d4e41513-1">
  4038. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_ZGL_ODB">
  4039. <xs:sequence id="rastructure___d4e41515-1">
  4040. <xs:element name="ID" type="xs:int" id="rastructure___d4e41516-1_ID"/>
  4041. <xs:element name="the_geom"
  4042. type="gml:AbstractFeatureType"
  4043. id="rastructure___d4e41517-1_the_geom"/>
  4044. <xs:element name="A_STATUS_INFO"
  4045. type="xs:string"
  4046. id="rastructure___d4e41518-1_A_STATUS_I"/>
  4047. <xs:element name="opis" type="xs:string" id="rastructure___d4e41519-1_opis">
  4048. <xs:annotation>
  4049. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  4050. kosztorysowym</xs:documentation>
  4051. </xs:annotation>
  4052. </xs:element>
  4053. <xs:element name="ID_ZASOB"
  4054. type="xs:int"
  4055. id="rastructure___d4e41523-1_ID_ZASOB"/>
  4056. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  4057. id="rastructure___d4e41524-1">
  4058. <xs:annotation>
  4059. <xs:appinfo>
  4060. <system_cache__appinfo:flat_relation_cache>
  4061. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  4062. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  4063. </system_cache__appinfo:flat_relation_cache>
  4064. </xs:appinfo>
  4065. </xs:annotation>
  4066. </xs:element>
  4067. <xs:element name="Dlugosc"
  4068. type="xs:double"
  4069. id="rastructure___d4e41529-1_Dlugosc"/>
  4070. <xs:element name="Powierzchnia"
  4071. type="xs:double"
  4072. id="rastructure___d4e41530-1_Powierzchn"/>
  4073. <xs:element name="L_APPOITMENT_USER"
  4074. type="xs:string"
  4075. id="rastructure___d4e41531-1_L_APPOITME"/>
  4076. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  4077. id="rastructure___d4e41532-1">
  4078. <xs:annotation>
  4079. <xs:appinfo>
  4080. <system_cache__appinfo:flat_relation_cache>
  4081. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  4082. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  4083. </system_cache__appinfo:flat_relation_cache>
  4084. </xs:appinfo>
  4085. </xs:annotation>
  4086. </xs:element>
  4087. <xs:element name="A_CLASSIFIED"
  4088. type="xs:string"
  4089. id="rastructure___d4e41537-1_A_CLASSIFI"/>
  4090. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  4091. id="rastructure___d4e41539-1">
  4092. <xs:annotation>
  4093. <xs:appinfo>
  4094. <system_cache__appinfo:flat_relation_cache>
  4095. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  4096. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  4097. </system_cache__appinfo:flat_relation_cache>
  4098. </xs:appinfo>
  4099. </xs:annotation>
  4100. </xs:element>
  4101. <xs:element name="A_ADM_COMPANY"
  4102. type="xs:string"
  4103. id="rastructure___d4e41544-1_A_ADM_COMP"/>
  4104. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  4105. id="rastructure___d4e41545-1">
  4106. <xs:annotation>
  4107. <xs:appinfo>
  4108. <system_cache__appinfo:flat_relation_cache>
  4109. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  4110. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  4111. </system_cache__appinfo:flat_relation_cache>
  4112. </xs:appinfo>
  4113. </xs:annotation>
  4114. </xs:element>
  4115. <xs:element name="ID_PROJECT"
  4116. type="xs:int"
  4117. id="rastructure___d4e41550-1_ID_PROJECT"/>
  4118. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  4119. minOccurs="0"
  4120. id="rastructure___d4e32455-1">
  4121. <xs:annotation>
  4122. <xs:appinfo>
  4123. <system_cache__appinfo:flat_relation_cache>
  4124. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  4125. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  4126. </system_cache__appinfo:flat_relation_cache>
  4127. </xs:appinfo>
  4128. </xs:annotation>
  4129. </xs:element>-->
  4130. <xs:element name="ID_KORESP_PROJEKT"
  4131. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4132. id="rastructure___d4e41552-1_ID_KORESP_"/>
  4133. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  4134. maxOccurs="unbounded"
  4135. id="rastructure___d4e41553-1">
  4136. <xs:annotation>
  4137. <xs:appinfo>
  4138. <system_cache__appinfo:flat_relation_cache>
  4139. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  4140. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  4141. </system_cache__appinfo:flat_relation_cache>
  4142. </xs:appinfo>
  4143. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  4144. zasadami projektowania</xs:documentation>
  4145. </xs:annotation>
  4146. </xs:element>
  4147. <xs:element name="ID_KORESP_PROJEKT_WYK"
  4148. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4149. id="rastructure___d4e41560-1_ID_KORESP_"/>
  4150. <xs:element minOccurs="1"
  4151. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  4152. maxOccurs="unbounded"
  4153. id="rastructure___d4e41561-1">
  4154. <xs:annotation>
  4155. <xs:appinfo>
  4156. <system_cache__appinfo:flat_relation_cache>
  4157. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  4158. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  4159. </system_cache__appinfo:flat_relation_cache>
  4160. </xs:appinfo>
  4161. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  4162. zasadami projektowania - proj wykonawczy</xs:documentation>
  4163. </xs:annotation>
  4164. </xs:element>
  4165. <xs:element name="ID_KORESP_DO_REALIZ"
  4166. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4167. id="rastructure___d4e41568-1_ID_KORESP_"/>
  4168. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  4169. id="rastructure___d4e41569-1">
  4170. <xs:annotation>
  4171. <xs:appinfo>
  4172. <system_cache__appinfo:flat_relation_cache>
  4173. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  4174. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  4175. </system_cache__appinfo:flat_relation_cache>
  4176. </xs:appinfo>
  4177. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  4178. </xs:annotation>
  4179. </xs:element>
  4180. <xs:element name="ID_KORESP_OFFER"
  4181. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4182. id="rastructure___d4e41577-1_ID_KORESP_"/>
  4183. <xs:element maxOccurs="unbounded"
  4184. minOccurs="1"
  4185. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  4186. id="rastructure___d4e41578-1">
  4187. <xs:annotation>
  4188. <xs:appinfo>
  4189. <system_cache__appinfo:flat_relation_cache>
  4190. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  4191. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  4192. </system_cache__appinfo:flat_relation_cache>
  4193. </xs:appinfo>
  4194. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  4195. </xs:annotation>
  4196. </xs:element>
  4197. <xs:element name="ID_KORESP_DO_UZG"
  4198. type="Types__x3A__default_infrastructure:ID_KORESP"
  4199. id="rastructure___d4e41585-1_ID_KORESP_"/>
  4200. <xs:element maxOccurs="unbounded"
  4201. minOccurs="0"
  4202. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  4203. id="rastructure___d4e41586-1">
  4204. <xs:annotation>
  4205. <xs:appinfo>
  4206. <system_cache__appinfo:flat_relation_cache>
  4207. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  4208. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  4209. </system_cache__appinfo:flat_relation_cache>
  4210. </xs:appinfo>
  4211. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  4212. do właściciela nieruchomości</xs:documentation>
  4213. </xs:annotation>
  4214. </xs:element>
  4215. <xs:element name="ID_KORESP_UZG"
  4216. type="Types__x3A__default_infrastructure:ID_KORESP"
  4217. id="rastructure___d4e41593-1_ID_KORESP_"/>
  4218. <xs:element maxOccurs="unbounded"
  4219. minOccurs="0"
  4220. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  4221. id="rastructure___d4e41594-1">
  4222. <xs:annotation>
  4223. <xs:appinfo>
  4224. <system_cache__appinfo:flat_relation_cache>
  4225. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  4226. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  4227. </system_cache__appinfo:flat_relation_cache>
  4228. </xs:appinfo>
  4229. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  4230. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  4231. zgody</xs:documentation>
  4232. </xs:annotation>
  4233. </xs:element>
  4234. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  4235. type="Types__x3A__default_infrastructure:ID_KORESP"
  4236. id="rastructure___d4e41601-1_ID_KORESP_"/>
  4237. <xs:element maxOccurs="unbounded"
  4238. minOccurs="0"
  4239. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  4240. id="rastructure___d4e41602-1">
  4241. <xs:annotation>
  4242. <xs:appinfo>
  4243. <system_cache__appinfo:flat_relation_cache>
  4244. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  4245. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  4246. </system_cache__appinfo:flat_relation_cache>
  4247. </xs:appinfo>
  4248. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  4249. ZUD</xs:documentation>
  4250. </xs:annotation>
  4251. </xs:element>
  4252. <xs:element name="ID_KORESP_UZG_ZUD"
  4253. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4254. id="rastructure___d4e41609-1_ID_KORESP_"/>
  4255. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  4256. id="rastructure___d4e41610-1">
  4257. <xs:annotation>
  4258. <xs:appinfo>
  4259. <system_cache__appinfo:flat_relation_cache>
  4260. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  4261. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  4262. </system_cache__appinfo:flat_relation_cache>
  4263. </xs:appinfo>
  4264. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  4265. </xs:annotation>
  4266. </xs:element>
  4267. <xs:element name="ID_KORESP_ZLECENIE"
  4268. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4269. id="rastructure___d4e41617-1_ID_KORESP_"/>
  4270. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  4271. id="rastructure___d4e41619-1">
  4272. <xs:annotation>
  4273. <xs:appinfo>
  4274. <system_cache__appinfo:flat_relation_cache>
  4275. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  4276. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  4277. </system_cache__appinfo:flat_relation_cache>
  4278. </xs:appinfo>
  4279. <xs:documentation>Czy jest zlecenie</xs:documentation>
  4280. </xs:annotation>
  4281. </xs:element>
  4282. <xs:element name="ID_KORESP_ZGL_ODB"
  4283. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4284. id="rastructure___d4e41626-1_ID_KORESP_"/>
  4285. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  4286. minOccurs="1"
  4287. id="rastructure___d4e41627-1">
  4288. <xs:annotation>
  4289. <xs:appinfo>
  4290. <system_cache__appinfo:flat_relation_cache>
  4291. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  4292. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  4293. </system_cache__appinfo:flat_relation_cache>
  4294. </xs:appinfo>
  4295. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  4296. odbioru=wykonanie</xs:documentation>
  4297. </xs:annotation>
  4298. </xs:element>
  4299. <xs:element name="ID_KORESP_POM_GEOD"
  4300. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4301. id="rastructure___d4e41634-1_ID_KORESP_"/>
  4302. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  4303. minOccurs="1"
  4304. id="rastructure___d4e41635-1">
  4305. <xs:annotation>
  4306. <xs:appinfo>
  4307. <system_cache__appinfo:flat_relation_cache>
  4308. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  4309. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  4310. </system_cache__appinfo:flat_relation_cache>
  4311. </xs:appinfo>
  4312. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  4313. oraz są powiązane do dokumentu z operatem</xs:documentation>
  4314. </xs:annotation>
  4315. </xs:element>
  4316. <xs:element name="ID_KORESP_PROTOK_ODB"
  4317. type="Types__x3A__default_infrastructure:ID_KORESP"
  4318. id="rastructure___d4e41642-1_ID_KORESP_"/>
  4319. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  4320. minOccurs="0"
  4321. id="rastructure___d4e41643-1">
  4322. <xs:annotation>
  4323. <xs:appinfo>
  4324. <system_cache__appinfo:flat_relation_cache>
  4325. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  4326. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  4327. </system_cache__appinfo:flat_relation_cache>
  4328. </xs:appinfo>
  4329. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  4330. wykonawca, inwestor</xs:documentation>
  4331. </xs:annotation>
  4332. </xs:element>
  4333. <xs:element name="InvestArrangements_Network_Crossings"
  4334. type="xs:int"
  4335. id="rastructure___d4e41650-1_InvestArra"/>
  4336. <xs:element minOccurs="0"
  4337. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  4338. id="rastructure___d4e41651-1">
  4339. <xs:annotation>
  4340. <xs:appinfo>
  4341. <system_cache__appinfo:flat_relation_cache>
  4342. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  4343. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  4344. </system_cache__appinfo:flat_relation_cache>
  4345. </xs:appinfo>
  4346. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki.
  4347. </xs:documentation>
  4348. </xs:annotation>
  4349. </xs:element>
  4350. </xs:sequence>
  4351. </xs:restriction>
  4352. </xs:complexContent>
  4353. </xs:complexType>
  4354. <xs:element name="infrastructure_POM_GEOD"
  4355. type="Types__x3A__default_infrastructure:infrastructure_POM_GEOD"
  4356. abstract="true"
  4357. id="rastructure___d4e41658-1_Infrastruc">
  4358. <xs:annotation>
  4359. <xs:appinfo>
  4360. <system_cache__appinfo:base_type system_cache__appinfo:base_type_group="infrastructure"
  4361. system_cache__appinfo:base_type_name="POM_GEOD"/>
  4362. </xs:appinfo>
  4363. </xs:annotation>
  4364. </xs:element>
  4365. <xs:complexType name="infrastructure_PROTOK_ODB"
  4366. abstract="true"
  4367. id="rastructure___d4e41662-1_Infrastruc">
  4368. <xs:annotation>
  4369. <xs:documentation>Podpisany protokol odbioru z podwykonawca oraz wlascicielem
  4370. </xs:documentation>
  4371. </xs:annotation>
  4372. <xs:complexContent id="rastructure___d4e41666-1">
  4373. <xs:restriction base="Types__x3A__default_infrastructure:infrastructure_ZGL_ODB">
  4374. <xs:sequence id="rastructure___d4e41668-1">
  4375. <xs:element name="ID" type="xs:int" id="rastructure___d4e41669-1_ID"/>
  4376. <xs:element name="the_geom"
  4377. type="gml:AbstractFeatureType"
  4378. id="rastructure___d4e41670-1_the_geom"/>
  4379. <!--<xs:choice maxOccurs="unbounded" minOccurs="0" >
  4380. <xs:annotation>
  4381. <xs:documentation>@2015-03-30 - obiekt moze posiadac wiecej wymagan zgod. Alternatywnie zgody muszą być wszystkie wyrażone, z uwagi na prawidłowe działanie restrykcji, dla obiektów możliwych dla realizacji.</xs:documentation>
  4382. </xs:annotation>
  4383. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement"
  4384. />
  4385. <xs:element
  4386. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_obj_placement_requirement_accepted"
  4387. />
  4388. </xs:choice> Do pozniejszej implementacji zaleznych relacji w sekwencji -->
  4389. <xs:element name="A_STATUS_INFO"
  4390. type="xs:string"
  4391. id="rastructure___d4e41672-1_A_STATUS_I"/>
  4392. <xs:element name="opis" type="xs:string" id="rastructure___d4e41673-1_opis">
  4393. <xs:annotation>
  4394. <xs:documentation>To zmiany na ID_ZASOBU pod katem
  4395. kosztorysowym</xs:documentation>
  4396. </xs:annotation>
  4397. </xs:element>
  4398. <xs:element name="ID_ZASOB"
  4399. type="xs:int"
  4400. id="rastructure___d4e41677-1_ID_ZASOB"/>
  4401. <xs:element ref="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW"
  4402. id="rastructure___d4e41678-1">
  4403. <xs:annotation>
  4404. <xs:appinfo>
  4405. <system_cache__appinfo:flat_relation_cache>
  4406. <system_cache__appinfo:source system_cache__appinfo:name="ID_ZASOB"
  4407. system_cache__appinfo:xpath="default_db__x3A__CRM_LISTA_ZASOBOW:CRM_LISTA_ZASOBOW/ID"/>
  4408. </system_cache__appinfo:flat_relation_cache>
  4409. </xs:appinfo>
  4410. </xs:annotation>
  4411. </xs:element>
  4412. <xs:element name="Dlugosc"
  4413. type="xs:double"
  4414. id="rastructure___d4e41683-1_Dlugosc"/>
  4415. <xs:element name="Powierzchnia"
  4416. type="xs:double"
  4417. id="rastructure___d4e41684-1_Powierzchn"/>
  4418. <xs:element name="L_APPOITMENT_USER"
  4419. type="xs:string"
  4420. id="rastructure___d4e41685-1_L_APPOITME"/>
  4421. <xs:element ref="SystemObjects__x3A__AccessOwner:AccessOwner"
  4422. id="rastructure___d4e41686-1">
  4423. <xs:annotation>
  4424. <xs:appinfo>
  4425. <system_cache__appinfo:flat_relation_cache>
  4426. <system_cache__appinfo:source system_cache__appinfo:name="L_APPOITMENT_USER"
  4427. system_cache__appinfo:xpath="SystemObjects__x3A__AccessOwner:AccessOwner/name"/>
  4428. </system_cache__appinfo:flat_relation_cache>
  4429. </xs:appinfo>
  4430. </xs:annotation>
  4431. </xs:element>
  4432. <xs:element name="A_CLASSIFIED"
  4433. type="xs:string"
  4434. id="rastructure___d4e41692-1_A_CLASSIFI"/>
  4435. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupRead"
  4436. id="rastructure___d4e41693-1">
  4437. <xs:annotation>
  4438. <xs:appinfo>
  4439. <system_cache__appinfo:flat_relation_cache>
  4440. <system_cache__appinfo:source system_cache__appinfo:name="A_CLASSIFIED"
  4441. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:AccessGroupRead/name"/>
  4442. </system_cache__appinfo:flat_relation_cache>
  4443. </xs:appinfo>
  4444. </xs:annotation>
  4445. </xs:element>
  4446. <xs:element name="A_ADM_COMPANY"
  4447. type="xs:string"
  4448. id="rastructure___d4e41698-1_A_ADM_COMP"/>
  4449. <xs:element ref="SystemObjects__x3A__AccessGroup:AccessGroupWrite"
  4450. id="rastructure___d4e41699-1">
  4451. <xs:annotation>
  4452. <xs:appinfo>
  4453. <system_cache__appinfo:flat_relation_cache>
  4454. <system_cache__appinfo:source system_cache__appinfo:name="A_ADM_COMPANY"
  4455. system_cache__appinfo:xpath="SystemObjects__x3A__AccessGroup:A_ADM_COMPANY/name"/>
  4456. </system_cache__appinfo:flat_relation_cache>
  4457. </xs:appinfo>
  4458. </xs:annotation>
  4459. </xs:element>
  4460. <xs:element name="ID_PROJECT"
  4461. type="xs:int"
  4462. id="rastructure___d4e41704-1_ID_PROJECT"/>
  4463. <!--<xs:element ref="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT"
  4464. minOccurs="0"
  4465. id="rastructure___d4e32588-1">
  4466. <xs:annotation>
  4467. <xs:appinfo>
  4468. <system_cache__appinfo:flat_relation_cache>
  4469. <system_cache__appinfo:source system_cache__appinfo:name="ID_PROJECT"
  4470. system_cache__appinfo:xpath="default_db__x3A__IN7_MK_BAZA_DYSTRYBUCJI:ID_PROJECT/ID"/>
  4471. </system_cache__appinfo:flat_relation_cache>
  4472. </xs:appinfo>
  4473. </xs:annotation>
  4474. </xs:element>-->
  4475. <xs:element name="ID_KORESP_PROJEKT"
  4476. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4477. id="rastructure___d4e41706-1_ID_KORESP_"/>
  4478. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT"
  4479. maxOccurs="unbounded"
  4480. id="rastructure___d4e41707-1">
  4481. <xs:annotation>
  4482. <xs:appinfo>
  4483. <system_cache__appinfo:flat_relation_cache>
  4484. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT"
  4485. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT/ID"/>
  4486. </system_cache__appinfo:flat_relation_cache>
  4487. </xs:appinfo>
  4488. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  4489. zasadami projektowania</xs:documentation>
  4490. </xs:annotation>
  4491. </xs:element>
  4492. <xs:element name="ID_KORESP_PROJEKT_WYK"
  4493. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4494. id="rastructure___d4e41714-1_ID_KORESP_"/>
  4495. <xs:element minOccurs="1"
  4496. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK"
  4497. maxOccurs="unbounded"
  4498. id="rastructure___d4e41715-1">
  4499. <xs:annotation>
  4500. <xs:appinfo>
  4501. <system_cache__appinfo:flat_relation_cache>
  4502. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROJEKT_WYK"
  4503. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROJEKT_WYK/ID"/>
  4504. </system_cache__appinfo:flat_relation_cache>
  4505. </xs:appinfo>
  4506. <xs:documentation>Obiekt został zatwierdzony, że jest projektowy i zgodny z
  4507. zasadami projektowania - proj wykonawczy</xs:documentation>
  4508. </xs:annotation>
  4509. </xs:element>
  4510. <xs:element name="ID_KORESP_DO_REALIZ"
  4511. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4512. id="rastructure___d4e41722-1_ID_KORESP_"/>
  4513. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ"
  4514. id="rastructure___d4e41724-1">
  4515. <xs:annotation>
  4516. <xs:appinfo>
  4517. <system_cache__appinfo:flat_relation_cache>
  4518. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_REALIZ"
  4519. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_REALIZ/ID"/>
  4520. </system_cache__appinfo:flat_relation_cache>
  4521. </xs:appinfo>
  4522. <xs:documentation>Czy jest decyzja na realizacje</xs:documentation>
  4523. </xs:annotation>
  4524. </xs:element>
  4525. <xs:element name="ID_KORESP_OFFER"
  4526. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4527. id="rastructure___d4e41731-1_ID_KORESP_"/>
  4528. <xs:element maxOccurs="unbounded"
  4529. minOccurs="1"
  4530. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER"
  4531. id="rastructure___d4e41732-1">
  4532. <xs:annotation>
  4533. <xs:appinfo>
  4534. <system_cache__appinfo:flat_relation_cache>
  4535. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_OFFER"
  4536. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_OFFER/ID"/>
  4537. </system_cache__appinfo:flat_relation_cache>
  4538. </xs:appinfo>
  4539. <xs:documentation>Czy jest oferta na obiekt</xs:documentation>
  4540. </xs:annotation>
  4541. </xs:element>
  4542. <!--<xs:element maxOccurs="unbounded" minOccurs="0"
  4543. ref="default_db__x3A__IN7_DZIENNIK_KORESP:document_position_offer"
  4544. >
  4545. <xs:annotation >
  4546. <xs:documentation>Istnienie ofert na danym obiekcie inftastruktury
  4547. </xs:documentation>
  4548. </xs:annotation>
  4549. </xs:element> Do pozniejszej implementacji zaleznych relacji w sekwencji-->
  4550. <xs:element name="ID_KORESP_DO_UZG"
  4551. type="Types__x3A__default_infrastructure:ID_KORESP"
  4552. id="rastructure___d4e41740-1_ID_KORESP_"/>
  4553. <xs:element maxOccurs="unbounded"
  4554. minOccurs="0"
  4555. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG"
  4556. id="rastructure___d4e41741-1">
  4557. <xs:annotation>
  4558. <xs:appinfo>
  4559. <system_cache__appinfo:flat_relation_cache>
  4560. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG"
  4561. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG/ID"/>
  4562. </system_cache__appinfo:flat_relation_cache>
  4563. </xs:appinfo>
  4564. <xs:documentation>Powiązanie do wysłanego pisma o zgodę na usytuowanie obiektu,
  4565. do właściciela nieruchomości</xs:documentation>
  4566. </xs:annotation>
  4567. </xs:element>
  4568. <xs:element name="ID_KORESP_UZG"
  4569. type="Types__x3A__default_infrastructure:ID_KORESP"
  4570. id="rastructure___d4e41748-1_ID_KORESP_"/>
  4571. <xs:element maxOccurs="unbounded"
  4572. minOccurs="0"
  4573. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG"
  4574. id="rastructure___d4e41749-1">
  4575. <xs:annotation>
  4576. <xs:appinfo>
  4577. <system_cache__appinfo:flat_relation_cache>
  4578. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG"
  4579. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG/ID"/>
  4580. </system_cache__appinfo:flat_relation_cache>
  4581. </xs:appinfo>
  4582. <xs:documentation>Fakt wyrażenia zgody na usytuowanie sieci od właściciela.
  4583. Brak zgody powinien być wiązany z relacją dla wysyłania wniosków o
  4584. zgody</xs:documentation>
  4585. </xs:annotation>
  4586. </xs:element>
  4587. <xs:element name="ID_KORESP_DO_UZG_ZUD"
  4588. type="Types__x3A__default_infrastructure:ID_KORESP"
  4589. id="rastructure___d4e41756-1_ID_KORESP_"/>
  4590. <xs:element maxOccurs="unbounded"
  4591. minOccurs="0"
  4592. ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD"
  4593. id="rastructure___d4e41757-1">
  4594. <xs:annotation>
  4595. <xs:appinfo>
  4596. <system_cache__appinfo:flat_relation_cache>
  4597. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_DO_UZG_ZUD"
  4598. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_DO_UZG_ZUD/ID"/>
  4599. </system_cache__appinfo:flat_relation_cache>
  4600. </xs:appinfo>
  4601. <xs:documentation>Potwierdzenie nadania wniosku o uzgodnienie
  4602. ZUD</xs:documentation>
  4603. </xs:annotation>
  4604. </xs:element>
  4605. <xs:element name="ID_KORESP_UZG_ZUD"
  4606. type="Types__x3A__default_infrastructure:ID_KORESP"
  4607. id="rastructure___d4e41764-1_ID_KORESP_"/>
  4608. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD"
  4609. minOccurs="0"
  4610. id="rastructure___d4e41766-1">
  4611. <xs:annotation>
  4612. <xs:appinfo>
  4613. <system_cache__appinfo:flat_relation_cache>
  4614. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_UZG_ZUD"
  4615. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_UZG_ZUD/ID"/>
  4616. </system_cache__appinfo:flat_relation_cache>
  4617. </xs:appinfo>
  4618. <xs:documentation>Potwierdzenie zwrotnego pisma ze zgodą ZUD</xs:documentation>
  4619. </xs:annotation>
  4620. </xs:element>
  4621. <xs:element name="ID_KORESP_ZLECENIE"
  4622. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4623. id="rastructure___d4e41773-1_ID_KORESP_"/>
  4624. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE"
  4625. id="rastructure___d4e41774-1">
  4626. <xs:annotation>
  4627. <xs:appinfo>
  4628. <system_cache__appinfo:flat_relation_cache>
  4629. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZLECENIE"
  4630. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZLECENIE/ID"/>
  4631. </system_cache__appinfo:flat_relation_cache>
  4632. </xs:appinfo>
  4633. <xs:documentation>Czy jest zlecenie</xs:documentation>
  4634. </xs:annotation>
  4635. </xs:element>
  4636. <xs:element name="ID_KORESP_ZGL_ODB"
  4637. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4638. id="rastructure___d4e41781-1_ID_KORESP_"/>
  4639. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB"
  4640. minOccurs="1"
  4641. id="rastructure___d4e41782-1">
  4642. <xs:annotation>
  4643. <xs:appinfo>
  4644. <system_cache__appinfo:flat_relation_cache>
  4645. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_ZGL_ODB"
  4646. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_ZGL_ODB/ID"/>
  4647. </system_cache__appinfo:flat_relation_cache>
  4648. </xs:appinfo>
  4649. <xs:documentation>Relacja tworzona przez podwykonawcę jako zgłoszenie do
  4650. odbioru=wykonanie</xs:documentation>
  4651. </xs:annotation>
  4652. </xs:element>
  4653. <xs:element name="ID_KORESP_POM_GEOD"
  4654. type="Types__x3A__default_infrastructure:ID_KORESP"
  4655. id="rastructure___d4e41789-1_ID_KORESP_"/>
  4656. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD"
  4657. minOccurs="0"
  4658. id="rastructure___d4e41790-1">
  4659. <xs:annotation>
  4660. <xs:appinfo>
  4661. <system_cache__appinfo:flat_relation_cache>
  4662. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_POM_GEOD"
  4663. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_POM_GEOD/ID"/>
  4664. </system_cache__appinfo:flat_relation_cache>
  4665. </xs:appinfo>
  4666. <xs:documentation>Stwierdzenie, że współrzędne obiektu został zaktualizowane
  4667. oraz są powiązane do dokumentu z operatem</xs:documentation>
  4668. </xs:annotation>
  4669. </xs:element>
  4670. <xs:element name="ID_KORESP_PROTOK_ODB"
  4671. type="Types__x3A__default_infrastructure:ID_KORESP_SET"
  4672. id="rastructure___d4e41797-1_ID_KORESP_"/>
  4673. <xs:element ref="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB"
  4674. minOccurs="1"
  4675. id="rastructure___d4e41798-1">
  4676. <xs:annotation>
  4677. <xs:appinfo>
  4678. <system_cache__appinfo:flat_relation_cache>
  4679. <system_cache__appinfo:source system_cache__appinfo:name="ID_KORESP_PROTOK_ODB"
  4680. system_cache__appinfo:xpath="default_db__x3A__IN7_DZIENNIK_KORESP:ID_KORESP_PROTOK_ODB/ID"/>
  4681. </system_cache__appinfo:flat_relation_cache>
  4682. </xs:appinfo>
  4683. <xs:documentation>Odebranie obiektu przez trójstronny dokument właściciel,
  4684. wykonawca, inwestor</xs:documentation>
  4685. </xs:annotation>
  4686. </xs:element>
  4687. <xs:element name="InvestArrangements_Network_Crossings"
  4688. type="xs:int"
  4689. id="rastructure___d4e41805-1_InvestArra"/>
  4690. <xs:element minOccurs="0"
  4691. ref="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings"
  4692. id="rastructure___d4e41806-1">
  4693. <xs:annotation>
  4694. <xs:appinfo>
  4695. <system_cache__appinfo:flat_relation_cache>
  4696. <system_cache__appinfo:source system_cache__appinfo:name="InvestArrangements_Network_Crossings"
  4697. system_cache__appinfo:xpath="default_db__x3A__InvestArrangements:InvestArrangements_Network_Crossings/ID"/>
  4698. </system_cache__appinfo:flat_relation_cache>
  4699. </xs:appinfo>
  4700. <xs:documentation>To są kolizje powstałe na bazie przecieć z obiektami zaimportowanymi jako mapa d/c projektowych, które stanowią podstawę do uzgodnień. W to też powinny wejść działki</xs:documentation>
  4701. </xs:annotation>
  4702. </xs:element>
  4703. </xs:sequence>
  4704. </xs:restriction>
  4705. </xs:complexContent>
  4706. </xs:complexType>
  4707. </xs:schema>