di.json 138 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124
  1. {
  2. "UANodeSet": {
  3. "xmlns:xsd": "http://www.w3.org/2001/XMLSchema",
  4. "xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
  5. "LastModified": "2019-05-01T00:00:00Z",
  6. "xmlns": "http://opcfoundation.org/UA/2011/03/UANodeSet.xsd",
  7. "NamespaceUris": {
  8. "Uri": "http://opcfoundation.org/UA/DI/"
  9. },
  10. "Models": {
  11. "Model": {
  12. "ModelUri": "http://opcfoundation.org/UA/DI/",
  13. "Version": "1.02",
  14. "PublicationDate": "2019-05-01T00:00:00Z",
  15. "RequiredModel": {
  16. "ModelUri": "http://opcfoundation.org/UA/",
  17. "Version": "1.05",
  18. "PublicationDate": "2019-05-01T00:00:00Z"
  19. }
  20. }
  21. },
  22. "Aliases": {
  23. "Alias": [
  24. {
  25. "Alias": "Boolean",
  26. "$t": "i=1"
  27. },
  28. {
  29. "Alias": "SByte",
  30. "$t": "i=2"
  31. },
  32. {
  33. "Alias": "Byte",
  34. "$t": "i=3"
  35. },
  36. {
  37. "Alias": "Int16",
  38. "$t": "i=4"
  39. },
  40. {
  41. "Alias": "UInt16",
  42. "$t": "i=5"
  43. },
  44. {
  45. "Alias": "Int32",
  46. "$t": "i=6"
  47. },
  48. {
  49. "Alias": "UInt32",
  50. "$t": "i=7"
  51. },
  52. {
  53. "Alias": "Int64",
  54. "$t": "i=8"
  55. },
  56. {
  57. "Alias": "UInt64",
  58. "$t": "i=9"
  59. },
  60. {
  61. "Alias": "Float",
  62. "$t": "i=10"
  63. },
  64. {
  65. "Alias": "Double",
  66. "$t": "i=11"
  67. },
  68. {
  69. "Alias": "DateTime",
  70. "$t": "i=13"
  71. },
  72. {
  73. "Alias": "String",
  74. "$t": "i=12"
  75. },
  76. {
  77. "Alias": "ByteString",
  78. "$t": "i=15"
  79. },
  80. {
  81. "Alias": "Guid",
  82. "$t": "i=14"
  83. },
  84. {
  85. "Alias": "XmlElement",
  86. "$t": "i=16"
  87. },
  88. {
  89. "Alias": "NodeId",
  90. "$t": "i=17"
  91. },
  92. {
  93. "Alias": "ExpandedNodeId",
  94. "$t": "i=18"
  95. },
  96. {
  97. "Alias": "QualifiedName",
  98. "$t": "i=20"
  99. },
  100. {
  101. "Alias": "LocalizedText",
  102. "$t": "i=21"
  103. },
  104. {
  105. "Alias": "StatusCode",
  106. "$t": "i=19"
  107. },
  108. {
  109. "Alias": "Structure",
  110. "$t": "i=22"
  111. },
  112. {
  113. "Alias": "Number",
  114. "$t": "i=26"
  115. },
  116. {
  117. "Alias": "Integer",
  118. "$t": "i=27"
  119. },
  120. {
  121. "Alias": "UInteger",
  122. "$t": "i=28"
  123. },
  124. {
  125. "Alias": "HasComponent",
  126. "$t": "i=47"
  127. },
  128. {
  129. "Alias": "HasProperty",
  130. "$t": "i=46"
  131. },
  132. {
  133. "Alias": "Organizes",
  134. "$t": "i=35"
  135. },
  136. {
  137. "Alias": "HasEventSource",
  138. "$t": "i=36"
  139. },
  140. {
  141. "Alias": "HasNotifier",
  142. "$t": "i=48"
  143. },
  144. {
  145. "Alias": "HasSubtype",
  146. "$t": "i=45"
  147. },
  148. {
  149. "Alias": "HasTypeDefinition",
  150. "$t": "i=40"
  151. },
  152. {
  153. "Alias": "HasModellingRule",
  154. "$t": "i=37"
  155. },
  156. {
  157. "Alias": "HasEncoding",
  158. "$t": "i=38"
  159. },
  160. {
  161. "Alias": "HasDescription",
  162. "$t": "i=39"
  163. }
  164. ]
  165. },
  166. "UAObject": [
  167. {
  168. "NodeId": "ns=1;i=15001",
  169. "BrowseName": "1:http://opcfoundation.org/UA/DI/",
  170. "SymbolicName": "OPCUADINamespaceMetadata",
  171. "DisplayName": "http://opcfoundation.org/UA/DI/",
  172. "References": {
  173. "Reference": [
  174. {
  175. "ReferenceType": "HasProperty",
  176. "$t": "ns=1;i=15002"
  177. },
  178. {
  179. "ReferenceType": "HasProperty",
  180. "$t": "ns=1;i=15003"
  181. },
  182. {
  183. "ReferenceType": "HasProperty",
  184. "$t": "ns=1;i=15004"
  185. },
  186. {
  187. "ReferenceType": "HasProperty",
  188. "$t": "ns=1;i=15005"
  189. },
  190. {
  191. "ReferenceType": "HasProperty",
  192. "$t": "ns=1;i=15006"
  193. },
  194. {
  195. "ReferenceType": "HasProperty",
  196. "$t": "ns=1;i=15007"
  197. },
  198. {
  199. "ReferenceType": "HasProperty",
  200. "$t": "ns=1;i=15008"
  201. },
  202. {
  203. "ReferenceType": "HasProperty",
  204. "$t": "ns=1;i=15031"
  205. },
  206. {
  207. "ReferenceType": "HasProperty",
  208. "$t": "ns=1;i=15032"
  209. },
  210. {
  211. "ReferenceType": "HasProperty",
  212. "$t": "ns=1;i=15033"
  213. },
  214. {
  215. "ReferenceType": "HasComponent",
  216. "IsForward": "false",
  217. "$t": "i=11715"
  218. },
  219. {
  220. "ReferenceType": "HasTypeDefinition",
  221. "$t": "i=11616"
  222. }
  223. ]
  224. }
  225. },
  226. {
  227. "NodeId": "ns=1;i=5001",
  228. "BrowseName": "1:DeviceSet",
  229. "DisplayName": "DeviceSet",
  230. "Description": "Contains all instances of devices",
  231. "References": {
  232. "Reference": [
  233. {
  234. "ReferenceType": "Organizes",
  235. "IsForward": "false",
  236. "$t": "i=85"
  237. },
  238. {
  239. "ReferenceType": "HasTypeDefinition",
  240. "$t": "i=58"
  241. }
  242. ]
  243. }
  244. },
  245. {
  246. "NodeId": "ns=1;i=15034",
  247. "BrowseName": "1:DeviceFeatures",
  248. "DisplayName": "DeviceFeatures",
  249. "References": {
  250. "Reference": [
  251. {
  252. "ReferenceType": "Organizes",
  253. "IsForward": "false",
  254. "$t": "ns=1;i=5001"
  255. },
  256. {
  257. "ReferenceType": "HasTypeDefinition",
  258. "$t": "i=58"
  259. }
  260. ]
  261. }
  262. },
  263. {
  264. "NodeId": "ns=1;i=6078",
  265. "BrowseName": "1:NetworkSet",
  266. "DisplayName": "NetworkSet",
  267. "Description": "Contains all instances of communication networks",
  268. "References": {
  269. "Reference": [
  270. {
  271. "ReferenceType": "Organizes",
  272. "IsForward": "false",
  273. "$t": "i=85"
  274. },
  275. {
  276. "ReferenceType": "HasTypeDefinition",
  277. "$t": "i=58"
  278. }
  279. ]
  280. }
  281. },
  282. {
  283. "NodeId": "ns=1;i=6094",
  284. "BrowseName": "1:DeviceTopology",
  285. "DisplayName": "DeviceTopology",
  286. "Description": "Starting point of the configured device topology.",
  287. "References": {
  288. "Reference": [
  289. {
  290. "ReferenceType": "HasProperty",
  291. "$t": "ns=1;i=6095"
  292. },
  293. {
  294. "ReferenceType": "Organizes",
  295. "IsForward": "false",
  296. "$t": "i=85"
  297. },
  298. {
  299. "ReferenceType": "HasTypeDefinition",
  300. "$t": "i=58"
  301. }
  302. ]
  303. }
  304. },
  305. {
  306. "NodeId": "ns=1;i=5002",
  307. "BrowseName": "1:ParameterSet",
  308. "ParentNodeId": "ns=1;i=1001",
  309. "DisplayName": "ParameterSet",
  310. "Description": "Flat list of Parameters",
  311. "References": {
  312. "Reference": [
  313. {
  314. "ReferenceType": "HasComponent",
  315. "$t": "ns=1;i=6017"
  316. },
  317. {
  318. "ReferenceType": "HasTypeDefinition",
  319. "$t": "i=58"
  320. },
  321. {
  322. "ReferenceType": "HasModellingRule",
  323. "$t": "i=80"
  324. },
  325. {
  326. "ReferenceType": "HasComponent",
  327. "IsForward": "false",
  328. "$t": "ns=1;i=1001"
  329. }
  330. ]
  331. }
  332. },
  333. {
  334. "NodeId": "ns=1;i=5003",
  335. "BrowseName": "1:MethodSet",
  336. "ParentNodeId": "ns=1;i=1001",
  337. "DisplayName": "MethodSet",
  338. "Description": "Flat list of Methods",
  339. "References": {
  340. "Reference": [
  341. {
  342. "ReferenceType": "HasComponent",
  343. "$t": "ns=1;i=6018"
  344. },
  345. {
  346. "ReferenceType": "HasTypeDefinition",
  347. "$t": "i=58"
  348. },
  349. {
  350. "ReferenceType": "HasModellingRule",
  351. "$t": "i=80"
  352. },
  353. {
  354. "ReferenceType": "HasComponent",
  355. "IsForward": "false",
  356. "$t": "ns=1;i=1001"
  357. }
  358. ]
  359. }
  360. },
  361. {
  362. "NodeId": "ns=1;i=6567",
  363. "BrowseName": "1:<GroupIdentifier>",
  364. "SymbolicName": "GroupIdentifier",
  365. "ParentNodeId": "ns=1;i=1001",
  366. "DisplayName": "<GroupIdentifier>",
  367. "Description": "An application specific functional group used to organize parameters and methods.",
  368. "References": {
  369. "Reference": [
  370. {
  371. "ReferenceType": "HasTypeDefinition",
  372. "$t": "ns=1;i=1005"
  373. },
  374. {
  375. "ReferenceType": "HasModellingRule",
  376. "$t": "i=11508"
  377. },
  378. {
  379. "ReferenceType": "HasComponent",
  380. "IsForward": "false",
  381. "$t": "ns=1;i=1001"
  382. }
  383. ]
  384. }
  385. },
  386. {
  387. "NodeId": "ns=1;i=6014",
  388. "BrowseName": "1:Identification",
  389. "ParentNodeId": "ns=1;i=1001",
  390. "DisplayName": "Identification",
  391. "Description": "Used to organize parameters for identification of this TopologyElement",
  392. "References": {
  393. "Reference": [
  394. {
  395. "ReferenceType": "HasTypeDefinition",
  396. "$t": "ns=1;i=1005"
  397. },
  398. {
  399. "ReferenceType": "HasModellingRule",
  400. "$t": "i=80"
  401. },
  402. {
  403. "ReferenceType": "HasComponent",
  404. "IsForward": "false",
  405. "$t": "ns=1;i=1001"
  406. }
  407. ]
  408. }
  409. },
  410. {
  411. "NodeId": "ns=1;i=6161",
  412. "BrowseName": "1:Lock",
  413. "ParentNodeId": "ns=1;i=1001",
  414. "DisplayName": "Lock",
  415. "Description": "Used to lock the topology element.",
  416. "References": {
  417. "Reference": [
  418. {
  419. "ReferenceType": "HasProperty",
  420. "$t": "ns=1;i=6468"
  421. },
  422. {
  423. "ReferenceType": "HasProperty",
  424. "$t": "ns=1;i=6163"
  425. },
  426. {
  427. "ReferenceType": "HasProperty",
  428. "$t": "ns=1;i=6164"
  429. },
  430. {
  431. "ReferenceType": "HasProperty",
  432. "$t": "ns=1;i=6165"
  433. },
  434. {
  435. "ReferenceType": "HasComponent",
  436. "$t": "ns=1;i=6166"
  437. },
  438. {
  439. "ReferenceType": "HasComponent",
  440. "$t": "ns=1;i=6169"
  441. },
  442. {
  443. "ReferenceType": "HasComponent",
  444. "$t": "ns=1;i=6171"
  445. },
  446. {
  447. "ReferenceType": "HasComponent",
  448. "$t": "ns=1;i=6173"
  449. },
  450. {
  451. "ReferenceType": "HasTypeDefinition",
  452. "$t": "ns=1;i=6388"
  453. },
  454. {
  455. "ReferenceType": "HasModellingRule",
  456. "$t": "i=80"
  457. },
  458. {
  459. "ReferenceType": "HasComponent",
  460. "IsForward": "false",
  461. "$t": "ns=1;i=1001"
  462. }
  463. ]
  464. }
  465. },
  466. {
  467. "NodeId": "ns=1;i=15053",
  468. "BrowseName": "1:DeviceHealthAlarms",
  469. "ParentNodeId": "ns=1;i=15051",
  470. "DisplayName": "DeviceHealthAlarms",
  471. "References": {
  472. "Reference": [
  473. {
  474. "ReferenceType": "HasTypeDefinition",
  475. "$t": "i=61"
  476. },
  477. {
  478. "ReferenceType": "HasModellingRule",
  479. "$t": "i=80"
  480. },
  481. {
  482. "ReferenceType": "HasComponent",
  483. "IsForward": "false",
  484. "$t": "ns=1;i=15051"
  485. }
  486. ]
  487. }
  488. },
  489. {
  490. "NodeId": "ns=1;i=15055",
  491. "BrowseName": "1:DeviceTypeImage",
  492. "ParentNodeId": "ns=1;i=15054",
  493. "DisplayName": "DeviceTypeImage",
  494. "References": {
  495. "Reference": [
  496. {
  497. "ReferenceType": "HasComponent",
  498. "$t": "ns=1;i=15056"
  499. },
  500. {
  501. "ReferenceType": "HasTypeDefinition",
  502. "$t": "i=61"
  503. },
  504. {
  505. "ReferenceType": "HasModellingRule",
  506. "$t": "i=80"
  507. },
  508. {
  509. "ReferenceType": "HasComponent",
  510. "IsForward": "false",
  511. "$t": "ns=1;i=15054"
  512. }
  513. ]
  514. }
  515. },
  516. {
  517. "NodeId": "ns=1;i=15057",
  518. "BrowseName": "1:Documentation",
  519. "ParentNodeId": "ns=1;i=15054",
  520. "DisplayName": "Documentation",
  521. "References": {
  522. "Reference": [
  523. {
  524. "ReferenceType": "HasComponent",
  525. "$t": "ns=1;i=15058"
  526. },
  527. {
  528. "ReferenceType": "HasTypeDefinition",
  529. "$t": "i=61"
  530. },
  531. {
  532. "ReferenceType": "HasModellingRule",
  533. "$t": "i=80"
  534. },
  535. {
  536. "ReferenceType": "HasComponent",
  537. "IsForward": "false",
  538. "$t": "ns=1;i=15054"
  539. }
  540. ]
  541. }
  542. },
  543. {
  544. "NodeId": "ns=1;i=15059",
  545. "BrowseName": "1:ProtocolSupport",
  546. "ParentNodeId": "ns=1;i=15054",
  547. "DisplayName": "ProtocolSupport",
  548. "References": {
  549. "Reference": [
  550. {
  551. "ReferenceType": "HasComponent",
  552. "$t": "ns=1;i=15060"
  553. },
  554. {
  555. "ReferenceType": "HasTypeDefinition",
  556. "$t": "i=61"
  557. },
  558. {
  559. "ReferenceType": "HasModellingRule",
  560. "$t": "i=80"
  561. },
  562. {
  563. "ReferenceType": "HasComponent",
  564. "IsForward": "false",
  565. "$t": "ns=1;i=15054"
  566. }
  567. ]
  568. }
  569. },
  570. {
  571. "NodeId": "ns=1;i=15061",
  572. "BrowseName": "1:ImageSet",
  573. "ParentNodeId": "ns=1;i=15054",
  574. "DisplayName": "ImageSet",
  575. "References": {
  576. "Reference": [
  577. {
  578. "ReferenceType": "HasComponent",
  579. "$t": "ns=1;i=15062"
  580. },
  581. {
  582. "ReferenceType": "HasTypeDefinition",
  583. "$t": "i=61"
  584. },
  585. {
  586. "ReferenceType": "HasModellingRule",
  587. "$t": "i=80"
  588. },
  589. {
  590. "ReferenceType": "HasComponent",
  591. "IsForward": "false",
  592. "$t": "ns=1;i=15054"
  593. }
  594. ]
  595. }
  596. },
  597. {
  598. "NodeId": "ns=1;i=6571",
  599. "BrowseName": "1:<CPIdentifier>",
  600. "SymbolicName": "CPIdentifier",
  601. "ParentNodeId": "ns=1;i=1002",
  602. "DisplayName": "<CPIdentifier>",
  603. "References": {
  604. "Reference": [
  605. {
  606. "ReferenceType": "HasComponent",
  607. "$t": "ns=1;i=6592"
  608. },
  609. {
  610. "ReferenceType": "HasTypeDefinition",
  611. "$t": "ns=1;i=6308"
  612. },
  613. {
  614. "ReferenceType": "HasModellingRule",
  615. "$t": "i=11508"
  616. },
  617. {
  618. "ReferenceType": "HasComponent",
  619. "IsForward": "false",
  620. "$t": "ns=1;i=1002"
  621. }
  622. ]
  623. }
  624. },
  625. {
  626. "NodeId": "ns=1;i=6592",
  627. "BrowseName": "1:NetworkAddress",
  628. "ParentNodeId": "ns=1;i=6571",
  629. "DisplayName": "NetworkAddress",
  630. "Description": "The address of the device on this network.",
  631. "References": {
  632. "Reference": [
  633. {
  634. "ReferenceType": "HasTypeDefinition",
  635. "$t": "ns=1;i=1005"
  636. },
  637. {
  638. "ReferenceType": "HasModellingRule",
  639. "$t": "i=78"
  640. },
  641. {
  642. "ReferenceType": "HasComponent",
  643. "IsForward": "false",
  644. "$t": "ns=1;i=6571"
  645. }
  646. ]
  647. }
  648. },
  649. {
  650. "NodeId": "ns=1;i=15105",
  651. "BrowseName": "1:DeviceHealthAlarms",
  652. "ParentNodeId": "ns=1;i=1002",
  653. "DisplayName": "DeviceHealthAlarms",
  654. "References": {
  655. "Reference": [
  656. {
  657. "ReferenceType": "HasTypeDefinition",
  658. "$t": "i=61"
  659. },
  660. {
  661. "ReferenceType": "HasModellingRule",
  662. "$t": "i=80"
  663. },
  664. {
  665. "ReferenceType": "HasComponent",
  666. "IsForward": "false",
  667. "$t": "ns=1;i=1002"
  668. }
  669. ]
  670. }
  671. },
  672. {
  673. "NodeId": "ns=1;i=6209",
  674. "BrowseName": "1:DeviceTypeImage",
  675. "ParentNodeId": "ns=1;i=1002",
  676. "DisplayName": "DeviceTypeImage",
  677. "Description": "Organizes pictures of the device.",
  678. "References": {
  679. "Reference": [
  680. {
  681. "ReferenceType": "HasComponent",
  682. "$t": "ns=1;i=6210"
  683. },
  684. {
  685. "ReferenceType": "HasTypeDefinition",
  686. "$t": "i=61"
  687. },
  688. {
  689. "ReferenceType": "HasModellingRule",
  690. "$t": "i=80"
  691. },
  692. {
  693. "ReferenceType": "HasComponent",
  694. "IsForward": "false",
  695. "$t": "ns=1;i=1002"
  696. }
  697. ]
  698. }
  699. },
  700. {
  701. "NodeId": "ns=1;i=6211",
  702. "BrowseName": "1:Documentation",
  703. "ParentNodeId": "ns=1;i=1002",
  704. "DisplayName": "Documentation",
  705. "Description": "Organizes documents for the device.",
  706. "References": {
  707. "Reference": [
  708. {
  709. "ReferenceType": "HasComponent",
  710. "$t": "ns=1;i=6212"
  711. },
  712. {
  713. "ReferenceType": "HasTypeDefinition",
  714. "$t": "i=61"
  715. },
  716. {
  717. "ReferenceType": "HasModellingRule",
  718. "$t": "i=80"
  719. },
  720. {
  721. "ReferenceType": "HasComponent",
  722. "IsForward": "false",
  723. "$t": "ns=1;i=1002"
  724. }
  725. ]
  726. }
  727. },
  728. {
  729. "NodeId": "ns=1;i=6213",
  730. "BrowseName": "1:ProtocolSupport",
  731. "ParentNodeId": "ns=1;i=1002",
  732. "DisplayName": "ProtocolSupport",
  733. "Description": "Protocol-specific files for the device.",
  734. "References": {
  735. "Reference": [
  736. {
  737. "ReferenceType": "HasComponent",
  738. "$t": "ns=1;i=6214"
  739. },
  740. {
  741. "ReferenceType": "HasTypeDefinition",
  742. "$t": "i=61"
  743. },
  744. {
  745. "ReferenceType": "HasModellingRule",
  746. "$t": "i=80"
  747. },
  748. {
  749. "ReferenceType": "HasComponent",
  750. "IsForward": "false",
  751. "$t": "ns=1;i=1002"
  752. }
  753. ]
  754. }
  755. },
  756. {
  757. "NodeId": "ns=1;i=6215",
  758. "BrowseName": "1:ImageSet",
  759. "ParentNodeId": "ns=1;i=1002",
  760. "DisplayName": "ImageSet",
  761. "Description": "Organizes images that are used within UIElements.",
  762. "References": {
  763. "Reference": [
  764. {
  765. "ReferenceType": "HasComponent",
  766. "$t": "ns=1;i=6216"
  767. },
  768. {
  769. "ReferenceType": "HasTypeDefinition",
  770. "$t": "i=61"
  771. },
  772. {
  773. "ReferenceType": "HasModellingRule",
  774. "$t": "i=80"
  775. },
  776. {
  777. "ReferenceType": "HasComponent",
  778. "IsForward": "false",
  779. "$t": "ns=1;i=1002"
  780. }
  781. ]
  782. }
  783. },
  784. {
  785. "NodeId": "ns=1;i=5004",
  786. "BrowseName": "1:SupportedTypes",
  787. "ParentNodeId": "ns=1;i=1004",
  788. "DisplayName": "SupportedTypes",
  789. "Description": "Folder maintaining the set of (sub-types of) BaseObjectTypes that can be instantiated in the ConfigurableComponent",
  790. "References": {
  791. "Reference": [
  792. {
  793. "ReferenceType": "HasTypeDefinition",
  794. "$t": "i=61"
  795. },
  796. {
  797. "ReferenceType": "HasModellingRule",
  798. "$t": "i=78"
  799. },
  800. {
  801. "ReferenceType": "HasComponent",
  802. "IsForward": "false",
  803. "$t": "ns=1;i=1004"
  804. }
  805. ]
  806. }
  807. },
  808. {
  809. "NodeId": "ns=1;i=6026",
  810. "BrowseName": "1:<ObjectIdentifier>",
  811. "SymbolicName": "ObjectIdentifier",
  812. "ParentNodeId": "ns=1;i=1004",
  813. "DisplayName": "<ObjectIdentifier>",
  814. "References": {
  815. "Reference": [
  816. {
  817. "ReferenceType": "HasTypeDefinition",
  818. "$t": "i=58"
  819. },
  820. {
  821. "ReferenceType": "HasModellingRule",
  822. "$t": "i=11508"
  823. },
  824. {
  825. "ReferenceType": "HasComponent",
  826. "IsForward": "false",
  827. "$t": "ns=1;i=1004"
  828. }
  829. ]
  830. }
  831. },
  832. {
  833. "NodeId": "ns=1;i=6027",
  834. "BrowseName": "1:<GroupIdentifier>",
  835. "SymbolicName": "GroupIdentifier",
  836. "ParentNodeId": "ns=1;i=1005",
  837. "DisplayName": "<GroupIdentifier>",
  838. "Description": "An application specific functional group used to organize parameters and methods.",
  839. "References": {
  840. "Reference": [
  841. {
  842. "ReferenceType": "HasComponent",
  843. "$t": "ns=1;i=6242"
  844. },
  845. {
  846. "ReferenceType": "HasTypeDefinition",
  847. "$t": "ns=1;i=1005"
  848. },
  849. {
  850. "ReferenceType": "HasModellingRule",
  851. "$t": "i=11508"
  852. },
  853. {
  854. "ReferenceType": "HasComponent",
  855. "IsForward": "false",
  856. "$t": "ns=1;i=1005"
  857. }
  858. ]
  859. }
  860. },
  861. {
  862. "NodeId": "ns=1;i=6596",
  863. "BrowseName": "1:<ProfileIdentifier>",
  864. "SymbolicName": "ProfileIdentifier",
  865. "ParentNodeId": "ns=1;i=6247",
  866. "DisplayName": "<ProfileIdentifier>",
  867. "References": {
  868. "Reference": [
  869. {
  870. "ReferenceType": "HasTypeDefinition",
  871. "$t": "ns=1;i=1006"
  872. },
  873. {
  874. "ReferenceType": "HasModellingRule",
  875. "$t": "i=11510"
  876. },
  877. {
  878. "ReferenceType": "HasComponent",
  879. "IsForward": "false",
  880. "$t": "ns=1;i=6247"
  881. }
  882. ]
  883. }
  884. },
  885. {
  886. "NodeId": "ns=1;i=6248",
  887. "BrowseName": "1:<CPIdentifier>",
  888. "SymbolicName": "CPIdentifier",
  889. "ParentNodeId": "ns=1;i=6247",
  890. "DisplayName": "<CPIdentifier>",
  891. "Description": "The ConnectionPoint(s) that have been configured for this Network.",
  892. "References": {
  893. "Reference": [
  894. {
  895. "ReferenceType": "HasComponent",
  896. "$t": "ns=1;i=6292"
  897. },
  898. {
  899. "ReferenceType": "HasTypeDefinition",
  900. "$t": "ns=1;i=6308"
  901. },
  902. {
  903. "ReferenceType": "HasModellingRule",
  904. "$t": "i=11508"
  905. },
  906. {
  907. "ReferenceType": "ns=1;i=6030",
  908. "IsForward": "false",
  909. "$t": "ns=1;i=6247"
  910. }
  911. ]
  912. }
  913. },
  914. {
  915. "NodeId": "ns=1;i=6292",
  916. "BrowseName": "1:NetworkAddress",
  917. "ParentNodeId": "ns=1;i=6248",
  918. "DisplayName": "NetworkAddress",
  919. "Description": "The address of the device on this network.",
  920. "References": {
  921. "Reference": [
  922. {
  923. "ReferenceType": "HasTypeDefinition",
  924. "$t": "ns=1;i=1005"
  925. },
  926. {
  927. "ReferenceType": "HasModellingRule",
  928. "$t": "i=78"
  929. },
  930. {
  931. "ReferenceType": "HasComponent",
  932. "IsForward": "false",
  933. "$t": "ns=1;i=6248"
  934. }
  935. ]
  936. }
  937. },
  938. {
  939. "NodeId": "ns=1;i=6294",
  940. "BrowseName": "1:Lock",
  941. "ParentNodeId": "ns=1;i=6247",
  942. "DisplayName": "Lock",
  943. "Description": "Used to lock the Network.",
  944. "References": {
  945. "Reference": [
  946. {
  947. "ReferenceType": "HasProperty",
  948. "$t": "ns=1;i=6497"
  949. },
  950. {
  951. "ReferenceType": "HasProperty",
  952. "$t": "ns=1;i=6296"
  953. },
  954. {
  955. "ReferenceType": "HasProperty",
  956. "$t": "ns=1;i=6297"
  957. },
  958. {
  959. "ReferenceType": "HasProperty",
  960. "$t": "ns=1;i=6298"
  961. },
  962. {
  963. "ReferenceType": "HasComponent",
  964. "$t": "ns=1;i=6299"
  965. },
  966. {
  967. "ReferenceType": "HasComponent",
  968. "$t": "ns=1;i=6302"
  969. },
  970. {
  971. "ReferenceType": "HasComponent",
  972. "$t": "ns=1;i=6304"
  973. },
  974. {
  975. "ReferenceType": "HasComponent",
  976. "$t": "ns=1;i=6306"
  977. },
  978. {
  979. "ReferenceType": "HasTypeDefinition",
  980. "$t": "ns=1;i=6388"
  981. },
  982. {
  983. "ReferenceType": "HasModellingRule",
  984. "$t": "i=80"
  985. },
  986. {
  987. "ReferenceType": "HasComponent",
  988. "IsForward": "false",
  989. "$t": "ns=1;i=6247"
  990. }
  991. ]
  992. }
  993. },
  994. {
  995. "NodeId": "ns=1;i=6354",
  996. "BrowseName": "1:NetworkAddress",
  997. "ParentNodeId": "ns=1;i=6308",
  998. "DisplayName": "NetworkAddress",
  999. "Description": "The address of the device on this network.",
  1000. "References": {
  1001. "Reference": [
  1002. {
  1003. "ReferenceType": "HasTypeDefinition",
  1004. "$t": "ns=1;i=1005"
  1005. },
  1006. {
  1007. "ReferenceType": "HasModellingRule",
  1008. "$t": "i=78"
  1009. },
  1010. {
  1011. "ReferenceType": "HasComponent",
  1012. "IsForward": "false",
  1013. "$t": "ns=1;i=6308"
  1014. }
  1015. ]
  1016. }
  1017. },
  1018. {
  1019. "NodeId": "ns=1;i=6499",
  1020. "BrowseName": "1:<ProfileIdentifier>",
  1021. "SymbolicName": "ProfileIdentifier",
  1022. "ParentNodeId": "ns=1;i=6308",
  1023. "DisplayName": "<ProfileIdentifier>",
  1024. "References": {
  1025. "Reference": [
  1026. {
  1027. "ReferenceType": "HasTypeDefinition",
  1028. "$t": "ns=1;i=1006"
  1029. },
  1030. {
  1031. "ReferenceType": "HasModellingRule",
  1032. "$t": "i=11510"
  1033. },
  1034. {
  1035. "ReferenceType": "HasComponent",
  1036. "IsForward": "false",
  1037. "$t": "ns=1;i=6308"
  1038. }
  1039. ]
  1040. }
  1041. },
  1042. {
  1043. "NodeId": "ns=1;i=6599",
  1044. "BrowseName": "1:<NetworkIdentifier>",
  1045. "SymbolicName": "NetworkIdentifier",
  1046. "ParentNodeId": "ns=1;i=6308",
  1047. "DisplayName": "<NetworkIdentifier>",
  1048. "References": {
  1049. "Reference": [
  1050. {
  1051. "ReferenceType": "HasTypeDefinition",
  1052. "$t": "ns=1;i=6247"
  1053. },
  1054. {
  1055. "ReferenceType": "HasModellingRule",
  1056. "$t": "i=11508"
  1057. },
  1058. {
  1059. "ReferenceType": "ns=1;i=6030",
  1060. "IsForward": "false",
  1061. "$t": "ns=1;i=6308"
  1062. }
  1063. ]
  1064. }
  1065. },
  1066. {
  1067. "NodeId": "ns=1;i=6551",
  1068. "BrowseName": "Default Binary",
  1069. "SymbolicName": "DefaultBinary",
  1070. "DisplayName": "Default Binary",
  1071. "References": {
  1072. "Reference": [
  1073. {
  1074. "ReferenceType": "HasEncoding",
  1075. "IsForward": "false",
  1076. "$t": "ns=1;i=6522"
  1077. },
  1078. {
  1079. "ReferenceType": "HasDescription",
  1080. "$t": "ns=1;i=6555"
  1081. },
  1082. {
  1083. "ReferenceType": "HasTypeDefinition",
  1084. "$t": "i=76"
  1085. }
  1086. ]
  1087. }
  1088. },
  1089. {
  1090. "NodeId": "ns=1;i=15891",
  1091. "BrowseName": "Default Binary",
  1092. "SymbolicName": "DefaultBinary",
  1093. "DisplayName": "Default Binary",
  1094. "References": {
  1095. "Reference": [
  1096. {
  1097. "ReferenceType": "HasEncoding",
  1098. "IsForward": "false",
  1099. "$t": "ns=1;i=15888"
  1100. },
  1101. {
  1102. "ReferenceType": "HasDescription",
  1103. "$t": "ns=1;i=15894"
  1104. },
  1105. {
  1106. "ReferenceType": "HasTypeDefinition",
  1107. "$t": "i=76"
  1108. }
  1109. ]
  1110. }
  1111. },
  1112. {
  1113. "NodeId": "ns=1;i=15892",
  1114. "BrowseName": "Default Binary",
  1115. "SymbolicName": "DefaultBinary",
  1116. "DisplayName": "Default Binary",
  1117. "References": {
  1118. "Reference": [
  1119. {
  1120. "ReferenceType": "HasEncoding",
  1121. "IsForward": "false",
  1122. "$t": "ns=1;i=15889"
  1123. },
  1124. {
  1125. "ReferenceType": "HasDescription",
  1126. "$t": "ns=1;i=15897"
  1127. },
  1128. {
  1129. "ReferenceType": "HasTypeDefinition",
  1130. "$t": "i=76"
  1131. }
  1132. ]
  1133. }
  1134. },
  1135. {
  1136. "NodeId": "ns=1;i=6554",
  1137. "BrowseName": "Default Binary",
  1138. "SymbolicName": "DefaultBinary",
  1139. "DisplayName": "Default Binary",
  1140. "References": {
  1141. "Reference": [
  1142. {
  1143. "ReferenceType": "HasEncoding",
  1144. "IsForward": "false",
  1145. "$t": "ns=1;i=6525"
  1146. },
  1147. {
  1148. "ReferenceType": "HasDescription",
  1149. "$t": "ns=1;i=6564"
  1150. },
  1151. {
  1152. "ReferenceType": "HasTypeDefinition",
  1153. "$t": "i=76"
  1154. }
  1155. ]
  1156. }
  1157. },
  1158. {
  1159. "NodeId": "ns=1;i=6535",
  1160. "BrowseName": "Default XML",
  1161. "SymbolicName": "DefaultXml",
  1162. "DisplayName": "Default XML",
  1163. "References": {
  1164. "Reference": [
  1165. {
  1166. "ReferenceType": "HasEncoding",
  1167. "IsForward": "false",
  1168. "$t": "ns=1;i=6522"
  1169. },
  1170. {
  1171. "ReferenceType": "HasDescription",
  1172. "$t": "ns=1;i=6539"
  1173. },
  1174. {
  1175. "ReferenceType": "HasTypeDefinition",
  1176. "$t": "i=76"
  1177. }
  1178. ]
  1179. }
  1180. },
  1181. {
  1182. "NodeId": "ns=1;i=15900",
  1183. "BrowseName": "Default XML",
  1184. "SymbolicName": "DefaultXml",
  1185. "DisplayName": "Default XML",
  1186. "References": {
  1187. "Reference": [
  1188. {
  1189. "ReferenceType": "HasEncoding",
  1190. "IsForward": "false",
  1191. "$t": "ns=1;i=15888"
  1192. },
  1193. {
  1194. "ReferenceType": "HasDescription",
  1195. "$t": "ns=1;i=15903"
  1196. },
  1197. {
  1198. "ReferenceType": "HasTypeDefinition",
  1199. "$t": "i=76"
  1200. }
  1201. ]
  1202. }
  1203. },
  1204. {
  1205. "NodeId": "ns=1;i=15901",
  1206. "BrowseName": "Default XML",
  1207. "SymbolicName": "DefaultXml",
  1208. "DisplayName": "Default XML",
  1209. "References": {
  1210. "Reference": [
  1211. {
  1212. "ReferenceType": "HasEncoding",
  1213. "IsForward": "false",
  1214. "$t": "ns=1;i=15889"
  1215. },
  1216. {
  1217. "ReferenceType": "HasDescription",
  1218. "$t": "ns=1;i=15906"
  1219. },
  1220. {
  1221. "ReferenceType": "HasTypeDefinition",
  1222. "$t": "i=76"
  1223. }
  1224. ]
  1225. }
  1226. },
  1227. {
  1228. "NodeId": "ns=1;i=6538",
  1229. "BrowseName": "Default XML",
  1230. "SymbolicName": "DefaultXml",
  1231. "DisplayName": "Default XML",
  1232. "References": {
  1233. "Reference": [
  1234. {
  1235. "ReferenceType": "HasEncoding",
  1236. "IsForward": "false",
  1237. "$t": "ns=1;i=6525"
  1238. },
  1239. {
  1240. "ReferenceType": "HasDescription",
  1241. "$t": "ns=1;i=6548"
  1242. },
  1243. {
  1244. "ReferenceType": "HasTypeDefinition",
  1245. "$t": "i=76"
  1246. }
  1247. ]
  1248. }
  1249. },
  1250. {
  1251. "NodeId": "ns=1;i=15909",
  1252. "BrowseName": "Default JSON",
  1253. "SymbolicName": "DefaultJson",
  1254. "DisplayName": "Default JSON",
  1255. "References": {
  1256. "Reference": [
  1257. {
  1258. "ReferenceType": "HasEncoding",
  1259. "IsForward": "false",
  1260. "$t": "ns=1;i=6522"
  1261. },
  1262. {
  1263. "ReferenceType": "HasTypeDefinition",
  1264. "$t": "i=76"
  1265. }
  1266. ]
  1267. }
  1268. },
  1269. {
  1270. "NodeId": "ns=1;i=15910",
  1271. "BrowseName": "Default JSON",
  1272. "SymbolicName": "DefaultJson",
  1273. "DisplayName": "Default JSON",
  1274. "References": {
  1275. "Reference": [
  1276. {
  1277. "ReferenceType": "HasEncoding",
  1278. "IsForward": "false",
  1279. "$t": "ns=1;i=15888"
  1280. },
  1281. {
  1282. "ReferenceType": "HasTypeDefinition",
  1283. "$t": "i=76"
  1284. }
  1285. ]
  1286. }
  1287. },
  1288. {
  1289. "NodeId": "ns=1;i=15911",
  1290. "BrowseName": "Default JSON",
  1291. "SymbolicName": "DefaultJson",
  1292. "DisplayName": "Default JSON",
  1293. "References": {
  1294. "Reference": [
  1295. {
  1296. "ReferenceType": "HasEncoding",
  1297. "IsForward": "false",
  1298. "$t": "ns=1;i=15889"
  1299. },
  1300. {
  1301. "ReferenceType": "HasTypeDefinition",
  1302. "$t": "i=76"
  1303. }
  1304. ]
  1305. }
  1306. },
  1307. {
  1308. "NodeId": "ns=1;i=15912",
  1309. "BrowseName": "Default JSON",
  1310. "SymbolicName": "DefaultJson",
  1311. "DisplayName": "Default JSON",
  1312. "References": {
  1313. "Reference": [
  1314. {
  1315. "ReferenceType": "HasEncoding",
  1316. "IsForward": "false",
  1317. "$t": "ns=1;i=6525"
  1318. },
  1319. {
  1320. "ReferenceType": "HasTypeDefinition",
  1321. "$t": "i=76"
  1322. }
  1323. ]
  1324. }
  1325. }
  1326. ],
  1327. "UAVariable": [
  1328. {
  1329. "NodeId": "ns=1;i=15002",
  1330. "BrowseName": "NamespaceUri",
  1331. "ParentNodeId": "ns=1;i=15001",
  1332. "DataType": "String",
  1333. "DisplayName": "NamespaceUri",
  1334. "References": {
  1335. "Reference": [
  1336. {
  1337. "ReferenceType": "HasTypeDefinition",
  1338. "$t": "i=68"
  1339. },
  1340. {
  1341. "ReferenceType": "HasProperty",
  1342. "IsForward": "false",
  1343. "$t": "ns=1;i=15001"
  1344. }
  1345. ]
  1346. },
  1347. "Value": {
  1348. "String": {
  1349. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1350. "$t": "http://opcfoundation.org/UA/DI/"
  1351. }
  1352. }
  1353. },
  1354. {
  1355. "NodeId": "ns=1;i=15003",
  1356. "BrowseName": "NamespaceVersion",
  1357. "ParentNodeId": "ns=1;i=15001",
  1358. "DataType": "String",
  1359. "DisplayName": "NamespaceVersion",
  1360. "References": {
  1361. "Reference": [
  1362. {
  1363. "ReferenceType": "HasTypeDefinition",
  1364. "$t": "i=68"
  1365. },
  1366. {
  1367. "ReferenceType": "HasProperty",
  1368. "IsForward": "false",
  1369. "$t": "ns=1;i=15001"
  1370. }
  1371. ]
  1372. },
  1373. "Value": {
  1374. "String": {
  1375. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1376. "$t": "1.02"
  1377. }
  1378. }
  1379. },
  1380. {
  1381. "NodeId": "ns=1;i=15004",
  1382. "BrowseName": "NamespacePublicationDate",
  1383. "ParentNodeId": "ns=1;i=15001",
  1384. "DataType": "DateTime",
  1385. "DisplayName": "NamespacePublicationDate",
  1386. "References": {
  1387. "Reference": [
  1388. {
  1389. "ReferenceType": "HasTypeDefinition",
  1390. "$t": "i=68"
  1391. },
  1392. {
  1393. "ReferenceType": "HasProperty",
  1394. "IsForward": "false",
  1395. "$t": "ns=1;i=15001"
  1396. }
  1397. ]
  1398. },
  1399. "Value": {
  1400. "DateTime": {
  1401. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1402. "$t": "2019-05-01T00:00:00Z"
  1403. }
  1404. }
  1405. },
  1406. {
  1407. "NodeId": "ns=1;i=15005",
  1408. "BrowseName": "IsNamespaceSubset",
  1409. "ParentNodeId": "ns=1;i=15001",
  1410. "DataType": "Boolean",
  1411. "DisplayName": "IsNamespaceSubset",
  1412. "References": {
  1413. "Reference": [
  1414. {
  1415. "ReferenceType": "HasTypeDefinition",
  1416. "$t": "i=68"
  1417. },
  1418. {
  1419. "ReferenceType": "HasProperty",
  1420. "IsForward": "false",
  1421. "$t": "ns=1;i=15001"
  1422. }
  1423. ]
  1424. },
  1425. "Value": {
  1426. "Boolean": {
  1427. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1428. "$t": "false"
  1429. }
  1430. }
  1431. },
  1432. {
  1433. "NodeId": "ns=1;i=15006",
  1434. "BrowseName": "StaticNodeIdTypes",
  1435. "ParentNodeId": "ns=1;i=15001",
  1436. "DataType": "i=256",
  1437. "ValueRank": "1",
  1438. "ArrayDimensions": "0",
  1439. "DisplayName": "StaticNodeIdTypes",
  1440. "References": {
  1441. "Reference": [
  1442. {
  1443. "ReferenceType": "HasTypeDefinition",
  1444. "$t": "i=68"
  1445. },
  1446. {
  1447. "ReferenceType": "HasProperty",
  1448. "IsForward": "false",
  1449. "$t": "ns=1;i=15001"
  1450. }
  1451. ]
  1452. },
  1453. "Value": {
  1454. "ListOfInt32": {
  1455. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1456. "Int32": "0"
  1457. }
  1458. }
  1459. },
  1460. {
  1461. "NodeId": "ns=1;i=15007",
  1462. "BrowseName": "StaticNumericNodeIdRange",
  1463. "ParentNodeId": "ns=1;i=15001",
  1464. "DataType": "i=291",
  1465. "ValueRank": "1",
  1466. "ArrayDimensions": "0",
  1467. "DisplayName": "StaticNumericNodeIdRange",
  1468. "References": {
  1469. "Reference": [
  1470. {
  1471. "ReferenceType": "HasTypeDefinition",
  1472. "$t": "i=68"
  1473. },
  1474. {
  1475. "ReferenceType": "HasProperty",
  1476. "IsForward": "false",
  1477. "$t": "ns=1;i=15001"
  1478. }
  1479. ]
  1480. },
  1481. "Value": {
  1482. "ListOfString": {
  1483. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1484. "String": "1:65535"
  1485. }
  1486. }
  1487. },
  1488. {
  1489. "NodeId": "ns=1;i=15008",
  1490. "BrowseName": "StaticStringNodeIdPattern",
  1491. "ParentNodeId": "ns=1;i=15001",
  1492. "DataType": "String",
  1493. "DisplayName": "StaticStringNodeIdPattern",
  1494. "References": {
  1495. "Reference": [
  1496. {
  1497. "ReferenceType": "HasTypeDefinition",
  1498. "$t": "i=68"
  1499. },
  1500. {
  1501. "ReferenceType": "HasProperty",
  1502. "IsForward": "false",
  1503. "$t": "ns=1;i=15001"
  1504. }
  1505. ]
  1506. },
  1507. "Value": {
  1508. "String": {
  1509. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1510. "$t": ""
  1511. }
  1512. }
  1513. },
  1514. {
  1515. "NodeId": "ns=1;i=15031",
  1516. "BrowseName": "DefaultRolePermissions",
  1517. "ParentNodeId": "ns=1;i=15001",
  1518. "DataType": "i=96",
  1519. "ValueRank": "1",
  1520. "ArrayDimensions": "0",
  1521. "DisplayName": "DefaultRolePermissions",
  1522. "References": {
  1523. "Reference": [
  1524. {
  1525. "ReferenceType": "HasTypeDefinition",
  1526. "$t": "i=68"
  1527. },
  1528. {
  1529. "ReferenceType": "HasProperty",
  1530. "IsForward": "false",
  1531. "$t": "ns=1;i=15001"
  1532. }
  1533. ]
  1534. }
  1535. },
  1536. {
  1537. "NodeId": "ns=1;i=15032",
  1538. "BrowseName": "DefaultUserRolePermissions",
  1539. "ParentNodeId": "ns=1;i=15001",
  1540. "DataType": "i=96",
  1541. "ValueRank": "1",
  1542. "ArrayDimensions": "0",
  1543. "DisplayName": "DefaultUserRolePermissions",
  1544. "References": {
  1545. "Reference": [
  1546. {
  1547. "ReferenceType": "HasTypeDefinition",
  1548. "$t": "i=68"
  1549. },
  1550. {
  1551. "ReferenceType": "HasProperty",
  1552. "IsForward": "false",
  1553. "$t": "ns=1;i=15001"
  1554. }
  1555. ]
  1556. }
  1557. },
  1558. {
  1559. "NodeId": "ns=1;i=15033",
  1560. "BrowseName": "DefaultAccessRestrictions",
  1561. "ParentNodeId": "ns=1;i=15001",
  1562. "DataType": "i=95",
  1563. "DisplayName": "DefaultAccessRestrictions",
  1564. "References": {
  1565. "Reference": [
  1566. {
  1567. "ReferenceType": "HasTypeDefinition",
  1568. "$t": "i=68"
  1569. },
  1570. {
  1571. "ReferenceType": "HasProperty",
  1572. "IsForward": "false",
  1573. "$t": "ns=1;i=15001"
  1574. }
  1575. ]
  1576. }
  1577. },
  1578. {
  1579. "NodeId": "ns=1;i=6095",
  1580. "BrowseName": "1:OnlineAccess",
  1581. "ParentNodeId": "ns=1;i=6094",
  1582. "DataType": "Boolean",
  1583. "DisplayName": "OnlineAccess",
  1584. "Description": "Hint of whether the Server is currently able to communicate to Devices in the topology.",
  1585. "References": {
  1586. "Reference": [
  1587. {
  1588. "ReferenceType": "HasTypeDefinition",
  1589. "$t": "i=68"
  1590. },
  1591. {
  1592. "ReferenceType": "HasProperty",
  1593. "IsForward": "false",
  1594. "$t": "ns=1;i=6094"
  1595. }
  1596. ]
  1597. }
  1598. },
  1599. {
  1600. "NodeId": "ns=1;i=6017",
  1601. "BrowseName": "1:<ParameterIdentifier>",
  1602. "SymbolicName": "ParameterIdentifier",
  1603. "ParentNodeId": "ns=1;i=5002",
  1604. "DisplayName": "<ParameterIdentifier>",
  1605. "Description": "A parameter which belongs to the topology element.",
  1606. "References": {
  1607. "Reference": [
  1608. {
  1609. "ReferenceType": "HasTypeDefinition",
  1610. "$t": "i=63"
  1611. },
  1612. {
  1613. "ReferenceType": "HasModellingRule",
  1614. "$t": "i=11510"
  1615. },
  1616. {
  1617. "ReferenceType": "HasComponent",
  1618. "IsForward": "false",
  1619. "$t": "ns=1;i=5002"
  1620. }
  1621. ]
  1622. }
  1623. },
  1624. {
  1625. "NodeId": "ns=1;i=6468",
  1626. "BrowseName": "1:Locked",
  1627. "ParentNodeId": "ns=1;i=6161",
  1628. "DataType": "Boolean",
  1629. "DisplayName": "Locked",
  1630. "References": {
  1631. "Reference": [
  1632. {
  1633. "ReferenceType": "HasTypeDefinition",
  1634. "$t": "i=68"
  1635. },
  1636. {
  1637. "ReferenceType": "HasModellingRule",
  1638. "$t": "i=78"
  1639. },
  1640. {
  1641. "ReferenceType": "HasProperty",
  1642. "IsForward": "false",
  1643. "$t": "ns=1;i=6161"
  1644. }
  1645. ]
  1646. }
  1647. },
  1648. {
  1649. "NodeId": "ns=1;i=6163",
  1650. "BrowseName": "1:LockingClient",
  1651. "ParentNodeId": "ns=1;i=6161",
  1652. "DataType": "String",
  1653. "DisplayName": "LockingClient",
  1654. "References": {
  1655. "Reference": [
  1656. {
  1657. "ReferenceType": "HasTypeDefinition",
  1658. "$t": "i=68"
  1659. },
  1660. {
  1661. "ReferenceType": "HasModellingRule",
  1662. "$t": "i=78"
  1663. },
  1664. {
  1665. "ReferenceType": "HasProperty",
  1666. "IsForward": "false",
  1667. "$t": "ns=1;i=6161"
  1668. }
  1669. ]
  1670. }
  1671. },
  1672. {
  1673. "NodeId": "ns=1;i=6164",
  1674. "BrowseName": "1:LockingUser",
  1675. "ParentNodeId": "ns=1;i=6161",
  1676. "DataType": "String",
  1677. "DisplayName": "LockingUser",
  1678. "References": {
  1679. "Reference": [
  1680. {
  1681. "ReferenceType": "HasTypeDefinition",
  1682. "$t": "i=68"
  1683. },
  1684. {
  1685. "ReferenceType": "HasModellingRule",
  1686. "$t": "i=78"
  1687. },
  1688. {
  1689. "ReferenceType": "HasProperty",
  1690. "IsForward": "false",
  1691. "$t": "ns=1;i=6161"
  1692. }
  1693. ]
  1694. }
  1695. },
  1696. {
  1697. "NodeId": "ns=1;i=6165",
  1698. "BrowseName": "1:RemainingLockTime",
  1699. "ParentNodeId": "ns=1;i=6161",
  1700. "DataType": "i=290",
  1701. "DisplayName": "RemainingLockTime",
  1702. "References": {
  1703. "Reference": [
  1704. {
  1705. "ReferenceType": "HasTypeDefinition",
  1706. "$t": "i=68"
  1707. },
  1708. {
  1709. "ReferenceType": "HasModellingRule",
  1710. "$t": "i=78"
  1711. },
  1712. {
  1713. "ReferenceType": "HasProperty",
  1714. "IsForward": "false",
  1715. "$t": "ns=1;i=6161"
  1716. }
  1717. ]
  1718. }
  1719. },
  1720. {
  1721. "NodeId": "ns=1;i=6167",
  1722. "BrowseName": "InputArguments",
  1723. "ParentNodeId": "ns=1;i=6166",
  1724. "DataType": "i=296",
  1725. "ValueRank": "1",
  1726. "ArrayDimensions": "0",
  1727. "DisplayName": "InputArguments",
  1728. "References": {
  1729. "Reference": [
  1730. {
  1731. "ReferenceType": "HasTypeDefinition",
  1732. "$t": "i=68"
  1733. },
  1734. {
  1735. "ReferenceType": "HasModellingRule",
  1736. "$t": "i=78"
  1737. },
  1738. {
  1739. "ReferenceType": "HasProperty",
  1740. "IsForward": "false",
  1741. "$t": "ns=1;i=6166"
  1742. }
  1743. ]
  1744. },
  1745. "Value": {
  1746. "ListOfExtensionObject": {
  1747. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1748. "ExtensionObject": {
  1749. "TypeId": {
  1750. "Identifier": "i=297"
  1751. },
  1752. "Body": {
  1753. "Argument": {
  1754. "Name": "Context",
  1755. "DataType": {
  1756. "Identifier": "i=12"
  1757. },
  1758. "ValueRank": "-1",
  1759. "ArrayDimensions": {}
  1760. }
  1761. }
  1762. }
  1763. }
  1764. }
  1765. },
  1766. {
  1767. "NodeId": "ns=1;i=6168",
  1768. "BrowseName": "OutputArguments",
  1769. "ParentNodeId": "ns=1;i=6166",
  1770. "DataType": "i=296",
  1771. "ValueRank": "1",
  1772. "ArrayDimensions": "0",
  1773. "DisplayName": "OutputArguments",
  1774. "References": {
  1775. "Reference": [
  1776. {
  1777. "ReferenceType": "HasTypeDefinition",
  1778. "$t": "i=68"
  1779. },
  1780. {
  1781. "ReferenceType": "HasModellingRule",
  1782. "$t": "i=78"
  1783. },
  1784. {
  1785. "ReferenceType": "HasProperty",
  1786. "IsForward": "false",
  1787. "$t": "ns=1;i=6166"
  1788. }
  1789. ]
  1790. },
  1791. "Value": {
  1792. "ListOfExtensionObject": {
  1793. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1794. "ExtensionObject": {
  1795. "TypeId": {
  1796. "Identifier": "i=297"
  1797. },
  1798. "Body": {
  1799. "Argument": {
  1800. "Name": "InitLockStatus",
  1801. "DataType": {
  1802. "Identifier": "i=6"
  1803. },
  1804. "ValueRank": "-1",
  1805. "ArrayDimensions": {}
  1806. }
  1807. }
  1808. }
  1809. }
  1810. }
  1811. },
  1812. {
  1813. "NodeId": "ns=1;i=6170",
  1814. "BrowseName": "OutputArguments",
  1815. "ParentNodeId": "ns=1;i=6169",
  1816. "DataType": "i=296",
  1817. "ValueRank": "1",
  1818. "ArrayDimensions": "0",
  1819. "DisplayName": "OutputArguments",
  1820. "References": {
  1821. "Reference": [
  1822. {
  1823. "ReferenceType": "HasTypeDefinition",
  1824. "$t": "i=68"
  1825. },
  1826. {
  1827. "ReferenceType": "HasModellingRule",
  1828. "$t": "i=78"
  1829. },
  1830. {
  1831. "ReferenceType": "HasProperty",
  1832. "IsForward": "false",
  1833. "$t": "ns=1;i=6169"
  1834. }
  1835. ]
  1836. },
  1837. "Value": {
  1838. "ListOfExtensionObject": {
  1839. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1840. "ExtensionObject": {
  1841. "TypeId": {
  1842. "Identifier": "i=297"
  1843. },
  1844. "Body": {
  1845. "Argument": {
  1846. "Name": "RenewLockStatus",
  1847. "DataType": {
  1848. "Identifier": "i=6"
  1849. },
  1850. "ValueRank": "-1",
  1851. "ArrayDimensions": {}
  1852. }
  1853. }
  1854. }
  1855. }
  1856. }
  1857. },
  1858. {
  1859. "NodeId": "ns=1;i=6172",
  1860. "BrowseName": "OutputArguments",
  1861. "ParentNodeId": "ns=1;i=6171",
  1862. "DataType": "i=296",
  1863. "ValueRank": "1",
  1864. "ArrayDimensions": "0",
  1865. "DisplayName": "OutputArguments",
  1866. "References": {
  1867. "Reference": [
  1868. {
  1869. "ReferenceType": "HasTypeDefinition",
  1870. "$t": "i=68"
  1871. },
  1872. {
  1873. "ReferenceType": "HasModellingRule",
  1874. "$t": "i=78"
  1875. },
  1876. {
  1877. "ReferenceType": "HasProperty",
  1878. "IsForward": "false",
  1879. "$t": "ns=1;i=6171"
  1880. }
  1881. ]
  1882. },
  1883. "Value": {
  1884. "ListOfExtensionObject": {
  1885. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1886. "ExtensionObject": {
  1887. "TypeId": {
  1888. "Identifier": "i=297"
  1889. },
  1890. "Body": {
  1891. "Argument": {
  1892. "Name": "ExitLockStatus",
  1893. "DataType": {
  1894. "Identifier": "i=6"
  1895. },
  1896. "ValueRank": "-1",
  1897. "ArrayDimensions": {}
  1898. }
  1899. }
  1900. }
  1901. }
  1902. }
  1903. },
  1904. {
  1905. "NodeId": "ns=1;i=6174",
  1906. "BrowseName": "OutputArguments",
  1907. "ParentNodeId": "ns=1;i=6173",
  1908. "DataType": "i=296",
  1909. "ValueRank": "1",
  1910. "ArrayDimensions": "0",
  1911. "DisplayName": "OutputArguments",
  1912. "References": {
  1913. "Reference": [
  1914. {
  1915. "ReferenceType": "HasTypeDefinition",
  1916. "$t": "i=68"
  1917. },
  1918. {
  1919. "ReferenceType": "HasModellingRule",
  1920. "$t": "i=78"
  1921. },
  1922. {
  1923. "ReferenceType": "HasProperty",
  1924. "IsForward": "false",
  1925. "$t": "ns=1;i=6173"
  1926. }
  1927. ]
  1928. },
  1929. "Value": {
  1930. "ListOfExtensionObject": {
  1931. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  1932. "ExtensionObject": {
  1933. "TypeId": {
  1934. "Identifier": "i=297"
  1935. },
  1936. "Body": {
  1937. "Argument": {
  1938. "Name": "BreakLockStatus",
  1939. "DataType": {
  1940. "Identifier": "i=6"
  1941. },
  1942. "ValueRank": "-1",
  1943. "ArrayDimensions": {}
  1944. }
  1945. }
  1946. }
  1947. }
  1948. }
  1949. },
  1950. {
  1951. "NodeId": "ns=1;i=15036",
  1952. "BrowseName": "1:Manufacturer",
  1953. "ParentNodeId": "ns=1;i=15035",
  1954. "DataType": "LocalizedText",
  1955. "DisplayName": "Manufacturer",
  1956. "References": {
  1957. "Reference": [
  1958. {
  1959. "ReferenceType": "HasTypeDefinition",
  1960. "$t": "i=68"
  1961. },
  1962. {
  1963. "ReferenceType": "HasModellingRule",
  1964. "$t": "i=80"
  1965. },
  1966. {
  1967. "ReferenceType": "HasProperty",
  1968. "IsForward": "false",
  1969. "$t": "ns=1;i=15035"
  1970. }
  1971. ]
  1972. }
  1973. },
  1974. {
  1975. "NodeId": "ns=1;i=15037",
  1976. "BrowseName": "1:ManufacturerUri",
  1977. "ParentNodeId": "ns=1;i=15035",
  1978. "DataType": "String",
  1979. "DisplayName": "ManufacturerUri",
  1980. "References": {
  1981. "Reference": [
  1982. {
  1983. "ReferenceType": "HasTypeDefinition",
  1984. "$t": "i=68"
  1985. },
  1986. {
  1987. "ReferenceType": "HasModellingRule",
  1988. "$t": "i=80"
  1989. },
  1990. {
  1991. "ReferenceType": "HasProperty",
  1992. "IsForward": "false",
  1993. "$t": "ns=1;i=15035"
  1994. }
  1995. ]
  1996. }
  1997. },
  1998. {
  1999. "NodeId": "ns=1;i=15038",
  2000. "BrowseName": "1:Model",
  2001. "ParentNodeId": "ns=1;i=15035",
  2002. "DataType": "LocalizedText",
  2003. "DisplayName": "Model",
  2004. "References": {
  2005. "Reference": [
  2006. {
  2007. "ReferenceType": "HasTypeDefinition",
  2008. "$t": "i=68"
  2009. },
  2010. {
  2011. "ReferenceType": "HasModellingRule",
  2012. "$t": "i=80"
  2013. },
  2014. {
  2015. "ReferenceType": "HasProperty",
  2016. "IsForward": "false",
  2017. "$t": "ns=1;i=15035"
  2018. }
  2019. ]
  2020. }
  2021. },
  2022. {
  2023. "NodeId": "ns=1;i=15039",
  2024. "BrowseName": "1:HardwareRevision",
  2025. "ParentNodeId": "ns=1;i=15035",
  2026. "DataType": "String",
  2027. "DisplayName": "HardwareRevision",
  2028. "References": {
  2029. "Reference": [
  2030. {
  2031. "ReferenceType": "HasTypeDefinition",
  2032. "$t": "i=68"
  2033. },
  2034. {
  2035. "ReferenceType": "HasModellingRule",
  2036. "$t": "i=80"
  2037. },
  2038. {
  2039. "ReferenceType": "HasProperty",
  2040. "IsForward": "false",
  2041. "$t": "ns=1;i=15035"
  2042. }
  2043. ]
  2044. }
  2045. },
  2046. {
  2047. "NodeId": "ns=1;i=15040",
  2048. "BrowseName": "1:SoftwareRevision",
  2049. "ParentNodeId": "ns=1;i=15035",
  2050. "DataType": "String",
  2051. "DisplayName": "SoftwareRevision",
  2052. "References": {
  2053. "Reference": [
  2054. {
  2055. "ReferenceType": "HasTypeDefinition",
  2056. "$t": "i=68"
  2057. },
  2058. {
  2059. "ReferenceType": "HasModellingRule",
  2060. "$t": "i=80"
  2061. },
  2062. {
  2063. "ReferenceType": "HasProperty",
  2064. "IsForward": "false",
  2065. "$t": "ns=1;i=15035"
  2066. }
  2067. ]
  2068. }
  2069. },
  2070. {
  2071. "NodeId": "ns=1;i=15041",
  2072. "BrowseName": "1:DeviceRevision",
  2073. "ParentNodeId": "ns=1;i=15035",
  2074. "DataType": "String",
  2075. "DisplayName": "DeviceRevision",
  2076. "References": {
  2077. "Reference": [
  2078. {
  2079. "ReferenceType": "HasTypeDefinition",
  2080. "$t": "i=68"
  2081. },
  2082. {
  2083. "ReferenceType": "HasModellingRule",
  2084. "$t": "i=80"
  2085. },
  2086. {
  2087. "ReferenceType": "HasProperty",
  2088. "IsForward": "false",
  2089. "$t": "ns=1;i=15035"
  2090. }
  2091. ]
  2092. }
  2093. },
  2094. {
  2095. "NodeId": "ns=1;i=15042",
  2096. "BrowseName": "1:ProductCode",
  2097. "ParentNodeId": "ns=1;i=15035",
  2098. "DataType": "String",
  2099. "DisplayName": "ProductCode",
  2100. "References": {
  2101. "Reference": [
  2102. {
  2103. "ReferenceType": "HasTypeDefinition",
  2104. "$t": "i=68"
  2105. },
  2106. {
  2107. "ReferenceType": "HasModellingRule",
  2108. "$t": "i=80"
  2109. },
  2110. {
  2111. "ReferenceType": "HasProperty",
  2112. "IsForward": "false",
  2113. "$t": "ns=1;i=15035"
  2114. }
  2115. ]
  2116. }
  2117. },
  2118. {
  2119. "NodeId": "ns=1;i=15043",
  2120. "BrowseName": "1:DeviceManual",
  2121. "ParentNodeId": "ns=1;i=15035",
  2122. "DataType": "String",
  2123. "DisplayName": "DeviceManual",
  2124. "References": {
  2125. "Reference": [
  2126. {
  2127. "ReferenceType": "HasTypeDefinition",
  2128. "$t": "i=68"
  2129. },
  2130. {
  2131. "ReferenceType": "HasModellingRule",
  2132. "$t": "i=80"
  2133. },
  2134. {
  2135. "ReferenceType": "HasProperty",
  2136. "IsForward": "false",
  2137. "$t": "ns=1;i=15035"
  2138. }
  2139. ]
  2140. }
  2141. },
  2142. {
  2143. "NodeId": "ns=1;i=15044",
  2144. "BrowseName": "1:DeviceClass",
  2145. "ParentNodeId": "ns=1;i=15035",
  2146. "DataType": "String",
  2147. "DisplayName": "DeviceClass",
  2148. "References": {
  2149. "Reference": [
  2150. {
  2151. "ReferenceType": "HasTypeDefinition",
  2152. "$t": "i=68"
  2153. },
  2154. {
  2155. "ReferenceType": "HasModellingRule",
  2156. "$t": "i=80"
  2157. },
  2158. {
  2159. "ReferenceType": "HasProperty",
  2160. "IsForward": "false",
  2161. "$t": "ns=1;i=15035"
  2162. }
  2163. ]
  2164. }
  2165. },
  2166. {
  2167. "NodeId": "ns=1;i=15045",
  2168. "BrowseName": "1:SerialNumber",
  2169. "ParentNodeId": "ns=1;i=15035",
  2170. "DataType": "String",
  2171. "DisplayName": "SerialNumber",
  2172. "References": {
  2173. "Reference": [
  2174. {
  2175. "ReferenceType": "HasTypeDefinition",
  2176. "$t": "i=68"
  2177. },
  2178. {
  2179. "ReferenceType": "HasModellingRule",
  2180. "$t": "i=80"
  2181. },
  2182. {
  2183. "ReferenceType": "HasProperty",
  2184. "IsForward": "false",
  2185. "$t": "ns=1;i=15035"
  2186. }
  2187. ]
  2188. }
  2189. },
  2190. {
  2191. "NodeId": "ns=1;i=15046",
  2192. "BrowseName": "1:ProductInstanceUri",
  2193. "ParentNodeId": "ns=1;i=15035",
  2194. "DataType": "String",
  2195. "DisplayName": "ProductInstanceUri",
  2196. "References": {
  2197. "Reference": [
  2198. {
  2199. "ReferenceType": "HasTypeDefinition",
  2200. "$t": "i=68"
  2201. },
  2202. {
  2203. "ReferenceType": "HasModellingRule",
  2204. "$t": "i=80"
  2205. },
  2206. {
  2207. "ReferenceType": "HasProperty",
  2208. "IsForward": "false",
  2209. "$t": "ns=1;i=15035"
  2210. }
  2211. ]
  2212. }
  2213. },
  2214. {
  2215. "NodeId": "ns=1;i=15047",
  2216. "BrowseName": "1:RevisionCounter",
  2217. "ParentNodeId": "ns=1;i=15035",
  2218. "DataType": "Int32",
  2219. "DisplayName": "RevisionCounter",
  2220. "References": {
  2221. "Reference": [
  2222. {
  2223. "ReferenceType": "HasTypeDefinition",
  2224. "$t": "i=68"
  2225. },
  2226. {
  2227. "ReferenceType": "HasModellingRule",
  2228. "$t": "i=80"
  2229. },
  2230. {
  2231. "ReferenceType": "HasProperty",
  2232. "IsForward": "false",
  2233. "$t": "ns=1;i=15035"
  2234. }
  2235. ]
  2236. }
  2237. },
  2238. {
  2239. "NodeId": "ns=1;i=15049",
  2240. "BrowseName": "1:AssetId",
  2241. "ParentNodeId": "ns=1;i=15048",
  2242. "DataType": "String",
  2243. "DisplayName": "AssetId",
  2244. "References": {
  2245. "Reference": [
  2246. {
  2247. "ReferenceType": "HasTypeDefinition",
  2248. "$t": "i=68"
  2249. },
  2250. {
  2251. "ReferenceType": "HasModellingRule",
  2252. "$t": "i=80"
  2253. },
  2254. {
  2255. "ReferenceType": "HasProperty",
  2256. "IsForward": "false",
  2257. "$t": "ns=1;i=15048"
  2258. }
  2259. ]
  2260. }
  2261. },
  2262. {
  2263. "NodeId": "ns=1;i=15050",
  2264. "BrowseName": "1:ComponentName",
  2265. "ParentNodeId": "ns=1;i=15048",
  2266. "DataType": "LocalizedText",
  2267. "DisplayName": "ComponentName",
  2268. "References": {
  2269. "Reference": [
  2270. {
  2271. "ReferenceType": "HasTypeDefinition",
  2272. "$t": "i=68"
  2273. },
  2274. {
  2275. "ReferenceType": "HasModellingRule",
  2276. "$t": "i=80"
  2277. },
  2278. {
  2279. "ReferenceType": "HasProperty",
  2280. "IsForward": "false",
  2281. "$t": "ns=1;i=15048"
  2282. }
  2283. ]
  2284. }
  2285. },
  2286. {
  2287. "NodeId": "ns=1;i=15052",
  2288. "BrowseName": "1:DeviceHealth",
  2289. "ParentNodeId": "ns=1;i=15051",
  2290. "DataType": "ns=1;i=6244",
  2291. "DisplayName": "DeviceHealth",
  2292. "References": {
  2293. "Reference": [
  2294. {
  2295. "ReferenceType": "HasTypeDefinition",
  2296. "$t": "i=63"
  2297. },
  2298. {
  2299. "ReferenceType": "HasModellingRule",
  2300. "$t": "i=80"
  2301. },
  2302. {
  2303. "ReferenceType": "HasComponent",
  2304. "IsForward": "false",
  2305. "$t": "ns=1;i=15051"
  2306. }
  2307. ]
  2308. }
  2309. },
  2310. {
  2311. "NodeId": "ns=1;i=15056",
  2312. "BrowseName": "1:<ImageIdentifier>",
  2313. "SymbolicName": "ImageIdentifier",
  2314. "ParentNodeId": "ns=1;i=15055",
  2315. "DataType": "i=30",
  2316. "DisplayName": "<ImageIdentifier>",
  2317. "References": {
  2318. "Reference": [
  2319. {
  2320. "ReferenceType": "HasTypeDefinition",
  2321. "$t": "i=63"
  2322. },
  2323. {
  2324. "ReferenceType": "HasModellingRule",
  2325. "$t": "i=11510"
  2326. },
  2327. {
  2328. "ReferenceType": "HasComponent",
  2329. "IsForward": "false",
  2330. "$t": "ns=1;i=15055"
  2331. }
  2332. ]
  2333. }
  2334. },
  2335. {
  2336. "NodeId": "ns=1;i=15058",
  2337. "BrowseName": "1:<DocumentIdentifier>",
  2338. "SymbolicName": "DocumentIdentifier",
  2339. "ParentNodeId": "ns=1;i=15057",
  2340. "DataType": "ByteString",
  2341. "DisplayName": "<DocumentIdentifier>",
  2342. "References": {
  2343. "Reference": [
  2344. {
  2345. "ReferenceType": "HasTypeDefinition",
  2346. "$t": "i=63"
  2347. },
  2348. {
  2349. "ReferenceType": "HasModellingRule",
  2350. "$t": "i=11510"
  2351. },
  2352. {
  2353. "ReferenceType": "HasComponent",
  2354. "IsForward": "false",
  2355. "$t": "ns=1;i=15057"
  2356. }
  2357. ]
  2358. }
  2359. },
  2360. {
  2361. "NodeId": "ns=1;i=15060",
  2362. "BrowseName": "1:<ProtocolSupportIdentifier>",
  2363. "SymbolicName": "ProtocolSupportIdentifier",
  2364. "ParentNodeId": "ns=1;i=15059",
  2365. "DataType": "ByteString",
  2366. "DisplayName": "<ProtocolSupportIdentifier>",
  2367. "References": {
  2368. "Reference": [
  2369. {
  2370. "ReferenceType": "HasTypeDefinition",
  2371. "$t": "i=63"
  2372. },
  2373. {
  2374. "ReferenceType": "HasModellingRule",
  2375. "$t": "i=11510"
  2376. },
  2377. {
  2378. "ReferenceType": "HasComponent",
  2379. "IsForward": "false",
  2380. "$t": "ns=1;i=15059"
  2381. }
  2382. ]
  2383. }
  2384. },
  2385. {
  2386. "NodeId": "ns=1;i=15062",
  2387. "BrowseName": "1:<ImageIdentifier>",
  2388. "SymbolicName": "ImageIdentifier",
  2389. "ParentNodeId": "ns=1;i=15061",
  2390. "DataType": "i=30",
  2391. "DisplayName": "<ImageIdentifier>",
  2392. "References": {
  2393. "Reference": [
  2394. {
  2395. "ReferenceType": "HasTypeDefinition",
  2396. "$t": "i=63"
  2397. },
  2398. {
  2399. "ReferenceType": "HasModellingRule",
  2400. "$t": "i=11510"
  2401. },
  2402. {
  2403. "ReferenceType": "HasComponent",
  2404. "IsForward": "false",
  2405. "$t": "ns=1;i=15061"
  2406. }
  2407. ]
  2408. }
  2409. },
  2410. {
  2411. "NodeId": "ns=1;i=15086",
  2412. "BrowseName": "1:Manufacturer",
  2413. "ParentNodeId": "ns=1;i=15063",
  2414. "DataType": "LocalizedText",
  2415. "DisplayName": "Manufacturer",
  2416. "References": {
  2417. "Reference": [
  2418. {
  2419. "ReferenceType": "HasTypeDefinition",
  2420. "$t": "i=68"
  2421. },
  2422. {
  2423. "ReferenceType": "HasModellingRule",
  2424. "$t": "i=80"
  2425. },
  2426. {
  2427. "ReferenceType": "HasProperty",
  2428. "IsForward": "false",
  2429. "$t": "ns=1;i=15063"
  2430. }
  2431. ]
  2432. }
  2433. },
  2434. {
  2435. "NodeId": "ns=1;i=15087",
  2436. "BrowseName": "1:ManufacturerUri",
  2437. "ParentNodeId": "ns=1;i=15063",
  2438. "DataType": "String",
  2439. "DisplayName": "ManufacturerUri",
  2440. "References": {
  2441. "Reference": [
  2442. {
  2443. "ReferenceType": "HasTypeDefinition",
  2444. "$t": "i=68"
  2445. },
  2446. {
  2447. "ReferenceType": "HasModellingRule",
  2448. "$t": "i=80"
  2449. },
  2450. {
  2451. "ReferenceType": "HasProperty",
  2452. "IsForward": "false",
  2453. "$t": "ns=1;i=15063"
  2454. }
  2455. ]
  2456. }
  2457. },
  2458. {
  2459. "NodeId": "ns=1;i=15088",
  2460. "BrowseName": "1:Model",
  2461. "ParentNodeId": "ns=1;i=15063",
  2462. "DataType": "LocalizedText",
  2463. "DisplayName": "Model",
  2464. "References": {
  2465. "Reference": [
  2466. {
  2467. "ReferenceType": "HasTypeDefinition",
  2468. "$t": "i=68"
  2469. },
  2470. {
  2471. "ReferenceType": "HasModellingRule",
  2472. "$t": "i=80"
  2473. },
  2474. {
  2475. "ReferenceType": "HasProperty",
  2476. "IsForward": "false",
  2477. "$t": "ns=1;i=15063"
  2478. }
  2479. ]
  2480. }
  2481. },
  2482. {
  2483. "NodeId": "ns=1;i=15089",
  2484. "BrowseName": "1:HardwareRevision",
  2485. "ParentNodeId": "ns=1;i=15063",
  2486. "DataType": "String",
  2487. "DisplayName": "HardwareRevision",
  2488. "References": {
  2489. "Reference": [
  2490. {
  2491. "ReferenceType": "HasTypeDefinition",
  2492. "$t": "i=68"
  2493. },
  2494. {
  2495. "ReferenceType": "HasModellingRule",
  2496. "$t": "i=80"
  2497. },
  2498. {
  2499. "ReferenceType": "HasProperty",
  2500. "IsForward": "false",
  2501. "$t": "ns=1;i=15063"
  2502. }
  2503. ]
  2504. }
  2505. },
  2506. {
  2507. "NodeId": "ns=1;i=15090",
  2508. "BrowseName": "1:SoftwareRevision",
  2509. "ParentNodeId": "ns=1;i=15063",
  2510. "DataType": "String",
  2511. "DisplayName": "SoftwareRevision",
  2512. "References": {
  2513. "Reference": [
  2514. {
  2515. "ReferenceType": "HasTypeDefinition",
  2516. "$t": "i=68"
  2517. },
  2518. {
  2519. "ReferenceType": "HasModellingRule",
  2520. "$t": "i=80"
  2521. },
  2522. {
  2523. "ReferenceType": "HasProperty",
  2524. "IsForward": "false",
  2525. "$t": "ns=1;i=15063"
  2526. }
  2527. ]
  2528. }
  2529. },
  2530. {
  2531. "NodeId": "ns=1;i=15091",
  2532. "BrowseName": "1:DeviceRevision",
  2533. "ParentNodeId": "ns=1;i=15063",
  2534. "DataType": "String",
  2535. "DisplayName": "DeviceRevision",
  2536. "References": {
  2537. "Reference": [
  2538. {
  2539. "ReferenceType": "HasTypeDefinition",
  2540. "$t": "i=68"
  2541. },
  2542. {
  2543. "ReferenceType": "HasModellingRule",
  2544. "$t": "i=80"
  2545. },
  2546. {
  2547. "ReferenceType": "HasProperty",
  2548. "IsForward": "false",
  2549. "$t": "ns=1;i=15063"
  2550. }
  2551. ]
  2552. }
  2553. },
  2554. {
  2555. "NodeId": "ns=1;i=15092",
  2556. "BrowseName": "1:ProductCode",
  2557. "ParentNodeId": "ns=1;i=15063",
  2558. "DataType": "String",
  2559. "DisplayName": "ProductCode",
  2560. "References": {
  2561. "Reference": [
  2562. {
  2563. "ReferenceType": "HasTypeDefinition",
  2564. "$t": "i=68"
  2565. },
  2566. {
  2567. "ReferenceType": "HasModellingRule",
  2568. "$t": "i=80"
  2569. },
  2570. {
  2571. "ReferenceType": "HasProperty",
  2572. "IsForward": "false",
  2573. "$t": "ns=1;i=15063"
  2574. }
  2575. ]
  2576. }
  2577. },
  2578. {
  2579. "NodeId": "ns=1;i=15093",
  2580. "BrowseName": "1:DeviceManual",
  2581. "ParentNodeId": "ns=1;i=15063",
  2582. "DataType": "String",
  2583. "DisplayName": "DeviceManual",
  2584. "References": {
  2585. "Reference": [
  2586. {
  2587. "ReferenceType": "HasTypeDefinition",
  2588. "$t": "i=68"
  2589. },
  2590. {
  2591. "ReferenceType": "HasModellingRule",
  2592. "$t": "i=80"
  2593. },
  2594. {
  2595. "ReferenceType": "HasProperty",
  2596. "IsForward": "false",
  2597. "$t": "ns=1;i=15063"
  2598. }
  2599. ]
  2600. }
  2601. },
  2602. {
  2603. "NodeId": "ns=1;i=15094",
  2604. "BrowseName": "1:DeviceClass",
  2605. "ParentNodeId": "ns=1;i=15063",
  2606. "DataType": "String",
  2607. "DisplayName": "DeviceClass",
  2608. "References": {
  2609. "Reference": [
  2610. {
  2611. "ReferenceType": "HasTypeDefinition",
  2612. "$t": "i=68"
  2613. },
  2614. {
  2615. "ReferenceType": "HasModellingRule",
  2616. "$t": "i=80"
  2617. },
  2618. {
  2619. "ReferenceType": "HasProperty",
  2620. "IsForward": "false",
  2621. "$t": "ns=1;i=15063"
  2622. }
  2623. ]
  2624. }
  2625. },
  2626. {
  2627. "NodeId": "ns=1;i=15095",
  2628. "BrowseName": "1:SerialNumber",
  2629. "ParentNodeId": "ns=1;i=15063",
  2630. "DataType": "String",
  2631. "DisplayName": "SerialNumber",
  2632. "References": {
  2633. "Reference": [
  2634. {
  2635. "ReferenceType": "HasTypeDefinition",
  2636. "$t": "i=68"
  2637. },
  2638. {
  2639. "ReferenceType": "HasModellingRule",
  2640. "$t": "i=80"
  2641. },
  2642. {
  2643. "ReferenceType": "HasProperty",
  2644. "IsForward": "false",
  2645. "$t": "ns=1;i=15063"
  2646. }
  2647. ]
  2648. }
  2649. },
  2650. {
  2651. "NodeId": "ns=1;i=15096",
  2652. "BrowseName": "1:ProductInstanceUri",
  2653. "ParentNodeId": "ns=1;i=15063",
  2654. "DataType": "String",
  2655. "DisplayName": "ProductInstanceUri",
  2656. "References": {
  2657. "Reference": [
  2658. {
  2659. "ReferenceType": "HasTypeDefinition",
  2660. "$t": "i=68"
  2661. },
  2662. {
  2663. "ReferenceType": "HasModellingRule",
  2664. "$t": "i=80"
  2665. },
  2666. {
  2667. "ReferenceType": "HasProperty",
  2668. "IsForward": "false",
  2669. "$t": "ns=1;i=15063"
  2670. }
  2671. ]
  2672. }
  2673. },
  2674. {
  2675. "NodeId": "ns=1;i=15097",
  2676. "BrowseName": "1:RevisionCounter",
  2677. "ParentNodeId": "ns=1;i=15063",
  2678. "DataType": "Int32",
  2679. "DisplayName": "RevisionCounter",
  2680. "References": {
  2681. "Reference": [
  2682. {
  2683. "ReferenceType": "HasTypeDefinition",
  2684. "$t": "i=68"
  2685. },
  2686. {
  2687. "ReferenceType": "HasModellingRule",
  2688. "$t": "i=80"
  2689. },
  2690. {
  2691. "ReferenceType": "HasProperty",
  2692. "IsForward": "false",
  2693. "$t": "ns=1;i=15063"
  2694. }
  2695. ]
  2696. }
  2697. },
  2698. {
  2699. "NodeId": "ns=1;i=15098",
  2700. "BrowseName": "1:AssetId",
  2701. "ParentNodeId": "ns=1;i=15063",
  2702. "DataType": "String",
  2703. "DisplayName": "AssetId",
  2704. "References": {
  2705. "Reference": [
  2706. {
  2707. "ReferenceType": "HasTypeDefinition",
  2708. "$t": "i=68"
  2709. },
  2710. {
  2711. "ReferenceType": "HasModellingRule",
  2712. "$t": "i=80"
  2713. },
  2714. {
  2715. "ReferenceType": "HasProperty",
  2716. "IsForward": "false",
  2717. "$t": "ns=1;i=15063"
  2718. }
  2719. ]
  2720. }
  2721. },
  2722. {
  2723. "NodeId": "ns=1;i=15099",
  2724. "BrowseName": "1:ComponentName",
  2725. "ParentNodeId": "ns=1;i=15063",
  2726. "DataType": "LocalizedText",
  2727. "DisplayName": "ComponentName",
  2728. "References": {
  2729. "Reference": [
  2730. {
  2731. "ReferenceType": "HasTypeDefinition",
  2732. "$t": "i=68"
  2733. },
  2734. {
  2735. "ReferenceType": "HasModellingRule",
  2736. "$t": "i=80"
  2737. },
  2738. {
  2739. "ReferenceType": "HasProperty",
  2740. "IsForward": "false",
  2741. "$t": "ns=1;i=15063"
  2742. }
  2743. ]
  2744. }
  2745. },
  2746. {
  2747. "NodeId": "ns=1;i=6003",
  2748. "BrowseName": "1:Manufacturer",
  2749. "ParentNodeId": "ns=1;i=1002",
  2750. "DataType": "LocalizedText",
  2751. "DisplayName": "Manufacturer",
  2752. "Description": "Name of the company that manufactured the device",
  2753. "References": {
  2754. "Reference": [
  2755. {
  2756. "ReferenceType": "HasTypeDefinition",
  2757. "$t": "i=68"
  2758. },
  2759. {
  2760. "ReferenceType": "HasModellingRule",
  2761. "$t": "i=78"
  2762. },
  2763. {
  2764. "ReferenceType": "HasProperty",
  2765. "IsForward": "false",
  2766. "$t": "ns=1;i=1002"
  2767. }
  2768. ]
  2769. }
  2770. },
  2771. {
  2772. "NodeId": "ns=1;i=15100",
  2773. "BrowseName": "1:ManufacturerUri",
  2774. "ParentNodeId": "ns=1;i=1002",
  2775. "DataType": "String",
  2776. "DisplayName": "ManufacturerUri",
  2777. "References": {
  2778. "Reference": [
  2779. {
  2780. "ReferenceType": "HasTypeDefinition",
  2781. "$t": "i=68"
  2782. },
  2783. {
  2784. "ReferenceType": "HasModellingRule",
  2785. "$t": "i=80"
  2786. },
  2787. {
  2788. "ReferenceType": "HasProperty",
  2789. "IsForward": "false",
  2790. "$t": "ns=1;i=1002"
  2791. }
  2792. ]
  2793. }
  2794. },
  2795. {
  2796. "NodeId": "ns=1;i=6004",
  2797. "BrowseName": "1:Model",
  2798. "ParentNodeId": "ns=1;i=1002",
  2799. "DataType": "LocalizedText",
  2800. "DisplayName": "Model",
  2801. "Description": "Model name of the device",
  2802. "References": {
  2803. "Reference": [
  2804. {
  2805. "ReferenceType": "HasTypeDefinition",
  2806. "$t": "i=68"
  2807. },
  2808. {
  2809. "ReferenceType": "HasModellingRule",
  2810. "$t": "i=78"
  2811. },
  2812. {
  2813. "ReferenceType": "HasProperty",
  2814. "IsForward": "false",
  2815. "$t": "ns=1;i=1002"
  2816. }
  2817. ]
  2818. }
  2819. },
  2820. {
  2821. "NodeId": "ns=1;i=6008",
  2822. "BrowseName": "1:HardwareRevision",
  2823. "ParentNodeId": "ns=1;i=1002",
  2824. "DataType": "String",
  2825. "DisplayName": "HardwareRevision",
  2826. "Description": "Revision level of the hardware of the device",
  2827. "References": {
  2828. "Reference": [
  2829. {
  2830. "ReferenceType": "HasTypeDefinition",
  2831. "$t": "i=68"
  2832. },
  2833. {
  2834. "ReferenceType": "HasModellingRule",
  2835. "$t": "i=78"
  2836. },
  2837. {
  2838. "ReferenceType": "HasProperty",
  2839. "IsForward": "false",
  2840. "$t": "ns=1;i=1002"
  2841. }
  2842. ]
  2843. }
  2844. },
  2845. {
  2846. "NodeId": "ns=1;i=6007",
  2847. "BrowseName": "1:SoftwareRevision",
  2848. "ParentNodeId": "ns=1;i=1002",
  2849. "DataType": "String",
  2850. "DisplayName": "SoftwareRevision",
  2851. "Description": "Revision level of the software/firmware of the device",
  2852. "References": {
  2853. "Reference": [
  2854. {
  2855. "ReferenceType": "HasTypeDefinition",
  2856. "$t": "i=68"
  2857. },
  2858. {
  2859. "ReferenceType": "HasModellingRule",
  2860. "$t": "i=78"
  2861. },
  2862. {
  2863. "ReferenceType": "HasProperty",
  2864. "IsForward": "false",
  2865. "$t": "ns=1;i=1002"
  2866. }
  2867. ]
  2868. }
  2869. },
  2870. {
  2871. "NodeId": "ns=1;i=6006",
  2872. "BrowseName": "1:DeviceRevision",
  2873. "ParentNodeId": "ns=1;i=1002",
  2874. "DataType": "String",
  2875. "DisplayName": "DeviceRevision",
  2876. "Description": "Overall revision level of the device",
  2877. "References": {
  2878. "Reference": [
  2879. {
  2880. "ReferenceType": "HasTypeDefinition",
  2881. "$t": "i=68"
  2882. },
  2883. {
  2884. "ReferenceType": "HasModellingRule",
  2885. "$t": "i=78"
  2886. },
  2887. {
  2888. "ReferenceType": "HasProperty",
  2889. "IsForward": "false",
  2890. "$t": "ns=1;i=1002"
  2891. }
  2892. ]
  2893. }
  2894. },
  2895. {
  2896. "NodeId": "ns=1;i=15101",
  2897. "BrowseName": "1:ProductCode",
  2898. "ParentNodeId": "ns=1;i=1002",
  2899. "DataType": "String",
  2900. "DisplayName": "ProductCode",
  2901. "References": {
  2902. "Reference": [
  2903. {
  2904. "ReferenceType": "HasTypeDefinition",
  2905. "$t": "i=68"
  2906. },
  2907. {
  2908. "ReferenceType": "HasModellingRule",
  2909. "$t": "i=80"
  2910. },
  2911. {
  2912. "ReferenceType": "HasProperty",
  2913. "IsForward": "false",
  2914. "$t": "ns=1;i=1002"
  2915. }
  2916. ]
  2917. }
  2918. },
  2919. {
  2920. "NodeId": "ns=1;i=6005",
  2921. "BrowseName": "1:DeviceManual",
  2922. "ParentNodeId": "ns=1;i=1002",
  2923. "DataType": "String",
  2924. "DisplayName": "DeviceManual",
  2925. "Description": "Address (pathname in the file system or a URL | Web address) of user manual for the device",
  2926. "References": {
  2927. "Reference": [
  2928. {
  2929. "ReferenceType": "HasTypeDefinition",
  2930. "$t": "i=68"
  2931. },
  2932. {
  2933. "ReferenceType": "HasModellingRule",
  2934. "$t": "i=78"
  2935. },
  2936. {
  2937. "ReferenceType": "HasProperty",
  2938. "IsForward": "false",
  2939. "$t": "ns=1;i=1002"
  2940. }
  2941. ]
  2942. }
  2943. },
  2944. {
  2945. "NodeId": "ns=1;i=6470",
  2946. "BrowseName": "1:DeviceClass",
  2947. "ParentNodeId": "ns=1;i=1002",
  2948. "DataType": "String",
  2949. "DisplayName": "DeviceClass",
  2950. "References": {
  2951. "Reference": [
  2952. {
  2953. "ReferenceType": "HasTypeDefinition",
  2954. "$t": "i=68"
  2955. },
  2956. {
  2957. "ReferenceType": "HasModellingRule",
  2958. "$t": "i=80"
  2959. },
  2960. {
  2961. "ReferenceType": "HasProperty",
  2962. "IsForward": "false",
  2963. "$t": "ns=1;i=1002"
  2964. }
  2965. ]
  2966. }
  2967. },
  2968. {
  2969. "NodeId": "ns=1;i=6001",
  2970. "BrowseName": "1:SerialNumber",
  2971. "ParentNodeId": "ns=1;i=1002",
  2972. "DataType": "String",
  2973. "DisplayName": "SerialNumber",
  2974. "Description": "Identifier that uniquely identifies, within a manufacturer, a device instance",
  2975. "References": {
  2976. "Reference": [
  2977. {
  2978. "ReferenceType": "HasTypeDefinition",
  2979. "$t": "i=68"
  2980. },
  2981. {
  2982. "ReferenceType": "HasModellingRule",
  2983. "$t": "i=78"
  2984. },
  2985. {
  2986. "ReferenceType": "HasProperty",
  2987. "IsForward": "false",
  2988. "$t": "ns=1;i=1002"
  2989. }
  2990. ]
  2991. }
  2992. },
  2993. {
  2994. "NodeId": "ns=1;i=15102",
  2995. "BrowseName": "1:ProductInstanceUri",
  2996. "ParentNodeId": "ns=1;i=1002",
  2997. "DataType": "String",
  2998. "DisplayName": "ProductInstanceUri",
  2999. "References": {
  3000. "Reference": [
  3001. {
  3002. "ReferenceType": "HasTypeDefinition",
  3003. "$t": "i=68"
  3004. },
  3005. {
  3006. "ReferenceType": "HasModellingRule",
  3007. "$t": "i=80"
  3008. },
  3009. {
  3010. "ReferenceType": "HasProperty",
  3011. "IsForward": "false",
  3012. "$t": "ns=1;i=1002"
  3013. }
  3014. ]
  3015. }
  3016. },
  3017. {
  3018. "NodeId": "ns=1;i=6002",
  3019. "BrowseName": "1:RevisionCounter",
  3020. "ParentNodeId": "ns=1;i=1002",
  3021. "DataType": "Int32",
  3022. "DisplayName": "RevisionCounter",
  3023. "Description": "An incremental counter indicating the number of times the static data within the Device has been modified",
  3024. "References": {
  3025. "Reference": [
  3026. {
  3027. "ReferenceType": "HasTypeDefinition",
  3028. "$t": "i=68"
  3029. },
  3030. {
  3031. "ReferenceType": "HasModellingRule",
  3032. "$t": "i=78"
  3033. },
  3034. {
  3035. "ReferenceType": "HasProperty",
  3036. "IsForward": "false",
  3037. "$t": "ns=1;i=1002"
  3038. }
  3039. ]
  3040. }
  3041. },
  3042. {
  3043. "NodeId": "ns=1;i=6208",
  3044. "BrowseName": "1:DeviceHealth",
  3045. "ParentNodeId": "ns=1;i=1002",
  3046. "DataType": "ns=1;i=6244",
  3047. "DisplayName": "DeviceHealth",
  3048. "References": {
  3049. "Reference": [
  3050. {
  3051. "ReferenceType": "HasTypeDefinition",
  3052. "$t": "i=63"
  3053. },
  3054. {
  3055. "ReferenceType": "HasModellingRule",
  3056. "$t": "i=80"
  3057. },
  3058. {
  3059. "ReferenceType": "HasComponent",
  3060. "IsForward": "false",
  3061. "$t": "ns=1;i=1002"
  3062. }
  3063. ]
  3064. }
  3065. },
  3066. {
  3067. "NodeId": "ns=1;i=6210",
  3068. "BrowseName": "1:<ImageIdentifier>",
  3069. "SymbolicName": "ImageIdentifier",
  3070. "ParentNodeId": "ns=1;i=6209",
  3071. "DataType": "i=30",
  3072. "DisplayName": "<ImageIdentifier>",
  3073. "Description": "An image of the device.",
  3074. "References": {
  3075. "Reference": [
  3076. {
  3077. "ReferenceType": "HasTypeDefinition",
  3078. "$t": "i=63"
  3079. },
  3080. {
  3081. "ReferenceType": "HasModellingRule",
  3082. "$t": "i=11510"
  3083. },
  3084. {
  3085. "ReferenceType": "HasComponent",
  3086. "IsForward": "false",
  3087. "$t": "ns=1;i=6209"
  3088. }
  3089. ]
  3090. }
  3091. },
  3092. {
  3093. "NodeId": "ns=1;i=6212",
  3094. "BrowseName": "1:<DocumentIdentifier>",
  3095. "SymbolicName": "DocumentIdentifier",
  3096. "ParentNodeId": "ns=1;i=6211",
  3097. "DataType": "ByteString",
  3098. "DisplayName": "<DocumentIdentifier>",
  3099. "Description": "A document for the device.",
  3100. "References": {
  3101. "Reference": [
  3102. {
  3103. "ReferenceType": "HasTypeDefinition",
  3104. "$t": "i=63"
  3105. },
  3106. {
  3107. "ReferenceType": "HasModellingRule",
  3108. "$t": "i=11510"
  3109. },
  3110. {
  3111. "ReferenceType": "HasComponent",
  3112. "IsForward": "false",
  3113. "$t": "ns=1;i=6211"
  3114. }
  3115. ]
  3116. }
  3117. },
  3118. {
  3119. "NodeId": "ns=1;i=6214",
  3120. "BrowseName": "1:<ProtocolSupportIdentifier>",
  3121. "SymbolicName": "ProtocolSupportIdentifier",
  3122. "ParentNodeId": "ns=1;i=6213",
  3123. "DataType": "ByteString",
  3124. "DisplayName": "<ProtocolSupportIdentifier>",
  3125. "Description": "A protocol-specific file for the device.",
  3126. "References": {
  3127. "Reference": [
  3128. {
  3129. "ReferenceType": "HasTypeDefinition",
  3130. "$t": "i=63"
  3131. },
  3132. {
  3133. "ReferenceType": "HasModellingRule",
  3134. "$t": "i=11510"
  3135. },
  3136. {
  3137. "ReferenceType": "HasComponent",
  3138. "IsForward": "false",
  3139. "$t": "ns=1;i=6213"
  3140. }
  3141. ]
  3142. }
  3143. },
  3144. {
  3145. "NodeId": "ns=1;i=6216",
  3146. "BrowseName": "1:<ImageIdentifier>",
  3147. "SymbolicName": "ImageIdentifier",
  3148. "ParentNodeId": "ns=1;i=6215",
  3149. "DataType": "i=30",
  3150. "DisplayName": "<ImageIdentifier>",
  3151. "Description": "An image for a UIElement.",
  3152. "References": {
  3153. "Reference": [
  3154. {
  3155. "ReferenceType": "HasTypeDefinition",
  3156. "$t": "i=63"
  3157. },
  3158. {
  3159. "ReferenceType": "HasModellingRule",
  3160. "$t": "i=11510"
  3161. },
  3162. {
  3163. "ReferenceType": "HasComponent",
  3164. "IsForward": "false",
  3165. "$t": "ns=1;i=6215"
  3166. }
  3167. ]
  3168. }
  3169. },
  3170. {
  3171. "NodeId": "ns=1;i=15129",
  3172. "BrowseName": "1:Manufacturer",
  3173. "ParentNodeId": "ns=1;i=15106",
  3174. "DataType": "LocalizedText",
  3175. "DisplayName": "Manufacturer",
  3176. "References": {
  3177. "Reference": [
  3178. {
  3179. "ReferenceType": "HasTypeDefinition",
  3180. "$t": "i=68"
  3181. },
  3182. {
  3183. "ReferenceType": "HasModellingRule",
  3184. "$t": "i=78"
  3185. },
  3186. {
  3187. "ReferenceType": "HasProperty",
  3188. "IsForward": "false",
  3189. "$t": "ns=1;i=15106"
  3190. }
  3191. ]
  3192. }
  3193. },
  3194. {
  3195. "NodeId": "ns=1;i=15131",
  3196. "BrowseName": "1:Model",
  3197. "ParentNodeId": "ns=1;i=15106",
  3198. "DataType": "LocalizedText",
  3199. "DisplayName": "Model",
  3200. "References": {
  3201. "Reference": [
  3202. {
  3203. "ReferenceType": "HasTypeDefinition",
  3204. "$t": "i=68"
  3205. },
  3206. {
  3207. "ReferenceType": "HasModellingRule",
  3208. "$t": "i=78"
  3209. },
  3210. {
  3211. "ReferenceType": "HasProperty",
  3212. "IsForward": "false",
  3213. "$t": "ns=1;i=15106"
  3214. }
  3215. ]
  3216. }
  3217. },
  3218. {
  3219. "NodeId": "ns=1;i=15133",
  3220. "BrowseName": "1:SoftwareRevision",
  3221. "ParentNodeId": "ns=1;i=15106",
  3222. "DataType": "String",
  3223. "DisplayName": "SoftwareRevision",
  3224. "References": {
  3225. "Reference": [
  3226. {
  3227. "ReferenceType": "HasTypeDefinition",
  3228. "$t": "i=68"
  3229. },
  3230. {
  3231. "ReferenceType": "HasModellingRule",
  3232. "$t": "i=78"
  3233. },
  3234. {
  3235. "ReferenceType": "HasProperty",
  3236. "IsForward": "false",
  3237. "$t": "ns=1;i=15106"
  3238. }
  3239. ]
  3240. }
  3241. },
  3242. {
  3243. "NodeId": "ns=1;i=6009",
  3244. "BrowseName": "1:RevisionCounter",
  3245. "ParentNodeId": "ns=1;i=1003",
  3246. "DataType": "Int32",
  3247. "DisplayName": "RevisionCounter",
  3248. "Description": "Incremental counter indicating the number of times the static data within the Block has been modified",
  3249. "References": {
  3250. "Reference": [
  3251. {
  3252. "ReferenceType": "HasTypeDefinition",
  3253. "$t": "i=68"
  3254. },
  3255. {
  3256. "ReferenceType": "HasModellingRule",
  3257. "$t": "i=80"
  3258. },
  3259. {
  3260. "ReferenceType": "HasProperty",
  3261. "IsForward": "false",
  3262. "$t": "ns=1;i=1003"
  3263. }
  3264. ]
  3265. }
  3266. },
  3267. {
  3268. "NodeId": "ns=1;i=6010",
  3269. "BrowseName": "1:ActualMode",
  3270. "ParentNodeId": "ns=1;i=1003",
  3271. "DataType": "LocalizedText",
  3272. "DisplayName": "ActualMode",
  3273. "Description": "Current mode of operation the Block is able to achieve",
  3274. "References": {
  3275. "Reference": [
  3276. {
  3277. "ReferenceType": "HasTypeDefinition",
  3278. "$t": "i=68"
  3279. },
  3280. {
  3281. "ReferenceType": "HasModellingRule",
  3282. "$t": "i=80"
  3283. },
  3284. {
  3285. "ReferenceType": "HasProperty",
  3286. "IsForward": "false",
  3287. "$t": "ns=1;i=1003"
  3288. }
  3289. ]
  3290. }
  3291. },
  3292. {
  3293. "NodeId": "ns=1;i=6011",
  3294. "BrowseName": "1:PermittedMode",
  3295. "ParentNodeId": "ns=1;i=1003",
  3296. "DataType": "LocalizedText",
  3297. "ValueRank": "1",
  3298. "ArrayDimensions": "0",
  3299. "DisplayName": "PermittedMode",
  3300. "Description": "Modes of operation that are allowed for the Block based on application requirements",
  3301. "References": {
  3302. "Reference": [
  3303. {
  3304. "ReferenceType": "HasTypeDefinition",
  3305. "$t": "i=68"
  3306. },
  3307. {
  3308. "ReferenceType": "HasModellingRule",
  3309. "$t": "i=80"
  3310. },
  3311. {
  3312. "ReferenceType": "HasProperty",
  3313. "IsForward": "false",
  3314. "$t": "ns=1;i=1003"
  3315. }
  3316. ]
  3317. }
  3318. },
  3319. {
  3320. "NodeId": "ns=1;i=6012",
  3321. "BrowseName": "1:NormalMode",
  3322. "ParentNodeId": "ns=1;i=1003",
  3323. "DataType": "LocalizedText",
  3324. "ValueRank": "1",
  3325. "ArrayDimensions": "0",
  3326. "DisplayName": "NormalMode",
  3327. "Description": "Mode the Block should be set to during normal operating conditions",
  3328. "References": {
  3329. "Reference": [
  3330. {
  3331. "ReferenceType": "HasTypeDefinition",
  3332. "$t": "i=68"
  3333. },
  3334. {
  3335. "ReferenceType": "HasModellingRule",
  3336. "$t": "i=80"
  3337. },
  3338. {
  3339. "ReferenceType": "HasProperty",
  3340. "IsForward": "false",
  3341. "$t": "ns=1;i=1003"
  3342. }
  3343. ]
  3344. }
  3345. },
  3346. {
  3347. "NodeId": "ns=1;i=6013",
  3348. "BrowseName": "1:TargetMode",
  3349. "ParentNodeId": "ns=1;i=1003",
  3350. "DataType": "LocalizedText",
  3351. "ValueRank": "1",
  3352. "ArrayDimensions": "0",
  3353. "DisplayName": "TargetMode",
  3354. "Description": "Mode of operation that is desired for the Block",
  3355. "References": {
  3356. "Reference": [
  3357. {
  3358. "ReferenceType": "HasTypeDefinition",
  3359. "$t": "i=68"
  3360. },
  3361. {
  3362. "ReferenceType": "HasModellingRule",
  3363. "$t": "i=80"
  3364. },
  3365. {
  3366. "ReferenceType": "HasProperty",
  3367. "IsForward": "false",
  3368. "$t": "ns=1;i=1003"
  3369. }
  3370. ]
  3371. }
  3372. },
  3373. {
  3374. "NodeId": "ns=1;i=6242",
  3375. "BrowseName": "1:UIElement",
  3376. "ParentNodeId": "ns=1;i=6027",
  3377. "DisplayName": "UIElement",
  3378. "Description": "A user interface element assigned to this group.",
  3379. "References": {
  3380. "Reference": [
  3381. {
  3382. "ReferenceType": "HasTypeDefinition",
  3383. "$t": "ns=1;i=6246"
  3384. },
  3385. {
  3386. "ReferenceType": "HasModellingRule",
  3387. "$t": "i=80"
  3388. },
  3389. {
  3390. "ReferenceType": "HasComponent",
  3391. "IsForward": "false",
  3392. "$t": "ns=1;i=6027"
  3393. }
  3394. ]
  3395. }
  3396. },
  3397. {
  3398. "NodeId": "ns=1;i=6243",
  3399. "BrowseName": "1:UIElement",
  3400. "ParentNodeId": "ns=1;i=1005",
  3401. "DisplayName": "UIElement",
  3402. "Description": "A user interface element assigned to this group.",
  3403. "References": {
  3404. "Reference": [
  3405. {
  3406. "ReferenceType": "HasTypeDefinition",
  3407. "$t": "ns=1;i=6246"
  3408. },
  3409. {
  3410. "ReferenceType": "HasModellingRule",
  3411. "$t": "i=80"
  3412. },
  3413. {
  3414. "ReferenceType": "HasComponent",
  3415. "IsForward": "false",
  3416. "$t": "ns=1;i=1005"
  3417. }
  3418. ]
  3419. }
  3420. },
  3421. {
  3422. "NodeId": "ns=1;i=6450",
  3423. "BrowseName": "EnumStrings",
  3424. "ParentNodeId": "ns=1;i=6244",
  3425. "DataType": "LocalizedText",
  3426. "ValueRank": "1",
  3427. "ArrayDimensions": "0",
  3428. "DisplayName": "EnumStrings",
  3429. "References": {
  3430. "Reference": [
  3431. {
  3432. "ReferenceType": "HasTypeDefinition",
  3433. "$t": "i=68"
  3434. },
  3435. {
  3436. "ReferenceType": "HasModellingRule",
  3437. "$t": "i=78"
  3438. },
  3439. {
  3440. "ReferenceType": "HasProperty",
  3441. "IsForward": "false",
  3442. "$t": "ns=1;i=6244"
  3443. }
  3444. ]
  3445. },
  3446. "Value": {
  3447. "ListOfLocalizedText": {
  3448. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3449. "LocalizedText": [
  3450. {
  3451. "Locale": "",
  3452. "Text": "NORMAL"
  3453. },
  3454. {
  3455. "Locale": "",
  3456. "Text": "FAILURE"
  3457. },
  3458. {
  3459. "Locale": "",
  3460. "Text": "CHECK_FUNCTION"
  3461. },
  3462. {
  3463. "Locale": "",
  3464. "Text": "OFF_SPEC"
  3465. },
  3466. {
  3467. "Locale": "",
  3468. "Text": "MAINTENANCE_REQUIRED"
  3469. }
  3470. ]
  3471. }
  3472. }
  3473. },
  3474. {
  3475. "NodeId": "ns=1;i=6497",
  3476. "BrowseName": "1:Locked",
  3477. "ParentNodeId": "ns=1;i=6294",
  3478. "DataType": "Boolean",
  3479. "DisplayName": "Locked",
  3480. "References": {
  3481. "Reference": [
  3482. {
  3483. "ReferenceType": "HasTypeDefinition",
  3484. "$t": "i=68"
  3485. },
  3486. {
  3487. "ReferenceType": "HasModellingRule",
  3488. "$t": "i=78"
  3489. },
  3490. {
  3491. "ReferenceType": "HasProperty",
  3492. "IsForward": "false",
  3493. "$t": "ns=1;i=6294"
  3494. }
  3495. ]
  3496. }
  3497. },
  3498. {
  3499. "NodeId": "ns=1;i=6296",
  3500. "BrowseName": "1:LockingClient",
  3501. "ParentNodeId": "ns=1;i=6294",
  3502. "DataType": "String",
  3503. "DisplayName": "LockingClient",
  3504. "References": {
  3505. "Reference": [
  3506. {
  3507. "ReferenceType": "HasTypeDefinition",
  3508. "$t": "i=68"
  3509. },
  3510. {
  3511. "ReferenceType": "HasModellingRule",
  3512. "$t": "i=78"
  3513. },
  3514. {
  3515. "ReferenceType": "HasProperty",
  3516. "IsForward": "false",
  3517. "$t": "ns=1;i=6294"
  3518. }
  3519. ]
  3520. }
  3521. },
  3522. {
  3523. "NodeId": "ns=1;i=6297",
  3524. "BrowseName": "1:LockingUser",
  3525. "ParentNodeId": "ns=1;i=6294",
  3526. "DataType": "String",
  3527. "DisplayName": "LockingUser",
  3528. "References": {
  3529. "Reference": [
  3530. {
  3531. "ReferenceType": "HasTypeDefinition",
  3532. "$t": "i=68"
  3533. },
  3534. {
  3535. "ReferenceType": "HasModellingRule",
  3536. "$t": "i=78"
  3537. },
  3538. {
  3539. "ReferenceType": "HasProperty",
  3540. "IsForward": "false",
  3541. "$t": "ns=1;i=6294"
  3542. }
  3543. ]
  3544. }
  3545. },
  3546. {
  3547. "NodeId": "ns=1;i=6298",
  3548. "BrowseName": "1:RemainingLockTime",
  3549. "ParentNodeId": "ns=1;i=6294",
  3550. "DataType": "i=290",
  3551. "DisplayName": "RemainingLockTime",
  3552. "References": {
  3553. "Reference": [
  3554. {
  3555. "ReferenceType": "HasTypeDefinition",
  3556. "$t": "i=68"
  3557. },
  3558. {
  3559. "ReferenceType": "HasModellingRule",
  3560. "$t": "i=78"
  3561. },
  3562. {
  3563. "ReferenceType": "HasProperty",
  3564. "IsForward": "false",
  3565. "$t": "ns=1;i=6294"
  3566. }
  3567. ]
  3568. }
  3569. },
  3570. {
  3571. "NodeId": "ns=1;i=6300",
  3572. "BrowseName": "InputArguments",
  3573. "ParentNodeId": "ns=1;i=6299",
  3574. "DataType": "i=296",
  3575. "ValueRank": "1",
  3576. "ArrayDimensions": "0",
  3577. "DisplayName": "InputArguments",
  3578. "References": {
  3579. "Reference": [
  3580. {
  3581. "ReferenceType": "HasTypeDefinition",
  3582. "$t": "i=68"
  3583. },
  3584. {
  3585. "ReferenceType": "HasModellingRule",
  3586. "$t": "i=78"
  3587. },
  3588. {
  3589. "ReferenceType": "HasProperty",
  3590. "IsForward": "false",
  3591. "$t": "ns=1;i=6299"
  3592. }
  3593. ]
  3594. },
  3595. "Value": {
  3596. "ListOfExtensionObject": {
  3597. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3598. "ExtensionObject": {
  3599. "TypeId": {
  3600. "Identifier": "i=297"
  3601. },
  3602. "Body": {
  3603. "Argument": {
  3604. "Name": "Context",
  3605. "DataType": {
  3606. "Identifier": "i=12"
  3607. },
  3608. "ValueRank": "-1",
  3609. "ArrayDimensions": {}
  3610. }
  3611. }
  3612. }
  3613. }
  3614. }
  3615. },
  3616. {
  3617. "NodeId": "ns=1;i=6301",
  3618. "BrowseName": "OutputArguments",
  3619. "ParentNodeId": "ns=1;i=6299",
  3620. "DataType": "i=296",
  3621. "ValueRank": "1",
  3622. "ArrayDimensions": "0",
  3623. "DisplayName": "OutputArguments",
  3624. "References": {
  3625. "Reference": [
  3626. {
  3627. "ReferenceType": "HasTypeDefinition",
  3628. "$t": "i=68"
  3629. },
  3630. {
  3631. "ReferenceType": "HasModellingRule",
  3632. "$t": "i=78"
  3633. },
  3634. {
  3635. "ReferenceType": "HasProperty",
  3636. "IsForward": "false",
  3637. "$t": "ns=1;i=6299"
  3638. }
  3639. ]
  3640. },
  3641. "Value": {
  3642. "ListOfExtensionObject": {
  3643. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3644. "ExtensionObject": {
  3645. "TypeId": {
  3646. "Identifier": "i=297"
  3647. },
  3648. "Body": {
  3649. "Argument": {
  3650. "Name": "InitLockStatus",
  3651. "DataType": {
  3652. "Identifier": "i=6"
  3653. },
  3654. "ValueRank": "-1",
  3655. "ArrayDimensions": {}
  3656. }
  3657. }
  3658. }
  3659. }
  3660. }
  3661. },
  3662. {
  3663. "NodeId": "ns=1;i=6303",
  3664. "BrowseName": "OutputArguments",
  3665. "ParentNodeId": "ns=1;i=6302",
  3666. "DataType": "i=296",
  3667. "ValueRank": "1",
  3668. "ArrayDimensions": "0",
  3669. "DisplayName": "OutputArguments",
  3670. "References": {
  3671. "Reference": [
  3672. {
  3673. "ReferenceType": "HasTypeDefinition",
  3674. "$t": "i=68"
  3675. },
  3676. {
  3677. "ReferenceType": "HasModellingRule",
  3678. "$t": "i=78"
  3679. },
  3680. {
  3681. "ReferenceType": "HasProperty",
  3682. "IsForward": "false",
  3683. "$t": "ns=1;i=6302"
  3684. }
  3685. ]
  3686. },
  3687. "Value": {
  3688. "ListOfExtensionObject": {
  3689. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3690. "ExtensionObject": {
  3691. "TypeId": {
  3692. "Identifier": "i=297"
  3693. },
  3694. "Body": {
  3695. "Argument": {
  3696. "Name": "RenewLockStatus",
  3697. "DataType": {
  3698. "Identifier": "i=6"
  3699. },
  3700. "ValueRank": "-1",
  3701. "ArrayDimensions": {}
  3702. }
  3703. }
  3704. }
  3705. }
  3706. }
  3707. },
  3708. {
  3709. "NodeId": "ns=1;i=6305",
  3710. "BrowseName": "OutputArguments",
  3711. "ParentNodeId": "ns=1;i=6304",
  3712. "DataType": "i=296",
  3713. "ValueRank": "1",
  3714. "ArrayDimensions": "0",
  3715. "DisplayName": "OutputArguments",
  3716. "References": {
  3717. "Reference": [
  3718. {
  3719. "ReferenceType": "HasTypeDefinition",
  3720. "$t": "i=68"
  3721. },
  3722. {
  3723. "ReferenceType": "HasModellingRule",
  3724. "$t": "i=78"
  3725. },
  3726. {
  3727. "ReferenceType": "HasProperty",
  3728. "IsForward": "false",
  3729. "$t": "ns=1;i=6304"
  3730. }
  3731. ]
  3732. },
  3733. "Value": {
  3734. "ListOfExtensionObject": {
  3735. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3736. "ExtensionObject": {
  3737. "TypeId": {
  3738. "Identifier": "i=297"
  3739. },
  3740. "Body": {
  3741. "Argument": {
  3742. "Name": "ExitLockStatus",
  3743. "DataType": {
  3744. "Identifier": "i=6"
  3745. },
  3746. "ValueRank": "-1",
  3747. "ArrayDimensions": {}
  3748. }
  3749. }
  3750. }
  3751. }
  3752. }
  3753. },
  3754. {
  3755. "NodeId": "ns=1;i=6307",
  3756. "BrowseName": "OutputArguments",
  3757. "ParentNodeId": "ns=1;i=6306",
  3758. "DataType": "i=296",
  3759. "ValueRank": "1",
  3760. "ArrayDimensions": "0",
  3761. "DisplayName": "OutputArguments",
  3762. "References": {
  3763. "Reference": [
  3764. {
  3765. "ReferenceType": "HasTypeDefinition",
  3766. "$t": "i=68"
  3767. },
  3768. {
  3769. "ReferenceType": "HasModellingRule",
  3770. "$t": "i=78"
  3771. },
  3772. {
  3773. "ReferenceType": "HasProperty",
  3774. "IsForward": "false",
  3775. "$t": "ns=1;i=6306"
  3776. }
  3777. ]
  3778. },
  3779. "Value": {
  3780. "ListOfExtensionObject": {
  3781. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3782. "ExtensionObject": {
  3783. "TypeId": {
  3784. "Identifier": "i=297"
  3785. },
  3786. "Body": {
  3787. "Argument": {
  3788. "Name": "BreakLockStatus",
  3789. "DataType": {
  3790. "Identifier": "i=6"
  3791. },
  3792. "ValueRank": "-1",
  3793. "ArrayDimensions": {}
  3794. }
  3795. }
  3796. }
  3797. }
  3798. }
  3799. },
  3800. {
  3801. "NodeId": "ns=1;i=6528",
  3802. "BrowseName": "OutputArguments",
  3803. "ParentNodeId": "ns=1;i=6527",
  3804. "DataType": "i=296",
  3805. "ValueRank": "1",
  3806. "ArrayDimensions": "0",
  3807. "DisplayName": "OutputArguments",
  3808. "References": {
  3809. "Reference": [
  3810. {
  3811. "ReferenceType": "HasTypeDefinition",
  3812. "$t": "i=68"
  3813. },
  3814. {
  3815. "ReferenceType": "HasModellingRule",
  3816. "$t": "i=78"
  3817. },
  3818. {
  3819. "ReferenceType": "HasProperty",
  3820. "IsForward": "false",
  3821. "$t": "ns=1;i=6527"
  3822. }
  3823. ]
  3824. },
  3825. "Value": {
  3826. "ListOfExtensionObject": {
  3827. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3828. "ExtensionObject": [
  3829. {
  3830. "TypeId": {
  3831. "Identifier": "i=297"
  3832. },
  3833. "Body": {
  3834. "Argument": {
  3835. "Name": "TransferID",
  3836. "DataType": {
  3837. "Identifier": "i=6"
  3838. },
  3839. "ValueRank": "-1",
  3840. "ArrayDimensions": {}
  3841. }
  3842. }
  3843. },
  3844. {
  3845. "TypeId": {
  3846. "Identifier": "i=297"
  3847. },
  3848. "Body": {
  3849. "Argument": {
  3850. "Name": "InitTransferStatus",
  3851. "DataType": {
  3852. "Identifier": "i=6"
  3853. },
  3854. "ValueRank": "-1",
  3855. "ArrayDimensions": {}
  3856. }
  3857. }
  3858. }
  3859. ]
  3860. }
  3861. }
  3862. },
  3863. {
  3864. "NodeId": "ns=1;i=6530",
  3865. "BrowseName": "OutputArguments",
  3866. "ParentNodeId": "ns=1;i=6529",
  3867. "DataType": "i=296",
  3868. "ValueRank": "1",
  3869. "ArrayDimensions": "0",
  3870. "DisplayName": "OutputArguments",
  3871. "References": {
  3872. "Reference": [
  3873. {
  3874. "ReferenceType": "HasTypeDefinition",
  3875. "$t": "i=68"
  3876. },
  3877. {
  3878. "ReferenceType": "HasModellingRule",
  3879. "$t": "i=78"
  3880. },
  3881. {
  3882. "ReferenceType": "HasProperty",
  3883. "IsForward": "false",
  3884. "$t": "ns=1;i=6529"
  3885. }
  3886. ]
  3887. },
  3888. "Value": {
  3889. "ListOfExtensionObject": {
  3890. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3891. "ExtensionObject": [
  3892. {
  3893. "TypeId": {
  3894. "Identifier": "i=297"
  3895. },
  3896. "Body": {
  3897. "Argument": {
  3898. "Name": "TransferID",
  3899. "DataType": {
  3900. "Identifier": "i=6"
  3901. },
  3902. "ValueRank": "-1",
  3903. "ArrayDimensions": {}
  3904. }
  3905. }
  3906. },
  3907. {
  3908. "TypeId": {
  3909. "Identifier": "i=297"
  3910. },
  3911. "Body": {
  3912. "Argument": {
  3913. "Name": "InitTransferStatus",
  3914. "DataType": {
  3915. "Identifier": "i=6"
  3916. },
  3917. "ValueRank": "-1",
  3918. "ArrayDimensions": {}
  3919. }
  3920. }
  3921. }
  3922. ]
  3923. }
  3924. }
  3925. },
  3926. {
  3927. "NodeId": "ns=1;i=6532",
  3928. "BrowseName": "InputArguments",
  3929. "ParentNodeId": "ns=1;i=6531",
  3930. "DataType": "i=296",
  3931. "ValueRank": "1",
  3932. "ArrayDimensions": "0",
  3933. "DisplayName": "InputArguments",
  3934. "References": {
  3935. "Reference": [
  3936. {
  3937. "ReferenceType": "HasTypeDefinition",
  3938. "$t": "i=68"
  3939. },
  3940. {
  3941. "ReferenceType": "HasModellingRule",
  3942. "$t": "i=78"
  3943. },
  3944. {
  3945. "ReferenceType": "HasProperty",
  3946. "IsForward": "false",
  3947. "$t": "ns=1;i=6531"
  3948. }
  3949. ]
  3950. },
  3951. "Value": {
  3952. "ListOfExtensionObject": {
  3953. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  3954. "ExtensionObject": [
  3955. {
  3956. "TypeId": {
  3957. "Identifier": "i=297"
  3958. },
  3959. "Body": {
  3960. "Argument": {
  3961. "Name": "TransferID",
  3962. "DataType": {
  3963. "Identifier": "i=6"
  3964. },
  3965. "ValueRank": "-1",
  3966. "ArrayDimensions": {}
  3967. }
  3968. }
  3969. },
  3970. {
  3971. "TypeId": {
  3972. "Identifier": "i=297"
  3973. },
  3974. "Body": {
  3975. "Argument": {
  3976. "Name": "SequenceNumber",
  3977. "DataType": {
  3978. "Identifier": "i=6"
  3979. },
  3980. "ValueRank": "-1",
  3981. "ArrayDimensions": {}
  3982. }
  3983. }
  3984. },
  3985. {
  3986. "TypeId": {
  3987. "Identifier": "i=297"
  3988. },
  3989. "Body": {
  3990. "Argument": {
  3991. "Name": "MaxParameterResultsToReturn",
  3992. "DataType": {
  3993. "Identifier": "i=6"
  3994. },
  3995. "ValueRank": "-1",
  3996. "ArrayDimensions": {}
  3997. }
  3998. }
  3999. },
  4000. {
  4001. "TypeId": {
  4002. "Identifier": "i=297"
  4003. },
  4004. "Body": {
  4005. "Argument": {
  4006. "Name": "OmitGoodResults",
  4007. "DataType": {
  4008. "Identifier": "i=1"
  4009. },
  4010. "ValueRank": "-1",
  4011. "ArrayDimensions": {}
  4012. }
  4013. }
  4014. }
  4015. ]
  4016. }
  4017. }
  4018. },
  4019. {
  4020. "NodeId": "ns=1;i=6533",
  4021. "BrowseName": "OutputArguments",
  4022. "ParentNodeId": "ns=1;i=6531",
  4023. "DataType": "i=296",
  4024. "ValueRank": "1",
  4025. "ArrayDimensions": "0",
  4026. "DisplayName": "OutputArguments",
  4027. "References": {
  4028. "Reference": [
  4029. {
  4030. "ReferenceType": "HasTypeDefinition",
  4031. "$t": "i=68"
  4032. },
  4033. {
  4034. "ReferenceType": "HasModellingRule",
  4035. "$t": "i=78"
  4036. },
  4037. {
  4038. "ReferenceType": "HasProperty",
  4039. "IsForward": "false",
  4040. "$t": "ns=1;i=6531"
  4041. }
  4042. ]
  4043. },
  4044. "Value": {
  4045. "ListOfExtensionObject": {
  4046. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4047. "ExtensionObject": {
  4048. "TypeId": {
  4049. "Identifier": "i=297"
  4050. },
  4051. "Body": {
  4052. "Argument": {
  4053. "Name": "FetchResultData",
  4054. "DataType": {
  4055. "Identifier": "i=22"
  4056. },
  4057. "ValueRank": "-1",
  4058. "ArrayDimensions": {}
  4059. }
  4060. }
  4061. }
  4062. }
  4063. }
  4064. },
  4065. {
  4066. "NodeId": "ns=1;i=6387",
  4067. "BrowseName": "1:MaxInactiveLockTime",
  4068. "DataType": "i=290",
  4069. "ValueRank": "-2",
  4070. "DisplayName": "MaxInactiveLockTime",
  4071. "Description": "Server-specific period of time in milliseconds until the Server will revoke a lock.",
  4072. "References": {
  4073. "Reference": [
  4074. {
  4075. "ReferenceType": "HasProperty",
  4076. "IsForward": "false",
  4077. "$t": "i=2268"
  4078. },
  4079. {
  4080. "ReferenceType": "HasTypeDefinition",
  4081. "$t": "i=68"
  4082. }
  4083. ]
  4084. }
  4085. },
  4086. {
  4087. "NodeId": "ns=1;i=15890",
  4088. "BrowseName": "DefaultInstanceBrowseName",
  4089. "ParentNodeId": "ns=1;i=6388",
  4090. "DataType": "String",
  4091. "DisplayName": "DefaultInstanceBrowseName",
  4092. "References": {
  4093. "Reference": [
  4094. {
  4095. "ReferenceType": "HasTypeDefinition",
  4096. "$t": "i=68"
  4097. },
  4098. {
  4099. "ReferenceType": "HasProperty",
  4100. "IsForward": "false",
  4101. "$t": "ns=1;i=6388"
  4102. }
  4103. ]
  4104. },
  4105. "Value": {
  4106. "String": {
  4107. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4108. "$t": "Lock"
  4109. }
  4110. }
  4111. },
  4112. {
  4113. "NodeId": "ns=1;i=6534",
  4114. "BrowseName": "1:Locked",
  4115. "ParentNodeId": "ns=1;i=6388",
  4116. "DataType": "Boolean",
  4117. "DisplayName": "Locked",
  4118. "References": {
  4119. "Reference": [
  4120. {
  4121. "ReferenceType": "HasTypeDefinition",
  4122. "$t": "i=68"
  4123. },
  4124. {
  4125. "ReferenceType": "HasModellingRule",
  4126. "$t": "i=78"
  4127. },
  4128. {
  4129. "ReferenceType": "HasProperty",
  4130. "IsForward": "false",
  4131. "$t": "ns=1;i=6388"
  4132. }
  4133. ]
  4134. }
  4135. },
  4136. {
  4137. "NodeId": "ns=1;i=6390",
  4138. "BrowseName": "1:LockingClient",
  4139. "ParentNodeId": "ns=1;i=6388",
  4140. "DataType": "String",
  4141. "DisplayName": "LockingClient",
  4142. "References": {
  4143. "Reference": [
  4144. {
  4145. "ReferenceType": "HasTypeDefinition",
  4146. "$t": "i=68"
  4147. },
  4148. {
  4149. "ReferenceType": "HasModellingRule",
  4150. "$t": "i=78"
  4151. },
  4152. {
  4153. "ReferenceType": "HasProperty",
  4154. "IsForward": "false",
  4155. "$t": "ns=1;i=6388"
  4156. }
  4157. ]
  4158. }
  4159. },
  4160. {
  4161. "NodeId": "ns=1;i=6391",
  4162. "BrowseName": "1:LockingUser",
  4163. "ParentNodeId": "ns=1;i=6388",
  4164. "DataType": "String",
  4165. "DisplayName": "LockingUser",
  4166. "References": {
  4167. "Reference": [
  4168. {
  4169. "ReferenceType": "HasTypeDefinition",
  4170. "$t": "i=68"
  4171. },
  4172. {
  4173. "ReferenceType": "HasModellingRule",
  4174. "$t": "i=78"
  4175. },
  4176. {
  4177. "ReferenceType": "HasProperty",
  4178. "IsForward": "false",
  4179. "$t": "ns=1;i=6388"
  4180. }
  4181. ]
  4182. }
  4183. },
  4184. {
  4185. "NodeId": "ns=1;i=6392",
  4186. "BrowseName": "1:RemainingLockTime",
  4187. "ParentNodeId": "ns=1;i=6388",
  4188. "DataType": "i=290",
  4189. "DisplayName": "RemainingLockTime",
  4190. "References": {
  4191. "Reference": [
  4192. {
  4193. "ReferenceType": "HasTypeDefinition",
  4194. "$t": "i=68"
  4195. },
  4196. {
  4197. "ReferenceType": "HasModellingRule",
  4198. "$t": "i=78"
  4199. },
  4200. {
  4201. "ReferenceType": "HasProperty",
  4202. "IsForward": "false",
  4203. "$t": "ns=1;i=6388"
  4204. }
  4205. ]
  4206. }
  4207. },
  4208. {
  4209. "NodeId": "ns=1;i=6394",
  4210. "BrowseName": "InputArguments",
  4211. "ParentNodeId": "ns=1;i=6393",
  4212. "DataType": "i=296",
  4213. "ValueRank": "1",
  4214. "ArrayDimensions": "0",
  4215. "DisplayName": "InputArguments",
  4216. "References": {
  4217. "Reference": [
  4218. {
  4219. "ReferenceType": "HasTypeDefinition",
  4220. "$t": "i=68"
  4221. },
  4222. {
  4223. "ReferenceType": "HasModellingRule",
  4224. "$t": "i=78"
  4225. },
  4226. {
  4227. "ReferenceType": "HasProperty",
  4228. "IsForward": "false",
  4229. "$t": "ns=1;i=6393"
  4230. }
  4231. ]
  4232. },
  4233. "Value": {
  4234. "ListOfExtensionObject": {
  4235. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4236. "ExtensionObject": {
  4237. "TypeId": {
  4238. "Identifier": "i=297"
  4239. },
  4240. "Body": {
  4241. "Argument": {
  4242. "Name": "Context",
  4243. "DataType": {
  4244. "Identifier": "i=12"
  4245. },
  4246. "ValueRank": "-1",
  4247. "ArrayDimensions": {}
  4248. }
  4249. }
  4250. }
  4251. }
  4252. }
  4253. },
  4254. {
  4255. "NodeId": "ns=1;i=6395",
  4256. "BrowseName": "OutputArguments",
  4257. "ParentNodeId": "ns=1;i=6393",
  4258. "DataType": "i=296",
  4259. "ValueRank": "1",
  4260. "ArrayDimensions": "0",
  4261. "DisplayName": "OutputArguments",
  4262. "References": {
  4263. "Reference": [
  4264. {
  4265. "ReferenceType": "HasTypeDefinition",
  4266. "$t": "i=68"
  4267. },
  4268. {
  4269. "ReferenceType": "HasModellingRule",
  4270. "$t": "i=78"
  4271. },
  4272. {
  4273. "ReferenceType": "HasProperty",
  4274. "IsForward": "false",
  4275. "$t": "ns=1;i=6393"
  4276. }
  4277. ]
  4278. },
  4279. "Value": {
  4280. "ListOfExtensionObject": {
  4281. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4282. "ExtensionObject": {
  4283. "TypeId": {
  4284. "Identifier": "i=297"
  4285. },
  4286. "Body": {
  4287. "Argument": {
  4288. "Name": "InitLockStatus",
  4289. "DataType": {
  4290. "Identifier": "i=6"
  4291. },
  4292. "ValueRank": "-1",
  4293. "ArrayDimensions": {}
  4294. }
  4295. }
  4296. }
  4297. }
  4298. }
  4299. },
  4300. {
  4301. "NodeId": "ns=1;i=6397",
  4302. "BrowseName": "OutputArguments",
  4303. "ParentNodeId": "ns=1;i=6396",
  4304. "DataType": "i=296",
  4305. "ValueRank": "1",
  4306. "ArrayDimensions": "0",
  4307. "DisplayName": "OutputArguments",
  4308. "References": {
  4309. "Reference": [
  4310. {
  4311. "ReferenceType": "HasTypeDefinition",
  4312. "$t": "i=68"
  4313. },
  4314. {
  4315. "ReferenceType": "HasModellingRule",
  4316. "$t": "i=78"
  4317. },
  4318. {
  4319. "ReferenceType": "HasProperty",
  4320. "IsForward": "false",
  4321. "$t": "ns=1;i=6396"
  4322. }
  4323. ]
  4324. },
  4325. "Value": {
  4326. "ListOfExtensionObject": {
  4327. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4328. "ExtensionObject": {
  4329. "TypeId": {
  4330. "Identifier": "i=297"
  4331. },
  4332. "Body": {
  4333. "Argument": {
  4334. "Name": "RenewLockStatus",
  4335. "DataType": {
  4336. "Identifier": "i=6"
  4337. },
  4338. "ValueRank": "-1",
  4339. "ArrayDimensions": {}
  4340. }
  4341. }
  4342. }
  4343. }
  4344. }
  4345. },
  4346. {
  4347. "NodeId": "ns=1;i=6399",
  4348. "BrowseName": "OutputArguments",
  4349. "ParentNodeId": "ns=1;i=6398",
  4350. "DataType": "i=296",
  4351. "ValueRank": "1",
  4352. "ArrayDimensions": "0",
  4353. "DisplayName": "OutputArguments",
  4354. "References": {
  4355. "Reference": [
  4356. {
  4357. "ReferenceType": "HasTypeDefinition",
  4358. "$t": "i=68"
  4359. },
  4360. {
  4361. "ReferenceType": "HasModellingRule",
  4362. "$t": "i=78"
  4363. },
  4364. {
  4365. "ReferenceType": "HasProperty",
  4366. "IsForward": "false",
  4367. "$t": "ns=1;i=6398"
  4368. }
  4369. ]
  4370. },
  4371. "Value": {
  4372. "ListOfExtensionObject": {
  4373. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4374. "ExtensionObject": {
  4375. "TypeId": {
  4376. "Identifier": "i=297"
  4377. },
  4378. "Body": {
  4379. "Argument": {
  4380. "Name": "ExitLockStatus",
  4381. "DataType": {
  4382. "Identifier": "i=6"
  4383. },
  4384. "ValueRank": "-1",
  4385. "ArrayDimensions": {}
  4386. }
  4387. }
  4388. }
  4389. }
  4390. }
  4391. },
  4392. {
  4393. "NodeId": "ns=1;i=6401",
  4394. "BrowseName": "OutputArguments",
  4395. "ParentNodeId": "ns=1;i=6400",
  4396. "DataType": "i=296",
  4397. "ValueRank": "1",
  4398. "ArrayDimensions": "0",
  4399. "DisplayName": "OutputArguments",
  4400. "References": {
  4401. "Reference": [
  4402. {
  4403. "ReferenceType": "HasTypeDefinition",
  4404. "$t": "i=68"
  4405. },
  4406. {
  4407. "ReferenceType": "HasModellingRule",
  4408. "$t": "i=78"
  4409. },
  4410. {
  4411. "ReferenceType": "HasProperty",
  4412. "IsForward": "false",
  4413. "$t": "ns=1;i=6400"
  4414. }
  4415. ]
  4416. },
  4417. "Value": {
  4418. "ListOfExtensionObject": {
  4419. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4420. "ExtensionObject": {
  4421. "TypeId": {
  4422. "Identifier": "i=297"
  4423. },
  4424. "Body": {
  4425. "Argument": {
  4426. "Name": "BreakLockStatus",
  4427. "DataType": {
  4428. "Identifier": "i=6"
  4429. },
  4430. "ValueRank": "-1",
  4431. "ArrayDimensions": {}
  4432. }
  4433. }
  4434. }
  4435. }
  4436. }
  4437. },
  4438. {
  4439. "NodeId": "ns=1;i=6435",
  4440. "BrowseName": "1:Opc.Ua.Di",
  4441. "SymbolicName": "OpcUaDi_BinarySchema",
  4442. "DataType": "ByteString",
  4443. "DisplayName": "Opc.Ua.Di",
  4444. "References": {
  4445. "Reference": [
  4446. {
  4447. "ReferenceType": "HasProperty",
  4448. "$t": "ns=1;i=6437"
  4449. },
  4450. {
  4451. "ReferenceType": "HasProperty",
  4452. "$t": "ns=1;i=15893"
  4453. },
  4454. {
  4455. "ReferenceType": "HasComponent",
  4456. "$t": "ns=1;i=6555"
  4457. },
  4458. {
  4459. "ReferenceType": "HasComponent",
  4460. "$t": "ns=1;i=15894"
  4461. },
  4462. {
  4463. "ReferenceType": "HasComponent",
  4464. "$t": "ns=1;i=15897"
  4465. },
  4466. {
  4467. "ReferenceType": "HasComponent",
  4468. "$t": "ns=1;i=6564"
  4469. },
  4470. {
  4471. "ReferenceType": "HasComponent",
  4472. "IsForward": "false",
  4473. "$t": "i=93"
  4474. },
  4475. {
  4476. "ReferenceType": "HasTypeDefinition",
  4477. "$t": "i=72"
  4478. }
  4479. ]
  4480. },
  4481. "Value": {
  4482. "ByteString": {
  4483. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4484. "$t": "PG9wYzpUeXBlRGljdGlvbmFyeQ0KICB4bWxuczpvcGM9Imh0dHA6Ly9vcGNmb3VuZGF0aW9uLm9y\nZy9CaW5hcnlTY2hlbWEvIg0KICB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1M\nU2NoZW1hLWluc3RhbmNlIg0KICB4bWxuczp1YT0iaHR0cDovL29wY2ZvdW5kYXRpb24ub3JnL1VB\nLyINCiAgeG1sbnM6dG5zPSJodHRwOi8vb3BjZm91bmRhdGlvbi5vcmcvVUEvREkvIg0KICBEZWZh\ndWx0Qnl0ZU9yZGVyPSJMaXR0bGVFbmRpYW4iDQogIFRhcmdldE5hbWVzcGFjZT0iaHR0cDovL29w\nY2ZvdW5kYXRpb24ub3JnL1VBL0RJLyINCj4NCiAgPG9wYzpJbXBvcnQgTmFtZXNwYWNlPSJodHRw\nOi8vb3BjZm91bmRhdGlvbi5vcmcvVUEvIiBMb2NhdGlvbj0iT3BjLlVhLkJpbmFyeVNjaGVtYS5i\nc2QiLz4NCg0KICA8b3BjOkVudW1lcmF0ZWRUeXBlIE5hbWU9IkRldmljZUhlYWx0aEVudW1lcmF0\naW9uIiBMZW5ndGhJbkJpdHM9IjMyIj4NCiAgICA8b3BjOkVudW1lcmF0ZWRWYWx1ZSBOYW1lPSJO\nT1JNQUwiIFZhbHVlPSIwIiAvPg0KICAgIDxvcGM6RW51bWVyYXRlZFZhbHVlIE5hbWU9IkZBSUxV\nUkUiIFZhbHVlPSIxIiAvPg0KICAgIDxvcGM6RW51bWVyYXRlZFZhbHVlIE5hbWU9IkNIRUNLX0ZV\nTkNUSU9OIiBWYWx1ZT0iMiIgLz4NCiAgICA8b3BjOkVudW1lcmF0ZWRWYWx1ZSBOYW1lPSJPRkZf\nU1BFQyIgVmFsdWU9IjMiIC8+DQogICAgPG9wYzpFbnVtZXJhdGVkVmFsdWUgTmFtZT0iTUFJTlRF\nTkFOQ0VfUkVRVUlSRUQiIFZhbHVlPSI0IiAvPg0KICA8L29wYzpFbnVtZXJhdGVkVHlwZT4NCg0K\nICA8b3BjOlN0cnVjdHVyZWRUeXBlIE5hbWU9IkZldGNoUmVzdWx0RGF0YVR5cGUiIEJhc2VUeXBl\nPSJ1YTpFeHRlbnNpb25PYmplY3QiPg0KICA8L29wYzpTdHJ1Y3R1cmVkVHlwZT4NCg0KICA8b3Bj\nOlN0cnVjdHVyZWRUeXBlIE5hbWU9IlRyYW5zZmVyUmVzdWx0RXJyb3JEYXRhVHlwZSIgQmFzZVR5\ncGU9InRuczpGZXRjaFJlc3VsdERhdGFUeXBlIj4NCiAgICA8b3BjOkZpZWxkIE5hbWU9IlN0YXR1\ncyIgVHlwZU5hbWU9Im9wYzpJbnQzMiIgLz4NCiAgICA8b3BjOkZpZWxkIE5hbWU9IkRpYWdub3N0\naWNzIiBUeXBlTmFtZT0idWE6RGlhZ25vc3RpY0luZm8iIC8+DQogIDwvb3BjOlN0cnVjdHVyZWRU\neXBlPg0KDQogIDxvcGM6U3RydWN0dXJlZFR5cGUgTmFtZT0iVHJhbnNmZXJSZXN1bHREYXRhRGF0\nYVR5cGUiIEJhc2VUeXBlPSJ0bnM6RmV0Y2hSZXN1bHREYXRhVHlwZSI+DQogICAgPG9wYzpGaWVs\nZCBOYW1lPSJTZXF1ZW5jZU51bWJlciIgVHlwZU5hbWU9Im9wYzpJbnQzMiIgLz4NCiAgICA8b3Bj\nOkZpZWxkIE5hbWU9IkVuZE9mUmVzdWx0cyIgVHlwZU5hbWU9Im9wYzpCb29sZWFuIiAvPg0KICAg\nIDxvcGM6RmllbGQgTmFtZT0iTm9PZlBhcmFtZXRlckRlZnMiIFR5cGVOYW1lPSJvcGM6SW50MzIi\nIC8+DQogICAgPG9wYzpGaWVsZCBOYW1lPSJQYXJhbWV0ZXJEZWZzIiBUeXBlTmFtZT0idG5zOlBh\ncmFtZXRlclJlc3VsdERhdGFUeXBlIiBMZW5ndGhGaWVsZD0iTm9PZlBhcmFtZXRlckRlZnMiIC8+\nDQogIDwvb3BjOlN0cnVjdHVyZWRUeXBlPg0KDQogIDxvcGM6U3RydWN0dXJlZFR5cGUgTmFtZT0i\nUGFyYW1ldGVyUmVzdWx0RGF0YVR5cGUiIEJhc2VUeXBlPSJ1YTpFeHRlbnNpb25PYmplY3QiPg0K\nICAgIDxvcGM6RmllbGQgTmFtZT0iTm9PZk5vZGVQYXRoIiBUeXBlTmFtZT0ib3BjOkludDMyIiAv\nPg0KICAgIDxvcGM6RmllbGQgTmFtZT0iTm9kZVBhdGgiIFR5cGVOYW1lPSJ1YTpRdWFsaWZpZWRO\nYW1lIiBMZW5ndGhGaWVsZD0iTm9PZk5vZGVQYXRoIiAvPg0KICAgIDxvcGM6RmllbGQgTmFtZT0i\nU3RhdHVzQ29kZSIgVHlwZU5hbWU9InVhOlN0YXR1c0NvZGUiIC8+DQogICAgPG9wYzpGaWVsZCBO\nYW1lPSJEaWFnbm9zdGljcyIgVHlwZU5hbWU9InVhOkRpYWdub3N0aWNJbmZvIiAvPg0KICA8L29w\nYzpTdHJ1Y3R1cmVkVHlwZT4NCg0KPC9vcGM6VHlwZURpY3Rpb25hcnk+"
  4485. }
  4486. }
  4487. },
  4488. {
  4489. "NodeId": "ns=1;i=6437",
  4490. "BrowseName": "NamespaceUri",
  4491. "ParentNodeId": "ns=1;i=6435",
  4492. "DataType": "String",
  4493. "DisplayName": "NamespaceUri",
  4494. "References": {
  4495. "Reference": [
  4496. {
  4497. "ReferenceType": "HasTypeDefinition",
  4498. "$t": "i=68"
  4499. },
  4500. {
  4501. "ReferenceType": "HasProperty",
  4502. "IsForward": "false",
  4503. "$t": "ns=1;i=6435"
  4504. }
  4505. ]
  4506. },
  4507. "Value": {
  4508. "String": {
  4509. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4510. "$t": "http://opcfoundation.org/UA/DI/"
  4511. }
  4512. }
  4513. },
  4514. {
  4515. "NodeId": "ns=1;i=15893",
  4516. "BrowseName": "Deprecated",
  4517. "ParentNodeId": "ns=1;i=6435",
  4518. "DataType": "Boolean",
  4519. "DisplayName": "Deprecated",
  4520. "References": {
  4521. "Reference": [
  4522. {
  4523. "ReferenceType": "HasTypeDefinition",
  4524. "$t": "i=68"
  4525. },
  4526. {
  4527. "ReferenceType": "HasProperty",
  4528. "IsForward": "false",
  4529. "$t": "ns=1;i=6435"
  4530. }
  4531. ]
  4532. },
  4533. "Value": {
  4534. "Boolean": {
  4535. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4536. "$t": "true"
  4537. }
  4538. }
  4539. },
  4540. {
  4541. "NodeId": "ns=1;i=6555",
  4542. "BrowseName": "1:FetchResultDataType",
  4543. "ParentNodeId": "ns=1;i=6435",
  4544. "DataType": "String",
  4545. "DisplayName": "FetchResultDataType",
  4546. "References": {
  4547. "Reference": [
  4548. {
  4549. "ReferenceType": "HasTypeDefinition",
  4550. "$t": "i=69"
  4551. },
  4552. {
  4553. "ReferenceType": "HasComponent",
  4554. "IsForward": "false",
  4555. "$t": "ns=1;i=6435"
  4556. }
  4557. ]
  4558. },
  4559. "Value": {
  4560. "String": {
  4561. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4562. "$t": "FetchResultDataType"
  4563. }
  4564. }
  4565. },
  4566. {
  4567. "NodeId": "ns=1;i=15894",
  4568. "BrowseName": "1:TransferResultErrorDataType",
  4569. "ParentNodeId": "ns=1;i=6435",
  4570. "DataType": "String",
  4571. "DisplayName": "TransferResultErrorDataType",
  4572. "References": {
  4573. "Reference": [
  4574. {
  4575. "ReferenceType": "HasTypeDefinition",
  4576. "$t": "i=69"
  4577. },
  4578. {
  4579. "ReferenceType": "HasComponent",
  4580. "IsForward": "false",
  4581. "$t": "ns=1;i=6435"
  4582. }
  4583. ]
  4584. },
  4585. "Value": {
  4586. "String": {
  4587. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4588. "$t": "TransferResultErrorDataType"
  4589. }
  4590. }
  4591. },
  4592. {
  4593. "NodeId": "ns=1;i=15897",
  4594. "BrowseName": "1:TransferResultDataDataType",
  4595. "ParentNodeId": "ns=1;i=6435",
  4596. "DataType": "String",
  4597. "DisplayName": "TransferResultDataDataType",
  4598. "References": {
  4599. "Reference": [
  4600. {
  4601. "ReferenceType": "HasTypeDefinition",
  4602. "$t": "i=69"
  4603. },
  4604. {
  4605. "ReferenceType": "HasComponent",
  4606. "IsForward": "false",
  4607. "$t": "ns=1;i=6435"
  4608. }
  4609. ]
  4610. },
  4611. "Value": {
  4612. "String": {
  4613. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4614. "$t": "TransferResultDataDataType"
  4615. }
  4616. }
  4617. },
  4618. {
  4619. "NodeId": "ns=1;i=6564",
  4620. "BrowseName": "1:ParameterResultDataType",
  4621. "ParentNodeId": "ns=1;i=6435",
  4622. "DataType": "String",
  4623. "DisplayName": "ParameterResultDataType",
  4624. "References": {
  4625. "Reference": [
  4626. {
  4627. "ReferenceType": "HasTypeDefinition",
  4628. "$t": "i=69"
  4629. },
  4630. {
  4631. "ReferenceType": "HasComponent",
  4632. "IsForward": "false",
  4633. "$t": "ns=1;i=6435"
  4634. }
  4635. ]
  4636. },
  4637. "Value": {
  4638. "String": {
  4639. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4640. "$t": "ParameterResultDataType"
  4641. }
  4642. }
  4643. },
  4644. {
  4645. "NodeId": "ns=1;i=6423",
  4646. "BrowseName": "1:Opc.Ua.Di",
  4647. "SymbolicName": "OpcUaDi_XmlSchema",
  4648. "DataType": "ByteString",
  4649. "DisplayName": "Opc.Ua.Di",
  4650. "References": {
  4651. "Reference": [
  4652. {
  4653. "ReferenceType": "HasProperty",
  4654. "$t": "ns=1;i=6425"
  4655. },
  4656. {
  4657. "ReferenceType": "HasProperty",
  4658. "$t": "ns=1;i=15902"
  4659. },
  4660. {
  4661. "ReferenceType": "HasComponent",
  4662. "$t": "ns=1;i=6539"
  4663. },
  4664. {
  4665. "ReferenceType": "HasComponent",
  4666. "$t": "ns=1;i=15903"
  4667. },
  4668. {
  4669. "ReferenceType": "HasComponent",
  4670. "$t": "ns=1;i=15906"
  4671. },
  4672. {
  4673. "ReferenceType": "HasComponent",
  4674. "$t": "ns=1;i=6548"
  4675. },
  4676. {
  4677. "ReferenceType": "HasComponent",
  4678. "IsForward": "false",
  4679. "$t": "i=92"
  4680. },
  4681. {
  4682. "ReferenceType": "HasTypeDefinition",
  4683. "$t": "i=72"
  4684. }
  4685. ]
  4686. },
  4687. "Value": {
  4688. "ByteString": {
  4689. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4690. "$t": "PHhzOnNjaGVtYQ0KICB4bWxuczp4cz0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEi\nDQogIHhtbG5zOnVhPSJodHRwOi8vb3BjZm91bmRhdGlvbi5vcmcvVUEvMjAwOC8wMi9UeXBlcy54\nc2QiDQogIHhtbG5zOnRucz0iaHR0cDovL29wY2ZvdW5kYXRpb24ub3JnL1VBL0RJL1R5cGVzLnhz\nZCINCiAgdGFyZ2V0TmFtZXNwYWNlPSJodHRwOi8vb3BjZm91bmRhdGlvbi5vcmcvVUEvREkvVHlw\nZXMueHNkIg0KICBlbGVtZW50Rm9ybURlZmF1bHQ9InF1YWxpZmllZCINCj4NCiAgPHhzOmltcG9y\ndCBuYW1lc3BhY2U9Imh0dHA6Ly9vcGNmb3VuZGF0aW9uLm9yZy9VQS8yMDA4LzAyL1R5cGVzLnhz\nZCIgLz4NCg0KICA8eHM6c2ltcGxlVHlwZSAgbmFtZT0iRGV2aWNlSGVhbHRoRW51bWVyYXRpb24i\nPg0KICAgIDx4czpyZXN0cmljdGlvbiBiYXNlPSJ4czpzdHJpbmciPg0KICAgICAgPHhzOmVudW1l\ncmF0aW9uIHZhbHVlPSJOT1JNQUxfMCIgLz4NCiAgICAgIDx4czplbnVtZXJhdGlvbiB2YWx1ZT0i\nRkFJTFVSRV8xIiAvPg0KICAgICAgPHhzOmVudW1lcmF0aW9uIHZhbHVlPSJDSEVDS19GVU5DVElP\nTl8yIiAvPg0KICAgICAgPHhzOmVudW1lcmF0aW9uIHZhbHVlPSJPRkZfU1BFQ18zIiAvPg0KICAg\nICAgPHhzOmVudW1lcmF0aW9uIHZhbHVlPSJNQUlOVEVOQU5DRV9SRVFVSVJFRF80IiAvPg0KICAg\nIDwveHM6cmVzdHJpY3Rpb24+DQogIDwveHM6c2ltcGxlVHlwZT4NCiAgPHhzOmVsZW1lbnQgbmFt\nZT0iRGV2aWNlSGVhbHRoRW51bWVyYXRpb24iIHR5cGU9InRuczpEZXZpY2VIZWFsdGhFbnVtZXJh\ndGlvbiIgLz4NCg0KICA8eHM6Y29tcGxleFR5cGUgbmFtZT0iTGlzdE9mRGV2aWNlSGVhbHRoRW51\nbWVyYXRpb24iPg0KICAgIDx4czpzZXF1ZW5jZT4NCiAgICAgIDx4czplbGVtZW50IG5hbWU9IkRl\ndmljZUhlYWx0aEVudW1lcmF0aW9uIiB0eXBlPSJ0bnM6RGV2aWNlSGVhbHRoRW51bWVyYXRpb24i\nIG1pbk9jY3Vycz0iMCIgbWF4T2NjdXJzPSJ1bmJvdW5kZWQiIC8+DQogICAgPC94czpzZXF1ZW5j\nZT4NCiAgPC94czpjb21wbGV4VHlwZT4NCiAgPHhzOmVsZW1lbnQgbmFtZT0iTGlzdE9mRGV2aWNl\nSGVhbHRoRW51bWVyYXRpb24iIHR5cGU9InRuczpMaXN0T2ZEZXZpY2VIZWFsdGhFbnVtZXJhdGlv\nbiIgbmlsbGFibGU9InRydWUiPjwveHM6ZWxlbWVudD4NCg0KICA8eHM6Y29tcGxleFR5cGUgbmFt\nZT0iRmV0Y2hSZXN1bHREYXRhVHlwZSI+DQogICAgPHhzOnNlcXVlbmNlPg0KICAgIDwveHM6c2Vx\ndWVuY2U+DQogIDwveHM6Y29tcGxleFR5cGU+DQogIDx4czplbGVtZW50IG5hbWU9IkZldGNoUmVz\ndWx0RGF0YVR5cGUiIHR5cGU9InRuczpGZXRjaFJlc3VsdERhdGFUeXBlIiAvPg0KDQogIDx4czpj\nb21wbGV4VHlwZSBuYW1lPSJMaXN0T2ZGZXRjaFJlc3VsdERhdGFUeXBlIj4NCiAgICA8eHM6c2Vx\ndWVuY2U+DQogICAgICA8eHM6ZWxlbWVudCBuYW1lPSJGZXRjaFJlc3VsdERhdGFUeXBlIiB0eXBl\nPSJ0bnM6RmV0Y2hSZXN1bHREYXRhVHlwZSIgbWluT2NjdXJzPSIwIiBtYXhPY2N1cnM9InVuYm91\nbmRlZCIgbmlsbGFibGU9InRydWUiIC8+DQogICAgPC94czpzZXF1ZW5jZT4NCiAgPC94czpjb21w\nbGV4VHlwZT4NCiAgPHhzOmVsZW1lbnQgbmFtZT0iTGlzdE9mRmV0Y2hSZXN1bHREYXRhVHlwZSIg\ndHlwZT0idG5zOkxpc3RPZkZldGNoUmVzdWx0RGF0YVR5cGUiIG5pbGxhYmxlPSJ0cnVlIj48L3hz\nOmVsZW1lbnQ+DQoNCiAgPHhzOmNvbXBsZXhUeXBlIG5hbWU9IlRyYW5zZmVyUmVzdWx0RXJyb3JE\nYXRhVHlwZSI+DQogICAgPHhzOmNvbXBsZXhDb250ZW50IG1peGVkPSJmYWxzZSI+DQogICAgICA8\neHM6ZXh0ZW5zaW9uIGJhc2U9InRuczpGZXRjaFJlc3VsdERhdGFUeXBlIj4NCiAgICAgICAgPHhz\nOnNlcXVlbmNlPg0KICAgICAgICAgIDx4czplbGVtZW50IG5hbWU9IlN0YXR1cyIgdHlwZT0ieHM6\naW50IiBtaW5PY2N1cnM9IjAiIC8+DQogICAgICAgICAgPHhzOmVsZW1lbnQgbmFtZT0iRGlhZ25v\nc3RpY3MiIHR5cGU9InVhOkRpYWdub3N0aWNJbmZvIiBtaW5PY2N1cnM9IjAiIG5pbGxhYmxlPSJ0\ncnVlIiAvPg0KICAgICAgICA8L3hzOnNlcXVlbmNlPg0KICAgICAgPC94czpleHRlbnNpb24+DQog\nICAgPC94czpjb21wbGV4Q29udGVudD4NCiAgPC94czpjb21wbGV4VHlwZT4NCiAgPHhzOmVsZW1l\nbnQgbmFtZT0iVHJhbnNmZXJSZXN1bHRFcnJvckRhdGFUeXBlIiB0eXBlPSJ0bnM6VHJhbnNmZXJS\nZXN1bHRFcnJvckRhdGFUeXBlIiAvPg0KDQogIDx4czpjb21wbGV4VHlwZSBuYW1lPSJMaXN0T2ZU\ncmFuc2ZlclJlc3VsdEVycm9yRGF0YVR5cGUiPg0KICAgIDx4czpzZXF1ZW5jZT4NCiAgICAgIDx4\nczplbGVtZW50IG5hbWU9IlRyYW5zZmVyUmVzdWx0RXJyb3JEYXRhVHlwZSIgdHlwZT0idG5zOlRy\nYW5zZmVyUmVzdWx0RXJyb3JEYXRhVHlwZSIgbWluT2NjdXJzPSIwIiBtYXhPY2N1cnM9InVuYm91\nbmRlZCIgbmlsbGFibGU9InRydWUiIC8+DQogICAgPC94czpzZXF1ZW5jZT4NCiAgPC94czpjb21w\nbGV4VHlwZT4NCiAgPHhzOmVsZW1lbnQgbmFtZT0iTGlzdE9mVHJhbnNmZXJSZXN1bHRFcnJvckRh\ndGFUeXBlIiB0eXBlPSJ0bnM6TGlzdE9mVHJhbnNmZXJSZXN1bHRFcnJvckRhdGFUeXBlIiBuaWxs\nYWJsZT0idHJ1ZSI+PC94czplbGVtZW50Pg0KDQogIDx4czpjb21wbGV4VHlwZSBuYW1lPSJUcmFu\nc2ZlclJlc3VsdERhdGFEYXRhVHlwZSI+DQogICAgPHhzOmNvbXBsZXhDb250ZW50IG1peGVkPSJm\nYWxzZSI+DQogICAgICA8eHM6ZXh0ZW5zaW9uIGJhc2U9InRuczpGZXRjaFJlc3VsdERhdGFUeXBl\nIj4NCiAgICAgICAgPHhzOnNlcXVlbmNlPg0KICAgICAgICAgIDx4czplbGVtZW50IG5hbWU9IlNl\ncXVlbmNlTnVtYmVyIiB0eXBlPSJ4czppbnQiIG1pbk9jY3Vycz0iMCIgLz4NCiAgICAgICAgICA8\neHM6ZWxlbWVudCBuYW1lPSJFbmRPZlJlc3VsdHMiIHR5cGU9InhzOmJvb2xlYW4iIG1pbk9jY3Vy\ncz0iMCIgLz4NCiAgICAgICAgICA8eHM6ZWxlbWVudCBuYW1lPSJQYXJhbWV0ZXJEZWZzIiB0eXBl\nPSJ0bnM6TGlzdE9mUGFyYW1ldGVyUmVzdWx0RGF0YVR5cGUiIG1pbk9jY3Vycz0iMCIgbmlsbGFi\nbGU9InRydWUiIC8+DQogICAgICAgIDwveHM6c2VxdWVuY2U+DQogICAgICA8L3hzOmV4dGVuc2lv\nbj4NCiAgICA8L3hzOmNvbXBsZXhDb250ZW50Pg0KICA8L3hzOmNvbXBsZXhUeXBlPg0KICA8eHM6\nZWxlbWVudCBuYW1lPSJUcmFuc2ZlclJlc3VsdERhdGFEYXRhVHlwZSIgdHlwZT0idG5zOlRyYW5z\nZmVyUmVzdWx0RGF0YURhdGFUeXBlIiAvPg0KDQogIDx4czpjb21wbGV4VHlwZSBuYW1lPSJMaXN0\nT2ZUcmFuc2ZlclJlc3VsdERhdGFEYXRhVHlwZSI+DQogICAgPHhzOnNlcXVlbmNlPg0KICAgICAg\nPHhzOmVsZW1lbnQgbmFtZT0iVHJhbnNmZXJSZXN1bHREYXRhRGF0YVR5cGUiIHR5cGU9InRuczpU\ncmFuc2ZlclJlc3VsdERhdGFEYXRhVHlwZSIgbWluT2NjdXJzPSIwIiBtYXhPY2N1cnM9InVuYm91\nbmRlZCIgbmlsbGFibGU9InRydWUiIC8+DQogICAgPC94czpzZXF1ZW5jZT4NCiAgPC94czpjb21w\nbGV4VHlwZT4NCiAgPHhzOmVsZW1lbnQgbmFtZT0iTGlzdE9mVHJhbnNmZXJSZXN1bHREYXRhRGF0\nYVR5cGUiIHR5cGU9InRuczpMaXN0T2ZUcmFuc2ZlclJlc3VsdERhdGFEYXRhVHlwZSIgbmlsbGFi\nbGU9InRydWUiPjwveHM6ZWxlbWVudD4NCg0KICA8eHM6Y29tcGxleFR5cGUgbmFtZT0iUGFyYW1l\ndGVyUmVzdWx0RGF0YVR5cGUiPg0KICAgIDx4czpzZXF1ZW5jZT4NCiAgICAgIDx4czplbGVtZW50\nIG5hbWU9Ik5vZGVQYXRoIiB0eXBlPSJ1YTpMaXN0T2ZRdWFsaWZpZWROYW1lIiBtaW5PY2N1cnM9\nIjAiIG5pbGxhYmxlPSJ0cnVlIiAvPg0KICAgICAgPHhzOmVsZW1lbnQgbmFtZT0iU3RhdHVzQ29k\nZSIgdHlwZT0idWE6U3RhdHVzQ29kZSIgbWluT2NjdXJzPSIwIiAvPg0KICAgICAgPHhzOmVsZW1l\nbnQgbmFtZT0iRGlhZ25vc3RpY3MiIHR5cGU9InVhOkRpYWdub3N0aWNJbmZvIiBtaW5PY2N1cnM9\nIjAiIG5pbGxhYmxlPSJ0cnVlIiAvPg0KICAgIDwveHM6c2VxdWVuY2U+DQogIDwveHM6Y29tcGxl\neFR5cGU+DQogIDx4czplbGVtZW50IG5hbWU9IlBhcmFtZXRlclJlc3VsdERhdGFUeXBlIiB0eXBl\nPSJ0bnM6UGFyYW1ldGVyUmVzdWx0RGF0YVR5cGUiIC8+DQoNCiAgPHhzOmNvbXBsZXhUeXBlIG5h\nbWU9Ikxpc3RPZlBhcmFtZXRlclJlc3VsdERhdGFUeXBlIj4NCiAgICA8eHM6c2VxdWVuY2U+DQog\nICAgICA8eHM6ZWxlbWVudCBuYW1lPSJQYXJhbWV0ZXJSZXN1bHREYXRhVHlwZSIgdHlwZT0idG5z\nOlBhcmFtZXRlclJlc3VsdERhdGFUeXBlIiBtaW5PY2N1cnM9IjAiIG1heE9jY3Vycz0idW5ib3Vu\nZGVkIiBuaWxsYWJsZT0idHJ1ZSIgLz4NCiAgICA8L3hzOnNlcXVlbmNlPg0KICA8L3hzOmNvbXBs\nZXhUeXBlPg0KICA8eHM6ZWxlbWVudCBuYW1lPSJMaXN0T2ZQYXJhbWV0ZXJSZXN1bHREYXRhVHlw\nZSIgdHlwZT0idG5zOkxpc3RPZlBhcmFtZXRlclJlc3VsdERhdGFUeXBlIiBuaWxsYWJsZT0idHJ1\nZSI+PC94czplbGVtZW50Pg0KDQo8L3hzOnNjaGVtYT4="
  4691. }
  4692. }
  4693. },
  4694. {
  4695. "NodeId": "ns=1;i=6425",
  4696. "BrowseName": "NamespaceUri",
  4697. "ParentNodeId": "ns=1;i=6423",
  4698. "DataType": "String",
  4699. "DisplayName": "NamespaceUri",
  4700. "References": {
  4701. "Reference": [
  4702. {
  4703. "ReferenceType": "HasTypeDefinition",
  4704. "$t": "i=68"
  4705. },
  4706. {
  4707. "ReferenceType": "HasProperty",
  4708. "IsForward": "false",
  4709. "$t": "ns=1;i=6423"
  4710. }
  4711. ]
  4712. },
  4713. "Value": {
  4714. "String": {
  4715. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4716. "$t": "http://opcfoundation.org/UA/DI/Types.xsd"
  4717. }
  4718. }
  4719. },
  4720. {
  4721. "NodeId": "ns=1;i=15902",
  4722. "BrowseName": "Deprecated",
  4723. "ParentNodeId": "ns=1;i=6423",
  4724. "DataType": "Boolean",
  4725. "DisplayName": "Deprecated",
  4726. "References": {
  4727. "Reference": [
  4728. {
  4729. "ReferenceType": "HasTypeDefinition",
  4730. "$t": "i=68"
  4731. },
  4732. {
  4733. "ReferenceType": "HasProperty",
  4734. "IsForward": "false",
  4735. "$t": "ns=1;i=6423"
  4736. }
  4737. ]
  4738. },
  4739. "Value": {
  4740. "Boolean": {
  4741. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4742. "$t": "true"
  4743. }
  4744. }
  4745. },
  4746. {
  4747. "NodeId": "ns=1;i=6539",
  4748. "BrowseName": "1:FetchResultDataType",
  4749. "ParentNodeId": "ns=1;i=6423",
  4750. "DataType": "String",
  4751. "DisplayName": "FetchResultDataType",
  4752. "References": {
  4753. "Reference": [
  4754. {
  4755. "ReferenceType": "HasTypeDefinition",
  4756. "$t": "i=69"
  4757. },
  4758. {
  4759. "ReferenceType": "HasComponent",
  4760. "IsForward": "false",
  4761. "$t": "ns=1;i=6423"
  4762. }
  4763. ]
  4764. },
  4765. "Value": {
  4766. "String": {
  4767. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4768. "$t": "//xs:element[@name='FetchResultDataType']"
  4769. }
  4770. }
  4771. },
  4772. {
  4773. "NodeId": "ns=1;i=15903",
  4774. "BrowseName": "1:TransferResultErrorDataType",
  4775. "ParentNodeId": "ns=1;i=6423",
  4776. "DataType": "String",
  4777. "DisplayName": "TransferResultErrorDataType",
  4778. "References": {
  4779. "Reference": [
  4780. {
  4781. "ReferenceType": "HasTypeDefinition",
  4782. "$t": "i=69"
  4783. },
  4784. {
  4785. "ReferenceType": "HasComponent",
  4786. "IsForward": "false",
  4787. "$t": "ns=1;i=6423"
  4788. }
  4789. ]
  4790. },
  4791. "Value": {
  4792. "String": {
  4793. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4794. "$t": "//xs:element[@name='TransferResultErrorDataType']"
  4795. }
  4796. }
  4797. },
  4798. {
  4799. "NodeId": "ns=1;i=15906",
  4800. "BrowseName": "1:TransferResultDataDataType",
  4801. "ParentNodeId": "ns=1;i=6423",
  4802. "DataType": "String",
  4803. "DisplayName": "TransferResultDataDataType",
  4804. "References": {
  4805. "Reference": [
  4806. {
  4807. "ReferenceType": "HasTypeDefinition",
  4808. "$t": "i=69"
  4809. },
  4810. {
  4811. "ReferenceType": "HasComponent",
  4812. "IsForward": "false",
  4813. "$t": "ns=1;i=6423"
  4814. }
  4815. ]
  4816. },
  4817. "Value": {
  4818. "String": {
  4819. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4820. "$t": "//xs:element[@name='TransferResultDataDataType']"
  4821. }
  4822. }
  4823. },
  4824. {
  4825. "NodeId": "ns=1;i=6548",
  4826. "BrowseName": "1:ParameterResultDataType",
  4827. "ParentNodeId": "ns=1;i=6423",
  4828. "DataType": "String",
  4829. "DisplayName": "ParameterResultDataType",
  4830. "References": {
  4831. "Reference": [
  4832. {
  4833. "ReferenceType": "HasTypeDefinition",
  4834. "$t": "i=69"
  4835. },
  4836. {
  4837. "ReferenceType": "HasComponent",
  4838. "IsForward": "false",
  4839. "$t": "ns=1;i=6423"
  4840. }
  4841. ]
  4842. },
  4843. "Value": {
  4844. "String": {
  4845. "xmlns": "http://opcfoundation.org/UA/2008/02/Types.xsd",
  4846. "$t": "//xs:element[@name='ParameterResultDataType']"
  4847. }
  4848. }
  4849. }
  4850. ],
  4851. "UAReferenceType": [
  4852. {
  4853. "NodeId": "ns=1;i=6030",
  4854. "BrowseName": "1:ConnectsTo",
  4855. "Symmetric": "true",
  4856. "DisplayName": "ConnectsTo",
  4857. "Description": "Used to indicate that source and target Node have a topological connection.",
  4858. "References": {
  4859. "Reference": {
  4860. "ReferenceType": "HasSubtype",
  4861. "IsForward": "false",
  4862. "$t": "i=33"
  4863. }
  4864. }
  4865. },
  4866. {
  4867. "NodeId": "ns=1;i=6467",
  4868. "BrowseName": "1:ConnectsToParent",
  4869. "Symmetric": "true",
  4870. "DisplayName": "ConnectsToParent",
  4871. "Description": "Defines the parent (i.e. the communication Device) of a Network.",
  4872. "References": {
  4873. "Reference": {
  4874. "ReferenceType": "HasSubtype",
  4875. "IsForward": "false",
  4876. "$t": "ns=1;i=6030"
  4877. }
  4878. }
  4879. },
  4880. {
  4881. "NodeId": "ns=1;i=6031",
  4882. "BrowseName": "1:IsOnline",
  4883. "DisplayName": "IsOnline",
  4884. "Description": "Used to bind the offline representation of a Device to the online representation.",
  4885. "References": {
  4886. "Reference": {
  4887. "ReferenceType": "HasSubtype",
  4888. "IsForward": "false",
  4889. "$t": "i=44"
  4890. }
  4891. },
  4892. "InverseName": "OnlineOf"
  4893. }
  4894. ],
  4895. "UAObjectType": [
  4896. {
  4897. "NodeId": "ns=1;i=1001",
  4898. "BrowseName": "1:TopologyElementType",
  4899. "IsAbstract": "true",
  4900. "DisplayName": "TopologyElementType",
  4901. "Description": "Defines the basic information components for all configurable elements in a device topology",
  4902. "References": {
  4903. "Reference": [
  4904. {
  4905. "ReferenceType": "HasComponent",
  4906. "$t": "ns=1;i=5002"
  4907. },
  4908. {
  4909. "ReferenceType": "HasComponent",
  4910. "$t": "ns=1;i=5003"
  4911. },
  4912. {
  4913. "ReferenceType": "HasComponent",
  4914. "$t": "ns=1;i=6567"
  4915. },
  4916. {
  4917. "ReferenceType": "HasComponent",
  4918. "$t": "ns=1;i=6014"
  4919. },
  4920. {
  4921. "ReferenceType": "HasComponent",
  4922. "$t": "ns=1;i=6161"
  4923. },
  4924. {
  4925. "ReferenceType": "HasSubtype",
  4926. "IsForward": "false",
  4927. "$t": "i=58"
  4928. }
  4929. ]
  4930. }
  4931. },
  4932. {
  4933. "NodeId": "ns=1;i=15035",
  4934. "BrowseName": "1:IVendorNameplateType",
  4935. "IsAbstract": "true",
  4936. "DisplayName": "IVendorNameplateType",
  4937. "References": {
  4938. "Reference": [
  4939. {
  4940. "ReferenceType": "HasProperty",
  4941. "$t": "ns=1;i=15036"
  4942. },
  4943. {
  4944. "ReferenceType": "HasProperty",
  4945. "$t": "ns=1;i=15037"
  4946. },
  4947. {
  4948. "ReferenceType": "HasProperty",
  4949. "$t": "ns=1;i=15038"
  4950. },
  4951. {
  4952. "ReferenceType": "HasProperty",
  4953. "$t": "ns=1;i=15039"
  4954. },
  4955. {
  4956. "ReferenceType": "HasProperty",
  4957. "$t": "ns=1;i=15040"
  4958. },
  4959. {
  4960. "ReferenceType": "HasProperty",
  4961. "$t": "ns=1;i=15041"
  4962. },
  4963. {
  4964. "ReferenceType": "HasProperty",
  4965. "$t": "ns=1;i=15042"
  4966. },
  4967. {
  4968. "ReferenceType": "HasProperty",
  4969. "$t": "ns=1;i=15043"
  4970. },
  4971. {
  4972. "ReferenceType": "HasProperty",
  4973. "$t": "ns=1;i=15044"
  4974. },
  4975. {
  4976. "ReferenceType": "HasProperty",
  4977. "$t": "ns=1;i=15045"
  4978. },
  4979. {
  4980. "ReferenceType": "HasProperty",
  4981. "$t": "ns=1;i=15046"
  4982. },
  4983. {
  4984. "ReferenceType": "HasProperty",
  4985. "$t": "ns=1;i=15047"
  4986. },
  4987. {
  4988. "ReferenceType": "HasSubtype",
  4989. "IsForward": "false",
  4990. "$t": "i=17602"
  4991. }
  4992. ]
  4993. }
  4994. },
  4995. {
  4996. "NodeId": "ns=1;i=15048",
  4997. "BrowseName": "1:ITagNameplateType",
  4998. "IsAbstract": "true",
  4999. "DisplayName": "ITagNameplateType",
  5000. "References": {
  5001. "Reference": [
  5002. {
  5003. "ReferenceType": "HasProperty",
  5004. "$t": "ns=1;i=15049"
  5005. },
  5006. {
  5007. "ReferenceType": "HasProperty",
  5008. "$t": "ns=1;i=15050"
  5009. },
  5010. {
  5011. "ReferenceType": "HasSubtype",
  5012. "IsForward": "false",
  5013. "$t": "i=17602"
  5014. }
  5015. ]
  5016. }
  5017. },
  5018. {
  5019. "NodeId": "ns=1;i=15051",
  5020. "BrowseName": "1:IDeviceHealthType",
  5021. "IsAbstract": "true",
  5022. "DisplayName": "IDeviceHealthType",
  5023. "References": {
  5024. "Reference": [
  5025. {
  5026. "ReferenceType": "HasComponent",
  5027. "$t": "ns=1;i=15052"
  5028. },
  5029. {
  5030. "ReferenceType": "HasComponent",
  5031. "$t": "ns=1;i=15053"
  5032. },
  5033. {
  5034. "ReferenceType": "HasSubtype",
  5035. "IsForward": "false",
  5036. "$t": "i=17602"
  5037. }
  5038. ]
  5039. }
  5040. },
  5041. {
  5042. "NodeId": "ns=1;i=15054",
  5043. "BrowseName": "1:ISupportInfoType",
  5044. "IsAbstract": "true",
  5045. "DisplayName": "ISupportInfoType",
  5046. "References": {
  5047. "Reference": [
  5048. {
  5049. "ReferenceType": "HasComponent",
  5050. "$t": "ns=1;i=15055"
  5051. },
  5052. {
  5053. "ReferenceType": "HasComponent",
  5054. "$t": "ns=1;i=15057"
  5055. },
  5056. {
  5057. "ReferenceType": "HasComponent",
  5058. "$t": "ns=1;i=15059"
  5059. },
  5060. {
  5061. "ReferenceType": "HasComponent",
  5062. "$t": "ns=1;i=15061"
  5063. },
  5064. {
  5065. "ReferenceType": "HasSubtype",
  5066. "IsForward": "false",
  5067. "$t": "i=17602"
  5068. }
  5069. ]
  5070. }
  5071. },
  5072. {
  5073. "NodeId": "ns=1;i=15063",
  5074. "BrowseName": "1:ComponentType",
  5075. "IsAbstract": "true",
  5076. "DisplayName": "ComponentType",
  5077. "References": {
  5078. "Reference": [
  5079. {
  5080. "ReferenceType": "HasProperty",
  5081. "$t": "ns=1;i=15086"
  5082. },
  5083. {
  5084. "ReferenceType": "HasProperty",
  5085. "$t": "ns=1;i=15087"
  5086. },
  5087. {
  5088. "ReferenceType": "HasProperty",
  5089. "$t": "ns=1;i=15088"
  5090. },
  5091. {
  5092. "ReferenceType": "HasProperty",
  5093. "$t": "ns=1;i=15089"
  5094. },
  5095. {
  5096. "ReferenceType": "HasProperty",
  5097. "$t": "ns=1;i=15090"
  5098. },
  5099. {
  5100. "ReferenceType": "HasProperty",
  5101. "$t": "ns=1;i=15091"
  5102. },
  5103. {
  5104. "ReferenceType": "HasProperty",
  5105. "$t": "ns=1;i=15092"
  5106. },
  5107. {
  5108. "ReferenceType": "HasProperty",
  5109. "$t": "ns=1;i=15093"
  5110. },
  5111. {
  5112. "ReferenceType": "HasProperty",
  5113. "$t": "ns=1;i=15094"
  5114. },
  5115. {
  5116. "ReferenceType": "HasProperty",
  5117. "$t": "ns=1;i=15095"
  5118. },
  5119. {
  5120. "ReferenceType": "HasProperty",
  5121. "$t": "ns=1;i=15096"
  5122. },
  5123. {
  5124. "ReferenceType": "HasProperty",
  5125. "$t": "ns=1;i=15097"
  5126. },
  5127. {
  5128. "ReferenceType": "HasProperty",
  5129. "$t": "ns=1;i=15098"
  5130. },
  5131. {
  5132. "ReferenceType": "HasProperty",
  5133. "$t": "ns=1;i=15099"
  5134. },
  5135. {
  5136. "ReferenceType": "i=17603",
  5137. "$t": "ns=1;i=15035"
  5138. },
  5139. {
  5140. "ReferenceType": "i=17603",
  5141. "$t": "ns=1;i=15048"
  5142. },
  5143. {
  5144. "ReferenceType": "HasSubtype",
  5145. "IsForward": "false",
  5146. "$t": "ns=1;i=1001"
  5147. }
  5148. ]
  5149. }
  5150. },
  5151. {
  5152. "NodeId": "ns=1;i=1002",
  5153. "BrowseName": "1:DeviceType",
  5154. "IsAbstract": "true",
  5155. "DisplayName": "DeviceType",
  5156. "Description": "Defines the basic information components for all configurable elements in a device topology",
  5157. "References": {
  5158. "Reference": [
  5159. {
  5160. "ReferenceType": "HasProperty",
  5161. "$t": "ns=1;i=6003"
  5162. },
  5163. {
  5164. "ReferenceType": "HasProperty",
  5165. "$t": "ns=1;i=15100"
  5166. },
  5167. {
  5168. "ReferenceType": "HasProperty",
  5169. "$t": "ns=1;i=6004"
  5170. },
  5171. {
  5172. "ReferenceType": "HasProperty",
  5173. "$t": "ns=1;i=6008"
  5174. },
  5175. {
  5176. "ReferenceType": "HasProperty",
  5177. "$t": "ns=1;i=6007"
  5178. },
  5179. {
  5180. "ReferenceType": "HasProperty",
  5181. "$t": "ns=1;i=6006"
  5182. },
  5183. {
  5184. "ReferenceType": "HasProperty",
  5185. "$t": "ns=1;i=15101"
  5186. },
  5187. {
  5188. "ReferenceType": "HasProperty",
  5189. "$t": "ns=1;i=6005"
  5190. },
  5191. {
  5192. "ReferenceType": "HasProperty",
  5193. "$t": "ns=1;i=6470"
  5194. },
  5195. {
  5196. "ReferenceType": "HasProperty",
  5197. "$t": "ns=1;i=6001"
  5198. },
  5199. {
  5200. "ReferenceType": "HasProperty",
  5201. "$t": "ns=1;i=15102"
  5202. },
  5203. {
  5204. "ReferenceType": "HasProperty",
  5205. "$t": "ns=1;i=6002"
  5206. },
  5207. {
  5208. "ReferenceType": "HasComponent",
  5209. "$t": "ns=1;i=6571"
  5210. },
  5211. {
  5212. "ReferenceType": "HasComponent",
  5213. "$t": "ns=1;i=6208"
  5214. },
  5215. {
  5216. "ReferenceType": "HasComponent",
  5217. "$t": "ns=1;i=15105"
  5218. },
  5219. {
  5220. "ReferenceType": "HasComponent",
  5221. "$t": "ns=1;i=6209"
  5222. },
  5223. {
  5224. "ReferenceType": "HasComponent",
  5225. "$t": "ns=1;i=6211"
  5226. },
  5227. {
  5228. "ReferenceType": "HasComponent",
  5229. "$t": "ns=1;i=6213"
  5230. },
  5231. {
  5232. "ReferenceType": "HasComponent",
  5233. "$t": "ns=1;i=6215"
  5234. },
  5235. {
  5236. "ReferenceType": "i=17603",
  5237. "$t": "ns=1;i=15054"
  5238. },
  5239. {
  5240. "ReferenceType": "i=17603",
  5241. "$t": "ns=1;i=15051"
  5242. },
  5243. {
  5244. "ReferenceType": "HasSubtype",
  5245. "IsForward": "false",
  5246. "$t": "ns=1;i=15063"
  5247. }
  5248. ]
  5249. }
  5250. },
  5251. {
  5252. "NodeId": "ns=1;i=15106",
  5253. "BrowseName": "1:SoftwareType",
  5254. "DisplayName": "SoftwareType",
  5255. "References": {
  5256. "Reference": [
  5257. {
  5258. "ReferenceType": "HasProperty",
  5259. "$t": "ns=1;i=15129"
  5260. },
  5261. {
  5262. "ReferenceType": "HasProperty",
  5263. "$t": "ns=1;i=15131"
  5264. },
  5265. {
  5266. "ReferenceType": "HasProperty",
  5267. "$t": "ns=1;i=15133"
  5268. },
  5269. {
  5270. "ReferenceType": "HasSubtype",
  5271. "IsForward": "false",
  5272. "$t": "ns=1;i=15063"
  5273. }
  5274. ]
  5275. }
  5276. },
  5277. {
  5278. "NodeId": "ns=1;i=1003",
  5279. "BrowseName": "1:BlockType",
  5280. "IsAbstract": "true",
  5281. "DisplayName": "BlockType",
  5282. "Description": "Adds the concept of Blocks needed for block-oriented FieldDevices",
  5283. "References": {
  5284. "Reference": [
  5285. {
  5286. "ReferenceType": "HasProperty",
  5287. "$t": "ns=1;i=6009"
  5288. },
  5289. {
  5290. "ReferenceType": "HasProperty",
  5291. "$t": "ns=1;i=6010"
  5292. },
  5293. {
  5294. "ReferenceType": "HasProperty",
  5295. "$t": "ns=1;i=6011"
  5296. },
  5297. {
  5298. "ReferenceType": "HasProperty",
  5299. "$t": "ns=1;i=6012"
  5300. },
  5301. {
  5302. "ReferenceType": "HasProperty",
  5303. "$t": "ns=1;i=6013"
  5304. },
  5305. {
  5306. "ReferenceType": "HasSubtype",
  5307. "IsForward": "false",
  5308. "$t": "ns=1;i=1001"
  5309. }
  5310. ]
  5311. }
  5312. },
  5313. {
  5314. "NodeId": "ns=1;i=15143",
  5315. "BrowseName": "1:DeviceHealthDiagnosticAlarmType",
  5316. "DisplayName": "DeviceHealthDiagnosticAlarmType",
  5317. "References": {
  5318. "Reference": {
  5319. "ReferenceType": "HasSubtype",
  5320. "IsForward": "false",
  5321. "$t": "i=18347"
  5322. }
  5323. }
  5324. },
  5325. {
  5326. "NodeId": "ns=1;i=15292",
  5327. "BrowseName": "1:FailureAlarmType",
  5328. "IsAbstract": "true",
  5329. "DisplayName": "FailureAlarmType",
  5330. "References": {
  5331. "Reference": {
  5332. "ReferenceType": "HasSubtype",
  5333. "IsForward": "false",
  5334. "$t": "ns=1;i=15143"
  5335. }
  5336. }
  5337. },
  5338. {
  5339. "NodeId": "ns=1;i=15441",
  5340. "BrowseName": "1:CheckFunctionAlarmType",
  5341. "IsAbstract": "true",
  5342. "DisplayName": "CheckFunctionAlarmType",
  5343. "References": {
  5344. "Reference": {
  5345. "ReferenceType": "HasSubtype",
  5346. "IsForward": "false",
  5347. "$t": "ns=1;i=15143"
  5348. }
  5349. }
  5350. },
  5351. {
  5352. "NodeId": "ns=1;i=15590",
  5353. "BrowseName": "1:OffSpecAlarmType",
  5354. "IsAbstract": "true",
  5355. "DisplayName": "OffSpecAlarmType",
  5356. "References": {
  5357. "Reference": {
  5358. "ReferenceType": "HasSubtype",
  5359. "IsForward": "false",
  5360. "$t": "ns=1;i=15143"
  5361. }
  5362. }
  5363. },
  5364. {
  5365. "NodeId": "ns=1;i=15739",
  5366. "BrowseName": "1:MaintenanceRequiredAlarmType",
  5367. "IsAbstract": "true",
  5368. "DisplayName": "MaintenanceRequiredAlarmType",
  5369. "References": {
  5370. "Reference": {
  5371. "ReferenceType": "HasSubtype",
  5372. "IsForward": "false",
  5373. "$t": "ns=1;i=15143"
  5374. }
  5375. }
  5376. },
  5377. {
  5378. "NodeId": "ns=1;i=1004",
  5379. "BrowseName": "1:ConfigurableObjectType",
  5380. "DisplayName": "ConfigurableObjectType",
  5381. "Description": "Defines a general pattern to expose and configure modular components",
  5382. "References": {
  5383. "Reference": [
  5384. {
  5385. "ReferenceType": "HasComponent",
  5386. "$t": "ns=1;i=5004"
  5387. },
  5388. {
  5389. "ReferenceType": "HasComponent",
  5390. "$t": "ns=1;i=6026"
  5391. },
  5392. {
  5393. "ReferenceType": "HasSubtype",
  5394. "IsForward": "false",
  5395. "$t": "i=58"
  5396. }
  5397. ]
  5398. }
  5399. },
  5400. {
  5401. "NodeId": "ns=1;i=1005",
  5402. "BrowseName": "1:FunctionalGroupType",
  5403. "DisplayName": "FunctionalGroupType",
  5404. "Description": "FolderType is used to organize the Parameters and Methods from the complete set (ParameterSet, MethodSet) with regard to their application",
  5405. "References": {
  5406. "Reference": [
  5407. {
  5408. "ReferenceType": "HasComponent",
  5409. "$t": "ns=1;i=6027"
  5410. },
  5411. {
  5412. "ReferenceType": "HasComponent",
  5413. "$t": "ns=1;i=6243"
  5414. },
  5415. {
  5416. "ReferenceType": "HasSubtype",
  5417. "IsForward": "false",
  5418. "$t": "i=61"
  5419. }
  5420. ]
  5421. }
  5422. },
  5423. {
  5424. "NodeId": "ns=1;i=1006",
  5425. "BrowseName": "1:ProtocolType",
  5426. "DisplayName": "ProtocolType",
  5427. "Description": "General structure of a Protocol ObjectType",
  5428. "References": {
  5429. "Reference": {
  5430. "ReferenceType": "HasSubtype",
  5431. "IsForward": "false",
  5432. "$t": "i=58"
  5433. }
  5434. }
  5435. },
  5436. {
  5437. "NodeId": "ns=1;i=6247",
  5438. "BrowseName": "1:NetworkType",
  5439. "DisplayName": "NetworkType",
  5440. "Description": "Represents the communication means for Devices that are connected to it.",
  5441. "References": {
  5442. "Reference": [
  5443. {
  5444. "ReferenceType": "HasComponent",
  5445. "$t": "ns=1;i=6596"
  5446. },
  5447. {
  5448. "ReferenceType": "ns=1;i=6030",
  5449. "$t": "ns=1;i=6248"
  5450. },
  5451. {
  5452. "ReferenceType": "HasComponent",
  5453. "$t": "ns=1;i=6294"
  5454. },
  5455. {
  5456. "ReferenceType": "HasSubtype",
  5457. "IsForward": "false",
  5458. "$t": "i=58"
  5459. }
  5460. ]
  5461. }
  5462. },
  5463. {
  5464. "NodeId": "ns=1;i=6308",
  5465. "BrowseName": "1:ConnectionPointType",
  5466. "IsAbstract": "true",
  5467. "DisplayName": "ConnectionPointType",
  5468. "Description": "Represents the interface (interface card) of a Device to a Network.",
  5469. "References": {
  5470. "Reference": [
  5471. {
  5472. "ReferenceType": "HasComponent",
  5473. "$t": "ns=1;i=6354"
  5474. },
  5475. {
  5476. "ReferenceType": "HasComponent",
  5477. "$t": "ns=1;i=6499"
  5478. },
  5479. {
  5480. "ReferenceType": "ns=1;i=6030",
  5481. "$t": "ns=1;i=6599"
  5482. },
  5483. {
  5484. "ReferenceType": "HasSubtype",
  5485. "IsForward": "false",
  5486. "$t": "ns=1;i=1001"
  5487. }
  5488. ]
  5489. }
  5490. },
  5491. {
  5492. "NodeId": "ns=1;i=6526",
  5493. "BrowseName": "1:TransferServicesType",
  5494. "DisplayName": "TransferServicesType",
  5495. "References": {
  5496. "Reference": [
  5497. {
  5498. "ReferenceType": "HasComponent",
  5499. "$t": "ns=1;i=6527"
  5500. },
  5501. {
  5502. "ReferenceType": "HasComponent",
  5503. "$t": "ns=1;i=6529"
  5504. },
  5505. {
  5506. "ReferenceType": "HasComponent",
  5507. "$t": "ns=1;i=6531"
  5508. },
  5509. {
  5510. "ReferenceType": "HasSubtype",
  5511. "IsForward": "false",
  5512. "$t": "i=58"
  5513. }
  5514. ]
  5515. }
  5516. },
  5517. {
  5518. "NodeId": "ns=1;i=6388",
  5519. "BrowseName": "1:LockingServicesType",
  5520. "DisplayName": "LockingServicesType",
  5521. "Description": "An interface for Locking.",
  5522. "References": {
  5523. "Reference": [
  5524. {
  5525. "ReferenceType": "HasProperty",
  5526. "$t": "ns=1;i=15890"
  5527. },
  5528. {
  5529. "ReferenceType": "HasProperty",
  5530. "$t": "ns=1;i=6534"
  5531. },
  5532. {
  5533. "ReferenceType": "HasProperty",
  5534. "$t": "ns=1;i=6390"
  5535. },
  5536. {
  5537. "ReferenceType": "HasProperty",
  5538. "$t": "ns=1;i=6391"
  5539. },
  5540. {
  5541. "ReferenceType": "HasProperty",
  5542. "$t": "ns=1;i=6392"
  5543. },
  5544. {
  5545. "ReferenceType": "HasComponent",
  5546. "$t": "ns=1;i=6393"
  5547. },
  5548. {
  5549. "ReferenceType": "HasComponent",
  5550. "$t": "ns=1;i=6396"
  5551. },
  5552. {
  5553. "ReferenceType": "HasComponent",
  5554. "$t": "ns=1;i=6398"
  5555. },
  5556. {
  5557. "ReferenceType": "HasComponent",
  5558. "$t": "ns=1;i=6400"
  5559. },
  5560. {
  5561. "ReferenceType": "HasSubtype",
  5562. "IsForward": "false",
  5563. "$t": "i=58"
  5564. }
  5565. ]
  5566. }
  5567. }
  5568. ],
  5569. "UAMethod": [
  5570. {
  5571. "NodeId": "ns=1;i=6018",
  5572. "BrowseName": "1:<MethodIdentifier>",
  5573. "SymbolicName": "MethodIdentifier",
  5574. "ParentNodeId": "ns=1;i=5003",
  5575. "DisplayName": "<MethodIdentifier>",
  5576. "Description": "A method which belongs to the topology element.",
  5577. "References": {
  5578. "Reference": [
  5579. {
  5580. "ReferenceType": "HasModellingRule",
  5581. "$t": "i=11510"
  5582. },
  5583. {
  5584. "ReferenceType": "HasComponent",
  5585. "IsForward": "false",
  5586. "$t": "ns=1;i=5003"
  5587. }
  5588. ]
  5589. }
  5590. },
  5591. {
  5592. "NodeId": "ns=1;i=6166",
  5593. "BrowseName": "1:InitLock",
  5594. "ParentNodeId": "ns=1;i=6161",
  5595. "MethodDeclarationId": "ns=1;i=6393",
  5596. "DisplayName": "InitLock",
  5597. "References": {
  5598. "Reference": [
  5599. {
  5600. "ReferenceType": "HasProperty",
  5601. "$t": "ns=1;i=6167"
  5602. },
  5603. {
  5604. "ReferenceType": "HasProperty",
  5605. "$t": "ns=1;i=6168"
  5606. },
  5607. {
  5608. "ReferenceType": "HasModellingRule",
  5609. "$t": "i=78"
  5610. },
  5611. {
  5612. "ReferenceType": "HasComponent",
  5613. "IsForward": "false",
  5614. "$t": "ns=1;i=6161"
  5615. }
  5616. ]
  5617. }
  5618. },
  5619. {
  5620. "NodeId": "ns=1;i=6169",
  5621. "BrowseName": "1:RenewLock",
  5622. "ParentNodeId": "ns=1;i=6161",
  5623. "MethodDeclarationId": "ns=1;i=6396",
  5624. "DisplayName": "RenewLock",
  5625. "References": {
  5626. "Reference": [
  5627. {
  5628. "ReferenceType": "HasProperty",
  5629. "$t": "ns=1;i=6170"
  5630. },
  5631. {
  5632. "ReferenceType": "HasModellingRule",
  5633. "$t": "i=78"
  5634. },
  5635. {
  5636. "ReferenceType": "HasComponent",
  5637. "IsForward": "false",
  5638. "$t": "ns=1;i=6161"
  5639. }
  5640. ]
  5641. }
  5642. },
  5643. {
  5644. "NodeId": "ns=1;i=6171",
  5645. "BrowseName": "1:ExitLock",
  5646. "ParentNodeId": "ns=1;i=6161",
  5647. "MethodDeclarationId": "ns=1;i=6398",
  5648. "DisplayName": "ExitLock",
  5649. "References": {
  5650. "Reference": [
  5651. {
  5652. "ReferenceType": "HasProperty",
  5653. "$t": "ns=1;i=6172"
  5654. },
  5655. {
  5656. "ReferenceType": "HasModellingRule",
  5657. "$t": "i=78"
  5658. },
  5659. {
  5660. "ReferenceType": "HasComponent",
  5661. "IsForward": "false",
  5662. "$t": "ns=1;i=6161"
  5663. }
  5664. ]
  5665. }
  5666. },
  5667. {
  5668. "NodeId": "ns=1;i=6173",
  5669. "BrowseName": "1:BreakLock",
  5670. "ParentNodeId": "ns=1;i=6161",
  5671. "MethodDeclarationId": "ns=1;i=6400",
  5672. "DisplayName": "BreakLock",
  5673. "References": {
  5674. "Reference": [
  5675. {
  5676. "ReferenceType": "HasProperty",
  5677. "$t": "ns=1;i=6174"
  5678. },
  5679. {
  5680. "ReferenceType": "HasModellingRule",
  5681. "$t": "i=78"
  5682. },
  5683. {
  5684. "ReferenceType": "HasComponent",
  5685. "IsForward": "false",
  5686. "$t": "ns=1;i=6161"
  5687. }
  5688. ]
  5689. }
  5690. },
  5691. {
  5692. "NodeId": "ns=1;i=6299",
  5693. "BrowseName": "1:InitLock",
  5694. "ParentNodeId": "ns=1;i=6294",
  5695. "MethodDeclarationId": "ns=1;i=6393",
  5696. "DisplayName": "InitLock",
  5697. "References": {
  5698. "Reference": [
  5699. {
  5700. "ReferenceType": "HasProperty",
  5701. "$t": "ns=1;i=6300"
  5702. },
  5703. {
  5704. "ReferenceType": "HasProperty",
  5705. "$t": "ns=1;i=6301"
  5706. },
  5707. {
  5708. "ReferenceType": "HasModellingRule",
  5709. "$t": "i=78"
  5710. },
  5711. {
  5712. "ReferenceType": "HasComponent",
  5713. "IsForward": "false",
  5714. "$t": "ns=1;i=6294"
  5715. }
  5716. ]
  5717. }
  5718. },
  5719. {
  5720. "NodeId": "ns=1;i=6302",
  5721. "BrowseName": "1:RenewLock",
  5722. "ParentNodeId": "ns=1;i=6294",
  5723. "MethodDeclarationId": "ns=1;i=6396",
  5724. "DisplayName": "RenewLock",
  5725. "References": {
  5726. "Reference": [
  5727. {
  5728. "ReferenceType": "HasProperty",
  5729. "$t": "ns=1;i=6303"
  5730. },
  5731. {
  5732. "ReferenceType": "HasModellingRule",
  5733. "$t": "i=78"
  5734. },
  5735. {
  5736. "ReferenceType": "HasComponent",
  5737. "IsForward": "false",
  5738. "$t": "ns=1;i=6294"
  5739. }
  5740. ]
  5741. }
  5742. },
  5743. {
  5744. "NodeId": "ns=1;i=6304",
  5745. "BrowseName": "1:ExitLock",
  5746. "ParentNodeId": "ns=1;i=6294",
  5747. "MethodDeclarationId": "ns=1;i=6398",
  5748. "DisplayName": "ExitLock",
  5749. "References": {
  5750. "Reference": [
  5751. {
  5752. "ReferenceType": "HasProperty",
  5753. "$t": "ns=1;i=6305"
  5754. },
  5755. {
  5756. "ReferenceType": "HasModellingRule",
  5757. "$t": "i=78"
  5758. },
  5759. {
  5760. "ReferenceType": "HasComponent",
  5761. "IsForward": "false",
  5762. "$t": "ns=1;i=6294"
  5763. }
  5764. ]
  5765. }
  5766. },
  5767. {
  5768. "NodeId": "ns=1;i=6306",
  5769. "BrowseName": "1:BreakLock",
  5770. "ParentNodeId": "ns=1;i=6294",
  5771. "MethodDeclarationId": "ns=1;i=6400",
  5772. "DisplayName": "BreakLock",
  5773. "References": {
  5774. "Reference": [
  5775. {
  5776. "ReferenceType": "HasProperty",
  5777. "$t": "ns=1;i=6307"
  5778. },
  5779. {
  5780. "ReferenceType": "HasModellingRule",
  5781. "$t": "i=78"
  5782. },
  5783. {
  5784. "ReferenceType": "HasComponent",
  5785. "IsForward": "false",
  5786. "$t": "ns=1;i=6294"
  5787. }
  5788. ]
  5789. }
  5790. },
  5791. {
  5792. "NodeId": "ns=1;i=6527",
  5793. "BrowseName": "1:TransferToDevice",
  5794. "ParentNodeId": "ns=1;i=6526",
  5795. "DisplayName": "TransferToDevice",
  5796. "References": {
  5797. "Reference": [
  5798. {
  5799. "ReferenceType": "HasProperty",
  5800. "$t": "ns=1;i=6528"
  5801. },
  5802. {
  5803. "ReferenceType": "HasModellingRule",
  5804. "$t": "i=78"
  5805. },
  5806. {
  5807. "ReferenceType": "HasComponent",
  5808. "IsForward": "false",
  5809. "$t": "ns=1;i=6526"
  5810. }
  5811. ]
  5812. }
  5813. },
  5814. {
  5815. "NodeId": "ns=1;i=6529",
  5816. "BrowseName": "1:TransferFromDevice",
  5817. "ParentNodeId": "ns=1;i=6526",
  5818. "DisplayName": "TransferFromDevice",
  5819. "References": {
  5820. "Reference": [
  5821. {
  5822. "ReferenceType": "HasProperty",
  5823. "$t": "ns=1;i=6530"
  5824. },
  5825. {
  5826. "ReferenceType": "HasModellingRule",
  5827. "$t": "i=78"
  5828. },
  5829. {
  5830. "ReferenceType": "HasComponent",
  5831. "IsForward": "false",
  5832. "$t": "ns=1;i=6526"
  5833. }
  5834. ]
  5835. }
  5836. },
  5837. {
  5838. "NodeId": "ns=1;i=6531",
  5839. "BrowseName": "1:FetchTransferResultData",
  5840. "ParentNodeId": "ns=1;i=6526",
  5841. "DisplayName": "FetchTransferResultData",
  5842. "References": {
  5843. "Reference": [
  5844. {
  5845. "ReferenceType": "HasProperty",
  5846. "$t": "ns=1;i=6532"
  5847. },
  5848. {
  5849. "ReferenceType": "HasProperty",
  5850. "$t": "ns=1;i=6533"
  5851. },
  5852. {
  5853. "ReferenceType": "HasModellingRule",
  5854. "$t": "i=78"
  5855. },
  5856. {
  5857. "ReferenceType": "HasComponent",
  5858. "IsForward": "false",
  5859. "$t": "ns=1;i=6526"
  5860. }
  5861. ]
  5862. }
  5863. },
  5864. {
  5865. "NodeId": "ns=1;i=6393",
  5866. "BrowseName": "1:InitLock",
  5867. "ParentNodeId": "ns=1;i=6388",
  5868. "DisplayName": "InitLock",
  5869. "References": {
  5870. "Reference": [
  5871. {
  5872. "ReferenceType": "HasProperty",
  5873. "$t": "ns=1;i=6394"
  5874. },
  5875. {
  5876. "ReferenceType": "HasProperty",
  5877. "$t": "ns=1;i=6395"
  5878. },
  5879. {
  5880. "ReferenceType": "HasModellingRule",
  5881. "$t": "i=78"
  5882. },
  5883. {
  5884. "ReferenceType": "HasComponent",
  5885. "IsForward": "false",
  5886. "$t": "ns=1;i=6388"
  5887. }
  5888. ]
  5889. }
  5890. },
  5891. {
  5892. "NodeId": "ns=1;i=6396",
  5893. "BrowseName": "1:RenewLock",
  5894. "ParentNodeId": "ns=1;i=6388",
  5895. "DisplayName": "RenewLock",
  5896. "References": {
  5897. "Reference": [
  5898. {
  5899. "ReferenceType": "HasProperty",
  5900. "$t": "ns=1;i=6397"
  5901. },
  5902. {
  5903. "ReferenceType": "HasModellingRule",
  5904. "$t": "i=78"
  5905. },
  5906. {
  5907. "ReferenceType": "HasComponent",
  5908. "IsForward": "false",
  5909. "$t": "ns=1;i=6388"
  5910. }
  5911. ]
  5912. }
  5913. },
  5914. {
  5915. "NodeId": "ns=1;i=6398",
  5916. "BrowseName": "1:ExitLock",
  5917. "ParentNodeId": "ns=1;i=6388",
  5918. "DisplayName": "ExitLock",
  5919. "References": {
  5920. "Reference": [
  5921. {
  5922. "ReferenceType": "HasProperty",
  5923. "$t": "ns=1;i=6399"
  5924. },
  5925. {
  5926. "ReferenceType": "HasModellingRule",
  5927. "$t": "i=78"
  5928. },
  5929. {
  5930. "ReferenceType": "HasComponent",
  5931. "IsForward": "false",
  5932. "$t": "ns=1;i=6388"
  5933. }
  5934. ]
  5935. }
  5936. },
  5937. {
  5938. "NodeId": "ns=1;i=6400",
  5939. "BrowseName": "1:BreakLock",
  5940. "ParentNodeId": "ns=1;i=6388",
  5941. "DisplayName": "BreakLock",
  5942. "References": {
  5943. "Reference": [
  5944. {
  5945. "ReferenceType": "HasProperty",
  5946. "$t": "ns=1;i=6401"
  5947. },
  5948. {
  5949. "ReferenceType": "HasModellingRule",
  5950. "$t": "i=78"
  5951. },
  5952. {
  5953. "ReferenceType": "HasComponent",
  5954. "IsForward": "false",
  5955. "$t": "ns=1;i=6388"
  5956. }
  5957. ]
  5958. }
  5959. }
  5960. ],
  5961. "UADataType": [
  5962. {
  5963. "NodeId": "ns=1;i=6244",
  5964. "BrowseName": "1:DeviceHealthEnumeration",
  5965. "DisplayName": "DeviceHealthEnumeration",
  5966. "References": {
  5967. "Reference": [
  5968. {
  5969. "ReferenceType": "HasProperty",
  5970. "$t": "ns=1;i=6450"
  5971. },
  5972. {
  5973. "ReferenceType": "HasSubtype",
  5974. "IsForward": "false",
  5975. "$t": "i=29"
  5976. }
  5977. ]
  5978. },
  5979. "Definition": {
  5980. "Name": "1:DeviceHealthEnumeration",
  5981. "Field": [
  5982. {
  5983. "Name": "NORMAL",
  5984. "Value": "0",
  5985. "Description": "This device functions normally."
  5986. },
  5987. {
  5988. "Name": "FAILURE",
  5989. "Value": "1",
  5990. "Description": "Malfunction of the device or any of its peripherals."
  5991. },
  5992. {
  5993. "Name": "CHECK_FUNCTION",
  5994. "Value": "2",
  5995. "Description": "Functional checks are currently performed."
  5996. },
  5997. {
  5998. "Name": "OFF_SPEC",
  5999. "Value": "3",
  6000. "Description": "The device is currently working outside of its specified range or that internal diagnoses indicate deviations from measured or set values."
  6001. },
  6002. {
  6003. "Name": "MAINTENANCE_REQUIRED",
  6004. "Value": "4",
  6005. "Description": "This element is working, but a maintenance operation is required."
  6006. }
  6007. ]
  6008. }
  6009. },
  6010. {
  6011. "NodeId": "ns=1;i=6522",
  6012. "BrowseName": "1:FetchResultDataType",
  6013. "IsAbstract": "true",
  6014. "DisplayName": "FetchResultDataType",
  6015. "References": {
  6016. "Reference": {
  6017. "ReferenceType": "HasSubtype",
  6018. "IsForward": "false",
  6019. "$t": "i=22"
  6020. }
  6021. }
  6022. },
  6023. {
  6024. "NodeId": "ns=1;i=15888",
  6025. "BrowseName": "1:TransferResultErrorDataType",
  6026. "DisplayName": "TransferResultErrorDataType",
  6027. "References": {
  6028. "Reference": {
  6029. "ReferenceType": "HasSubtype",
  6030. "IsForward": "false",
  6031. "$t": "ns=1;i=6522"
  6032. }
  6033. },
  6034. "Definition": {
  6035. "Name": "1:TransferResultErrorDataType",
  6036. "Field": [
  6037. {
  6038. "Name": "Status",
  6039. "DataType": "i=6"
  6040. },
  6041. {
  6042. "Name": "Diagnostics",
  6043. "DataType": "i=25"
  6044. }
  6045. ]
  6046. }
  6047. },
  6048. {
  6049. "NodeId": "ns=1;i=15889",
  6050. "BrowseName": "1:TransferResultDataDataType",
  6051. "DisplayName": "TransferResultDataDataType",
  6052. "References": {
  6053. "Reference": {
  6054. "ReferenceType": "HasSubtype",
  6055. "IsForward": "false",
  6056. "$t": "ns=1;i=6522"
  6057. }
  6058. },
  6059. "Definition": {
  6060. "Name": "1:TransferResultDataDataType",
  6061. "Field": [
  6062. {
  6063. "Name": "SequenceNumber",
  6064. "DataType": "i=6"
  6065. },
  6066. {
  6067. "Name": "EndOfResults",
  6068. "DataType": "i=1"
  6069. },
  6070. {
  6071. "Name": "ParameterDefs",
  6072. "DataType": "ns=1;i=6525",
  6073. "ValueRank": "1"
  6074. }
  6075. ]
  6076. }
  6077. },
  6078. {
  6079. "NodeId": "ns=1;i=6525",
  6080. "BrowseName": "1:ParameterResultDataType",
  6081. "DisplayName": "ParameterResultDataType",
  6082. "References": {
  6083. "Reference": {
  6084. "ReferenceType": "HasSubtype",
  6085. "IsForward": "false",
  6086. "$t": "i=22"
  6087. }
  6088. },
  6089. "Definition": {
  6090. "Name": "1:ParameterResultDataType",
  6091. "Field": [
  6092. {
  6093. "Name": "NodePath",
  6094. "DataType": "i=20",
  6095. "ValueRank": "1"
  6096. },
  6097. {
  6098. "Name": "StatusCode",
  6099. "DataType": "i=19"
  6100. },
  6101. {
  6102. "Name": "Diagnostics",
  6103. "DataType": "i=25"
  6104. }
  6105. ]
  6106. }
  6107. }
  6108. ],
  6109. "UAVariableType": {
  6110. "NodeId": "ns=1;i=6246",
  6111. "BrowseName": "1:UIElementType",
  6112. "IsAbstract": "true",
  6113. "DisplayName": "UIElementType",
  6114. "Description": "The base type for all UI Element Types.",
  6115. "References": {
  6116. "Reference": {
  6117. "ReferenceType": "HasSubtype",
  6118. "IsForward": "false",
  6119. "$t": "i=63"
  6120. }
  6121. }
  6122. }
  6123. }
  6124. }