ontology.json 284 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318
  1. {
  2. "_comment" : "Created with OWL2VOWL (version 0.3.2-SNAPSHOT), http://vowl.visualdataweb.org",
  3. "header" : {
  4. "languages" : [ "en", "undefined" ],
  5. "baseIris" : [ "http://purl.org/net/p-plan", "http://www.w3.org/1999/02/22-rdf-syntax-ns", "http://purl.org/adaptcentre/openscience/ontologies/gdprov", "http://www.w3.org/2002/07/owl", "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT", "http://www.w3.org/2000/01/rdf-schema", "http://www.w3.org/ns/prov", "http://www.w3.org/2001/XMLSchema" ],
  6. "title" : {
  7. "undefined" : "The GDPR Provenance ontology"
  8. },
  9. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  10. "version" : "0.7",
  11. "author" : [ "http://purl.org/adaptcentre/people/harshvardhan_pandit", "http://purl.org/adaptcentre/people/dave_lewis" ],
  12. "description" : {
  13. "undefined" : "GDPRov is an OWL2 ontology to express provenance metadata of consent and data lifecycles towards documenting compliance for GDPR."
  14. },
  15. "comments" : {
  16. "undefined" : "GDPRov is an ontology for expressing provenance metadata in the context of the General Data Protection Regulation (GDPR) and its compliance. It extends PROV-O and P-Plan. PROV-O is the ontology based on the PROV model, a W3C recommendation, while P-Plan is an extension of PROV-O. PROV is used to define terms or 'instances' of what has happened in the past, while P-Plan is used to define the abstract model or 'Plan' of things to happen. GDPRov uses P-Plan to create a template/model/plan as an abstract or model representation of a system which is then recorded using PROV-O instances to show something has happened. The aim of the ontology is to enable representation of consent and personal data lifecycles using terms relevant to GDPR and to facilitate expression of this information towards documentation related to compliance."
  17. },
  18. "other" : {
  19. "versionIRI" : [ {
  20. "identifier" : "versionIRI",
  21. "language" : "undefined",
  22. "value" : "https://openscience.adaptcentre.ie/ontologies/gdprov/v/gdprov.0.7.owl",
  23. "type" : "label"
  24. } ],
  25. "license" : [ {
  26. "identifier" : "license",
  27. "language" : "undefined",
  28. "value" : "https://creativecommons.org/licenses/by/4.0/",
  29. "type" : "label"
  30. } ],
  31. "creator" : [ {
  32. "identifier" : "creator",
  33. "language" : "undefined",
  34. "value" : "http://purl.org/adaptcentre/people/dave_lewis",
  35. "type" : "label"
  36. }, {
  37. "identifier" : "creator",
  38. "language" : "undefined",
  39. "value" : "http://purl.org/adaptcentre/people/harshvardhan_pandit",
  40. "type" : "label"
  41. } ],
  42. "created" : [ {
  43. "identifier" : "created",
  44. "language" : "undefined",
  45. "value" : "2017-08-01",
  46. "type" : "label"
  47. } ],
  48. "preferredNamespacePrefix" : [ {
  49. "identifier" : "preferredNamespacePrefix",
  50. "language" : "undefined",
  51. "value" : "gdprov",
  52. "type" : "label"
  53. } ],
  54. "modified" : [ {
  55. "identifier" : "modified",
  56. "language" : "undefined",
  57. "value" : "2018-04-06",
  58. "type" : "label"
  59. } ],
  60. "abstract" : [ {
  61. "identifier" : "abstract",
  62. "language" : "undefined",
  63. "value" : "The General Data Protection Regulation (GDPR) is an European law governing the use of consent and personal data. Some of its obligations involve concepts related to the lifecycles of consent and personal data. Such obligations are concerned with how the collection, use, processing, sharing, and storing of consent and personal data takes place and provides the motivation for a form of documentation that can demonstrate the required information towards compliance. GDPRov is an OWL2 ontology for representing this information as provenance metadata using terms relevant to the GDPR. It extends PROV-O and P-Plan to represent the lifecyles as an abstract model of how things should happen or will happen (future) as well as instance of what has happened (past). The ontology is being developed as part of contributions towards PhD research by its primary author.",
  64. "type" : "label"
  65. } ],
  66. "preferredNamespaceUri" : [ {
  67. "identifier" : "preferredNamespaceUri",
  68. "language" : "undefined",
  69. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#",
  70. "type" : "label"
  71. } ],
  72. "versionInfo" : [ {
  73. "identifier" : "versionInfo",
  74. "language" : "undefined",
  75. "value" : "0.7",
  76. "type" : "label"
  77. } ],
  78. "title" : [ {
  79. "identifier" : "title",
  80. "language" : "undefined",
  81. "value" : "The GDPR Provenance ontology",
  82. "type" : "label"
  83. } ]
  84. }
  85. },
  86. "namespace" : [ ],
  87. "metrics" : {
  88. "classCount" : 108,
  89. "objectPropertyCount" : 44,
  90. "datatypePropertyCount" : 0,
  91. "individualCount" : 4
  92. },
  93. "class" : [ {
  94. "id" : "21",
  95. "type" : "owl:Class"
  96. }, {
  97. "id" : "27",
  98. "type" : "owl:Class"
  99. }, {
  100. "id" : "33",
  101. "type" : "owl:Class"
  102. }, {
  103. "id" : "38",
  104. "type" : "owl:Class"
  105. }, {
  106. "id" : "48",
  107. "type" : "owl:Class"
  108. }, {
  109. "id" : "49",
  110. "type" : "owl:Class"
  111. }, {
  112. "id" : "74",
  113. "type" : "owl:Class"
  114. }, {
  115. "id" : "84",
  116. "type" : "owl:Class"
  117. }, {
  118. "id" : "86",
  119. "type" : "owl:Class"
  120. }, {
  121. "id" : "26",
  122. "type" : "owl:Class"
  123. }, {
  124. "id" : "99",
  125. "type" : "owl:Class"
  126. }, {
  127. "id" : "100",
  128. "type" : "owl:Class"
  129. }, {
  130. "id" : "101",
  131. "type" : "owl:Class"
  132. }, {
  133. "id" : "103",
  134. "type" : "owl:Class"
  135. }, {
  136. "id" : "111",
  137. "type" : "owl:Class"
  138. }, {
  139. "id" : "119",
  140. "type" : "owl:Class"
  141. }, {
  142. "id" : "15",
  143. "type" : "owl:Class"
  144. }, {
  145. "id" : "126",
  146. "type" : "owl:Class"
  147. }, {
  148. "id" : "143",
  149. "type" : "owl:Class"
  150. }, {
  151. "id" : "140",
  152. "type" : "owl:Class"
  153. }, {
  154. "id" : "159",
  155. "type" : "owl:Class"
  156. }, {
  157. "id" : "160",
  158. "type" : "owl:Class"
  159. }, {
  160. "id" : "162",
  161. "type" : "owl:Class"
  162. }, {
  163. "id" : "4",
  164. "type" : "owl:Class"
  165. }, {
  166. "id" : "47",
  167. "type" : "owl:Class"
  168. }, {
  169. "id" : "107",
  170. "type" : "owl:Class"
  171. }, {
  172. "id" : "85",
  173. "type" : "owl:Class"
  174. }, {
  175. "id" : "79",
  176. "type" : "owl:Class"
  177. }, {
  178. "id" : "189",
  179. "type" : "owl:Class"
  180. }, {
  181. "id" : "193",
  182. "type" : "owl:Class"
  183. }, {
  184. "id" : "215",
  185. "type" : "owl:Class"
  186. }, {
  187. "id" : "178",
  188. "type" : "owl:Class"
  189. }, {
  190. "id" : "204",
  191. "type" : "owl:Class"
  192. }, {
  193. "id" : "220",
  194. "type" : "owl:Thing"
  195. }, {
  196. "id" : "76",
  197. "type" : "owl:Class"
  198. }, {
  199. "id" : "195",
  200. "type" : "owl:Class"
  201. }, {
  202. "id" : "30",
  203. "type" : "owl:Class"
  204. }, {
  205. "id" : "227",
  206. "type" : "owl:Thing"
  207. }, {
  208. "id" : "228",
  209. "type" : "owl:Thing"
  210. }, {
  211. "id" : "44",
  212. "type" : "owl:Class"
  213. }, {
  214. "id" : "145",
  215. "type" : "owl:Class"
  216. }, {
  217. "id" : "230",
  218. "type" : "rdfs:Literal"
  219. }, {
  220. "id" : "31",
  221. "type" : "owl:Thing"
  222. }, {
  223. "id" : "232",
  224. "type" : "owl:Thing"
  225. }, {
  226. "id" : "233",
  227. "type" : "owl:Thing"
  228. }, {
  229. "id" : "234",
  230. "type" : "rdfs:Datatype"
  231. }, {
  232. "id" : "235",
  233. "type" : "rdfs:Datatype"
  234. }, {
  235. "id" : "225",
  236. "type" : "owl:Thing"
  237. }, {
  238. "id" : "18",
  239. "type" : "owl:Thing"
  240. }, {
  241. "id" : "121",
  242. "type" : "owl:Class"
  243. }, {
  244. "id" : "238",
  245. "type" : "owl:Class"
  246. }, {
  247. "id" : "39",
  248. "type" : "owl:Class"
  249. }, {
  250. "id" : "77",
  251. "type" : "rdfs:Datatype"
  252. }, {
  253. "id" : "114",
  254. "type" : "rdfs:Datatype"
  255. }, {
  256. "id" : "240",
  257. "type" : "rdfs:Datatype"
  258. }, {
  259. "id" : "241",
  260. "type" : "owl:unionOf"
  261. }, {
  262. "id" : "242",
  263. "type" : "owl:unionOf"
  264. }, {
  265. "id" : "243",
  266. "type" : "owl:unionOf"
  267. }, {
  268. "id" : "244",
  269. "type" : "owl:unionOf"
  270. }, {
  271. "id" : "246",
  272. "type" : "owl:unionOf"
  273. }, {
  274. "id" : "41",
  275. "type" : "owl:unionOf"
  276. }, {
  277. "id" : "251",
  278. "type" : "owl:Class"
  279. }, {
  280. "id" : "224",
  281. "type" : "owl:Class"
  282. }, {
  283. "id" : "71",
  284. "type" : "owl:Class"
  285. }, {
  286. "id" : "166",
  287. "type" : "owl:Class"
  288. }, {
  289. "id" : "214",
  290. "type" : "owl:Class"
  291. }, {
  292. "id" : "45",
  293. "type" : "owl:Class"
  294. }, {
  295. "id" : "11",
  296. "type" : "owl:Class"
  297. }, {
  298. "id" : "268",
  299. "type" : "owl:Class"
  300. }, {
  301. "id" : "163",
  302. "type" : "owl:Class"
  303. }, {
  304. "id" : "105",
  305. "type" : "owl:Class"
  306. }, {
  307. "id" : "277",
  308. "type" : "owl:Class"
  309. }, {
  310. "id" : "278",
  311. "type" : "owl:Class"
  312. }, {
  313. "id" : "68",
  314. "type" : "owl:Class"
  315. }, {
  316. "id" : "287",
  317. "type" : "owl:Class"
  318. }, {
  319. "id" : "289",
  320. "type" : "owl:Class"
  321. }, {
  322. "id" : "293",
  323. "type" : "owl:Class"
  324. }, {
  325. "id" : "191",
  326. "type" : "owl:Class"
  327. }, {
  328. "id" : "307",
  329. "type" : "owl:Class"
  330. }, {
  331. "id" : "59",
  332. "type" : "owl:Class"
  333. }, {
  334. "id" : "187",
  335. "type" : "owl:Class"
  336. }, {
  337. "id" : "253",
  338. "type" : "owl:Class"
  339. }, {
  340. "id" : "206",
  341. "type" : "owl:Class"
  342. }, {
  343. "id" : "124",
  344. "type" : "owl:Class"
  345. }, {
  346. "id" : "6",
  347. "type" : "owl:Class"
  348. }, {
  349. "id" : "133",
  350. "type" : "owl:Class"
  351. }, {
  352. "id" : "113",
  353. "type" : "owl:Class"
  354. }, {
  355. "id" : "197",
  356. "type" : "owl:Class"
  357. }, {
  358. "id" : "181",
  359. "type" : "owl:Class"
  360. }, {
  361. "id" : "70",
  362. "type" : "owl:Class"
  363. }, {
  364. "id" : "34",
  365. "type" : "owl:Class"
  366. }, {
  367. "id" : "142",
  368. "type" : "owl:Class"
  369. }, {
  370. "id" : "66",
  371. "type" : "owl:Class"
  372. }, {
  373. "id" : "9",
  374. "type" : "owl:Class"
  375. }, {
  376. "id" : "174",
  377. "type" : "owl:Class"
  378. }, {
  379. "id" : "120",
  380. "type" : "owl:Class"
  381. }, {
  382. "id" : "172",
  383. "type" : "owl:Class"
  384. }, {
  385. "id" : "321",
  386. "type" : "owl:Class"
  387. }, {
  388. "id" : "173",
  389. "type" : "owl:Class"
  390. }, {
  391. "id" : "168",
  392. "type" : "owl:Class"
  393. }, {
  394. "id" : "179",
  395. "type" : "owl:Class"
  396. }, {
  397. "id" : "42",
  398. "type" : "owl:Class"
  399. }, {
  400. "id" : "122",
  401. "type" : "owl:Class"
  402. }, {
  403. "id" : "127",
  404. "type" : "owl:Class"
  405. }, {
  406. "id" : "57",
  407. "type" : "owl:Class"
  408. }, {
  409. "id" : "63",
  410. "type" : "owl:Class"
  411. }, {
  412. "id" : "35",
  413. "type" : "owl:Class"
  414. }, {
  415. "id" : "61",
  416. "type" : "owl:Class"
  417. }, {
  418. "id" : "156",
  419. "type" : "owl:Class"
  420. }, {
  421. "id" : "208",
  422. "type" : "owl:Class"
  423. }, {
  424. "id" : "132",
  425. "type" : "owl:Class"
  426. }, {
  427. "id" : "250",
  428. "type" : "owl:Class"
  429. }, {
  430. "id" : "219",
  431. "type" : "owl:Class"
  432. }, {
  433. "id" : "177",
  434. "type" : "owl:Class"
  435. }, {
  436. "id" : "129",
  437. "type" : "owl:Class"
  438. }, {
  439. "id" : "255",
  440. "type" : "owl:Class"
  441. }, {
  442. "id" : "82",
  443. "type" : "owl:Class"
  444. }, {
  445. "id" : "306",
  446. "type" : "owl:Class"
  447. }, {
  448. "id" : "110",
  449. "type" : "owl:Class"
  450. }, {
  451. "id" : "337",
  452. "type" : "owl:Class"
  453. }, {
  454. "id" : "226",
  455. "type" : "owl:Class"
  456. }, {
  457. "id" : "152",
  458. "type" : "owl:Class"
  459. }, {
  460. "id" : "87",
  461. "type" : "owl:Class"
  462. }, {
  463. "id" : "73",
  464. "type" : "owl:Class"
  465. }, {
  466. "id" : "147",
  467. "type" : "owl:Class"
  468. }, {
  469. "id" : "150",
  470. "type" : "owl:Class"
  471. }, {
  472. "id" : "89",
  473. "type" : "owl:Class"
  474. }, {
  475. "id" : "262",
  476. "type" : "owl:Class"
  477. }, {
  478. "id" : "180",
  479. "type" : "owl:Class"
  480. }, {
  481. "id" : "52",
  482. "type" : "owl:Class"
  483. }, {
  484. "id" : "55",
  485. "type" : "owl:Class"
  486. }, {
  487. "id" : "318",
  488. "type" : "owl:Class"
  489. }, {
  490. "id" : "64",
  491. "type" : "owl:Class"
  492. }, {
  493. "id" : "158",
  494. "type" : "owl:Class"
  495. }, {
  496. "id" : "67",
  497. "type" : "owl:Class"
  498. }, {
  499. "id" : "2",
  500. "type" : "owl:Class"
  501. }, {
  502. "id" : "239",
  503. "type" : "owl:Class"
  504. }, {
  505. "id" : "51",
  506. "type" : "owl:Class"
  507. }, {
  508. "id" : "8",
  509. "type" : "owl:Class"
  510. }, {
  511. "id" : "1",
  512. "type" : "owl:Class"
  513. }, {
  514. "id" : "16",
  515. "type" : "owl:Class"
  516. }, {
  517. "id" : "28",
  518. "type" : "owl:Class"
  519. }, {
  520. "id" : "137",
  521. "type" : "owl:Class"
  522. }, {
  523. "id" : "161",
  524. "type" : "owl:Class"
  525. }, {
  526. "id" : "148",
  527. "type" : "owl:Class"
  528. }, {
  529. "id" : "154",
  530. "type" : "owl:Class"
  531. }, {
  532. "id" : "199",
  533. "type" : "owl:Class"
  534. }, {
  535. "id" : "185",
  536. "type" : "owl:Class"
  537. }, {
  538. "id" : "13",
  539. "type" : "owl:Class"
  540. }, {
  541. "id" : "24",
  542. "type" : "owl:Class"
  543. }, {
  544. "id" : "202",
  545. "type" : "owl:Class"
  546. }, {
  547. "id" : "175",
  548. "type" : "owl:Class"
  549. }, {
  550. "id" : "135",
  551. "type" : "owl:Class"
  552. }, {
  553. "id" : "176",
  554. "type" : "owl:Class"
  555. }, {
  556. "id" : "25",
  557. "type" : "owl:Class"
  558. }, {
  559. "id" : "54",
  560. "type" : "owl:Class"
  561. }, {
  562. "id" : "138",
  563. "type" : "owl:Class"
  564. }, {
  565. "id" : "314",
  566. "type" : "owl:Class"
  567. }, {
  568. "id" : "23",
  569. "type" : "owl:Class"
  570. } ],
  571. "classAttribute" : [ {
  572. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataBreachActivity",
  573. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  574. "instances" : 0,
  575. "annotations" : {
  576. "isDefinedBy" : [ {
  577. "identifier" : "isDefinedBy",
  578. "language" : "undefined",
  579. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ReportDataBreach",
  580. "type" : "iri"
  581. } ],
  582. "seeAlso" : [ {
  583. "identifier" : "seeAlso",
  584. "language" : "undefined",
  585. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataBreachStep",
  586. "type" : "iri"
  587. } ]
  588. },
  589. "label" : {
  590. "IRI-based" : "DataBreachActivity",
  591. "undefined" : "Data Breach Activity"
  592. },
  593. "subClasses" : [ "24", "25", "26" ],
  594. "comment" : {
  595. "undefined" : "Is an activity dealing with data breach."
  596. },
  597. "id" : "21",
  598. "superClasses" : [ "16" ]
  599. }, {
  600. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataErasureProcess",
  601. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  602. "instances" : 0,
  603. "annotations" : {
  604. "isDefinedBy" : [ {
  605. "identifier" : "isDefinedBy",
  606. "language" : "undefined",
  607. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#EraseData",
  608. "type" : "iri"
  609. } ]
  610. },
  611. "label" : {
  612. "IRI-based" : "DataErasureProcess",
  613. "en" : "Data Erasure Process"
  614. },
  615. "comment" : {
  616. "en" : "A DataErasureProcess is responsible for handling the data erasure of a data subject."
  617. },
  618. "id" : "27",
  619. "superClasses" : [ "28" ]
  620. }, {
  621. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#Controller",
  622. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  623. "instances" : 0,
  624. "annotations" : {
  625. "isDefinedBy" : [ {
  626. "identifier" : "isDefinedBy",
  627. "language" : "undefined",
  628. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Controller",
  629. "type" : "iri"
  630. } ]
  631. },
  632. "label" : {
  633. "IRI-based" : "Controller",
  634. "en" : "Controller"
  635. },
  636. "subClasses" : [ "35" ],
  637. "comment" : {
  638. "en" : "A ThirdPartyDataController is a Third Party entity that acts as a Data Controller"
  639. },
  640. "id" : "33",
  641. "superClasses" : [ "34" ]
  642. }, {
  643. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AnonymisedData",
  644. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  645. "instances" : 0,
  646. "annotations" : {
  647. "isDefinedBy" : [ {
  648. "identifier" : "isDefinedBy",
  649. "language" : "undefined",
  650. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#PseudoAnonymousData",
  651. "type" : "iri"
  652. }, {
  653. "identifier" : "isDefinedBy",
  654. "language" : "undefined",
  655. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#AnonymousData",
  656. "type" : "iri"
  657. } ],
  658. "seeAlso" : [ {
  659. "identifier" : "seeAlso",
  660. "language" : "undefined",
  661. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AnonymisedDataEntity",
  662. "type" : "iri"
  663. } ]
  664. },
  665. "label" : {
  666. "IRI-based" : "AnonymisedData",
  667. "undefined" : "AnonymisedData"
  668. },
  669. "comment" : {
  670. "undefined" : "Represents data that has been Anonymised at some level reflected by the hasAnonymityLevel object property"
  671. },
  672. "id" : "38",
  673. "superClasses" : [ "39" ]
  674. }, {
  675. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ControllerRepresentative",
  676. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  677. "instances" : 0,
  678. "annotations" : {
  679. "isDefinedBy" : [ {
  680. "identifier" : "isDefinedBy",
  681. "language" : "undefined",
  682. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ControllerRepresentative",
  683. "type" : "iri"
  684. } ]
  685. },
  686. "label" : {
  687. "IRI-based" : "ControllerRepresentative",
  688. "undefined" : "Controller Representative"
  689. },
  690. "comment" : {
  691. "undefined" : "A Representative of the Controller"
  692. },
  693. "id" : "48",
  694. "superClasses" : [ "9" ]
  695. }, {
  696. "iri" : "http://www.w3.org/ns/prov#Person",
  697. "baseIri" : "http://www.w3.org/ns/prov",
  698. "instances" : 0,
  699. "annotations" : {
  700. "component" : [ {
  701. "identifier" : "component",
  702. "language" : "undefined",
  703. "value" : "agents-responsibility",
  704. "type" : "label"
  705. } ],
  706. "isDefinedBy" : [ {
  707. "identifier" : "isDefinedBy",
  708. "language" : "undefined",
  709. "value" : "http://www.w3.org/ns/prov-o#",
  710. "type" : "iri"
  711. } ],
  712. "dm" : [ {
  713. "identifier" : "dm",
  714. "language" : "undefined",
  715. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  716. "type" : "label"
  717. } ],
  718. "definition" : [ {
  719. "identifier" : "definition",
  720. "language" : "en",
  721. "value" : "Person agents are people.",
  722. "type" : "label"
  723. } ],
  724. "category" : [ {
  725. "identifier" : "category",
  726. "language" : "undefined",
  727. "value" : "expanded",
  728. "type" : "label"
  729. } ],
  730. "n" : [ {
  731. "identifier" : "n",
  732. "language" : "undefined",
  733. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  734. "type" : "label"
  735. } ]
  736. },
  737. "label" : {
  738. "IRI-based" : "Person",
  739. "undefined" : "Person"
  740. },
  741. "attributes" : [ "external" ],
  742. "id" : "49",
  743. "superClasses" : [ "9" ]
  744. }, {
  745. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightToBasicInfoAboutProcessing",
  746. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  747. "instances" : 0,
  748. "annotations" : {
  749. "isDefinedBy" : [ {
  750. "identifier" : "isDefinedBy",
  751. "language" : "undefined",
  752. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightToBasicInformationAboutProcessing",
  753. "type" : "iri"
  754. } ]
  755. },
  756. "label" : {
  757. "IRI-based" : "HandleRightToBasicInfoAboutProcessing",
  758. "undefined" : "Handle Right to basic information about Processing"
  759. },
  760. "comment" : {
  761. "undefined" : "The process or series of steps that handle the right to basic information about processing."
  762. },
  763. "id" : "74",
  764. "superClasses" : [ "28" ]
  765. }, {
  766. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataStepWithoutProvenance",
  767. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  768. "instances" : 0,
  769. "label" : {
  770. "IRI-based" : "DataStepWithoutProvenance",
  771. "undefined" : "Data Step without Provenance"
  772. },
  773. "id" : "84",
  774. "superClasses" : [ "85" ]
  775. }, {
  776. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentWithdrawalStep",
  777. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  778. "instances" : 0,
  779. "annotations" : {
  780. "isDefinedBy" : [ {
  781. "identifier" : "isDefinedBy",
  782. "language" : "undefined",
  783. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#CanBeWithdrawnEasilyConsentObligation",
  784. "type" : "iri"
  785. }, {
  786. "identifier" : "isDefinedBy",
  787. "language" : "undefined",
  788. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#WithdrawingConsent",
  789. "type" : "iri"
  790. } ],
  791. "seeAlso" : [ {
  792. "identifier" : "seeAlso",
  793. "language" : "undefined",
  794. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#WithdrawConsentActivity",
  795. "type" : "iri"
  796. } ]
  797. },
  798. "label" : {
  799. "IRI-based" : "ConsentWithdrawalStep",
  800. "en" : "Consent Withdrawal Step"
  801. },
  802. "comment" : {
  803. "en" : "ConsentWithdrawalStep deals with withdrawal of consent"
  804. },
  805. "id" : "86",
  806. "superClasses" : [ "87" ]
  807. }, {
  808. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyControllerActivity",
  809. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  810. "instances" : 0,
  811. "annotations" : {
  812. "isDefinedBy" : [ {
  813. "identifier" : "isDefinedBy",
  814. "language" : "undefined",
  815. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ReportDataBreachToController",
  816. "type" : "iri"
  817. } ],
  818. "seeAlso" : [ {
  819. "identifier" : "seeAlso",
  820. "language" : "undefined",
  821. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyController",
  822. "type" : "iri"
  823. } ]
  824. },
  825. "label" : {
  826. "IRI-based" : "NotifyControllerActivity",
  827. "undefined" : "Notify Controller Activity"
  828. },
  829. "comment" : {
  830. "undefined" : "Is an activity that notifies controller about data breach"
  831. },
  832. "id" : "26",
  833. "superClasses" : [ "21" ]
  834. }, {
  835. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightToRestrictProcessing",
  836. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  837. "instances" : 0,
  838. "annotations" : {
  839. "isDefinedBy" : [ {
  840. "identifier" : "isDefinedBy",
  841. "language" : "undefined",
  842. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightToRestrictProcessing",
  843. "type" : "iri"
  844. } ]
  845. },
  846. "label" : {
  847. "IRI-based" : "HandleRightToRestrictProcessing",
  848. "undefined" : "Handle Right to restrict Processing"
  849. },
  850. "comment" : {
  851. "undefined" : "The process or series of steps that handle the right to restrict processing."
  852. },
  853. "id" : "99",
  854. "superClasses" : [ "28" ]
  855. }, {
  856. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataAccessProcess",
  857. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  858. "instances" : 0,
  859. "annotations" : {
  860. "isDefinedBy" : [ {
  861. "identifier" : "isDefinedBy",
  862. "language" : "undefined",
  863. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ProvideCopyOfPersonalData",
  864. "type" : "iri"
  865. } ]
  866. },
  867. "label" : {
  868. "IRI-based" : "DataAccessProcess",
  869. "en" : "Data Access Process"
  870. },
  871. "comment" : {
  872. "en" : "A DataAccessProcess corresponds to the request made by an user for access to their data within the system. This process is responsible for handling the request process and providing the appropriate data to the end user."
  873. },
  874. "id" : "100",
  875. "superClasses" : [ "28" ]
  876. }, {
  877. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#SensitiveData",
  878. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  879. "instances" : 0,
  880. "annotations" : {
  881. "isDefinedBy" : [ {
  882. "identifier" : "isDefinedBy",
  883. "language" : "undefined",
  884. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#SensitivePersonalData",
  885. "type" : "iri"
  886. } ],
  887. "seeAlso" : [ {
  888. "identifier" : "seeAlso",
  889. "language" : "undefined",
  890. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#SensitiveDataEntity",
  891. "type" : "iri"
  892. } ]
  893. },
  894. "label" : {
  895. "IRI-based" : "SensitiveData",
  896. "undefined" : "Sensitive Personal Data"
  897. },
  898. "comment" : {
  899. "undefined" : "Personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person's sex life or sexual orientation."
  900. },
  901. "id" : "101",
  902. "superClasses" : [ "39" ]
  903. }, {
  904. "iri" : "http://www.w3.org/ns/prov#Bundle",
  905. "baseIri" : "http://www.w3.org/ns/prov",
  906. "instances" : 0,
  907. "annotations" : {
  908. "isDefinedBy" : [ {
  909. "identifier" : "isDefinedBy",
  910. "language" : "undefined",
  911. "value" : "http://www.w3.org/ns/prov-o#",
  912. "type" : "iri"
  913. } ],
  914. "dm" : [ {
  915. "identifier" : "dm",
  916. "language" : "undefined",
  917. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity",
  918. "type" : "label"
  919. } ],
  920. "definition" : [ {
  921. "identifier" : "definition",
  922. "language" : "en",
  923. "value" : "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.",
  924. "type" : "label"
  925. } ],
  926. "category" : [ {
  927. "identifier" : "category",
  928. "language" : "undefined",
  929. "value" : "expanded",
  930. "type" : "label"
  931. } ],
  932. "n" : [ {
  933. "identifier" : "n",
  934. "language" : "undefined",
  935. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration",
  936. "type" : "label"
  937. } ]
  938. },
  939. "label" : {
  940. "IRI-based" : "Bundle",
  941. "undefined" : "Bundle"
  942. },
  943. "comment" : {
  944. "en" : "Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O."
  945. },
  946. "attributes" : [ "external" ],
  947. "id" : "103",
  948. "superClasses" : [ "30" ]
  949. }, {
  950. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AppointProcessor",
  951. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  952. "instances" : 0,
  953. "annotations" : {
  954. "isDefinedBy" : [ {
  955. "identifier" : "isDefinedBy",
  956. "language" : "undefined",
  957. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#AppointmentOfProcessors",
  958. "type" : "iri"
  959. } ]
  960. },
  961. "label" : {
  962. "IRI-based" : "AppointProcessor",
  963. "undefined" : "Appoint Processor"
  964. },
  965. "comment" : {
  966. "undefined" : "Reflects the process(es) used to appoint processors"
  967. },
  968. "id" : "111",
  969. "superClasses" : [ "28" ]
  970. }, {
  971. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightOfDataPortability",
  972. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  973. "instances" : 0,
  974. "annotations" : {
  975. "isDefinedBy" : [ {
  976. "identifier" : "isDefinedBy",
  977. "language" : "undefined",
  978. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightOfDataPortability",
  979. "type" : "iri"
  980. } ]
  981. },
  982. "label" : {
  983. "IRI-based" : "HandleRightOfDataPortability",
  984. "undefined" : "Handle Right of Data Portability"
  985. },
  986. "comment" : {
  987. "undefined" : "The process or series of steps that handle the right of data portability."
  988. },
  989. "id" : "119",
  990. "superClasses" : [ "28" ]
  991. }, {
  992. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentActivity",
  993. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  994. "instances" : 0,
  995. "annotations" : {
  996. "isDefinedBy" : [ {
  997. "identifier" : "isDefinedBy",
  998. "language" : "undefined",
  999. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ConsentActivity",
  1000. "type" : "iri"
  1001. } ],
  1002. "seeAlso" : [ {
  1003. "identifier" : "seeAlso",
  1004. "language" : "undefined",
  1005. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentStep",
  1006. "type" : "iri"
  1007. } ]
  1008. },
  1009. "label" : {
  1010. "IRI-based" : "ConsentActivity",
  1011. "undefined" : "Consent Activity"
  1012. },
  1013. "subClasses" : [ "120", "121", "122" ],
  1014. "comment" : {
  1015. "undefined" : "Is an activity dealing with consent."
  1016. },
  1017. "id" : "15",
  1018. "superClasses" : [ "16" ]
  1019. }, {
  1020. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#UserIdentifierEntity",
  1021. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1022. "instances" : 0,
  1023. "annotations" : {
  1024. "seeAlso" : [ {
  1025. "identifier" : "seeAlso",
  1026. "language" : "undefined",
  1027. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#UserIdentifier",
  1028. "type" : "iri"
  1029. } ]
  1030. },
  1031. "label" : {
  1032. "IRI-based" : "UserIdentifierEntity",
  1033. "undefined" : "User Identifier Entity"
  1034. },
  1035. "comment" : {
  1036. "undefined" : "Is an entity acting as the user identifier. Or contains an identifier."
  1037. },
  1038. "id" : "126",
  1039. "superClasses" : [ "127" ]
  1040. }, {
  1041. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightToRectification",
  1042. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1043. "instances" : 0,
  1044. "annotations" : {
  1045. "isDefinedBy" : [ {
  1046. "identifier" : "isDefinedBy",
  1047. "language" : "undefined",
  1048. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightToRectification",
  1049. "type" : "iri"
  1050. } ]
  1051. },
  1052. "label" : {
  1053. "IRI-based" : "HandleRightToRectification",
  1054. "undefined" : "Handle Right to Rectification"
  1055. },
  1056. "comment" : {
  1057. "undefined" : "The process or series of steps that handle the right to rectification of personal data."
  1058. },
  1059. "id" : "143",
  1060. "superClasses" : [ "28" ]
  1061. }, {
  1062. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#UserInputStep",
  1063. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1064. "instances" : 0,
  1065. "label" : {
  1066. "IRI-based" : "UserInputStep",
  1067. "undefined" : "User Input Step"
  1068. },
  1069. "id" : "140",
  1070. "superClasses" : [ "138" ]
  1071. }, {
  1072. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataRectificationProcess",
  1073. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1074. "instances" : 0,
  1075. "annotations" : {
  1076. "isDefinedBy" : [ {
  1077. "identifier" : "isDefinedBy",
  1078. "language" : "undefined",
  1079. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RectifyData",
  1080. "type" : "iri"
  1081. } ]
  1082. },
  1083. "label" : {
  1084. "IRI-based" : "DataRectificationProcess",
  1085. "en" : "Data Rectification Process"
  1086. },
  1087. "comment" : {
  1088. "en" : "A DataRectificationProcess describes the process of data rectification, which is the correction of data already present within the system"
  1089. },
  1090. "id" : "159",
  1091. "superClasses" : [ "28" ]
  1092. }, {
  1093. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#GivenConsentTemplate",
  1094. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1095. "instances" : 0,
  1096. "annotations" : {
  1097. "seeAlso" : [ {
  1098. "identifier" : "seeAlso",
  1099. "language" : "undefined",
  1100. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentAgreementTemplate",
  1101. "type" : "iri"
  1102. } ]
  1103. },
  1104. "label" : {
  1105. "IRI-based" : "GivenConsentTemplate",
  1106. "undefined" : "Given Consent Template"
  1107. },
  1108. "comment" : {
  1109. "undefined" : "Is the template used to obtain the given consent."
  1110. },
  1111. "id" : "160",
  1112. "superClasses" : [ "161" ]
  1113. }, {
  1114. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleDataBreachProcess",
  1115. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1116. "instances" : 0,
  1117. "annotations" : {
  1118. "isDefinedBy" : [ {
  1119. "identifier" : "isDefinedBy",
  1120. "language" : "undefined",
  1121. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#DataBreach",
  1122. "type" : "iri"
  1123. } ]
  1124. },
  1125. "label" : {
  1126. "IRI-based" : "HandleDataBreachProcess",
  1127. "undefined" : "HandleDataBreachProcess"
  1128. },
  1129. "subClasses" : [ "163" ],
  1130. "comment" : {
  1131. "undefined" : "A process that defines the actions that should be undertaken in event of a data breach"
  1132. },
  1133. "id" : "162",
  1134. "superClasses" : [ "28" ]
  1135. }, {
  1136. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#Data",
  1137. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1138. "instances" : 0,
  1139. "annotations" : {
  1140. "isDefinedBy" : [ {
  1141. "identifier" : "isDefinedBy",
  1142. "language" : "undefined",
  1143. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Data",
  1144. "type" : "iri"
  1145. } ],
  1146. "seeAlso" : [ {
  1147. "identifier" : "seeAlso",
  1148. "language" : "undefined",
  1149. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataEntity",
  1150. "type" : "iri"
  1151. } ]
  1152. },
  1153. "label" : {
  1154. "IRI-based" : "Data",
  1155. "en" : "Data"
  1156. },
  1157. "subClasses" : [ "39" ],
  1158. "comment" : {
  1159. "en" : "Represents class of data collected or generated through various activities"
  1160. },
  1161. "id" : "4",
  1162. "superClasses" : [ "2" ]
  1163. }, {
  1164. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataArchivalActivity",
  1165. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1166. "instances" : 0,
  1167. "annotations" : {
  1168. "isDefinedBy" : [ {
  1169. "identifier" : "isDefinedBy",
  1170. "language" : "undefined",
  1171. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ArchiveData",
  1172. "type" : "iri"
  1173. } ],
  1174. "seeAlso" : [ {
  1175. "identifier" : "seeAlso",
  1176. "language" : "undefined",
  1177. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataArchivalStep",
  1178. "type" : "iri"
  1179. } ]
  1180. },
  1181. "label" : {
  1182. "IRI-based" : "DataArchivalActivity",
  1183. "undefined" : "Data Archival Activity"
  1184. },
  1185. "comment" : {
  1186. "undefined" : "Is an activity that archives data. Archival is transformation of data into some form for storage."
  1187. },
  1188. "id" : "47",
  1189. "superClasses" : [ "45", "110" ]
  1190. }, {
  1191. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataTransferActivity",
  1192. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1193. "instances" : 0,
  1194. "label" : {
  1195. "IRI-based" : "DataTransferActivity",
  1196. "undefined" : "Data Transfer Activity"
  1197. },
  1198. "id" : "107",
  1199. "superClasses" : [ "23" ]
  1200. }, {
  1201. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataStep",
  1202. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1203. "instances" : 0,
  1204. "annotations" : {
  1205. "isDefinedBy" : [ {
  1206. "identifier" : "isDefinedBy",
  1207. "language" : "undefined",
  1208. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#DataActivity",
  1209. "type" : "iri"
  1210. } ],
  1211. "seeAlso" : [ {
  1212. "identifier" : "seeAlso",
  1213. "language" : "undefined",
  1214. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataActivity",
  1215. "type" : "iri"
  1216. } ]
  1217. },
  1218. "label" : {
  1219. "IRI-based" : "DataStep",
  1220. "en" : "Data Step"
  1221. },
  1222. "subClasses" : [ "174", "124", "68", "175", "148", "176", "177", "84", "178", "179", "180" ],
  1223. "comment" : {
  1224. "en" : "A DataStep deals with data"
  1225. },
  1226. "id" : "85",
  1227. "superClasses" : [ "173" ]
  1228. }, {
  1229. "iri" : "http://www.w3.org/ns/prov#Communication",
  1230. "baseIri" : "http://www.w3.org/ns/prov",
  1231. "instances" : 0,
  1232. "annotations" : {
  1233. "component" : [ {
  1234. "identifier" : "component",
  1235. "language" : "undefined",
  1236. "value" : "entities-activities",
  1237. "type" : "label"
  1238. } ],
  1239. "isDefinedBy" : [ {
  1240. "identifier" : "isDefinedBy",
  1241. "language" : "undefined",
  1242. "value" : "http://www.w3.org/ns/prov-o#",
  1243. "type" : "iri"
  1244. } ],
  1245. "unqualifiedForm" : [ {
  1246. "identifier" : "unqualifiedForm",
  1247. "language" : "undefined",
  1248. "value" : "http://www.w3.org/ns/prov#wasInformedBy",
  1249. "type" : "iri"
  1250. } ],
  1251. "dm" : [ {
  1252. "identifier" : "dm",
  1253. "language" : "undefined",
  1254. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication",
  1255. "type" : "label"
  1256. } ],
  1257. "definition" : [ {
  1258. "identifier" : "definition",
  1259. "language" : "undefined",
  1260. "value" : "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other.",
  1261. "type" : "label"
  1262. } ],
  1263. "category" : [ {
  1264. "identifier" : "category",
  1265. "language" : "undefined",
  1266. "value" : "qualified",
  1267. "type" : "label"
  1268. } ],
  1269. "constraints" : [ {
  1270. "identifier" : "constraints",
  1271. "language" : "undefined",
  1272. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1273. "type" : "label"
  1274. } ],
  1275. "n" : [ {
  1276. "identifier" : "n",
  1277. "language" : "undefined",
  1278. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy",
  1279. "type" : "label"
  1280. } ]
  1281. },
  1282. "label" : {
  1283. "IRI-based" : "Communication",
  1284. "undefined" : "Communication"
  1285. },
  1286. "comment" : {
  1287. "en" : "An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ]."
  1288. },
  1289. "attributes" : [ "external" ],
  1290. "id" : "79",
  1291. "superClasses" : [ "181" ]
  1292. }, {
  1293. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#LawfulBasisForProcessing",
  1294. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT",
  1295. "instances" : 0,
  1296. "label" : {
  1297. "IRI-based" : "LawfulBasisForProcessing"
  1298. },
  1299. "attributes" : [ "external" ],
  1300. "id" : "189"
  1301. }, {
  1302. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightToObjectProcessing",
  1303. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1304. "instances" : 0,
  1305. "annotations" : {
  1306. "isDefinedBy" : [ {
  1307. "identifier" : "isDefinedBy",
  1308. "language" : "undefined",
  1309. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightToObjectToProcessing",
  1310. "type" : "iri"
  1311. } ]
  1312. },
  1313. "label" : {
  1314. "IRI-based" : "HandleRightToObjectProcessing",
  1315. "undefined" : "Handle Right to Object to Processing"
  1316. },
  1317. "comment" : {
  1318. "undefined" : "The process or series of steps that handle the right to object to processing."
  1319. },
  1320. "id" : "193",
  1321. "superClasses" : [ "28" ]
  1322. }, {
  1323. "iri" : "http://www.w3.org/ns/prov#Organization",
  1324. "baseIri" : "http://www.w3.org/ns/prov",
  1325. "instances" : 0,
  1326. "annotations" : {
  1327. "component" : [ {
  1328. "identifier" : "component",
  1329. "language" : "undefined",
  1330. "value" : "agents-responsibility",
  1331. "type" : "label"
  1332. } ],
  1333. "isDefinedBy" : [ {
  1334. "identifier" : "isDefinedBy",
  1335. "language" : "undefined",
  1336. "value" : "http://www.w3.org/ns/prov-o#",
  1337. "type" : "iri"
  1338. } ],
  1339. "dm" : [ {
  1340. "identifier" : "dm",
  1341. "language" : "undefined",
  1342. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  1343. "type" : "label"
  1344. } ],
  1345. "definition" : [ {
  1346. "identifier" : "definition",
  1347. "language" : "undefined",
  1348. "value" : "An organization is a social or legal institution such as a company, society, etc.",
  1349. "type" : "label"
  1350. } ],
  1351. "category" : [ {
  1352. "identifier" : "category",
  1353. "language" : "undefined",
  1354. "value" : "expanded",
  1355. "type" : "label"
  1356. } ],
  1357. "n" : [ {
  1358. "identifier" : "n",
  1359. "language" : "undefined",
  1360. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  1361. "type" : "label"
  1362. } ]
  1363. },
  1364. "label" : {
  1365. "IRI-based" : "Organization",
  1366. "undefined" : "Organization"
  1367. },
  1368. "attributes" : [ "external" ],
  1369. "id" : "215",
  1370. "superClasses" : [ "9" ]
  1371. }, {
  1372. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ProvideCopyOfPersonalData",
  1373. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1374. "instances" : 0,
  1375. "annotations" : {
  1376. "isDefinedBy" : [ {
  1377. "identifier" : "isDefinedBy",
  1378. "language" : "undefined",
  1379. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ProvideCopyOfPersonalData",
  1380. "type" : "iri"
  1381. } ]
  1382. },
  1383. "label" : {
  1384. "IRI-based" : "ProvideCopyOfPersonalData",
  1385. "undefined" : "Provide copy of Personal Data"
  1386. },
  1387. "comment" : {
  1388. "undefined" : "A step that provides the data subject with a copy of their personal data."
  1389. },
  1390. "id" : "178",
  1391. "superClasses" : [ "85" ]
  1392. }, {
  1393. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataDeletionActivity",
  1394. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1395. "instances" : 0,
  1396. "annotations" : {
  1397. "isDefinedBy" : [ {
  1398. "identifier" : "isDefinedBy",
  1399. "language" : "undefined",
  1400. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#EraseData",
  1401. "type" : "iri"
  1402. } ],
  1403. "seeAlso" : [ {
  1404. "identifier" : "seeAlso",
  1405. "language" : "undefined",
  1406. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataDeletionStep",
  1407. "type" : "iri"
  1408. } ]
  1409. },
  1410. "label" : {
  1411. "IRI-based" : "DataDeletionActivity",
  1412. "undefined" : "Data Deletion Activity"
  1413. },
  1414. "comment" : {
  1415. "undefined" : "Is an activity that deletes or erases data."
  1416. },
  1417. "id" : "204",
  1418. "superClasses" : [ "23" ]
  1419. }, {
  1420. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1421. "baseIri" : "http://owl2vowl.de",
  1422. "id" : "220",
  1423. "label" : {
  1424. "undefined" : "Thing"
  1425. }
  1426. }, {
  1427. "iri" : "http://www.w3.org/ns/prov#Activity",
  1428. "baseIri" : "http://www.w3.org/ns/prov",
  1429. "instances" : 0,
  1430. "annotations" : {
  1431. "component" : [ {
  1432. "identifier" : "component",
  1433. "language" : "undefined",
  1434. "value" : "entities-activities",
  1435. "type" : "label"
  1436. } ],
  1437. "isDefinedBy" : [ {
  1438. "identifier" : "isDefinedBy",
  1439. "language" : "undefined",
  1440. "value" : "http://www.w3.org/ns/prov-o#",
  1441. "type" : "iri"
  1442. } ],
  1443. "dm" : [ {
  1444. "identifier" : "dm",
  1445. "language" : "undefined",
  1446. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity",
  1447. "type" : "label"
  1448. } ],
  1449. "definition" : [ {
  1450. "identifier" : "definition",
  1451. "language" : "undefined",
  1452. "value" : "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.",
  1453. "type" : "label"
  1454. } ],
  1455. "category" : [ {
  1456. "identifier" : "category",
  1457. "language" : "undefined",
  1458. "value" : "starting-point",
  1459. "type" : "label"
  1460. } ],
  1461. "constraints" : [ {
  1462. "identifier" : "constraints",
  1463. "language" : "undefined",
  1464. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1465. "type" : "label"
  1466. } ],
  1467. "n" : [ {
  1468. "identifier" : "n",
  1469. "language" : "undefined",
  1470. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity",
  1471. "type" : "label"
  1472. } ]
  1473. },
  1474. "label" : {
  1475. "IRI-based" : "Activity",
  1476. "undefined" : "Activity"
  1477. },
  1478. "attributes" : [ "external" ],
  1479. "id" : "76"
  1480. }, {
  1481. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentWithdrawalProcess",
  1482. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1483. "instances" : 0,
  1484. "annotations" : {
  1485. "isDefinedBy" : [ {
  1486. "identifier" : "isDefinedBy",
  1487. "language" : "undefined",
  1488. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#WithdrawingConsent",
  1489. "type" : "iri"
  1490. } ],
  1491. "seeAlso" : [ {
  1492. "identifier" : "seeAlso",
  1493. "language" : "undefined",
  1494. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentWithdrawalStep",
  1495. "type" : "iri"
  1496. } ]
  1497. },
  1498. "label" : {
  1499. "IRI-based" : "ConsentWithdrawalProcess",
  1500. "en" : "Consent Withdrawal Process"
  1501. },
  1502. "comment" : {
  1503. "en" : "A ConsentWithdrawalProcess deals with the withdrawal of consent by the user and the corresponding activity carried out within the system"
  1504. },
  1505. "id" : "195",
  1506. "superClasses" : [ "28" ]
  1507. }, {
  1508. "iri" : "http://www.w3.org/ns/prov#Entity",
  1509. "baseIri" : "http://www.w3.org/ns/prov",
  1510. "instances" : 0,
  1511. "annotations" : {
  1512. "component" : [ {
  1513. "identifier" : "component",
  1514. "language" : "undefined",
  1515. "value" : "entities-activities",
  1516. "type" : "label"
  1517. } ],
  1518. "isDefinedBy" : [ {
  1519. "identifier" : "isDefinedBy",
  1520. "language" : "undefined",
  1521. "value" : "http://www.w3.org/ns/prov-o#",
  1522. "type" : "iri"
  1523. } ],
  1524. "dm" : [ {
  1525. "identifier" : "dm",
  1526. "language" : "undefined",
  1527. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity",
  1528. "type" : "label"
  1529. } ],
  1530. "definition" : [ {
  1531. "identifier" : "definition",
  1532. "language" : "en",
  1533. "value" : "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. ",
  1534. "type" : "label"
  1535. } ],
  1536. "category" : [ {
  1537. "identifier" : "category",
  1538. "language" : "undefined",
  1539. "value" : "starting-point",
  1540. "type" : "label"
  1541. } ],
  1542. "constraints" : [ {
  1543. "identifier" : "constraints",
  1544. "language" : "undefined",
  1545. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1546. "type" : "label"
  1547. } ],
  1548. "n" : [ {
  1549. "identifier" : "n",
  1550. "language" : "undefined",
  1551. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity",
  1552. "type" : "label"
  1553. } ]
  1554. },
  1555. "label" : {
  1556. "IRI-based" : "Entity",
  1557. "undefined" : "Entity"
  1558. },
  1559. "subClasses" : [ "103", "67", "226" ],
  1560. "attributes" : [ "external" ],
  1561. "id" : "30"
  1562. }, {
  1563. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1564. "baseIri" : "http://owl2vowl.de",
  1565. "id" : "227",
  1566. "label" : {
  1567. "undefined" : "Thing"
  1568. }
  1569. }, {
  1570. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1571. "baseIri" : "http://owl2vowl.de",
  1572. "id" : "228",
  1573. "label" : {
  1574. "undefined" : "Thing"
  1575. }
  1576. }, {
  1577. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AnonymisationActivity",
  1578. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1579. "instances" : 0,
  1580. "annotations" : {
  1581. "seeAlso" : [ {
  1582. "identifier" : "seeAlso",
  1583. "language" : "undefined",
  1584. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataAnonymisationStep",
  1585. "type" : "iri"
  1586. } ]
  1587. },
  1588. "label" : {
  1589. "IRI-based" : "AnonymisationActivity",
  1590. "undefined" : "Anonymisation Activity"
  1591. },
  1592. "comment" : {
  1593. "undefined" : "Is an activity that anonymises data."
  1594. },
  1595. "id" : "44",
  1596. "superClasses" : [ "45" ]
  1597. }, {
  1598. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#RectifyDataActivity",
  1599. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1600. "instances" : 0,
  1601. "annotations" : {
  1602. "seeAlso" : [ {
  1603. "identifier" : "seeAlso",
  1604. "language" : "undefined",
  1605. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#RectifyData",
  1606. "type" : "iri"
  1607. } ]
  1608. },
  1609. "label" : {
  1610. "IRI-based" : "RectifyDataActivity",
  1611. "undefined" : "Rectify Data Activity"
  1612. },
  1613. "comment" : {
  1614. "undefined" : "Is an activity that recitifies data."
  1615. },
  1616. "id" : "145",
  1617. "superClasses" : [ "23" ]
  1618. }, {
  1619. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  1620. "id" : "230",
  1621. "label" : {
  1622. "IRI-based" : "Literal",
  1623. "undefined" : "Literal"
  1624. }
  1625. }, {
  1626. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1627. "baseIri" : "http://owl2vowl.de",
  1628. "id" : "31",
  1629. "label" : {
  1630. "undefined" : "Thing"
  1631. }
  1632. }, {
  1633. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1634. "baseIri" : "http://owl2vowl.de",
  1635. "id" : "232",
  1636. "label" : {
  1637. "undefined" : "Thing"
  1638. }
  1639. }, {
  1640. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1641. "baseIri" : "http://owl2vowl.de",
  1642. "id" : "233",
  1643. "label" : {
  1644. "undefined" : "Thing"
  1645. }
  1646. }, {
  1647. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1648. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1649. "id" : "234",
  1650. "label" : {
  1651. "IRI-based" : "dateTime"
  1652. }
  1653. }, {
  1654. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1655. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1656. "id" : "235",
  1657. "label" : {
  1658. "IRI-based" : "dateTime"
  1659. }
  1660. }, {
  1661. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1662. "baseIri" : "http://owl2vowl.de",
  1663. "id" : "225",
  1664. "label" : {
  1665. "undefined" : "Thing"
  1666. }
  1667. }, {
  1668. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1669. "baseIri" : "http://owl2vowl.de",
  1670. "id" : "18",
  1671. "label" : {
  1672. "undefined" : "Thing"
  1673. }
  1674. }, {
  1675. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ArchiveConsentActivity",
  1676. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1677. "instances" : 0,
  1678. "annotations" : {
  1679. "seeAlso" : [ {
  1680. "identifier" : "seeAlso",
  1681. "language" : "undefined",
  1682. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentArchivalStep",
  1683. "type" : "iri"
  1684. } ]
  1685. },
  1686. "label" : {
  1687. "IRI-based" : "ArchiveConsentActivity",
  1688. "undefined" : "Archive Consent Activity"
  1689. },
  1690. "comment" : {
  1691. "undefined" : "An activity that archives given/acquired consent for storage."
  1692. },
  1693. "id" : "121",
  1694. "superClasses" : [ "15" ]
  1695. }, {
  1696. "iri" : "http://www.w3.org/ns/prov#Influence",
  1697. "baseIri" : "http://www.w3.org/ns/prov",
  1698. "instances" : 0,
  1699. "annotations" : {
  1700. "component" : [ {
  1701. "identifier" : "component",
  1702. "language" : "undefined",
  1703. "value" : "derivations",
  1704. "type" : "label"
  1705. } ],
  1706. "isDefinedBy" : [ {
  1707. "identifier" : "isDefinedBy",
  1708. "language" : "undefined",
  1709. "value" : "http://www.w3.org/ns/prov-o#",
  1710. "type" : "iri"
  1711. } ],
  1712. "unqualifiedForm" : [ {
  1713. "identifier" : "unqualifiedForm",
  1714. "language" : "undefined",
  1715. "value" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  1716. "type" : "iri"
  1717. } ],
  1718. "dm" : [ {
  1719. "identifier" : "dm",
  1720. "language" : "undefined",
  1721. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence",
  1722. "type" : "label"
  1723. } ],
  1724. "definition" : [ {
  1725. "identifier" : "definition",
  1726. "language" : "en",
  1727. "value" : "Influence is the capacity of an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation.",
  1728. "type" : "label"
  1729. } ],
  1730. "category" : [ {
  1731. "identifier" : "category",
  1732. "language" : "undefined",
  1733. "value" : "qualified",
  1734. "type" : "label"
  1735. } ],
  1736. "n" : [ {
  1737. "identifier" : "n",
  1738. "language" : "undefined",
  1739. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence",
  1740. "type" : "label"
  1741. } ]
  1742. },
  1743. "label" : {
  1744. "IRI-based" : "Influence",
  1745. "undefined" : "Influence"
  1746. },
  1747. "subClasses" : [ "52", "55", "181" ],
  1748. "comment" : {
  1749. "en" : "An instance of prov:Influence provides additional descriptions about the binary prov:wasInfluencedBy relation from some influenced Activity, Entity, or Agent to the influencing Activity, Entity, or Agent. For example, :stomach_ache prov:wasInfluencedBy :spoon; prov:qualifiedInfluence [ a prov:Influence; prov:entity :spoon; :foo :bar ] . Because prov:Influence is a broad relation, the more specific relations (Communication, Delegation, End, etc.) should be used when applicable."
  1750. },
  1751. "attributes" : [ "external" ],
  1752. "id" : "238"
  1753. }, {
  1754. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#PersonalData",
  1755. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1756. "instances" : 0,
  1757. "annotations" : {
  1758. "isDefinedBy" : [ {
  1759. "identifier" : "isDefinedBy",
  1760. "language" : "undefined",
  1761. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#PersonalData",
  1762. "type" : "iri"
  1763. } ],
  1764. "seeAlso" : [ {
  1765. "identifier" : "seeAlso",
  1766. "language" : "undefined",
  1767. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#PersonalDataEntity",
  1768. "type" : "iri"
  1769. } ]
  1770. },
  1771. "label" : {
  1772. "IRI-based" : "PersonalData",
  1773. "en" : "PersonalData"
  1774. },
  1775. "subClasses" : [ "239", "101", "38" ],
  1776. "comment" : {
  1777. "en" : "PersonalData is any data pertaining to the user which can contain personally identifiable information or a data set generated by the system using personally identifiable information acquired through direct or indirect means"
  1778. },
  1779. "id" : "39",
  1780. "superClasses" : [ "4" ]
  1781. }, {
  1782. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1783. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1784. "id" : "77",
  1785. "label" : {
  1786. "IRI-based" : "dateTime"
  1787. }
  1788. }, {
  1789. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1790. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1791. "id" : "114",
  1792. "label" : {
  1793. "IRI-based" : "dateTime"
  1794. }
  1795. }, {
  1796. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1797. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1798. "id" : "240",
  1799. "label" : {
  1800. "IRI-based" : "dateTime"
  1801. }
  1802. }, {
  1803. "instances" : 0,
  1804. "union" : [ "76", "30", "9" ],
  1805. "attributes" : [ "union", "anonymous" ],
  1806. "id" : "241"
  1807. }, {
  1808. "instances" : 0,
  1809. "union" : [ "89", "113" ],
  1810. "attributes" : [ "union", "anonymous" ],
  1811. "id" : "242"
  1812. }, {
  1813. "instances" : 0,
  1814. "union" : [ "76", "30", "9" ],
  1815. "attributes" : [ "union", "anonymous" ],
  1816. "id" : "243"
  1817. }, {
  1818. "instances" : 0,
  1819. "union" : [ "76", "30", "9" ],
  1820. "attributes" : [ "union", "anonymous" ],
  1821. "id" : "244"
  1822. }, {
  1823. "instances" : 0,
  1824. "union" : [ "51", "57", "59", "61" ],
  1825. "attributes" : [ "union", "anonymous" ],
  1826. "id" : "246"
  1827. }, {
  1828. "instances" : 0,
  1829. "union" : [ "76", "30", "113", "9" ],
  1830. "attributes" : [ "union", "anonymous" ],
  1831. "id" : "41"
  1832. }, {
  1833. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataSubject",
  1834. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1835. "instances" : 0,
  1836. "annotations" : {
  1837. "isDefinedBy" : [ {
  1838. "identifier" : "isDefinedBy",
  1839. "language" : "undefined",
  1840. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#DataSubject",
  1841. "type" : "iri"
  1842. } ]
  1843. },
  1844. "label" : {
  1845. "IRI-based" : "DataSubject",
  1846. "undefined" : "Data Subject"
  1847. },
  1848. "comment" : {
  1849. "undefined" : "An individual or entity"
  1850. },
  1851. "id" : "251",
  1852. "superClasses" : [ "9" ]
  1853. }, {
  1854. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#CrossBorderTransferActivity",
  1855. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1856. "instances" : 0,
  1857. "annotations" : {
  1858. "isDefinedBy" : [ {
  1859. "identifier" : "isDefinedBy",
  1860. "language" : "undefined",
  1861. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#CrossBorderTransfer",
  1862. "type" : "iri"
  1863. } ],
  1864. "seeAlso" : [ {
  1865. "identifier" : "seeAlso",
  1866. "language" : "undefined",
  1867. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#CrossBorderDataTransfer",
  1868. "type" : "iri"
  1869. } ]
  1870. },
  1871. "label" : {
  1872. "IRI-based" : "CrossBorderTransferActivity",
  1873. "undefined" : "Cross Border Transfer Activity"
  1874. },
  1875. "comment" : {
  1876. "undefined" : "Is an activity that transfer data across borders (as defined in the GDPR)."
  1877. },
  1878. "id" : "224",
  1879. "superClasses" : [ "23" ]
  1880. }, {
  1881. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#Marketing",
  1882. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1883. "instances" : 0,
  1884. "annotations" : {
  1885. "isDefinedBy" : [ {
  1886. "identifier" : "isDefinedBy",
  1887. "language" : "undefined",
  1888. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Marketing",
  1889. "type" : "iri"
  1890. } ]
  1891. },
  1892. "label" : {
  1893. "IRI-based" : "Marketing",
  1894. "undefined" : "Marketing"
  1895. },
  1896. "subClasses" : [ "70" ],
  1897. "comment" : {
  1898. "undefined" : "Marketing as a process or collection of steps."
  1899. },
  1900. "id" : "71",
  1901. "superClasses" : [ "28" ]
  1902. }, {
  1903. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#GivenConsent",
  1904. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1905. "instances" : 0,
  1906. "annotations" : {
  1907. "isDefinedBy" : [ {
  1908. "identifier" : "isDefinedBy",
  1909. "language" : "undefined",
  1910. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#GivenConsent",
  1911. "type" : "iri"
  1912. } ],
  1913. "seeAlso" : [ {
  1914. "identifier" : "seeAlso",
  1915. "language" : "undefined",
  1916. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentAgreement",
  1917. "type" : "iri"
  1918. } ]
  1919. },
  1920. "label" : {
  1921. "IRI-based" : "GivenConsent",
  1922. "undefined" : "Given Consent"
  1923. },
  1924. "comment" : {
  1925. "undefined" : "Represents the given consent by the data subject."
  1926. },
  1927. "id" : "166",
  1928. "superClasses" : [ "161" ]
  1929. }, {
  1930. "iri" : "http://www.w3.org/ns/prov#Invalidation",
  1931. "baseIri" : "http://www.w3.org/ns/prov",
  1932. "instances" : 0,
  1933. "annotations" : {
  1934. "component" : [ {
  1935. "identifier" : "component",
  1936. "language" : "undefined",
  1937. "value" : "entities-activities",
  1938. "type" : "label"
  1939. } ],
  1940. "isDefinedBy" : [ {
  1941. "identifier" : "isDefinedBy",
  1942. "language" : "undefined",
  1943. "value" : "http://www.w3.org/ns/prov-o#",
  1944. "type" : "iri"
  1945. } ],
  1946. "unqualifiedForm" : [ {
  1947. "identifier" : "unqualifiedForm",
  1948. "language" : "undefined",
  1949. "value" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  1950. "type" : "iri"
  1951. } ],
  1952. "dm" : [ {
  1953. "identifier" : "dm",
  1954. "language" : "undefined",
  1955. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation",
  1956. "type" : "label"
  1957. } ],
  1958. "definition" : [ {
  1959. "identifier" : "definition",
  1960. "language" : "undefined",
  1961. "value" : "Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation.",
  1962. "type" : "label"
  1963. } ],
  1964. "category" : [ {
  1965. "identifier" : "category",
  1966. "language" : "undefined",
  1967. "value" : "qualified",
  1968. "type" : "label"
  1969. } ],
  1970. "constraints" : [ {
  1971. "identifier" : "constraints",
  1972. "language" : "undefined",
  1973. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1974. "type" : "label"
  1975. } ],
  1976. "n" : [ {
  1977. "identifier" : "n",
  1978. "language" : "undefined",
  1979. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation",
  1980. "type" : "label"
  1981. } ]
  1982. },
  1983. "label" : {
  1984. "IRI-based" : "Invalidation",
  1985. "undefined" : "Invalidation"
  1986. },
  1987. "comment" : {
  1988. "en" : "An instance of prov:Invalidation provides additional descriptions about the binary prov:wasInvalidatedBy relation from an invalidated prov:Entity to the prov:Activity that invalidated it. For example, :uncracked_egg prov:wasInvalidatedBy :baking; prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :baking; :foo :bar ]."
  1989. },
  1990. "attributes" : [ "external" ],
  1991. "id" : "214",
  1992. "superClasses" : [ "113", "181" ]
  1993. }, {
  1994. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataTransformationActivity",
  1995. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  1996. "instances" : 0,
  1997. "annotations" : {
  1998. "seeAlso" : [ {
  1999. "identifier" : "seeAlso",
  2000. "language" : "undefined",
  2001. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataTransformationStep",
  2002. "type" : "iri"
  2003. } ]
  2004. },
  2005. "label" : {
  2006. "IRI-based" : "DataTransformationActivity",
  2007. "undefined" : "Data Transformation Activity"
  2008. },
  2009. "subClasses" : [ "73", "44", "47" ],
  2010. "comment" : {
  2011. "undefined" : "Is an activity that transforms data."
  2012. },
  2013. "id" : "45",
  2014. "superClasses" : [ "23" ]
  2015. }, {
  2016. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataBreachRecord",
  2017. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2018. "instances" : 0,
  2019. "annotations" : {
  2020. "isDefinedBy" : [ {
  2021. "identifier" : "isDefinedBy",
  2022. "language" : "undefined",
  2023. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#MaintainRecordOfBreach",
  2024. "type" : "iri"
  2025. } ]
  2026. },
  2027. "label" : {
  2028. "IRI-based" : "DataBreachRecord",
  2029. "undefined" : "Data Breach Record"
  2030. },
  2031. "comment" : {
  2032. "undefined" : "A record of a data breach."
  2033. },
  2034. "id" : "11",
  2035. "superClasses" : [ "2" ]
  2036. }, {
  2037. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#SensitiveDataEntity",
  2038. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2039. "instances" : 0,
  2040. "annotations" : {
  2041. "isDefinedBy" : [ {
  2042. "identifier" : "isDefinedBy",
  2043. "language" : "undefined",
  2044. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#SensitivePersonalData",
  2045. "type" : "iri"
  2046. } ],
  2047. "seeAlso" : [ {
  2048. "identifier" : "seeAlso",
  2049. "language" : "undefined",
  2050. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#SensitiveData",
  2051. "type" : "iri"
  2052. } ]
  2053. },
  2054. "label" : {
  2055. "IRI-based" : "SensitiveDataEntity",
  2056. "undefined" : "Sensitive Data Entity"
  2057. },
  2058. "comment" : {
  2059. "undefined" : "Is an entity containing sensitive personal information."
  2060. },
  2061. "id" : "268",
  2062. "superClasses" : [ "127" ]
  2063. }, {
  2064. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ReportDataBreach",
  2065. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2066. "instances" : 0,
  2067. "annotations" : {
  2068. "isDefinedBy" : [ {
  2069. "identifier" : "isDefinedBy",
  2070. "language" : "undefined",
  2071. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ReportDataBreach",
  2072. "type" : "iri"
  2073. } ]
  2074. },
  2075. "label" : {
  2076. "IRI-based" : "ReportDataBreach",
  2077. "undefined" : "Report Data Breach"
  2078. },
  2079. "comment" : {
  2080. "undefined" : "The process of reporting after a data breach has taken place."
  2081. },
  2082. "id" : "163",
  2083. "superClasses" : [ "162" ]
  2084. }, {
  2085. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataUsageActivity",
  2086. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2087. "instances" : 0,
  2088. "annotations" : {
  2089. "isDefinedBy" : [ {
  2090. "identifier" : "isDefinedBy",
  2091. "language" : "undefined",
  2092. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#UseData",
  2093. "type" : "iri"
  2094. } ],
  2095. "seeAlso" : [ {
  2096. "identifier" : "seeAlso",
  2097. "language" : "undefined",
  2098. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataUsageStep",
  2099. "type" : "iri"
  2100. } ]
  2101. },
  2102. "label" : {
  2103. "IRI-based" : "DataUsageActivity",
  2104. "undefined" : "Data Usage Activity"
  2105. },
  2106. "comment" : {
  2107. "undefined" : "Is an activity that uses data. Can also be termed as 'Processing' of data."
  2108. },
  2109. "id" : "105",
  2110. "superClasses" : [ "23" ]
  2111. }, {
  2112. "instances" : 0,
  2113. "union" : [ "238", "242" ],
  2114. "attributes" : [ "union", "anonymous" ],
  2115. "id" : "277"
  2116. }, {
  2117. "instances" : 0,
  2118. "union" : [ "238", "246" ],
  2119. "attributes" : [ "union", "anonymous" ],
  2120. "id" : "278"
  2121. }, {
  2122. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataSharingStep",
  2123. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2124. "instances" : 0,
  2125. "annotations" : {
  2126. "isDefinedBy" : [ {
  2127. "identifier" : "isDefinedBy",
  2128. "language" : "undefined",
  2129. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ShareDataWithThirdParty",
  2130. "type" : "iri"
  2131. } ],
  2132. "seeAlso" : [ {
  2133. "identifier" : "seeAlso",
  2134. "language" : "undefined",
  2135. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataSharingActivity",
  2136. "type" : "iri"
  2137. } ]
  2138. },
  2139. "label" : {
  2140. "IRI-based" : "DataSharingStep",
  2141. "en" : "Data Sharing Step"
  2142. },
  2143. "comment" : {
  2144. "en" : "DataSharingStep shares data with another agent/organisation. These may be internal or external entities."
  2145. },
  2146. "id" : "68",
  2147. "superClasses" : [ "85" ]
  2148. }, {
  2149. "iri" : "http://www.w3.org/ns/prov#Quotation",
  2150. "baseIri" : "http://www.w3.org/ns/prov",
  2151. "instances" : 0,
  2152. "annotations" : {
  2153. "component" : [ {
  2154. "identifier" : "component",
  2155. "language" : "undefined",
  2156. "value" : "derivations",
  2157. "type" : "label"
  2158. } ],
  2159. "isDefinedBy" : [ {
  2160. "identifier" : "isDefinedBy",
  2161. "language" : "undefined",
  2162. "value" : "http://www.w3.org/ns/prov-o#",
  2163. "type" : "iri"
  2164. } ],
  2165. "unqualifiedForm" : [ {
  2166. "identifier" : "unqualifiedForm",
  2167. "language" : "undefined",
  2168. "value" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  2169. "type" : "iri"
  2170. } ],
  2171. "dm" : [ {
  2172. "identifier" : "dm",
  2173. "language" : "undefined",
  2174. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation",
  2175. "type" : "label"
  2176. } ],
  2177. "definition" : [ {
  2178. "identifier" : "definition",
  2179. "language" : "en",
  2180. "value" : "A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation.",
  2181. "type" : "label"
  2182. } ],
  2183. "category" : [ {
  2184. "identifier" : "category",
  2185. "language" : "undefined",
  2186. "value" : "qualified",
  2187. "type" : "label"
  2188. } ],
  2189. "n" : [ {
  2190. "identifier" : "n",
  2191. "language" : "undefined",
  2192. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation",
  2193. "type" : "label"
  2194. } ]
  2195. },
  2196. "label" : {
  2197. "IRI-based" : "Quotation",
  2198. "undefined" : "Quotation"
  2199. },
  2200. "comment" : {
  2201. "en" : "An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ]."
  2202. },
  2203. "attributes" : [ "external" ],
  2204. "id" : "287",
  2205. "superClasses" : [ "57" ]
  2206. }, {
  2207. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AnonymisedDataEntity",
  2208. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2209. "instances" : 0,
  2210. "annotations" : {
  2211. "isDefinedBy" : [ {
  2212. "identifier" : "isDefinedBy",
  2213. "language" : "undefined",
  2214. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#PseudoAnonymousData",
  2215. "type" : "iri"
  2216. }, {
  2217. "identifier" : "isDefinedBy",
  2218. "language" : "undefined",
  2219. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#AnonymousData",
  2220. "type" : "iri"
  2221. } ],
  2222. "seeAlso" : [ {
  2223. "identifier" : "seeAlso",
  2224. "language" : "undefined",
  2225. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AnonymisedData",
  2226. "type" : "iri"
  2227. } ]
  2228. },
  2229. "label" : {
  2230. "IRI-based" : "AnonymisedDataEntity",
  2231. "undefined" : "Anonymised Data Entity"
  2232. },
  2233. "comment" : {
  2234. "undefined" : "Is an entity where personal data has been anonymised to some extent."
  2235. },
  2236. "id" : "289",
  2237. "superClasses" : [ "127" ]
  2238. }, {
  2239. "iri" : "http://www.w3.org/ns/prov#PrimarySource",
  2240. "baseIri" : "http://www.w3.org/ns/prov",
  2241. "instances" : 0,
  2242. "annotations" : {
  2243. "component" : [ {
  2244. "identifier" : "component",
  2245. "language" : "undefined",
  2246. "value" : "derivations",
  2247. "type" : "label"
  2248. } ],
  2249. "isDefinedBy" : [ {
  2250. "identifier" : "isDefinedBy",
  2251. "language" : "undefined",
  2252. "value" : "http://www.w3.org/ns/prov-o#",
  2253. "type" : "iri"
  2254. } ],
  2255. "unqualifiedForm" : [ {
  2256. "identifier" : "unqualifiedForm",
  2257. "language" : "undefined",
  2258. "value" : "http://www.w3.org/ns/prov#hadPrimarySource",
  2259. "type" : "iri"
  2260. } ],
  2261. "dm" : [ {
  2262. "identifier" : "dm",
  2263. "language" : "undefined",
  2264. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source",
  2265. "type" : "label"
  2266. } ],
  2267. "definition" : [ {
  2268. "identifier" : "definition",
  2269. "language" : "en",
  2270. "value" : "A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.\n\nBecause of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.\n\nA primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain.",
  2271. "type" : "label"
  2272. } ],
  2273. "category" : [ {
  2274. "identifier" : "category",
  2275. "language" : "undefined",
  2276. "value" : "qualified",
  2277. "type" : "label"
  2278. } ],
  2279. "n" : [ {
  2280. "identifier" : "n",
  2281. "language" : "undefined",
  2282. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source",
  2283. "type" : "label"
  2284. } ]
  2285. },
  2286. "label" : {
  2287. "IRI-based" : "PrimarySource",
  2288. "undefined" : "PrimarySource"
  2289. },
  2290. "comment" : {
  2291. "en" : "An instance of prov:PrimarySource provides additional descriptions about the binary prov:hadPrimarySource relation from some secondary prov:Entity to an earlier, primary prov:Entity. For example, :blog prov:hadPrimarySource :newsArticle; prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :newsArticle; :foo :bar ] ."
  2292. },
  2293. "attributes" : [ "external" ],
  2294. "id" : "293",
  2295. "superClasses" : [ "57" ]
  2296. }, {
  2297. "iri" : "http://www.w3.org/ns/prov#Revision",
  2298. "baseIri" : "http://www.w3.org/ns/prov",
  2299. "instances" : 0,
  2300. "annotations" : {
  2301. "component" : [ {
  2302. "identifier" : "component",
  2303. "language" : "undefined",
  2304. "value" : "derivations",
  2305. "type" : "label"
  2306. } ],
  2307. "isDefinedBy" : [ {
  2308. "identifier" : "isDefinedBy",
  2309. "language" : "undefined",
  2310. "value" : "http://www.w3.org/ns/prov-o#",
  2311. "type" : "iri"
  2312. } ],
  2313. "unqualifiedForm" : [ {
  2314. "identifier" : "unqualifiedForm",
  2315. "language" : "undefined",
  2316. "value" : "http://www.w3.org/ns/prov#wasRevisionOf",
  2317. "type" : "iri"
  2318. } ],
  2319. "dm" : [ {
  2320. "identifier" : "dm",
  2321. "language" : "undefined",
  2322. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision",
  2323. "type" : "label"
  2324. } ],
  2325. "definition" : [ {
  2326. "identifier" : "definition",
  2327. "language" : "en",
  2328. "value" : "A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation.",
  2329. "type" : "label"
  2330. } ],
  2331. "category" : [ {
  2332. "identifier" : "category",
  2333. "language" : "undefined",
  2334. "value" : "qualified",
  2335. "type" : "label"
  2336. } ],
  2337. "n" : [ {
  2338. "identifier" : "n",
  2339. "language" : "undefined",
  2340. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision",
  2341. "type" : "label"
  2342. } ]
  2343. },
  2344. "label" : {
  2345. "IRI-based" : "Revision",
  2346. "undefined" : "Revision"
  2347. },
  2348. "comment" : {
  2349. "en" : "An instance of prov:Revision provides additional descriptions about the binary prov:wasRevisionOf relation from some newer prov:Entity to an earlier prov:Entity. For example, :draft_2 prov:wasRevisionOf :draft_1; prov:qualifiedRevision [ a prov:Revision; prov:entity :draft_1; :foo :bar ]."
  2350. },
  2351. "attributes" : [ "external" ],
  2352. "id" : "191",
  2353. "superClasses" : [ "57" ]
  2354. }, {
  2355. "iri" : "http://www.w3.org/ns/prov#Role",
  2356. "baseIri" : "http://www.w3.org/ns/prov",
  2357. "instances" : 0,
  2358. "annotations" : {
  2359. "component" : [ {
  2360. "identifier" : "component",
  2361. "language" : "undefined",
  2362. "value" : "agents-responsibility",
  2363. "type" : "label"
  2364. } ],
  2365. "isDefinedBy" : [ {
  2366. "identifier" : "isDefinedBy",
  2367. "language" : "undefined",
  2368. "value" : "http://www.w3.org/ns/prov-o#",
  2369. "type" : "iri"
  2370. } ],
  2371. "dm" : [ {
  2372. "identifier" : "dm",
  2373. "language" : "undefined",
  2374. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role",
  2375. "type" : "label"
  2376. } ],
  2377. "definition" : [ {
  2378. "identifier" : "definition",
  2379. "language" : "en",
  2380. "value" : "A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end.",
  2381. "type" : "label"
  2382. } ],
  2383. "category" : [ {
  2384. "identifier" : "category",
  2385. "language" : "undefined",
  2386. "value" : "qualified",
  2387. "type" : "label"
  2388. } ],
  2389. "seeAlso" : [ {
  2390. "identifier" : "seeAlso",
  2391. "language" : "undefined",
  2392. "value" : "http://www.w3.org/ns/prov#hadRole",
  2393. "type" : "iri"
  2394. } ],
  2395. "n" : [ {
  2396. "identifier" : "n",
  2397. "language" : "undefined",
  2398. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute",
  2399. "type" : "label"
  2400. } ]
  2401. },
  2402. "label" : {
  2403. "IRI-based" : "Role",
  2404. "undefined" : "Role"
  2405. },
  2406. "attributes" : [ "external" ],
  2407. "id" : "307"
  2408. }, {
  2409. "iri" : "http://www.w3.org/ns/prov#End",
  2410. "baseIri" : "http://www.w3.org/ns/prov",
  2411. "instances" : 0,
  2412. "annotations" : {
  2413. "component" : [ {
  2414. "identifier" : "component",
  2415. "language" : "undefined",
  2416. "value" : "entities-activities",
  2417. "type" : "label"
  2418. } ],
  2419. "isDefinedBy" : [ {
  2420. "identifier" : "isDefinedBy",
  2421. "language" : "undefined",
  2422. "value" : "http://www.w3.org/ns/prov-o#",
  2423. "type" : "iri"
  2424. } ],
  2425. "unqualifiedForm" : [ {
  2426. "identifier" : "unqualifiedForm",
  2427. "language" : "undefined",
  2428. "value" : "http://www.w3.org/ns/prov#wasEndedBy",
  2429. "type" : "iri"
  2430. } ],
  2431. "dm" : [ {
  2432. "identifier" : "dm",
  2433. "language" : "undefined",
  2434. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End",
  2435. "type" : "label"
  2436. } ],
  2437. "definition" : [ {
  2438. "identifier" : "definition",
  2439. "language" : "en",
  2440. "value" : "End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger.",
  2441. "type" : "label"
  2442. } ],
  2443. "category" : [ {
  2444. "identifier" : "category",
  2445. "language" : "undefined",
  2446. "value" : "qualified",
  2447. "type" : "label"
  2448. } ],
  2449. "constraints" : [ {
  2450. "identifier" : "constraints",
  2451. "language" : "undefined",
  2452. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2453. "type" : "label"
  2454. } ],
  2455. "n" : [ {
  2456. "identifier" : "n",
  2457. "language" : "undefined",
  2458. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End",
  2459. "type" : "label"
  2460. } ]
  2461. },
  2462. "label" : {
  2463. "IRI-based" : "End",
  2464. "undefined" : "End"
  2465. },
  2466. "comment" : {
  2467. "en" : "An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ]."
  2468. },
  2469. "attributes" : [ "external" ],
  2470. "id" : "59",
  2471. "superClasses" : [ "55", "113" ]
  2472. }, {
  2473. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ImpactAssessment",
  2474. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2475. "instances" : 0,
  2476. "annotations" : {
  2477. "isDefinedBy" : [ {
  2478. "identifier" : "isDefinedBy",
  2479. "language" : "undefined",
  2480. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ImpactAssessment",
  2481. "type" : "iri"
  2482. } ]
  2483. },
  2484. "label" : {
  2485. "IRI-based" : "ImpactAssessment",
  2486. "undefined" : "Impact Assessment"
  2487. },
  2488. "comment" : {
  2489. "undefined" : "Represents the process or collection of steps representing the Impact Assessment."
  2490. },
  2491. "id" : "187",
  2492. "superClasses" : [ "28" ]
  2493. }, {
  2494. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DPO",
  2495. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2496. "instances" : 0,
  2497. "annotations" : {
  2498. "isDefinedBy" : [ {
  2499. "identifier" : "isDefinedBy",
  2500. "language" : "undefined",
  2501. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#DPO",
  2502. "type" : "iri"
  2503. } ]
  2504. },
  2505. "label" : {
  2506. "IRI-based" : "DPO",
  2507. "undefined" : "Data Protection Officer (DPO)"
  2508. },
  2509. "comment" : {
  2510. "undefined" : "The Data Protection Officer appointed to an organisation."
  2511. },
  2512. "id" : "253",
  2513. "superClasses" : [ "9" ]
  2514. }, {
  2515. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightToObjectDirectMarketing",
  2516. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2517. "instances" : 0,
  2518. "annotations" : {
  2519. "isDefinedBy" : [ {
  2520. "identifier" : "isDefinedBy",
  2521. "language" : "undefined",
  2522. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightToObjectForDirectMarketting",
  2523. "type" : "iri"
  2524. } ]
  2525. },
  2526. "label" : {
  2527. "IRI-based" : "HandleRightToObjectDirectMarketing",
  2528. "undefined" : "Handle Right to Object to Direct Marketing"
  2529. },
  2530. "comment" : {
  2531. "undefined" : "The process or series of steps that handle the right to object to direct marketing."
  2532. },
  2533. "id" : "206",
  2534. "superClasses" : [ "28" ]
  2535. }, {
  2536. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataCollectionStep",
  2537. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2538. "instances" : 0,
  2539. "annotations" : {
  2540. "isDefinedBy" : [ {
  2541. "identifier" : "isDefinedBy",
  2542. "language" : "undefined",
  2543. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#CollectionOfPersonalData",
  2544. "type" : "iri"
  2545. } ],
  2546. "seeAlso" : [ {
  2547. "identifier" : "seeAlso",
  2548. "language" : "undefined",
  2549. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataCollectionActivity",
  2550. "type" : "iri"
  2551. } ]
  2552. },
  2553. "label" : {
  2554. "IRI-based" : "DataCollectionStep",
  2555. "en" : "Data Collection Step"
  2556. },
  2557. "comment" : {
  2558. "en" : "DataCollectionStep collects data from the user"
  2559. },
  2560. "id" : "124",
  2561. "superClasses" : [ "85" ]
  2562. }, {
  2563. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentAgreementTemplate",
  2564. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2565. "instances" : 0,
  2566. "annotations" : {
  2567. "isDefinedBy" : [ {
  2568. "identifier" : "isDefinedBy",
  2569. "language" : "undefined",
  2570. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ValidConsent",
  2571. "type" : "iri"
  2572. }, {
  2573. "identifier" : "isDefinedBy",
  2574. "language" : "undefined",
  2575. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Consent",
  2576. "type" : "iri"
  2577. }, {
  2578. "identifier" : "isDefinedBy",
  2579. "language" : "undefined",
  2580. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ObligationForObtainingConsent",
  2581. "type" : "iri"
  2582. } ],
  2583. "seeAlso" : [ {
  2584. "identifier" : "seeAlso",
  2585. "language" : "undefined",
  2586. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#GivenConsentTemplate",
  2587. "type" : "iri"
  2588. } ]
  2589. },
  2590. "label" : {
  2591. "IRI-based" : "ConsentAgreementTemplate",
  2592. "en" : "ConsentAgreementTemplate"
  2593. },
  2594. "comment" : {
  2595. "en" : "This is a template for consent requested from the user."
  2596. },
  2597. "id" : "6",
  2598. "superClasses" : [ "2" ]
  2599. }, {
  2600. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataBreachStep",
  2601. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2602. "instances" : 0,
  2603. "annotations" : {
  2604. "isDefinedBy" : [ {
  2605. "identifier" : "isDefinedBy",
  2606. "language" : "undefined",
  2607. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ReportDataBreach",
  2608. "type" : "iri"
  2609. } ],
  2610. "seeAlso" : [ {
  2611. "identifier" : "seeAlso",
  2612. "language" : "undefined",
  2613. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataBreachActivity",
  2614. "type" : "iri"
  2615. } ]
  2616. },
  2617. "label" : {
  2618. "IRI-based" : "DataBreachStep",
  2619. "undefined" : "Data Breach Step"
  2620. },
  2621. "subClasses" : [ "156", "132", "135" ],
  2622. "comment" : {
  2623. "undefined" : "Step representing an action associated with data breach."
  2624. },
  2625. "id" : "133",
  2626. "superClasses" : [ "173" ]
  2627. }, {
  2628. "iri" : "http://www.w3.org/ns/prov#InstantaneousEvent",
  2629. "baseIri" : "http://www.w3.org/ns/prov",
  2630. "instances" : 0,
  2631. "annotations" : {
  2632. "component" : [ {
  2633. "identifier" : "component",
  2634. "language" : "undefined",
  2635. "value" : "entities-activities",
  2636. "type" : "label"
  2637. } ],
  2638. "isDefinedBy" : [ {
  2639. "identifier" : "isDefinedBy",
  2640. "language" : "undefined",
  2641. "value" : "http://www.w3.org/ns/prov-o#",
  2642. "type" : "iri"
  2643. } ],
  2644. "definition" : [ {
  2645. "identifier" : "definition",
  2646. "language" : "en",
  2647. "value" : "The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics.",
  2648. "type" : "label"
  2649. } ],
  2650. "category" : [ {
  2651. "identifier" : "category",
  2652. "language" : "undefined",
  2653. "value" : "qualified",
  2654. "type" : "label"
  2655. } ],
  2656. "constraints" : [ {
  2657. "identifier" : "constraints",
  2658. "language" : "undefined",
  2659. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event",
  2660. "type" : "label"
  2661. } ]
  2662. },
  2663. "label" : {
  2664. "IRI-based" : "InstantaneousEvent",
  2665. "undefined" : "InstantaneousEvent"
  2666. },
  2667. "subClasses" : [ "54", "262", "214", "59", "61" ],
  2668. "comment" : {
  2669. "en" : "An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous."
  2670. },
  2671. "attributes" : [ "external" ],
  2672. "id" : "113"
  2673. }, {
  2674. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightToTransparency",
  2675. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2676. "instances" : 0,
  2677. "annotations" : {
  2678. "isDefinedBy" : [ {
  2679. "identifier" : "isDefinedBy",
  2680. "language" : "undefined",
  2681. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightToTransparency",
  2682. "type" : "iri"
  2683. } ]
  2684. },
  2685. "label" : {
  2686. "IRI-based" : "HandleRightToTransparency",
  2687. "undefined" : "Handle Right to Transparency"
  2688. },
  2689. "comment" : {
  2690. "undefined" : "The process or series of steps that handle the right to transparency."
  2691. },
  2692. "id" : "197",
  2693. "superClasses" : [ "28" ]
  2694. }, {
  2695. "iri" : "http://www.w3.org/ns/prov#ActivityInfluence",
  2696. "baseIri" : "http://www.w3.org/ns/prov",
  2697. "instances" : 0,
  2698. "annotations" : {
  2699. "isDefinedBy" : [ {
  2700. "identifier" : "isDefinedBy",
  2701. "language" : "undefined",
  2702. "value" : "http://www.w3.org/ns/prov-o#",
  2703. "type" : "iri"
  2704. } ],
  2705. "editorsDefinition" : [ {
  2706. "identifier" : "editorsDefinition",
  2707. "language" : "en",
  2708. "value" : "ActivitiyInfluence is the capacity of an activity to have an effect on the character, development, or behavior of another by means of generation, invalidation, communication, or other.",
  2709. "type" : "label"
  2710. } ],
  2711. "category" : [ {
  2712. "identifier" : "category",
  2713. "language" : "undefined",
  2714. "value" : "qualified",
  2715. "type" : "label"
  2716. } ],
  2717. "seeAlso" : [ {
  2718. "identifier" : "seeAlso",
  2719. "language" : "undefined",
  2720. "value" : "http://www.w3.org/ns/prov#activity",
  2721. "type" : "iri"
  2722. } ]
  2723. },
  2724. "label" : {
  2725. "IRI-based" : "ActivityInfluence",
  2726. "undefined" : "ActivityInfluence"
  2727. },
  2728. "subClasses" : [ "79", "262", "214" ],
  2729. "comment" : {
  2730. "en" : "It is not recommended that the type ActivityInfluence be asserted without also asserting one of its more specific subclasses."
  2731. },
  2732. "attributes" : [ "external" ],
  2733. "id" : "181",
  2734. "superClasses" : [ "238" ]
  2735. }, {
  2736. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DirectMarketing",
  2737. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2738. "instances" : 0,
  2739. "annotations" : {
  2740. "isDefinedBy" : [ {
  2741. "identifier" : "isDefinedBy",
  2742. "language" : "undefined",
  2743. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#DirectMarketing",
  2744. "type" : "iri"
  2745. } ]
  2746. },
  2747. "label" : {
  2748. "IRI-based" : "DirectMarketing",
  2749. "undefined" : "Direct Marketing"
  2750. },
  2751. "comment" : {
  2752. "undefined" : "Direct Marketing where the marketing is done directly to the data subject."
  2753. },
  2754. "id" : "70",
  2755. "superClasses" : [ "71" ]
  2756. }, {
  2757. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ThirdParty",
  2758. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2759. "instances" : 0,
  2760. "annotations" : {
  2761. "isDefinedBy" : [ {
  2762. "identifier" : "isDefinedBy",
  2763. "language" : "undefined",
  2764. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Entity",
  2765. "type" : "iri"
  2766. } ]
  2767. },
  2768. "label" : {
  2769. "IRI-based" : "ThirdParty",
  2770. "en" : "ThirdParty"
  2771. },
  2772. "subClasses" : [ "33", "64" ],
  2773. "comment" : {
  2774. "en" : "A ThirdParty is any external entitiy associated with some internal activity"
  2775. },
  2776. "id" : "34",
  2777. "superClasses" : [ "9" ]
  2778. }, {
  2779. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataCollectionActivity",
  2780. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2781. "instances" : 0,
  2782. "annotations" : {
  2783. "isDefinedBy" : [ {
  2784. "identifier" : "isDefinedBy",
  2785. "language" : "undefined",
  2786. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#CollectionOfPersonalData",
  2787. "type" : "iri"
  2788. } ],
  2789. "seeAlso" : [ {
  2790. "identifier" : "seeAlso",
  2791. "language" : "undefined",
  2792. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataCollectionStep",
  2793. "type" : "iri"
  2794. } ]
  2795. },
  2796. "label" : {
  2797. "IRI-based" : "DataCollectionActivity",
  2798. "undefined" : "Data Collection Activity"
  2799. },
  2800. "comment" : {
  2801. "undefined" : "Is an activity that collects or acquires data."
  2802. },
  2803. "id" : "142",
  2804. "superClasses" : [ "23" ]
  2805. }, {
  2806. "iri" : "http://www.w3.org/ns/prov#EmptyCollection",
  2807. "baseIri" : "http://www.w3.org/ns/prov",
  2808. "instances" : 0,
  2809. "annotations" : {
  2810. "component" : [ {
  2811. "identifier" : "component",
  2812. "language" : "undefined",
  2813. "value" : "collections",
  2814. "type" : "label"
  2815. } ],
  2816. "isDefinedBy" : [ {
  2817. "identifier" : "isDefinedBy",
  2818. "language" : "undefined",
  2819. "value" : "http://www.w3.org/ns/prov-o#",
  2820. "type" : "iri"
  2821. } ],
  2822. "definition" : [ {
  2823. "identifier" : "definition",
  2824. "language" : "en",
  2825. "value" : "An empty collection is a collection without members.",
  2826. "type" : "label"
  2827. } ],
  2828. "category" : [ {
  2829. "identifier" : "category",
  2830. "language" : "undefined",
  2831. "value" : "expanded",
  2832. "type" : "label"
  2833. } ]
  2834. },
  2835. "label" : {
  2836. "IRI-based" : "EmptyCollection",
  2837. "en" : "EmptyCollection"
  2838. },
  2839. "attributes" : [ "external" ],
  2840. "id" : "66",
  2841. "superClasses" : [ "67" ]
  2842. }, {
  2843. "iri" : "http://www.w3.org/ns/prov#Agent",
  2844. "baseIri" : "http://www.w3.org/ns/prov",
  2845. "instances" : 0,
  2846. "annotations" : {
  2847. "component" : [ {
  2848. "identifier" : "component",
  2849. "language" : "undefined",
  2850. "value" : "agents-responsibility",
  2851. "type" : "label"
  2852. } ],
  2853. "isDefinedBy" : [ {
  2854. "identifier" : "isDefinedBy",
  2855. "language" : "undefined",
  2856. "value" : "http://www.w3.org/ns/prov-o#",
  2857. "type" : "iri"
  2858. } ],
  2859. "dm" : [ {
  2860. "identifier" : "dm",
  2861. "language" : "undefined",
  2862. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  2863. "type" : "label"
  2864. } ],
  2865. "definition" : [ {
  2866. "identifier" : "definition",
  2867. "language" : "en",
  2868. "value" : "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. ",
  2869. "type" : "label"
  2870. } ],
  2871. "category" : [ {
  2872. "identifier" : "category",
  2873. "language" : "undefined",
  2874. "value" : "starting-point",
  2875. "type" : "label"
  2876. } ],
  2877. "n" : [ {
  2878. "identifier" : "n",
  2879. "language" : "undefined",
  2880. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent",
  2881. "type" : "label"
  2882. } ]
  2883. },
  2884. "label" : {
  2885. "IRI-based" : "Agent",
  2886. "undefined" : "Agent"
  2887. },
  2888. "subClasses" : [ "48", "49", "251", "215", "253", "250", "318", "34" ],
  2889. "attributes" : [ "external" ],
  2890. "id" : "9"
  2891. }, {
  2892. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataUsageStep",
  2893. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2894. "instances" : 0,
  2895. "annotations" : {
  2896. "isDefinedBy" : [ {
  2897. "identifier" : "isDefinedBy",
  2898. "language" : "undefined",
  2899. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Processing",
  2900. "type" : "iri"
  2901. } ],
  2902. "seeAlso" : [ {
  2903. "identifier" : "seeAlso",
  2904. "language" : "undefined",
  2905. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataUsageActivity",
  2906. "type" : "iri"
  2907. } ]
  2908. },
  2909. "label" : {
  2910. "IRI-based" : "DataUsageStep",
  2911. "en" : "Data Usage Step"
  2912. },
  2913. "comment" : {
  2914. "en" : "A DataUsageStep is a DataStep that uses existing data present within the system"
  2915. },
  2916. "id" : "174",
  2917. "superClasses" : [ "85" ]
  2918. }, {
  2919. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ModifyConsentActivity",
  2920. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2921. "instances" : 0,
  2922. "annotations" : {
  2923. "seeAlso" : [ {
  2924. "identifier" : "seeAlso",
  2925. "language" : "undefined",
  2926. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentModificationStep",
  2927. "type" : "iri"
  2928. } ]
  2929. },
  2930. "label" : {
  2931. "IRI-based" : "ModifyConsentActivity",
  2932. "undefined" : "Modify Consent Activity"
  2933. },
  2934. "subClasses" : [ "321" ],
  2935. "comment" : {
  2936. "undefined" : "Is an activity that modifies given consent."
  2937. },
  2938. "id" : "120",
  2939. "superClasses" : [ "15" ]
  2940. }, {
  2941. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleSAR",
  2942. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2943. "instances" : 0,
  2944. "label" : {
  2945. "IRI-based" : "HandleSAR",
  2946. "undefined" : "HandleSAR"
  2947. },
  2948. "id" : "172",
  2949. "superClasses" : [ "28" ]
  2950. }, {
  2951. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#WithdrawConsentActivity",
  2952. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2953. "instances" : 0,
  2954. "annotations" : {
  2955. "isDefinedBy" : [ {
  2956. "identifier" : "isDefinedBy",
  2957. "language" : "undefined",
  2958. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#WithdrawingConsent",
  2959. "type" : "iri"
  2960. } ],
  2961. "seeAlso" : [ {
  2962. "identifier" : "seeAlso",
  2963. "language" : "undefined",
  2964. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentWithdrawalStep",
  2965. "type" : "iri"
  2966. } ]
  2967. },
  2968. "label" : {
  2969. "IRI-based" : "WithdrawConsentActivity",
  2970. "undefined" : "Withdraw Consent Activity"
  2971. },
  2972. "comment" : {
  2973. "undefined" : "Is an activity that withdraws given consent. Can also term it so as to depict withdrawal as a modification of consent."
  2974. },
  2975. "id" : "321",
  2976. "superClasses" : [ "120" ]
  2977. }, {
  2978. "iri" : "http://purl.org/net/p-plan#Step",
  2979. "baseIri" : "http://purl.org/net/p-plan",
  2980. "instances" : 0,
  2981. "label" : {
  2982. "IRI-based" : "Step"
  2983. },
  2984. "subClasses" : [ "85", "133", "138", "314", "306" ],
  2985. "attributes" : [ "external" ],
  2986. "id" : "173"
  2987. }, {
  2988. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#TermsAndConditionsEntity",
  2989. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  2990. "instances" : 0,
  2991. "annotations" : {
  2992. "seeAlso" : [ {
  2993. "identifier" : "seeAlso",
  2994. "language" : "undefined",
  2995. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#TermsAndConditions",
  2996. "type" : "iri"
  2997. } ]
  2998. },
  2999. "label" : {
  3000. "IRI-based" : "TermsAndConditionsEntity",
  3001. "undefined" : "Terms and Conditions Entity"
  3002. },
  3003. "comment" : {
  3004. "undefined" : "Represents the Terms and Conditions entity."
  3005. },
  3006. "id" : "168",
  3007. "superClasses" : [ "161" ]
  3008. }, {
  3009. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataStorageStep",
  3010. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3011. "instances" : 0,
  3012. "annotations" : {
  3013. "isDefinedBy" : [ {
  3014. "identifier" : "isDefinedBy",
  3015. "language" : "undefined",
  3016. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#StoreData",
  3017. "type" : "iri"
  3018. } ],
  3019. "seeAlso" : [ {
  3020. "identifier" : "seeAlso",
  3021. "language" : "undefined",
  3022. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataStorageActivity",
  3023. "type" : "iri"
  3024. } ]
  3025. },
  3026. "label" : {
  3027. "IRI-based" : "DataStorageStep",
  3028. "en" : "Data Storage Step"
  3029. },
  3030. "subClasses" : [ "147" ],
  3031. "comment" : {
  3032. "en" : "DataStorageStep stores data within the system"
  3033. },
  3034. "id" : "179",
  3035. "superClasses" : [ "85" ]
  3036. }, {
  3037. "iri" : "http://www.w3.org/ns/prov#Location",
  3038. "baseIri" : "http://www.w3.org/ns/prov",
  3039. "instances" : 0,
  3040. "annotations" : {
  3041. "isDefinedBy" : [ {
  3042. "identifier" : "isDefinedBy",
  3043. "language" : "undefined",
  3044. "value" : "http://www.w3.org/ns/prov-o#",
  3045. "type" : "iri"
  3046. } ],
  3047. "dm" : [ {
  3048. "identifier" : "dm",
  3049. "language" : "undefined",
  3050. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location",
  3051. "type" : "label"
  3052. } ],
  3053. "definition" : [ {
  3054. "identifier" : "definition",
  3055. "language" : "en",
  3056. "value" : "A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth.",
  3057. "type" : "label"
  3058. } ],
  3059. "category" : [ {
  3060. "identifier" : "category",
  3061. "language" : "undefined",
  3062. "value" : "expanded",
  3063. "type" : "label"
  3064. } ],
  3065. "n" : [ {
  3066. "identifier" : "n",
  3067. "language" : "undefined",
  3068. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute",
  3069. "type" : "label"
  3070. } ],
  3071. "seeAlso" : [ {
  3072. "identifier" : "seeAlso",
  3073. "language" : "undefined",
  3074. "value" : "http://www.w3.org/ns/prov#atLocation",
  3075. "type" : "iri"
  3076. } ]
  3077. },
  3078. "label" : {
  3079. "IRI-based" : "Location",
  3080. "undefined" : "Location"
  3081. },
  3082. "attributes" : [ "external" ],
  3083. "id" : "42"
  3084. }, {
  3085. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AcquireConsentActivity",
  3086. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3087. "instances" : 0,
  3088. "annotations" : {
  3089. "isDefinedBy" : [ {
  3090. "identifier" : "isDefinedBy",
  3091. "language" : "undefined",
  3092. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ObtainingConsent",
  3093. "type" : "iri"
  3094. } ],
  3095. "seeAlso" : [ {
  3096. "identifier" : "seeAlso",
  3097. "language" : "undefined",
  3098. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentAcquisitionStep",
  3099. "type" : "iri"
  3100. } ]
  3101. },
  3102. "label" : {
  3103. "IRI-based" : "AcquireConsentActivity",
  3104. "undefined" : "Acquire Consent Activity"
  3105. },
  3106. "comment" : {
  3107. "undefined" : "Is an activity that acquires consent."
  3108. },
  3109. "id" : "122",
  3110. "superClasses" : [ "15" ]
  3111. }, {
  3112. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#PersonalDataEntity",
  3113. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3114. "instances" : 0,
  3115. "annotations" : {
  3116. "isDefinedBy" : [ {
  3117. "identifier" : "isDefinedBy",
  3118. "language" : "undefined",
  3119. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#PersonalData",
  3120. "type" : "iri"
  3121. } ],
  3122. "seeAlso" : [ {
  3123. "identifier" : "seeAlso",
  3124. "language" : "undefined",
  3125. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#PersonalData",
  3126. "type" : "iri"
  3127. } ]
  3128. },
  3129. "label" : {
  3130. "IRI-based" : "PersonalDataEntity",
  3131. "undefined" : "Personal Data Entity"
  3132. },
  3133. "subClasses" : [ "289", "126", "268" ],
  3134. "comment" : {
  3135. "undefined" : "Represents a personal data entity."
  3136. },
  3137. "id" : "127",
  3138. "superClasses" : [ "154" ]
  3139. }, {
  3140. "iri" : "http://www.w3.org/ns/prov#Derivation",
  3141. "baseIri" : "http://www.w3.org/ns/prov",
  3142. "instances" : 0,
  3143. "annotations" : {
  3144. "component" : [ {
  3145. "identifier" : "component",
  3146. "language" : "undefined",
  3147. "value" : "derivations",
  3148. "type" : "label"
  3149. } ],
  3150. "isDefinedBy" : [ {
  3151. "identifier" : "isDefinedBy",
  3152. "language" : "undefined",
  3153. "value" : "http://www.w3.org/ns/prov-o#",
  3154. "type" : "iri"
  3155. } ],
  3156. "unqualifiedForm" : [ {
  3157. "identifier" : "unqualifiedForm",
  3158. "language" : "undefined",
  3159. "value" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  3160. "type" : "iri"
  3161. } ],
  3162. "dm" : [ {
  3163. "identifier" : "dm",
  3164. "language" : "undefined",
  3165. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation",
  3166. "type" : "label"
  3167. } ],
  3168. "definition" : [ {
  3169. "identifier" : "definition",
  3170. "language" : "en",
  3171. "value" : "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.",
  3172. "type" : "label"
  3173. } ],
  3174. "category" : [ {
  3175. "identifier" : "category",
  3176. "language" : "undefined",
  3177. "value" : "qualified",
  3178. "type" : "label"
  3179. } ],
  3180. "constraints" : [ {
  3181. "identifier" : "constraints",
  3182. "language" : "undefined",
  3183. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3184. "type" : "label"
  3185. } ],
  3186. "n" : [ {
  3187. "identifier" : "n",
  3188. "language" : "undefined",
  3189. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation",
  3190. "type" : "label"
  3191. } ]
  3192. },
  3193. "label" : {
  3194. "IRI-based" : "Derivation",
  3195. "undefined" : "Derivation"
  3196. },
  3197. "subClasses" : [ "287", "293", "191" ],
  3198. "comment" : {
  3199. "en" : "The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply."
  3200. },
  3201. "attributes" : [ "external" ],
  3202. "id" : "57",
  3203. "superClasses" : [ "55" ]
  3204. }, {
  3205. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#SubProcessor",
  3206. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3207. "instances" : 0,
  3208. "annotations" : {
  3209. "isDefinedBy" : [ {
  3210. "identifier" : "isDefinedBy",
  3211. "language" : "undefined",
  3212. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#SubProcessor",
  3213. "type" : "iri"
  3214. } ]
  3215. },
  3216. "label" : {
  3217. "IRI-based" : "SubProcessor",
  3218. "undefined" : "Sub-Processor"
  3219. },
  3220. "comment" : {
  3221. "undefined" : "A Processor appointed under or by another Processor is a Sub-Processor."
  3222. },
  3223. "id" : "63",
  3224. "superClasses" : [ "64" ]
  3225. }, {
  3226. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#JointController",
  3227. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3228. "instances" : 0,
  3229. "annotations" : {
  3230. "isDefinedBy" : [ {
  3231. "identifier" : "isDefinedBy",
  3232. "language" : "undefined",
  3233. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#JointController",
  3234. "type" : "iri"
  3235. } ]
  3236. },
  3237. "label" : {
  3238. "IRI-based" : "JointController",
  3239. "undefined" : "Joint Controller(s)"
  3240. },
  3241. "comment" : {
  3242. "undefined" : "A Joint Controller is where two or more controllers jointly determine the purposes and means of processing."
  3243. },
  3244. "id" : "35",
  3245. "superClasses" : [ "33" ]
  3246. }, {
  3247. "iri" : "http://www.w3.org/ns/prov#Start",
  3248. "baseIri" : "http://www.w3.org/ns/prov",
  3249. "instances" : 0,
  3250. "annotations" : {
  3251. "component" : [ {
  3252. "identifier" : "component",
  3253. "language" : "undefined",
  3254. "value" : "entities-activities",
  3255. "type" : "label"
  3256. } ],
  3257. "isDefinedBy" : [ {
  3258. "identifier" : "isDefinedBy",
  3259. "language" : "undefined",
  3260. "value" : "http://www.w3.org/ns/prov-o#",
  3261. "type" : "iri"
  3262. } ],
  3263. "unqualifiedForm" : [ {
  3264. "identifier" : "unqualifiedForm",
  3265. "language" : "undefined",
  3266. "value" : "http://www.w3.org/ns/prov#wasStartedBy",
  3267. "type" : "iri"
  3268. } ],
  3269. "dm" : [ {
  3270. "identifier" : "dm",
  3271. "language" : "undefined",
  3272. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start",
  3273. "type" : "label"
  3274. } ],
  3275. "definition" : [ {
  3276. "identifier" : "definition",
  3277. "language" : "en",
  3278. "value" : "Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger.",
  3279. "type" : "label"
  3280. } ],
  3281. "category" : [ {
  3282. "identifier" : "category",
  3283. "language" : "undefined",
  3284. "value" : "qualified",
  3285. "type" : "label"
  3286. } ],
  3287. "constraints" : [ {
  3288. "identifier" : "constraints",
  3289. "language" : "undefined",
  3290. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3291. "type" : "label"
  3292. } ],
  3293. "n" : [ {
  3294. "identifier" : "n",
  3295. "language" : "undefined",
  3296. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start",
  3297. "type" : "label"
  3298. } ]
  3299. },
  3300. "label" : {
  3301. "IRI-based" : "Start",
  3302. "undefined" : "Start"
  3303. },
  3304. "comment" : {
  3305. "en" : "An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] ."
  3306. },
  3307. "attributes" : [ "external" ],
  3308. "id" : "61",
  3309. "superClasses" : [ "55", "113" ]
  3310. }, {
  3311. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyDPA",
  3312. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3313. "instances" : 0,
  3314. "annotations" : {
  3315. "isDefinedBy" : [ {
  3316. "identifier" : "isDefinedBy",
  3317. "language" : "undefined",
  3318. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ReportDataBreachToDPAWithin72Hours",
  3319. "type" : "iri"
  3320. } ],
  3321. "seeAlso" : [ {
  3322. "identifier" : "seeAlso",
  3323. "language" : "undefined",
  3324. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyDPAActivity",
  3325. "type" : "iri"
  3326. } ]
  3327. },
  3328. "label" : {
  3329. "IRI-based" : "NotifyDPA",
  3330. "undefined" : "Notify Data Protection Authority"
  3331. },
  3332. "comment" : {
  3333. "undefined" : "Step that notifies the Data Protection Authorities of a data breach."
  3334. },
  3335. "id" : "156",
  3336. "superClasses" : [ "133" ]
  3337. }, {
  3338. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#MonitorCompliance",
  3339. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3340. "instances" : 0,
  3341. "annotations" : {
  3342. "isDefinedBy" : [ {
  3343. "identifier" : "isDefinedBy",
  3344. "language" : "undefined",
  3345. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#MonitorCompliance",
  3346. "type" : "iri"
  3347. } ]
  3348. },
  3349. "label" : {
  3350. "IRI-based" : "MonitorCompliance",
  3351. "undefined" : "Monitor Compliance"
  3352. },
  3353. "comment" : {
  3354. "undefined" : "The process of monitoring compliance as mandated by the GDPR."
  3355. },
  3356. "id" : "208",
  3357. "superClasses" : [ "28" ]
  3358. }, {
  3359. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyController",
  3360. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3361. "instances" : 0,
  3362. "annotations" : {
  3363. "isDefinedBy" : [ {
  3364. "identifier" : "isDefinedBy",
  3365. "language" : "undefined",
  3366. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ReportDataBreachToController",
  3367. "type" : "iri"
  3368. } ],
  3369. "seeAlso" : [ {
  3370. "identifier" : "seeAlso",
  3371. "language" : "undefined",
  3372. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyControllerActivity",
  3373. "type" : "iri"
  3374. } ]
  3375. },
  3376. "label" : {
  3377. "IRI-based" : "NotifyController",
  3378. "undefined" : "Notify Controller"
  3379. },
  3380. "comment" : {
  3381. "undefined" : "Step that notifies the controller of data breach."
  3382. },
  3383. "id" : "132",
  3384. "superClasses" : [ "133" ]
  3385. }, {
  3386. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ProcessorRepresentative",
  3387. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3388. "instances" : 0,
  3389. "annotations" : {
  3390. "isDefinedBy" : [ {
  3391. "identifier" : "isDefinedBy",
  3392. "language" : "undefined",
  3393. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ProcessorRepresentative",
  3394. "type" : "iri"
  3395. } ]
  3396. },
  3397. "label" : {
  3398. "IRI-based" : "ProcessorRepresentative",
  3399. "undefined" : "Processor Representative"
  3400. },
  3401. "comment" : {
  3402. "undefined" : "A representative of the Processor."
  3403. },
  3404. "id" : "250",
  3405. "superClasses" : [ "9" ]
  3406. }, {
  3407. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightToNoAutomatedProcessing",
  3408. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3409. "instances" : 0,
  3410. "annotations" : {
  3411. "isDefinedBy" : [ {
  3412. "identifier" : "isDefinedBy",
  3413. "language" : "undefined",
  3414. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightToNotBeEvaluatedThroughAutomatedProcessing",
  3415. "type" : "iri"
  3416. } ]
  3417. },
  3418. "label" : {
  3419. "IRI-based" : "HandleRightToNoAutomatedProcessing",
  3420. "undefined" : "Handle Right to not be evaluated through Automated Processing"
  3421. },
  3422. "comment" : {
  3423. "undefined" : "The process or series of steps that handle the right to not be processed automatically."
  3424. },
  3425. "id" : "219",
  3426. "superClasses" : [ "28" ]
  3427. }, {
  3428. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#RectifyData",
  3429. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3430. "instances" : 0,
  3431. "annotations" : {
  3432. "isDefinedBy" : [ {
  3433. "identifier" : "isDefinedBy",
  3434. "language" : "undefined",
  3435. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RectifyData",
  3436. "type" : "iri"
  3437. } ],
  3438. "seeAlso" : [ {
  3439. "identifier" : "seeAlso",
  3440. "language" : "undefined",
  3441. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#RectifyDataActivity",
  3442. "type" : "iri"
  3443. } ]
  3444. },
  3445. "label" : {
  3446. "IRI-based" : "RectifyData",
  3447. "undefined" : "Rectify Data"
  3448. },
  3449. "comment" : {
  3450. "undefined" : "Rectifies existing data"
  3451. },
  3452. "id" : "177",
  3453. "superClasses" : [ "85" ]
  3454. }, {
  3455. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentArchivalStep",
  3456. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3457. "instances" : 0,
  3458. "annotations" : {
  3459. "isDefinedBy" : [ {
  3460. "identifier" : "isDefinedBy",
  3461. "language" : "undefined",
  3462. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#DemonstratingConsent",
  3463. "type" : "iri"
  3464. } ],
  3465. "seeAlso" : [ {
  3466. "identifier" : "seeAlso",
  3467. "language" : "undefined",
  3468. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ArchiveConsentActivity",
  3469. "type" : "iri"
  3470. } ]
  3471. },
  3472. "label" : {
  3473. "IRI-based" : "ConsentArchivalStep",
  3474. "en" : "Consent Archival Step"
  3475. },
  3476. "comment" : {
  3477. "en" : "ConsentArchivalStep archives acquired consent to form a record of the consent given by the user."
  3478. },
  3479. "id" : "129",
  3480. "superClasses" : [ "306" ]
  3481. }, {
  3482. "iri" : "http://www.w3.org/ns/prov#Attribution",
  3483. "baseIri" : "http://www.w3.org/ns/prov",
  3484. "instances" : 0,
  3485. "annotations" : {
  3486. "component" : [ {
  3487. "identifier" : "component",
  3488. "language" : "undefined",
  3489. "value" : "agents-responsibility",
  3490. "type" : "label"
  3491. } ],
  3492. "isDefinedBy" : [ {
  3493. "identifier" : "isDefinedBy",
  3494. "language" : "undefined",
  3495. "value" : "http://www.w3.org/ns/prov-o#",
  3496. "type" : "iri"
  3497. } ],
  3498. "unqualifiedForm" : [ {
  3499. "identifier" : "unqualifiedForm",
  3500. "language" : "undefined",
  3501. "value" : "http://www.w3.org/ns/prov#wasAttributedTo",
  3502. "type" : "iri"
  3503. } ],
  3504. "dm" : [ {
  3505. "identifier" : "dm",
  3506. "language" : "undefined",
  3507. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution",
  3508. "type" : "label"
  3509. } ],
  3510. "definition" : [ {
  3511. "identifier" : "definition",
  3512. "language" : "en",
  3513. "value" : "Attribution is the ascribing of an entity to an agent.\n\nWhen an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant.",
  3514. "type" : "label"
  3515. } ],
  3516. "category" : [ {
  3517. "identifier" : "category",
  3518. "language" : "undefined",
  3519. "value" : "qualified",
  3520. "type" : "label"
  3521. } ],
  3522. "constraints" : [ {
  3523. "identifier" : "constraints",
  3524. "language" : "undefined",
  3525. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3526. "type" : "label"
  3527. } ],
  3528. "n" : [ {
  3529. "identifier" : "n",
  3530. "language" : "undefined",
  3531. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution",
  3532. "type" : "label"
  3533. } ]
  3534. },
  3535. "label" : {
  3536. "IRI-based" : "Attribution",
  3537. "undefined" : "Attribution"
  3538. },
  3539. "comment" : {
  3540. "en" : "An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ]."
  3541. },
  3542. "attributes" : [ "external" ],
  3543. "id" : "255",
  3544. "superClasses" : [ "52" ]
  3545. }, {
  3546. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentAcquisitionStep",
  3547. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3548. "instances" : 0,
  3549. "annotations" : {
  3550. "isDefinedBy" : [ {
  3551. "identifier" : "isDefinedBy",
  3552. "language" : "undefined",
  3553. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ObtainingConsent",
  3554. "type" : "iri"
  3555. } ],
  3556. "seeAlso" : [ {
  3557. "identifier" : "seeAlso",
  3558. "language" : "undefined",
  3559. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AcquireConsentActivity",
  3560. "type" : "iri"
  3561. } ]
  3562. },
  3563. "label" : {
  3564. "IRI-based" : "ConsentAcquisitionStep",
  3565. "en" : "Consent Acquisition Step"
  3566. },
  3567. "comment" : {
  3568. "en" : "ConsentAcquisitionStep deals with acquiring consent from the user. It uses Terms and Conditions along with the appropriate Consent Model as the basis of obtaining consent from the user. The output of this step is the consent object agreed upon by the user."
  3569. },
  3570. "id" : "82",
  3571. "superClasses" : [ "306" ]
  3572. }, {
  3573. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentStep",
  3574. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3575. "instances" : 0,
  3576. "annotations" : {
  3577. "isDefinedBy" : [ {
  3578. "identifier" : "isDefinedBy",
  3579. "language" : "undefined",
  3580. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ConsentActivity",
  3581. "type" : "iri"
  3582. } ],
  3583. "seeAlso" : [ {
  3584. "identifier" : "seeAlso",
  3585. "language" : "undefined",
  3586. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentActivity",
  3587. "type" : "iri"
  3588. } ]
  3589. },
  3590. "label" : {
  3591. "IRI-based" : "ConsentStep",
  3592. "en" : "Consent Step"
  3593. },
  3594. "subClasses" : [ "129", "87", "82" ],
  3595. "comment" : {
  3596. "en" : "A ConsentStep acts/interacts with/uses Consent"
  3597. },
  3598. "id" : "306",
  3599. "superClasses" : [ "173" ]
  3600. }, {
  3601. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataStorageActivity",
  3602. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3603. "instances" : 0,
  3604. "annotations" : {
  3605. "isDefinedBy" : [ {
  3606. "identifier" : "isDefinedBy",
  3607. "language" : "undefined",
  3608. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#StoreData",
  3609. "type" : "iri"
  3610. } ],
  3611. "seeAlso" : [ {
  3612. "identifier" : "seeAlso",
  3613. "language" : "undefined",
  3614. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataStorageStep",
  3615. "type" : "iri"
  3616. } ]
  3617. },
  3618. "label" : {
  3619. "IRI-based" : "DataStorageActivity",
  3620. "undefined" : "Data Storage Activity"
  3621. },
  3622. "subClasses" : [ "47" ],
  3623. "comment" : {
  3624. "undefined" : "Is an activity that stores data."
  3625. },
  3626. "id" : "110",
  3627. "superClasses" : [ "23" ]
  3628. }, {
  3629. "iri" : "http://purl.org/net/p-plan#Plan",
  3630. "baseIri" : "http://purl.org/net/p-plan",
  3631. "instances" : 0,
  3632. "label" : {
  3633. "IRI-based" : "Plan"
  3634. },
  3635. "subClasses" : [ "28" ],
  3636. "attributes" : [ "external" ],
  3637. "id" : "337"
  3638. }, {
  3639. "iri" : "http://www.w3.org/ns/prov#Plan",
  3640. "baseIri" : "http://www.w3.org/ns/prov",
  3641. "instances" : 0,
  3642. "annotations" : {
  3643. "component" : [ {
  3644. "identifier" : "component",
  3645. "language" : "undefined",
  3646. "value" : "agents-responsibility",
  3647. "type" : "label"
  3648. } ],
  3649. "isDefinedBy" : [ {
  3650. "identifier" : "isDefinedBy",
  3651. "language" : "undefined",
  3652. "value" : "http://www.w3.org/ns/prov-o#",
  3653. "type" : "iri"
  3654. } ],
  3655. "dm" : [ {
  3656. "identifier" : "dm",
  3657. "language" : "undefined",
  3658. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association",
  3659. "type" : "label"
  3660. } ],
  3661. "definition" : [ {
  3662. "identifier" : "definition",
  3663. "language" : "undefined",
  3664. "value" : "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.",
  3665. "type" : "label"
  3666. } ],
  3667. "category" : [ {
  3668. "identifier" : "category",
  3669. "language" : "undefined",
  3670. "value" : "qualified",
  3671. "type" : "label"
  3672. }, {
  3673. "identifier" : "category",
  3674. "language" : "undefined",
  3675. "value" : "expanded",
  3676. "type" : "label"
  3677. } ],
  3678. "n" : [ {
  3679. "identifier" : "n",
  3680. "language" : "undefined",
  3681. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association",
  3682. "type" : "label"
  3683. } ]
  3684. },
  3685. "label" : {
  3686. "IRI-based" : "Plan",
  3687. "undefined" : "Plan"
  3688. },
  3689. "comment" : {
  3690. "en" : "There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations."
  3691. },
  3692. "attributes" : [ "external" ],
  3693. "id" : "226",
  3694. "superClasses" : [ "30" ]
  3695. }, {
  3696. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataDeanonymisationStep",
  3697. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3698. "instances" : 0,
  3699. "annotations" : {
  3700. "seeAlso" : [ {
  3701. "identifier" : "seeAlso",
  3702. "language" : "undefined",
  3703. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DeAnonymisationActivity",
  3704. "type" : "iri"
  3705. } ]
  3706. },
  3707. "label" : {
  3708. "IRI-based" : "DataDeanonymisationStep",
  3709. "en" : "Data Deanonymisation Step"
  3710. },
  3711. "comment" : {
  3712. "en" : "DataDeanonymisationStep deanonymises data by transforming it from one form to another along the anonymisation chain."
  3713. },
  3714. "id" : "152",
  3715. "superClasses" : [ "148" ]
  3716. }, {
  3717. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentModificationStep",
  3718. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3719. "instances" : 0,
  3720. "annotations" : {
  3721. "isDefinedBy" : [ {
  3722. "identifier" : "isDefinedBy",
  3723. "language" : "undefined",
  3724. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ObligationForObtainingConsent",
  3725. "type" : "iri"
  3726. } ],
  3727. "seeAlso" : [ {
  3728. "identifier" : "seeAlso",
  3729. "language" : "undefined",
  3730. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ModifyConsentActivity",
  3731. "type" : "iri"
  3732. } ]
  3733. },
  3734. "label" : {
  3735. "IRI-based" : "ConsentModificationStep",
  3736. "en" : "Consent Modification Step"
  3737. },
  3738. "subClasses" : [ "86" ],
  3739. "comment" : {
  3740. "en" : "ConsentModificationStep deals with modifications to the consent by the user. It invalidates the previous consent object and produces a new updated consent object that represents the modified consent."
  3741. },
  3742. "id" : "87",
  3743. "superClasses" : [ "306" ]
  3744. }, {
  3745. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DeAnonymisationActivity",
  3746. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3747. "instances" : 0,
  3748. "annotations" : {
  3749. "seeAlso" : [ {
  3750. "identifier" : "seeAlso",
  3751. "language" : "undefined",
  3752. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataDeanonymisationStep",
  3753. "type" : "iri"
  3754. } ]
  3755. },
  3756. "label" : {
  3757. "IRI-based" : "DeAnonymisationActivity",
  3758. "undefined" : "DeAnonymisation Activity"
  3759. },
  3760. "comment" : {
  3761. "undefined" : "Is an activity that deanonymises data."
  3762. },
  3763. "id" : "73",
  3764. "superClasses" : [ "45" ]
  3765. }, {
  3766. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataArchivalStep",
  3767. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3768. "instances" : 0,
  3769. "annotations" : {
  3770. "isDefinedBy" : [ {
  3771. "identifier" : "isDefinedBy",
  3772. "language" : "undefined",
  3773. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ArchiveData",
  3774. "type" : "iri"
  3775. } ],
  3776. "seeAlso" : [ {
  3777. "identifier" : "seeAlso",
  3778. "language" : "undefined",
  3779. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataArchivalActivity",
  3780. "type" : "iri"
  3781. } ]
  3782. },
  3783. "label" : {
  3784. "IRI-based" : "DataArchivalStep",
  3785. "en" : "Data Archival Step"
  3786. },
  3787. "comment" : {
  3788. "en" : "DataArchivalStep archives data by transforming it and storing it"
  3789. },
  3790. "id" : "147",
  3791. "superClasses" : [ "148", "179" ]
  3792. }, {
  3793. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataAnonymisationStep",
  3794. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3795. "instances" : 0,
  3796. "annotations" : {
  3797. "seeAlso" : [ {
  3798. "identifier" : "seeAlso",
  3799. "language" : "undefined",
  3800. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AnonymisationActivity",
  3801. "type" : "iri"
  3802. } ]
  3803. },
  3804. "label" : {
  3805. "IRI-based" : "DataAnonymisationStep",
  3806. "en" : "Data Anonymisation Step"
  3807. },
  3808. "comment" : {
  3809. "en" : "DataAnonymisationStep anonymises data by transforming it from one form to another along the anonymisation chain.\nAnonymisation can be represented as a spectrum going from raw user data to pseudo-anonymised data that can be de-anonymised by the same agent/organisation to pseudo-anonymous data that cannot be deanonymised internally, but may be done by external agents who have access to other data, and finally to completely anonymised data."
  3810. },
  3811. "id" : "150",
  3812. "superClasses" : [ "148" ]
  3813. }, {
  3814. "iri" : "http://www.w3.org/ns/prov#Association",
  3815. "baseIri" : "http://www.w3.org/ns/prov",
  3816. "instances" : 0,
  3817. "annotations" : {
  3818. "component" : [ {
  3819. "identifier" : "component",
  3820. "language" : "undefined",
  3821. "value" : "agents-responsibility",
  3822. "type" : "label"
  3823. } ],
  3824. "isDefinedBy" : [ {
  3825. "identifier" : "isDefinedBy",
  3826. "language" : "undefined",
  3827. "value" : "http://www.w3.org/ns/prov-o#",
  3828. "type" : "iri"
  3829. } ],
  3830. "unqualifiedForm" : [ {
  3831. "identifier" : "unqualifiedForm",
  3832. "language" : "undefined",
  3833. "value" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  3834. "type" : "iri"
  3835. } ],
  3836. "dm" : [ {
  3837. "identifier" : "dm",
  3838. "language" : "undefined",
  3839. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association",
  3840. "type" : "label"
  3841. } ],
  3842. "definition" : [ {
  3843. "identifier" : "definition",
  3844. "language" : "en",
  3845. "value" : "An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity.",
  3846. "type" : "label"
  3847. } ],
  3848. "category" : [ {
  3849. "identifier" : "category",
  3850. "language" : "undefined",
  3851. "value" : "qualified",
  3852. "type" : "label"
  3853. } ],
  3854. "n" : [ {
  3855. "identifier" : "n",
  3856. "language" : "undefined",
  3857. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association",
  3858. "type" : "label"
  3859. } ]
  3860. },
  3861. "label" : {
  3862. "IRI-based" : "Association",
  3863. "undefined" : "Association"
  3864. },
  3865. "comment" : {
  3866. "en" : "An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ]."
  3867. },
  3868. "attributes" : [ "external" ],
  3869. "id" : "89",
  3870. "superClasses" : [ "52" ]
  3871. }, {
  3872. "iri" : "http://www.w3.org/ns/prov#Generation",
  3873. "baseIri" : "http://www.w3.org/ns/prov",
  3874. "instances" : 0,
  3875. "annotations" : {
  3876. "component" : [ {
  3877. "identifier" : "component",
  3878. "language" : "undefined",
  3879. "value" : "entities-activities",
  3880. "type" : "label"
  3881. } ],
  3882. "isDefinedBy" : [ {
  3883. "identifier" : "isDefinedBy",
  3884. "language" : "undefined",
  3885. "value" : "http://www.w3.org/ns/prov-o#",
  3886. "type" : "iri"
  3887. } ],
  3888. "unqualifiedForm" : [ {
  3889. "identifier" : "unqualifiedForm",
  3890. "language" : "undefined",
  3891. "value" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  3892. "type" : "iri"
  3893. } ],
  3894. "dm" : [ {
  3895. "identifier" : "dm",
  3896. "language" : "undefined",
  3897. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation",
  3898. "type" : "label"
  3899. } ],
  3900. "definition" : [ {
  3901. "identifier" : "definition",
  3902. "language" : "en",
  3903. "value" : "Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.",
  3904. "type" : "label"
  3905. } ],
  3906. "category" : [ {
  3907. "identifier" : "category",
  3908. "language" : "undefined",
  3909. "value" : "qualified",
  3910. "type" : "label"
  3911. } ],
  3912. "constraints" : [ {
  3913. "identifier" : "constraints",
  3914. "language" : "undefined",
  3915. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3916. "type" : "label"
  3917. } ],
  3918. "n" : [ {
  3919. "identifier" : "n",
  3920. "language" : "undefined",
  3921. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation",
  3922. "type" : "label"
  3923. } ]
  3924. },
  3925. "label" : {
  3926. "IRI-based" : "Generation",
  3927. "undefined" : "Generation"
  3928. },
  3929. "comment" : {
  3930. "en" : "An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ]."
  3931. },
  3932. "attributes" : [ "external" ],
  3933. "id" : "262",
  3934. "superClasses" : [ "113", "181" ]
  3935. }, {
  3936. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#CrossBorderDataTransfer",
  3937. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  3938. "instances" : 0,
  3939. "annotations" : {
  3940. "isDefinedBy" : [ {
  3941. "identifier" : "isDefinedBy",
  3942. "language" : "undefined",
  3943. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#CrossBorderTransfer",
  3944. "type" : "iri"
  3945. } ],
  3946. "seeAlso" : [ {
  3947. "identifier" : "seeAlso",
  3948. "language" : "undefined",
  3949. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#CrossBorderTransferActivity",
  3950. "type" : "iri"
  3951. } ]
  3952. },
  3953. "label" : {
  3954. "IRI-based" : "CrossBorderDataTransfer",
  3955. "undefined" : "Cross-border Data Transfer"
  3956. },
  3957. "comment" : {
  3958. "undefined" : "Reflects cross-border transfer of data"
  3959. },
  3960. "id" : "180",
  3961. "superClasses" : [ "85" ]
  3962. }, {
  3963. "iri" : "http://www.w3.org/ns/prov#AgentInfluence",
  3964. "baseIri" : "http://www.w3.org/ns/prov",
  3965. "instances" : 0,
  3966. "annotations" : {
  3967. "isDefinedBy" : [ {
  3968. "identifier" : "isDefinedBy",
  3969. "language" : "undefined",
  3970. "value" : "http://www.w3.org/ns/prov-o#",
  3971. "type" : "iri"
  3972. } ],
  3973. "editorsDefinition" : [ {
  3974. "identifier" : "editorsDefinition",
  3975. "language" : "en",
  3976. "value" : "AgentInfluence is the capacity of an agent to have an effect on the character, development, or behavior of another by means of attribution, association, delegation, or other.",
  3977. "type" : "label"
  3978. } ],
  3979. "category" : [ {
  3980. "identifier" : "category",
  3981. "language" : "undefined",
  3982. "value" : "qualified",
  3983. "type" : "label"
  3984. } ],
  3985. "seeAlso" : [ {
  3986. "identifier" : "seeAlso",
  3987. "language" : "undefined",
  3988. "value" : "http://www.w3.org/ns/prov#agent",
  3989. "type" : "iri"
  3990. } ]
  3991. },
  3992. "label" : {
  3993. "IRI-based" : "AgentInfluence",
  3994. "undefined" : "AgentInfluence"
  3995. },
  3996. "subClasses" : [ "255", "89", "51" ],
  3997. "comment" : {
  3998. "en" : "It is not recommended that the type AgentInfluence be asserted without also asserting one of its more specific subclasses."
  3999. },
  4000. "attributes" : [ "external" ],
  4001. "id" : "52",
  4002. "superClasses" : [ "238" ]
  4003. }, {
  4004. "iri" : "http://www.w3.org/ns/prov#EntityInfluence",
  4005. "baseIri" : "http://www.w3.org/ns/prov",
  4006. "instances" : 0,
  4007. "annotations" : {
  4008. "isDefinedBy" : [ {
  4009. "identifier" : "isDefinedBy",
  4010. "language" : "undefined",
  4011. "value" : "http://www.w3.org/ns/prov-o#",
  4012. "type" : "iri"
  4013. } ],
  4014. "editorsDefinition" : [ {
  4015. "identifier" : "editorsDefinition",
  4016. "language" : "en",
  4017. "value" : "EntityInfluence is the capacity of an entity to have an effect on the character, development, or behavior of another by means of usage, start, end, derivation, or other. ",
  4018. "type" : "label"
  4019. } ],
  4020. "category" : [ {
  4021. "identifier" : "category",
  4022. "language" : "undefined",
  4023. "value" : "qualified",
  4024. "type" : "label"
  4025. } ],
  4026. "seeAlso" : [ {
  4027. "identifier" : "seeAlso",
  4028. "language" : "undefined",
  4029. "value" : "http://www.w3.org/ns/prov#entity",
  4030. "type" : "iri"
  4031. } ]
  4032. },
  4033. "label" : {
  4034. "IRI-based" : "EntityInfluence",
  4035. "undefined" : "EntityInfluence"
  4036. },
  4037. "subClasses" : [ "54", "57", "59", "61" ],
  4038. "comment" : {
  4039. "en" : "EntityInfluence provides additional descriptions of an Entity's binary influence upon any other kind of resource. Instances of EntityInfluence use the prov:entity property to cite the influencing Entity."
  4040. },
  4041. "attributes" : [ "external" ],
  4042. "id" : "55",
  4043. "superClasses" : [ "238" ]
  4044. }, {
  4045. "iri" : "http://www.w3.org/ns/prov#SoftwareAgent",
  4046. "baseIri" : "http://www.w3.org/ns/prov",
  4047. "instances" : 0,
  4048. "annotations" : {
  4049. "component" : [ {
  4050. "identifier" : "component",
  4051. "language" : "undefined",
  4052. "value" : "agents-responsibility",
  4053. "type" : "label"
  4054. } ],
  4055. "isDefinedBy" : [ {
  4056. "identifier" : "isDefinedBy",
  4057. "language" : "undefined",
  4058. "value" : "http://www.w3.org/ns/prov-o#",
  4059. "type" : "iri"
  4060. } ],
  4061. "dm" : [ {
  4062. "identifier" : "dm",
  4063. "language" : "undefined",
  4064. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  4065. "type" : "label"
  4066. } ],
  4067. "definition" : [ {
  4068. "identifier" : "definition",
  4069. "language" : "en",
  4070. "value" : "A software agent is running software.",
  4071. "type" : "label"
  4072. } ],
  4073. "category" : [ {
  4074. "identifier" : "category",
  4075. "language" : "undefined",
  4076. "value" : "expanded",
  4077. "type" : "label"
  4078. } ],
  4079. "n" : [ {
  4080. "identifier" : "n",
  4081. "language" : "undefined",
  4082. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  4083. "type" : "label"
  4084. } ]
  4085. },
  4086. "label" : {
  4087. "IRI-based" : "SoftwareAgent",
  4088. "undefined" : "SoftwareAgent"
  4089. },
  4090. "attributes" : [ "external" ],
  4091. "id" : "318",
  4092. "superClasses" : [ "9" ]
  4093. }, {
  4094. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#Processor",
  4095. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4096. "instances" : 0,
  4097. "label" : {
  4098. "IRI-based" : "Processor",
  4099. "en" : "Processor",
  4100. "undefined" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Processor"
  4101. },
  4102. "subClasses" : [ "63" ],
  4103. "comment" : {
  4104. "en" : "A ThirdPartyDataProcessor is a Third Party entity that acts as a Data Processor"
  4105. },
  4106. "id" : "64",
  4107. "superClasses" : [ "34" ]
  4108. }, {
  4109. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AnonymityLevel",
  4110. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4111. "instances" : 0,
  4112. "annotations" : {
  4113. "isDefinedBy" : [ {
  4114. "identifier" : "isDefinedBy",
  4115. "language" : "undefined",
  4116. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#PseudoAnonymousData",
  4117. "type" : "iri"
  4118. }, {
  4119. "identifier" : "isDefinedBy",
  4120. "language" : "undefined",
  4121. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#AnonymousData",
  4122. "type" : "iri"
  4123. } ]
  4124. },
  4125. "label" : {
  4126. "IRI-based" : "AnonymityLevel",
  4127. "undefined" : "AnonymityLevel"
  4128. },
  4129. "comment" : {
  4130. "undefined" : "Provides a way to express the Anonymity Level of AnonymisedData objects through the object property hasAnonymityLevel"
  4131. },
  4132. "id" : "158"
  4133. }, {
  4134. "iri" : "http://www.w3.org/ns/prov#Collection",
  4135. "baseIri" : "http://www.w3.org/ns/prov",
  4136. "instances" : 0,
  4137. "annotations" : {
  4138. "component" : [ {
  4139. "identifier" : "component",
  4140. "language" : "undefined",
  4141. "value" : "collections",
  4142. "type" : "label"
  4143. } ],
  4144. "isDefinedBy" : [ {
  4145. "identifier" : "isDefinedBy",
  4146. "language" : "undefined",
  4147. "value" : "http://www.w3.org/ns/prov-o#",
  4148. "type" : "iri"
  4149. } ],
  4150. "dm" : [ {
  4151. "identifier" : "dm",
  4152. "language" : "undefined",
  4153. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection",
  4154. "type" : "label"
  4155. } ],
  4156. "definition" : [ {
  4157. "identifier" : "definition",
  4158. "language" : "en",
  4159. "value" : "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.",
  4160. "type" : "label"
  4161. } ],
  4162. "category" : [ {
  4163. "identifier" : "category",
  4164. "language" : "undefined",
  4165. "value" : "expanded",
  4166. "type" : "label"
  4167. } ]
  4168. },
  4169. "label" : {
  4170. "IRI-based" : "Collection",
  4171. "undefined" : "Collection"
  4172. },
  4173. "subClasses" : [ "66" ],
  4174. "attributes" : [ "external" ],
  4175. "id" : "67",
  4176. "superClasses" : [ "30" ]
  4177. }, {
  4178. "iri" : "http://purl.org/net/p-plan#Variable",
  4179. "baseIri" : "http://purl.org/net/p-plan",
  4180. "instances" : 0,
  4181. "label" : {
  4182. "IRI-based" : "Variable"
  4183. },
  4184. "subClasses" : [ "1", "4", "6", "11", "13" ],
  4185. "attributes" : [ "external" ],
  4186. "id" : "2"
  4187. }, {
  4188. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#UserIdentifier",
  4189. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4190. "instances" : 0,
  4191. "annotations" : {
  4192. "seeAlso" : [ {
  4193. "identifier" : "seeAlso",
  4194. "language" : "undefined",
  4195. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#UserIdentifierEntity",
  4196. "type" : "iri"
  4197. } ]
  4198. },
  4199. "label" : {
  4200. "IRI-based" : "UserIdentifier",
  4201. "en" : "UserIdentifier"
  4202. },
  4203. "comment" : {
  4204. "en" : "An UserIdentifier is a specific way to identify the user through a unique ID or a combination of other attributes"
  4205. },
  4206. "id" : "239",
  4207. "superClasses" : [ "39" ]
  4208. }, {
  4209. "iri" : "http://www.w3.org/ns/prov#Delegation",
  4210. "baseIri" : "http://www.w3.org/ns/prov",
  4211. "instances" : 0,
  4212. "annotations" : {
  4213. "component" : [ {
  4214. "identifier" : "component",
  4215. "language" : "undefined",
  4216. "value" : "agents-responsibility",
  4217. "type" : "label"
  4218. } ],
  4219. "isDefinedBy" : [ {
  4220. "identifier" : "isDefinedBy",
  4221. "language" : "undefined",
  4222. "value" : "http://www.w3.org/ns/prov-o#",
  4223. "type" : "iri"
  4224. } ],
  4225. "unqualifiedForm" : [ {
  4226. "identifier" : "unqualifiedForm",
  4227. "language" : "undefined",
  4228. "value" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  4229. "type" : "iri"
  4230. } ],
  4231. "dm" : [ {
  4232. "identifier" : "dm",
  4233. "language" : "undefined",
  4234. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation",
  4235. "type" : "label"
  4236. } ],
  4237. "definition" : [ {
  4238. "identifier" : "definition",
  4239. "language" : "en",
  4240. "value" : "Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.\n\nFor example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree.",
  4241. "type" : "label"
  4242. } ],
  4243. "category" : [ {
  4244. "identifier" : "category",
  4245. "language" : "undefined",
  4246. "value" : "qualified",
  4247. "type" : "label"
  4248. } ],
  4249. "n" : [ {
  4250. "identifier" : "n",
  4251. "language" : "undefined",
  4252. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation",
  4253. "type" : "label"
  4254. } ]
  4255. },
  4256. "label" : {
  4257. "IRI-based" : "Delegation",
  4258. "undefined" : "Delegation"
  4259. },
  4260. "comment" : {
  4261. "en" : "An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ]."
  4262. },
  4263. "attributes" : [ "external" ],
  4264. "id" : "51",
  4265. "superClasses" : [ "52" ]
  4266. }, {
  4267. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataSharingActivity",
  4268. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4269. "instances" : 0,
  4270. "annotations" : {
  4271. "isDefinedBy" : [ {
  4272. "identifier" : "isDefinedBy",
  4273. "language" : "undefined",
  4274. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ShareDataWithThirdParty",
  4275. "type" : "iri"
  4276. } ],
  4277. "seeAlso" : [ {
  4278. "identifier" : "seeAlso",
  4279. "language" : "undefined",
  4280. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataSharingStep",
  4281. "type" : "iri"
  4282. } ]
  4283. },
  4284. "label" : {
  4285. "IRI-based" : "DataSharingActivity",
  4286. "undefined" : "Data Sharing Activity"
  4287. },
  4288. "comment" : {
  4289. "undefined" : "Is an activity that shares data."
  4290. },
  4291. "id" : "8",
  4292. "superClasses" : [ "23" ]
  4293. }, {
  4294. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#ConsentAgreement",
  4295. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4296. "instances" : 0,
  4297. "annotations" : {
  4298. "isDefinedBy" : [ {
  4299. "identifier" : "isDefinedBy",
  4300. "language" : "undefined",
  4301. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#GivenConsent",
  4302. "type" : "iri"
  4303. } ],
  4304. "seeAlso" : [ {
  4305. "identifier" : "seeAlso",
  4306. "language" : "undefined",
  4307. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#GivenConsent",
  4308. "type" : "iri"
  4309. } ]
  4310. },
  4311. "label" : {
  4312. "IRI-based" : "ConsentAgreement",
  4313. "en" : "ConsentAgreement"
  4314. },
  4315. "comment" : {
  4316. "en" : "ConsentAgreement reflects the consent provided by the user based on the provided Terms and Conditions and Consent Agreement Templates. It is the set of permissions the user has specifically provided or refused to provide. This consent is useful to provide justification of activities that use user data."
  4317. },
  4318. "id" : "1",
  4319. "superClasses" : [ "2" ]
  4320. }, {
  4321. "iri" : "http://purl.org/net/p-plan#Activity",
  4322. "baseIri" : "http://purl.org/net/p-plan",
  4323. "instances" : 0,
  4324. "label" : {
  4325. "IRI-based" : "Activity"
  4326. },
  4327. "subClasses" : [ "15", "21", "23" ],
  4328. "attributes" : [ "external" ],
  4329. "id" : "16"
  4330. }, {
  4331. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#Process",
  4332. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4333. "instances" : 0,
  4334. "label" : {
  4335. "IRI-based" : "Process",
  4336. "en" : "Process"
  4337. },
  4338. "subClasses" : [ "100", "99", "219", "111", "202", "206", "208", "159", "27", "74", "193", "195", "197", "199", "172", "162", "119", "185", "187", "71", "143" ],
  4339. "comment" : {
  4340. "en" : "A Process describes a 'Plan' of action for carrying out a particular activity that uses or is related to Data or Consent"
  4341. },
  4342. "id" : "28",
  4343. "superClasses" : [ "337" ]
  4344. }, {
  4345. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#UserOutputStep",
  4346. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4347. "instances" : 0,
  4348. "label" : {
  4349. "IRI-based" : "UserOutputStep",
  4350. "undefined" : "User Output Step"
  4351. },
  4352. "id" : "137",
  4353. "superClasses" : [ "138" ]
  4354. }, {
  4355. "iri" : "http://purl.org/net/p-plan#Entity",
  4356. "baseIri" : "http://purl.org/net/p-plan",
  4357. "instances" : 0,
  4358. "label" : {
  4359. "IRI-based" : "Entity"
  4360. },
  4361. "subClasses" : [ "166", "168", "160", "154" ],
  4362. "attributes" : [ "external" ],
  4363. "id" : "161"
  4364. }, {
  4365. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataTransformationStep",
  4366. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4367. "instances" : 0,
  4368. "annotations" : {
  4369. "seeAlso" : [ {
  4370. "identifier" : "seeAlso",
  4371. "language" : "undefined",
  4372. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataTransformationActivity",
  4373. "type" : "iri"
  4374. } ]
  4375. },
  4376. "label" : {
  4377. "IRI-based" : "DataTransformationStep",
  4378. "en" : "Data Transformation Step"
  4379. },
  4380. "subClasses" : [ "147", "150", "152" ],
  4381. "comment" : {
  4382. "en" : "DataTransformationStep transforms data from one form into another."
  4383. },
  4384. "id" : "148",
  4385. "superClasses" : [ "85" ]
  4386. }, {
  4387. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataEntity",
  4388. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4389. "instances" : 0,
  4390. "annotations" : {
  4391. "isDefinedBy" : [ {
  4392. "identifier" : "isDefinedBy",
  4393. "language" : "undefined",
  4394. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Data",
  4395. "type" : "iri"
  4396. } ],
  4397. "seeAlso" : [ {
  4398. "identifier" : "seeAlso",
  4399. "language" : "undefined",
  4400. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#Data",
  4401. "type" : "iri"
  4402. } ]
  4403. },
  4404. "label" : {
  4405. "IRI-based" : "DataEntity",
  4406. "undefined" : "Data Entity"
  4407. },
  4408. "subClasses" : [ "127" ],
  4409. "comment" : {
  4410. "undefined" : "Represents a data entity."
  4411. },
  4412. "id" : "154",
  4413. "superClasses" : [ "161" ]
  4414. }, {
  4415. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightOfErasure",
  4416. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4417. "instances" : 0,
  4418. "annotations" : {
  4419. "isDefinedBy" : [ {
  4420. "identifier" : "isDefinedBy",
  4421. "language" : "undefined",
  4422. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightOfErasure",
  4423. "type" : "iri"
  4424. } ]
  4425. },
  4426. "label" : {
  4427. "IRI-based" : "HandleRightOfErasure",
  4428. "undefined" : "Handle Right of Erasure"
  4429. },
  4430. "comment" : {
  4431. "undefined" : "The process or series of steps that handle the right of erasure."
  4432. },
  4433. "id" : "199",
  4434. "superClasses" : [ "28" ]
  4435. }, {
  4436. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataArchivalProcess",
  4437. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4438. "instances" : 0,
  4439. "annotations" : {
  4440. "isDefinedBy" : [ {
  4441. "identifier" : "isDefinedBy",
  4442. "language" : "undefined",
  4443. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ArchiveData",
  4444. "type" : "iri"
  4445. } ]
  4446. },
  4447. "label" : {
  4448. "IRI-based" : "DataArchivalProcess",
  4449. "en" : "Data Archival Process"
  4450. },
  4451. "comment" : {
  4452. "en" : "A DataArchivalProcess describes the process of data archival"
  4453. },
  4454. "id" : "185",
  4455. "superClasses" : [ "28" ]
  4456. }, {
  4457. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#TermsAndConditions",
  4458. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4459. "instances" : 0,
  4460. "annotations" : {
  4461. "seeAlso" : [ {
  4462. "identifier" : "seeAlso",
  4463. "language" : "undefined",
  4464. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#TermsAndConditionsEntity",
  4465. "type" : "iri"
  4466. } ]
  4467. },
  4468. "label" : {
  4469. "IRI-based" : "TermsAndConditions",
  4470. "en" : "TermsAndConditions"
  4471. },
  4472. "comment" : {
  4473. "en" : "Terms and Conditions of usage as provided to the user in agreement of provided service"
  4474. },
  4475. "id" : "13",
  4476. "superClasses" : [ "2" ]
  4477. }, {
  4478. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyDataSubjectActivity",
  4479. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4480. "instances" : 0,
  4481. "annotations" : {
  4482. "isDefinedBy" : [ {
  4483. "identifier" : "isDefinedBy",
  4484. "language" : "undefined",
  4485. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#NotifyDataSubjectOfBreach",
  4486. "type" : "iri"
  4487. } ],
  4488. "seeAlso" : [ {
  4489. "identifier" : "seeAlso",
  4490. "language" : "undefined",
  4491. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyDataSubject",
  4492. "type" : "iri"
  4493. } ]
  4494. },
  4495. "label" : {
  4496. "IRI-based" : "NotifyDataSubjectActivity",
  4497. "undefined" : "Notify Data Subject Activity"
  4498. },
  4499. "comment" : {
  4500. "undefined" : "Is an activity that notifies data subjects about data breach"
  4501. },
  4502. "id" : "24",
  4503. "superClasses" : [ "21" ]
  4504. }, {
  4505. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#HandleRightToAccessPersonalData",
  4506. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4507. "instances" : 0,
  4508. "annotations" : {
  4509. "isDefinedBy" : [ {
  4510. "identifier" : "isDefinedBy",
  4511. "language" : "undefined",
  4512. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#RightOfErasure",
  4513. "type" : "iri"
  4514. } ]
  4515. },
  4516. "label" : {
  4517. "IRI-based" : "HandleRightToAccessPersonalData",
  4518. "undefined" : "Handle Right to access Personal Data"
  4519. },
  4520. "comment" : {
  4521. "undefined" : "The process or series of steps that handle the right to access personal data."
  4522. },
  4523. "id" : "202",
  4524. "superClasses" : [ "28" ]
  4525. }, {
  4526. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataTransferStep",
  4527. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4528. "instances" : 0,
  4529. "label" : {
  4530. "IRI-based" : "DataTransferStep",
  4531. "undefined" : "DataTransferStep"
  4532. },
  4533. "id" : "175",
  4534. "superClasses" : [ "85" ]
  4535. }, {
  4536. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyDataSubject",
  4537. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4538. "instances" : 0,
  4539. "annotations" : {
  4540. "isDefinedBy" : [ {
  4541. "identifier" : "isDefinedBy",
  4542. "language" : "undefined",
  4543. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#NotifyDataSubjectOfBreach",
  4544. "type" : "iri"
  4545. } ],
  4546. "seeAlso" : [ {
  4547. "identifier" : "seeAlso",
  4548. "language" : "undefined",
  4549. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyDataSubjectActivity",
  4550. "type" : "iri"
  4551. } ]
  4552. },
  4553. "label" : {
  4554. "IRI-based" : "NotifyDataSubject",
  4555. "undefined" : "Notify Data Subject"
  4556. },
  4557. "comment" : {
  4558. "undefined" : "Step that notifies the data subject of data breach."
  4559. },
  4560. "id" : "135",
  4561. "superClasses" : [ "133" ]
  4562. }, {
  4563. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataDeletionStep",
  4564. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4565. "instances" : 0,
  4566. "annotations" : {
  4567. "isDefinedBy" : [ {
  4568. "identifier" : "isDefinedBy",
  4569. "language" : "undefined",
  4570. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#EraseData",
  4571. "type" : "iri"
  4572. } ],
  4573. "seeAlso" : [ {
  4574. "identifier" : "seeAlso",
  4575. "language" : "undefined",
  4576. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataDeletionActivity",
  4577. "type" : "iri"
  4578. } ]
  4579. },
  4580. "label" : {
  4581. "IRI-based" : "DataDeletionStep",
  4582. "en" : "Data Deletion Step"
  4583. },
  4584. "comment" : {
  4585. "en" : "DataDeletionStep deletes data from within the system;\nThe deletion is expressed as prov:invalidated over the dataset."
  4586. },
  4587. "id" : "176",
  4588. "superClasses" : [ "85" ]
  4589. }, {
  4590. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyDPAActivity",
  4591. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4592. "instances" : 0,
  4593. "annotations" : {
  4594. "isDefinedBy" : [ {
  4595. "identifier" : "isDefinedBy",
  4596. "language" : "undefined",
  4597. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ReportDataBreachToDPAWithin72Hours",
  4598. "type" : "iri"
  4599. } ],
  4600. "seeAlso" : [ {
  4601. "identifier" : "seeAlso",
  4602. "language" : "undefined",
  4603. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#NotifyDPA",
  4604. "type" : "iri"
  4605. } ]
  4606. },
  4607. "label" : {
  4608. "IRI-based" : "NotifyDPAActivity",
  4609. "undefined" : "Notify DPA Activity"
  4610. },
  4611. "comment" : {
  4612. "undefined" : "Is an activity that notifies data protection authorities about data breach"
  4613. },
  4614. "id" : "25",
  4615. "superClasses" : [ "21" ]
  4616. }, {
  4617. "iri" : "http://www.w3.org/ns/prov#Usage",
  4618. "baseIri" : "http://www.w3.org/ns/prov",
  4619. "instances" : 0,
  4620. "annotations" : {
  4621. "component" : [ {
  4622. "identifier" : "component",
  4623. "language" : "undefined",
  4624. "value" : "entities-activities",
  4625. "type" : "label"
  4626. } ],
  4627. "isDefinedBy" : [ {
  4628. "identifier" : "isDefinedBy",
  4629. "language" : "undefined",
  4630. "value" : "http://www.w3.org/ns/prov-o#",
  4631. "type" : "iri"
  4632. } ],
  4633. "unqualifiedForm" : [ {
  4634. "identifier" : "unqualifiedForm",
  4635. "language" : "undefined",
  4636. "value" : "http://www.w3.org/ns/prov#used",
  4637. "type" : "iri"
  4638. } ],
  4639. "dm" : [ {
  4640. "identifier" : "dm",
  4641. "language" : "undefined",
  4642. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage",
  4643. "type" : "label"
  4644. } ],
  4645. "definition" : [ {
  4646. "identifier" : "definition",
  4647. "language" : "en",
  4648. "value" : "Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.",
  4649. "type" : "label"
  4650. } ],
  4651. "category" : [ {
  4652. "identifier" : "category",
  4653. "language" : "undefined",
  4654. "value" : "qualified",
  4655. "type" : "label"
  4656. } ],
  4657. "constraints" : [ {
  4658. "identifier" : "constraints",
  4659. "language" : "undefined",
  4660. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  4661. "type" : "label"
  4662. } ],
  4663. "n" : [ {
  4664. "identifier" : "n",
  4665. "language" : "undefined",
  4666. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage",
  4667. "type" : "label"
  4668. } ]
  4669. },
  4670. "label" : {
  4671. "IRI-based" : "Usage",
  4672. "undefined" : "Usage"
  4673. },
  4674. "comment" : {
  4675. "en" : "An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ]."
  4676. },
  4677. "attributes" : [ "external" ],
  4678. "id" : "54",
  4679. "superClasses" : [ "55", "113" ]
  4680. }, {
  4681. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#UserInteractionStep",
  4682. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4683. "instances" : 0,
  4684. "label" : {
  4685. "IRI-based" : "UserInteractionStep",
  4686. "undefined" : "User Interaction Step"
  4687. },
  4688. "subClasses" : [ "137", "140" ],
  4689. "id" : "138",
  4690. "superClasses" : [ "173" ]
  4691. }, {
  4692. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#AutomatedStep",
  4693. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4694. "instances" : 0,
  4695. "label" : {
  4696. "IRI-based" : "AutomatedStep",
  4697. "undefined" : "AutomatedStep"
  4698. },
  4699. "id" : "314",
  4700. "superClasses" : [ "173" ]
  4701. }, {
  4702. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataActivity",
  4703. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  4704. "instances" : 0,
  4705. "annotations" : {
  4706. "isDefinedBy" : [ {
  4707. "identifier" : "isDefinedBy",
  4708. "language" : "undefined",
  4709. "value" : "http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#DataActivity",
  4710. "type" : "iri"
  4711. } ],
  4712. "seeAlso" : [ {
  4713. "identifier" : "seeAlso",
  4714. "language" : "undefined",
  4715. "value" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#DataStep",
  4716. "type" : "iri"
  4717. } ]
  4718. },
  4719. "label" : {
  4720. "IRI-based" : "DataActivity",
  4721. "undefined" : "Data Activity"
  4722. },
  4723. "subClasses" : [ "142", "145", "105", "107", "45", "110", "204", "224", "8" ],
  4724. "comment" : {
  4725. "undefined" : "Is an activity involving data."
  4726. },
  4727. "id" : "23",
  4728. "superClasses" : [ "16" ]
  4729. } ],
  4730. "property" : [ {
  4731. "id" : "0",
  4732. "type" : "rdfs:SubClassOf"
  4733. }, {
  4734. "id" : "3",
  4735. "type" : "rdfs:SubClassOf"
  4736. }, {
  4737. "id" : "5",
  4738. "type" : "rdfs:SubClassOf"
  4739. }, {
  4740. "id" : "7",
  4741. "type" : "owl:objectProperty"
  4742. }, {
  4743. "id" : "10",
  4744. "type" : "rdfs:SubClassOf"
  4745. }, {
  4746. "id" : "12",
  4747. "type" : "rdfs:SubClassOf"
  4748. }, {
  4749. "id" : "14",
  4750. "type" : "rdfs:SubClassOf"
  4751. }, {
  4752. "id" : "17",
  4753. "type" : "owl:objectProperty"
  4754. }, {
  4755. "id" : "20",
  4756. "type" : "rdfs:SubClassOf"
  4757. }, {
  4758. "id" : "22",
  4759. "type" : "rdfs:SubClassOf"
  4760. }, {
  4761. "id" : "29",
  4762. "type" : "owl:objectProperty"
  4763. }, {
  4764. "id" : "36",
  4765. "type" : "owl:objectProperty"
  4766. }, {
  4767. "id" : "40",
  4768. "type" : "owl:objectProperty"
  4769. }, {
  4770. "id" : "43",
  4771. "type" : "rdfs:SubClassOf"
  4772. }, {
  4773. "id" : "46",
  4774. "type" : "rdfs:SubClassOf"
  4775. }, {
  4776. "id" : "50",
  4777. "type" : "rdfs:SubClassOf"
  4778. }, {
  4779. "id" : "53",
  4780. "type" : "rdfs:SubClassOf"
  4781. }, {
  4782. "id" : "56",
  4783. "type" : "rdfs:SubClassOf"
  4784. }, {
  4785. "id" : "58",
  4786. "type" : "rdfs:SubClassOf"
  4787. }, {
  4788. "id" : "60",
  4789. "type" : "rdfs:SubClassOf"
  4790. }, {
  4791. "id" : "62",
  4792. "type" : "rdfs:SubClassOf"
  4793. }, {
  4794. "id" : "65",
  4795. "type" : "rdfs:SubClassOf"
  4796. }, {
  4797. "id" : "37",
  4798. "type" : "owl:objectProperty"
  4799. }, {
  4800. "id" : "69",
  4801. "type" : "rdfs:SubClassOf"
  4802. }, {
  4803. "id" : "72",
  4804. "type" : "rdfs:SubClassOf"
  4805. }, {
  4806. "id" : "75",
  4807. "type" : "owl:datatypeProperty"
  4808. }, {
  4809. "id" : "78",
  4810. "type" : "owl:objectProperty"
  4811. }, {
  4812. "id" : "81",
  4813. "type" : "owl:objectProperty"
  4814. }, {
  4815. "id" : "88",
  4816. "type" : "rdfs:SubClassOf"
  4817. }, {
  4818. "id" : "90",
  4819. "type" : "owl:objectProperty"
  4820. }, {
  4821. "id" : "92",
  4822. "type" : "owl:objectProperty"
  4823. }, {
  4824. "id" : "83",
  4825. "type" : "owl:objectProperty"
  4826. }, {
  4827. "id" : "97",
  4828. "type" : "owl:objectProperty"
  4829. }, {
  4830. "id" : "102",
  4831. "type" : "owl:objectProperty"
  4832. }, {
  4833. "id" : "104",
  4834. "type" : "rdfs:SubClassOf"
  4835. }, {
  4836. "id" : "106",
  4837. "type" : "rdfs:SubClassOf"
  4838. }, {
  4839. "id" : "108",
  4840. "type" : "rdfs:SubClassOf"
  4841. }, {
  4842. "id" : "109",
  4843. "type" : "rdfs:SubClassOf"
  4844. }, {
  4845. "id" : "112",
  4846. "type" : "owl:datatypeProperty"
  4847. }, {
  4848. "id" : "115",
  4849. "type" : "owl:objectProperty"
  4850. }, {
  4851. "id" : "19",
  4852. "type" : "owl:objectProperty"
  4853. }, {
  4854. "id" : "123",
  4855. "type" : "owl:objectProperty"
  4856. }, {
  4857. "id" : "128",
  4858. "type" : "owl:objectProperty"
  4859. }, {
  4860. "id" : "131",
  4861. "type" : "rdfs:SubClassOf"
  4862. }, {
  4863. "id" : "134",
  4864. "type" : "rdfs:SubClassOf"
  4865. }, {
  4866. "id" : "136",
  4867. "type" : "rdfs:SubClassOf"
  4868. }, {
  4869. "id" : "139",
  4870. "type" : "rdfs:SubClassOf"
  4871. }, {
  4872. "id" : "141",
  4873. "type" : "rdfs:SubClassOf"
  4874. }, {
  4875. "id" : "144",
  4876. "type" : "rdfs:SubClassOf"
  4877. }, {
  4878. "id" : "146",
  4879. "type" : "rdfs:SubClassOf"
  4880. }, {
  4881. "id" : "149",
  4882. "type" : "rdfs:SubClassOf"
  4883. }, {
  4884. "id" : "151",
  4885. "type" : "rdfs:SubClassOf"
  4886. }, {
  4887. "id" : "153",
  4888. "type" : "rdfs:SubClassOf"
  4889. }, {
  4890. "id" : "155",
  4891. "type" : "rdfs:SubClassOf"
  4892. }, {
  4893. "id" : "157",
  4894. "type" : "owl:objectProperty"
  4895. }, {
  4896. "id" : "164",
  4897. "type" : "rdfs:SubClassOf"
  4898. }, {
  4899. "id" : "165",
  4900. "type" : "rdfs:SubClassOf"
  4901. }, {
  4902. "id" : "167",
  4903. "type" : "rdfs:SubClassOf"
  4904. }, {
  4905. "id" : "169",
  4906. "type" : "rdfs:SubClassOf"
  4907. }, {
  4908. "id" : "170",
  4909. "type" : "rdfs:SubClassOf"
  4910. }, {
  4911. "id" : "171",
  4912. "type" : "rdfs:SubClassOf"
  4913. }, {
  4914. "id" : "182",
  4915. "type" : "rdfs:SubClassOf"
  4916. }, {
  4917. "id" : "183",
  4918. "type" : "rdfs:SubClassOf"
  4919. }, {
  4920. "id" : "184",
  4921. "type" : "rdfs:SubClassOf"
  4922. }, {
  4923. "id" : "186",
  4924. "type" : "rdfs:SubClassOf"
  4925. }, {
  4926. "id" : "188",
  4927. "type" : "rdfs:SubClassOf"
  4928. }, {
  4929. "id" : "190",
  4930. "type" : "owl:objectProperty"
  4931. }, {
  4932. "id" : "192",
  4933. "type" : "rdfs:SubClassOf"
  4934. }, {
  4935. "id" : "194",
  4936. "type" : "rdfs:SubClassOf"
  4937. }, {
  4938. "id" : "196",
  4939. "type" : "rdfs:SubClassOf"
  4940. }, {
  4941. "id" : "198",
  4942. "type" : "rdfs:SubClassOf"
  4943. }, {
  4944. "id" : "200",
  4945. "type" : "rdfs:SubClassOf"
  4946. }, {
  4947. "id" : "201",
  4948. "type" : "rdfs:SubClassOf"
  4949. }, {
  4950. "id" : "203",
  4951. "type" : "owl:objectProperty"
  4952. }, {
  4953. "id" : "205",
  4954. "type" : "rdfs:SubClassOf"
  4955. }, {
  4956. "id" : "207",
  4957. "type" : "rdfs:SubClassOf"
  4958. }, {
  4959. "id" : "209",
  4960. "type" : "owl:objectProperty"
  4961. }, {
  4962. "id" : "210",
  4963. "type" : "rdfs:SubClassOf"
  4964. }, {
  4965. "id" : "211",
  4966. "type" : "rdfs:SubClassOf"
  4967. }, {
  4968. "id" : "212",
  4969. "type" : "rdfs:SubClassOf"
  4970. }, {
  4971. "id" : "213",
  4972. "type" : "owl:objectProperty"
  4973. }, {
  4974. "id" : "216",
  4975. "type" : "rdfs:SubClassOf"
  4976. }, {
  4977. "id" : "217",
  4978. "type" : "rdfs:SubClassOf"
  4979. }, {
  4980. "id" : "218",
  4981. "type" : "rdfs:SubClassOf"
  4982. }, {
  4983. "id" : "221",
  4984. "type" : "owl:objectProperty"
  4985. }, {
  4986. "id" : "222",
  4987. "type" : "owl:objectProperty"
  4988. }, {
  4989. "id" : "223",
  4990. "type" : "owl:objectProperty"
  4991. }, {
  4992. "id" : "229",
  4993. "type" : "owl:objectProperty"
  4994. }, {
  4995. "id" : "231",
  4996. "type" : "owl:objectProperty"
  4997. }, {
  4998. "id" : "236",
  4999. "type" : "owl:objectProperty"
  5000. }, {
  5001. "id" : "118",
  5002. "type" : "owl:objectProperty"
  5003. }, {
  5004. "id" : "245",
  5005. "type" : "owl:disjointWith"
  5006. }, {
  5007. "id" : "247",
  5008. "type" : "owl:objectProperty"
  5009. }, {
  5010. "id" : "248",
  5011. "type" : "rdfs:SubClassOf"
  5012. }, {
  5013. "id" : "249",
  5014. "type" : "rdfs:SubClassOf"
  5015. }, {
  5016. "id" : "252",
  5017. "type" : "rdfs:SubClassOf"
  5018. }, {
  5019. "id" : "91",
  5020. "type" : "owl:objectProperty"
  5021. }, {
  5022. "id" : "254",
  5023. "type" : "owl:objectProperty"
  5024. }, {
  5025. "id" : "256",
  5026. "type" : "rdfs:SubClassOf"
  5027. }, {
  5028. "id" : "257",
  5029. "type" : "rdfs:SubClassOf"
  5030. }, {
  5031. "id" : "258",
  5032. "type" : "rdfs:SubClassOf"
  5033. }, {
  5034. "id" : "259",
  5035. "type" : "rdfs:SubClassOf"
  5036. }, {
  5037. "id" : "260",
  5038. "type" : "rdfs:SubClassOf"
  5039. }, {
  5040. "id" : "261",
  5041. "type" : "rdfs:SubClassOf"
  5042. }, {
  5043. "id" : "263",
  5044. "type" : "rdfs:SubClassOf"
  5045. }, {
  5046. "id" : "264",
  5047. "type" : "owl:objectProperty"
  5048. }, {
  5049. "id" : "265",
  5050. "type" : "rdfs:SubClassOf"
  5051. }, {
  5052. "id" : "266",
  5053. "type" : "rdfs:SubClassOf"
  5054. }, {
  5055. "id" : "267",
  5056. "type" : "rdfs:SubClassOf"
  5057. }, {
  5058. "id" : "130",
  5059. "type" : "owl:objectProperty"
  5060. }, {
  5061. "id" : "271",
  5062. "type" : "rdfs:SubClassOf"
  5063. }, {
  5064. "id" : "272",
  5065. "type" : "rdfs:SubClassOf"
  5066. }, {
  5067. "id" : "273",
  5068. "type" : "rdfs:SubClassOf"
  5069. }, {
  5070. "id" : "274",
  5071. "type" : "rdfs:SubClassOf"
  5072. }, {
  5073. "id" : "275",
  5074. "type" : "rdfs:SubClassOf"
  5075. }, {
  5076. "id" : "276",
  5077. "type" : "owl:objectProperty"
  5078. }, {
  5079. "id" : "95",
  5080. "type" : "owl:objectProperty"
  5081. }, {
  5082. "id" : "280",
  5083. "type" : "rdfs:SubClassOf"
  5084. }, {
  5085. "id" : "281",
  5086. "type" : "rdfs:SubClassOf"
  5087. }, {
  5088. "id" : "282",
  5089. "type" : "owl:datatypeProperty"
  5090. }, {
  5091. "id" : "283",
  5092. "type" : "rdfs:SubClassOf"
  5093. }, {
  5094. "id" : "284",
  5095. "type" : "rdfs:SubClassOf"
  5096. }, {
  5097. "id" : "285",
  5098. "type" : "rdfs:SubClassOf"
  5099. }, {
  5100. "id" : "286",
  5101. "type" : "rdfs:SubClassOf"
  5102. }, {
  5103. "id" : "288",
  5104. "type" : "owl:objectProperty"
  5105. }, {
  5106. "id" : "290",
  5107. "type" : "rdfs:SubClassOf"
  5108. }, {
  5109. "id" : "291",
  5110. "type" : "owl:objectProperty"
  5111. }, {
  5112. "id" : "292",
  5113. "type" : "owl:objectProperty"
  5114. }, {
  5115. "id" : "294",
  5116. "type" : "owl:objectProperty"
  5117. }, {
  5118. "id" : "296",
  5119. "type" : "rdfs:SubClassOf"
  5120. }, {
  5121. "id" : "297",
  5122. "type" : "rdfs:SubClassOf"
  5123. }, {
  5124. "id" : "98",
  5125. "type" : "owl:objectProperty"
  5126. }, {
  5127. "id" : "300",
  5128. "type" : "rdfs:SubClassOf"
  5129. }, {
  5130. "id" : "301",
  5131. "type" : "rdfs:SubClassOf"
  5132. }, {
  5133. "id" : "302",
  5134. "type" : "rdfs:SubClassOf"
  5135. }, {
  5136. "id" : "303",
  5137. "type" : "rdfs:SubClassOf"
  5138. }, {
  5139. "id" : "304",
  5140. "type" : "rdfs:SubClassOf"
  5141. }, {
  5142. "id" : "305",
  5143. "type" : "rdfs:SubClassOf"
  5144. }, {
  5145. "id" : "308",
  5146. "type" : "rdfs:SubClassOf"
  5147. }, {
  5148. "id" : "32",
  5149. "type" : "owl:objectProperty"
  5150. }, {
  5151. "id" : "309",
  5152. "type" : "rdfs:SubClassOf"
  5153. }, {
  5154. "id" : "310",
  5155. "type" : "owl:objectProperty"
  5156. }, {
  5157. "id" : "311",
  5158. "type" : "rdfs:SubClassOf"
  5159. }, {
  5160. "id" : "312",
  5161. "type" : "rdfs:SubClassOf"
  5162. }, {
  5163. "id" : "313",
  5164. "type" : "rdfs:SubClassOf"
  5165. }, {
  5166. "id" : "315",
  5167. "type" : "owl:objectProperty"
  5168. }, {
  5169. "id" : "316",
  5170. "type" : "rdfs:SubClassOf"
  5171. }, {
  5172. "id" : "317",
  5173. "type" : "rdfs:SubClassOf"
  5174. }, {
  5175. "id" : "319",
  5176. "type" : "rdfs:SubClassOf"
  5177. }, {
  5178. "id" : "320",
  5179. "type" : "rdfs:SubClassOf"
  5180. }, {
  5181. "id" : "322",
  5182. "type" : "owl:objectProperty"
  5183. }, {
  5184. "id" : "323",
  5185. "type" : "rdfs:SubClassOf"
  5186. }, {
  5187. "id" : "324",
  5188. "type" : "rdfs:SubClassOf"
  5189. }, {
  5190. "id" : "325",
  5191. "type" : "rdfs:SubClassOf"
  5192. }, {
  5193. "id" : "326",
  5194. "type" : "rdfs:SubClassOf"
  5195. }, {
  5196. "id" : "327",
  5197. "type" : "rdfs:SubClassOf"
  5198. }, {
  5199. "id" : "328",
  5200. "type" : "rdfs:SubClassOf"
  5201. }, {
  5202. "id" : "117",
  5203. "type" : "owl:objectProperty"
  5204. }, {
  5205. "id" : "329",
  5206. "type" : "rdfs:SubClassOf"
  5207. }, {
  5208. "id" : "330",
  5209. "type" : "owl:objectProperty"
  5210. }, {
  5211. "id" : "331",
  5212. "type" : "owl:objectProperty"
  5213. }, {
  5214. "id" : "332",
  5215. "type" : "owl:objectProperty"
  5216. }, {
  5217. "id" : "333",
  5218. "type" : "rdfs:SubClassOf"
  5219. }, {
  5220. "id" : "334",
  5221. "type" : "rdfs:SubClassOf"
  5222. }, {
  5223. "id" : "335",
  5224. "type" : "rdfs:SubClassOf"
  5225. }, {
  5226. "id" : "336",
  5227. "type" : "rdfs:SubClassOf"
  5228. }, {
  5229. "id" : "338",
  5230. "type" : "rdfs:SubClassOf"
  5231. }, {
  5232. "id" : "339",
  5233. "type" : "rdfs:SubClassOf"
  5234. }, {
  5235. "id" : "340",
  5236. "type" : "rdfs:SubClassOf"
  5237. }, {
  5238. "id" : "341",
  5239. "type" : "rdfs:SubClassOf"
  5240. }, {
  5241. "id" : "342",
  5242. "type" : "rdfs:SubClassOf"
  5243. }, {
  5244. "id" : "343",
  5245. "type" : "rdfs:SubClassOf"
  5246. }, {
  5247. "id" : "80",
  5248. "type" : "owl:objectProperty"
  5249. }, {
  5250. "id" : "349",
  5251. "type" : "rdfs:SubClassOf"
  5252. }, {
  5253. "id" : "350",
  5254. "type" : "rdfs:SubClassOf"
  5255. }, {
  5256. "id" : "351",
  5257. "type" : "rdfs:SubClassOf"
  5258. }, {
  5259. "id" : "352",
  5260. "type" : "rdfs:SubClassOf"
  5261. }, {
  5262. "id" : "353",
  5263. "type" : "rdfs:SubClassOf"
  5264. }, {
  5265. "id" : "298",
  5266. "type" : "owl:objectProperty"
  5267. }, {
  5268. "id" : "96",
  5269. "type" : "owl:objectProperty"
  5270. }, {
  5271. "id" : "354",
  5272. "type" : "owl:datatypeProperty"
  5273. }, {
  5274. "id" : "355",
  5275. "type" : "rdfs:SubClassOf"
  5276. }, {
  5277. "id" : "356",
  5278. "type" : "rdfs:SubClassOf"
  5279. }, {
  5280. "id" : "357",
  5281. "type" : "rdfs:SubClassOf"
  5282. }, {
  5283. "id" : "358",
  5284. "type" : "owl:datatypeProperty"
  5285. }, {
  5286. "id" : "359",
  5287. "type" : "owl:objectProperty"
  5288. }, {
  5289. "id" : "299",
  5290. "type" : "owl:objectProperty"
  5291. }, {
  5292. "id" : "361",
  5293. "type" : "owl:objectProperty"
  5294. }, {
  5295. "id" : "269",
  5296. "type" : "owl:objectProperty"
  5297. }, {
  5298. "id" : "125",
  5299. "type" : "owl:objectProperty"
  5300. }, {
  5301. "id" : "237",
  5302. "type" : "owl:objectProperty"
  5303. }, {
  5304. "id" : "362",
  5305. "type" : "owl:objectProperty"
  5306. }, {
  5307. "id" : "94",
  5308. "type" : "owl:objectProperty"
  5309. }, {
  5310. "id" : "345",
  5311. "type" : "owl:objectProperty"
  5312. }, {
  5313. "id" : "346",
  5314. "type" : "owl:objectProperty"
  5315. }, {
  5316. "id" : "365",
  5317. "type" : "owl:objectProperty"
  5318. }, {
  5319. "id" : "344",
  5320. "type" : "owl:objectProperty"
  5321. }, {
  5322. "id" : "279",
  5323. "type" : "owl:objectProperty"
  5324. }, {
  5325. "id" : "93",
  5326. "type" : "owl:objectProperty"
  5327. }, {
  5328. "id" : "116",
  5329. "type" : "owl:objectProperty"
  5330. }, {
  5331. "id" : "368",
  5332. "type" : "owl:objectProperty"
  5333. }, {
  5334. "id" : "348",
  5335. "type" : "owl:objectProperty"
  5336. }, {
  5337. "id" : "371",
  5338. "type" : "owl:objectProperty"
  5339. }, {
  5340. "id" : "372",
  5341. "type" : "owl:objectProperty"
  5342. }, {
  5343. "id" : "366",
  5344. "type" : "owl:objectProperty"
  5345. }, {
  5346. "id" : "364",
  5347. "type" : "owl:objectProperty"
  5348. }, {
  5349. "id" : "360",
  5350. "type" : "owl:objectProperty"
  5351. }, {
  5352. "id" : "374",
  5353. "type" : "rdfs:SubClassOf"
  5354. }, {
  5355. "id" : "375",
  5356. "type" : "rdfs:SubClassOf"
  5357. }, {
  5358. "id" : "295",
  5359. "type" : "owl:objectProperty"
  5360. }, {
  5361. "id" : "377",
  5362. "type" : "rdfs:SubClassOf"
  5363. }, {
  5364. "id" : "378",
  5365. "type" : "owl:objectProperty"
  5366. }, {
  5367. "id" : "270",
  5368. "type" : "owl:objectProperty"
  5369. }, {
  5370. "id" : "347",
  5371. "type" : "owl:objectProperty"
  5372. }, {
  5373. "id" : "379",
  5374. "type" : "owl:objectProperty"
  5375. }, {
  5376. "id" : "380",
  5377. "type" : "owl:datatypeProperty"
  5378. }, {
  5379. "id" : "370",
  5380. "type" : "owl:objectProperty"
  5381. }, {
  5382. "id" : "381",
  5383. "type" : "owl:objectProperty"
  5384. }, {
  5385. "id" : "373",
  5386. "type" : "owl:objectProperty"
  5387. }, {
  5388. "id" : "369",
  5389. "type" : "owl:objectProperty"
  5390. }, {
  5391. "id" : "382",
  5392. "type" : "owl:objectProperty"
  5393. }, {
  5394. "id" : "367",
  5395. "type" : "owl:objectProperty"
  5396. }, {
  5397. "id" : "376",
  5398. "type" : "owl:objectProperty"
  5399. }, {
  5400. "id" : "383",
  5401. "type" : "owl:disjointWith"
  5402. }, {
  5403. "id" : "384",
  5404. "type" : "owl:disjointWith"
  5405. }, {
  5406. "id" : "385",
  5407. "type" : "owl:disjointWith"
  5408. }, {
  5409. "id" : "386",
  5410. "type" : "owl:disjointWith"
  5411. }, {
  5412. "id" : "387",
  5413. "type" : "owl:disjointWith"
  5414. }, {
  5415. "id" : "388",
  5416. "type" : "owl:disjointWith"
  5417. }, {
  5418. "id" : "389",
  5419. "type" : "owl:disjointWith"
  5420. }, {
  5421. "id" : "390",
  5422. "type" : "owl:disjointWith"
  5423. }, {
  5424. "id" : "391",
  5425. "type" : "owl:someValuesFrom"
  5426. }, {
  5427. "id" : "392",
  5428. "type" : "owl:disjointWith"
  5429. }, {
  5430. "id" : "363",
  5431. "type" : "owl:objectProperty"
  5432. }, {
  5433. "id" : "393",
  5434. "type" : "owl:objectProperty"
  5435. } ],
  5436. "propertyAttribute" : [ {
  5437. "range" : "2",
  5438. "domain" : "1",
  5439. "attributes" : [ "object", "anonymous" ],
  5440. "id" : "0"
  5441. }, {
  5442. "range" : "2",
  5443. "domain" : "4",
  5444. "attributes" : [ "object", "anonymous" ],
  5445. "id" : "3"
  5446. }, {
  5447. "range" : "2",
  5448. "domain" : "6",
  5449. "attributes" : [ "object", "anonymous" ],
  5450. "id" : "5"
  5451. }, {
  5452. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#hasSharedDataWith",
  5453. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  5454. "range" : "9",
  5455. "label" : {
  5456. "IRI-based" : "hasSharedDataWith",
  5457. "undefined" : "hasSharedDataWith"
  5458. },
  5459. "domain" : "8",
  5460. "attributes" : [ "object" ],
  5461. "id" : "7"
  5462. }, {
  5463. "range" : "2",
  5464. "domain" : "11",
  5465. "attributes" : [ "object", "anonymous" ],
  5466. "id" : "10"
  5467. }, {
  5468. "range" : "2",
  5469. "domain" : "13",
  5470. "attributes" : [ "object", "anonymous" ],
  5471. "id" : "12"
  5472. }, {
  5473. "range" : "16",
  5474. "domain" : "15",
  5475. "attributes" : [ "object", "anonymous" ],
  5476. "id" : "14"
  5477. }, {
  5478. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isDataCollectedByStep",
  5479. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  5480. "range" : "18",
  5481. "label" : {
  5482. "IRI-based" : "isDataCollectedByStep",
  5483. "undefined" : "isDataCollectedByStep"
  5484. },
  5485. "superproperty" : [ "19" ],
  5486. "domain" : "18",
  5487. "attributes" : [ "object" ],
  5488. "id" : "17"
  5489. }, {
  5490. "range" : "16",
  5491. "domain" : "21",
  5492. "attributes" : [ "object", "anonymous" ],
  5493. "id" : "20"
  5494. }, {
  5495. "range" : "16",
  5496. "domain" : "23",
  5497. "attributes" : [ "object", "anonymous" ],
  5498. "id" : "22"
  5499. }, {
  5500. "iri" : "http://www.w3.org/ns/prov#specializationOf",
  5501. "baseIri" : "http://www.w3.org/ns/prov",
  5502. "range" : "31",
  5503. "annotations" : {
  5504. "inverse" : [ {
  5505. "identifier" : "inverse",
  5506. "language" : "undefined",
  5507. "value" : "generalizationOf",
  5508. "type" : "label"
  5509. } ],
  5510. "component" : [ {
  5511. "identifier" : "component",
  5512. "language" : "undefined",
  5513. "value" : "alternate",
  5514. "type" : "label"
  5515. } ],
  5516. "isDefinedBy" : [ {
  5517. "identifier" : "isDefinedBy",
  5518. "language" : "undefined",
  5519. "value" : "http://www.w3.org/ns/prov-o#",
  5520. "type" : "iri"
  5521. } ],
  5522. "dm" : [ {
  5523. "identifier" : "dm",
  5524. "language" : "undefined",
  5525. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization",
  5526. "type" : "label"
  5527. } ],
  5528. "definition" : [ {
  5529. "identifier" : "definition",
  5530. "language" : "en",
  5531. "value" : "An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.",
  5532. "type" : "label"
  5533. } ],
  5534. "category" : [ {
  5535. "identifier" : "category",
  5536. "language" : "undefined",
  5537. "value" : "expanded",
  5538. "type" : "label"
  5539. } ],
  5540. "constraints" : [ {
  5541. "identifier" : "constraints",
  5542. "language" : "undefined",
  5543. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  5544. "type" : "label"
  5545. } ],
  5546. "n" : [ {
  5547. "identifier" : "n",
  5548. "language" : "undefined",
  5549. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization",
  5550. "type" : "label"
  5551. } ],
  5552. "seeAlso" : [ {
  5553. "identifier" : "seeAlso",
  5554. "language" : "undefined",
  5555. "value" : "http://www.w3.org/ns/prov#alternateOf",
  5556. "type" : "iri"
  5557. } ]
  5558. },
  5559. "label" : {
  5560. "IRI-based" : "specializationOf",
  5561. "undefined" : "specializationOf"
  5562. },
  5563. "superproperty" : [ "32" ],
  5564. "domain" : "30",
  5565. "attributes" : [ "object", "external" ],
  5566. "id" : "29"
  5567. }, {
  5568. "iri" : "http://www.w3.org/2002/07/owl#topObjectProperty",
  5569. "baseIri" : "http://www.w3.org/2002/07/owl",
  5570. "range" : "18",
  5571. "label" : {
  5572. "IRI-based" : "topObjectProperty"
  5573. },
  5574. "domain" : "18",
  5575. "subproperty" : [ "37" ],
  5576. "attributes" : [ "object", "external" ],
  5577. "id" : "36"
  5578. }, {
  5579. "iri" : "http://www.w3.org/ns/prov#atLocation",
  5580. "baseIri" : "http://www.w3.org/ns/prov",
  5581. "range" : "42",
  5582. "annotations" : {
  5583. "inverse" : [ {
  5584. "identifier" : "inverse",
  5585. "language" : "undefined",
  5586. "value" : "locationOf",
  5587. "type" : "label"
  5588. } ],
  5589. "editorialNote" : [ {
  5590. "identifier" : "editorialNote",
  5591. "language" : "en",
  5592. "value" : "This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair).",
  5593. "type" : "label"
  5594. }, {
  5595. "identifier" : "editorialNote",
  5596. "language" : "en",
  5597. "value" : "The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes.",
  5598. "type" : "label"
  5599. } ],
  5600. "sharesDefinitionWith" : [ {
  5601. "identifier" : "sharesDefinitionWith",
  5602. "language" : "undefined",
  5603. "value" : "http://www.w3.org/ns/prov#Location",
  5604. "type" : "iri"
  5605. } ],
  5606. "isDefinedBy" : [ {
  5607. "identifier" : "isDefinedBy",
  5608. "language" : "undefined",
  5609. "value" : "http://www.w3.org/ns/prov-o#",
  5610. "type" : "iri"
  5611. } ],
  5612. "category" : [ {
  5613. "identifier" : "category",
  5614. "language" : "undefined",
  5615. "value" : "expanded",
  5616. "type" : "label"
  5617. } ]
  5618. },
  5619. "label" : {
  5620. "IRI-based" : "atLocation",
  5621. "undefined" : "atLocation"
  5622. },
  5623. "domain" : "41",
  5624. "comment" : {
  5625. "en" : "The Location of any resource.",
  5626. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  5627. },
  5628. "attributes" : [ "object", "external" ],
  5629. "id" : "40"
  5630. }, {
  5631. "range" : "45",
  5632. "domain" : "44",
  5633. "attributes" : [ "object", "anonymous" ],
  5634. "id" : "43"
  5635. }, {
  5636. "range" : "45",
  5637. "domain" : "47",
  5638. "attributes" : [ "object", "anonymous" ],
  5639. "id" : "46"
  5640. }, {
  5641. "range" : "52",
  5642. "domain" : "51",
  5643. "attributes" : [ "object", "anonymous" ],
  5644. "id" : "50"
  5645. }, {
  5646. "range" : "55",
  5647. "domain" : "54",
  5648. "attributes" : [ "object", "anonymous" ],
  5649. "id" : "53"
  5650. }, {
  5651. "range" : "55",
  5652. "domain" : "57",
  5653. "attributes" : [ "object", "anonymous" ],
  5654. "id" : "56"
  5655. }, {
  5656. "range" : "55",
  5657. "domain" : "59",
  5658. "attributes" : [ "object", "anonymous" ],
  5659. "id" : "58"
  5660. }, {
  5661. "range" : "55",
  5662. "domain" : "61",
  5663. "attributes" : [ "object", "anonymous" ],
  5664. "id" : "60"
  5665. }, {
  5666. "range" : "64",
  5667. "domain" : "63",
  5668. "attributes" : [ "object", "anonymous" ],
  5669. "id" : "62"
  5670. }, {
  5671. "range" : "67",
  5672. "domain" : "66",
  5673. "attributes" : [ "object", "anonymous" ],
  5674. "id" : "65"
  5675. }, {
  5676. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#sharesDataWithThirdParty",
  5677. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  5678. "range" : "34",
  5679. "label" : {
  5680. "IRI-based" : "sharesDataWithThirdParty",
  5681. "undefined" : "sharesDataWithThirdParty"
  5682. },
  5683. "superproperty" : [ "36" ],
  5684. "domain" : "68",
  5685. "comment" : {
  5686. "undefined" : "Shares data with a third party"
  5687. },
  5688. "attributes" : [ "deprecated", "object" ],
  5689. "id" : "37"
  5690. }, {
  5691. "range" : "71",
  5692. "domain" : "70",
  5693. "attributes" : [ "object", "anonymous" ],
  5694. "id" : "69"
  5695. }, {
  5696. "range" : "45",
  5697. "domain" : "73",
  5698. "attributes" : [ "object", "anonymous" ],
  5699. "id" : "72"
  5700. }, {
  5701. "iri" : "http://www.w3.org/ns/prov#endedAtTime",
  5702. "baseIri" : "http://www.w3.org/ns/prov",
  5703. "range" : "77",
  5704. "annotations" : {
  5705. "editorialNote" : [ {
  5706. "identifier" : "editorialNote",
  5707. "language" : "en",
  5708. "value" : "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime.",
  5709. "type" : "label"
  5710. } ],
  5711. "component" : [ {
  5712. "identifier" : "component",
  5713. "language" : "undefined",
  5714. "value" : "entities-activities",
  5715. "type" : "label"
  5716. } ],
  5717. "isDefinedBy" : [ {
  5718. "identifier" : "isDefinedBy",
  5719. "language" : "undefined",
  5720. "value" : "http://www.w3.org/ns/prov-o#",
  5721. "type" : "iri"
  5722. } ],
  5723. "category" : [ {
  5724. "identifier" : "category",
  5725. "language" : "undefined",
  5726. "value" : "starting-point",
  5727. "type" : "label"
  5728. } ],
  5729. "qualifiedForm" : [ {
  5730. "identifier" : "qualifiedForm",
  5731. "language" : "undefined",
  5732. "value" : "http://www.w3.org/ns/prov#End",
  5733. "type" : "iri"
  5734. }, {
  5735. "identifier" : "qualifiedForm",
  5736. "language" : "undefined",
  5737. "value" : "http://www.w3.org/ns/prov#atTime",
  5738. "type" : "iri"
  5739. } ]
  5740. },
  5741. "label" : {
  5742. "IRI-based" : "endedAtTime",
  5743. "undefined" : "endedAtTime"
  5744. },
  5745. "domain" : "76",
  5746. "comment" : {
  5747. "en" : "The time at which an activity ended. See also prov:startedAtTime."
  5748. },
  5749. "attributes" : [ "datatype", "external" ],
  5750. "id" : "75"
  5751. }, {
  5752. "iri" : "http://www.w3.org/ns/prov#qualifiedCommunication",
  5753. "baseIri" : "http://www.w3.org/ns/prov",
  5754. "range" : "79",
  5755. "annotations" : {
  5756. "inverse" : [ {
  5757. "identifier" : "inverse",
  5758. "language" : "undefined",
  5759. "value" : "qualifiedCommunicationOf",
  5760. "type" : "label"
  5761. } ],
  5762. "sharesDefinitionWith" : [ {
  5763. "identifier" : "sharesDefinitionWith",
  5764. "language" : "undefined",
  5765. "value" : "http://www.w3.org/ns/prov#Communication",
  5766. "type" : "iri"
  5767. } ],
  5768. "component" : [ {
  5769. "identifier" : "component",
  5770. "language" : "undefined",
  5771. "value" : "entities-activities",
  5772. "type" : "label"
  5773. } ],
  5774. "isDefinedBy" : [ {
  5775. "identifier" : "isDefinedBy",
  5776. "language" : "undefined",
  5777. "value" : "http://www.w3.org/ns/prov-o#",
  5778. "type" : "iri"
  5779. } ],
  5780. "category" : [ {
  5781. "identifier" : "category",
  5782. "language" : "undefined",
  5783. "value" : "qualified",
  5784. "type" : "label"
  5785. } ],
  5786. "qualifiedForm" : [ {
  5787. "identifier" : "qualifiedForm",
  5788. "language" : "undefined",
  5789. "value" : "http://www.w3.org/ns/prov#Communication",
  5790. "type" : "iri"
  5791. } ]
  5792. },
  5793. "label" : {
  5794. "IRI-based" : "qualifiedCommunication",
  5795. "undefined" : "qualifiedCommunication"
  5796. },
  5797. "superproperty" : [ "80" ],
  5798. "domain" : "76",
  5799. "comment" : {
  5800. "en" : "If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication; prov:activity :a; :foo :bar ]."
  5801. },
  5802. "attributes" : [ "object", "external" ],
  5803. "id" : "78"
  5804. }, {
  5805. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#usesTermsAndConditions",
  5806. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  5807. "range" : "13",
  5808. "label" : {
  5809. "IRI-based" : "usesTermsAndConditions",
  5810. "undefined" : "usesTermsAndConditions"
  5811. },
  5812. "superproperty" : [ "83" ],
  5813. "domain" : "82",
  5814. "comment" : {
  5815. "undefined" : "Links a Consent Acquisition Step with the Terms and Conditions presented to the user when acquiring Consent"
  5816. },
  5817. "attributes" : [ "object" ],
  5818. "id" : "81"
  5819. }, {
  5820. "range" : "52",
  5821. "domain" : "89",
  5822. "attributes" : [ "object", "anonymous" ],
  5823. "id" : "88"
  5824. }, {
  5825. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isPartOfProcess",
  5826. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  5827. "range" : "18",
  5828. "label" : {
  5829. "IRI-based" : "isPartOfProcess",
  5830. "undefined" : "isPartOfProcess"
  5831. },
  5832. "superproperty" : [ "91" ],
  5833. "domain" : "18",
  5834. "attributes" : [ "object" ],
  5835. "id" : "90"
  5836. }, {
  5837. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#usesConsentAgreementTemplate",
  5838. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  5839. "range" : "6",
  5840. "label" : {
  5841. "IRI-based" : "usesConsentAgreementTemplate",
  5842. "undefined" : "usesConsentAgreementTemplate"
  5843. },
  5844. "superproperty" : [ "83" ],
  5845. "domain" : "82",
  5846. "comment" : {
  5847. "undefined" : "links a Consent Acquisition Step with the Consent Agreement Template used to acquire consent"
  5848. },
  5849. "attributes" : [ "object" ],
  5850. "id" : "92"
  5851. }, {
  5852. "iri" : "http://purl.org/net/p-plan#hasInputVar",
  5853. "baseIri" : "http://purl.org/net/p-plan",
  5854. "range" : "18",
  5855. "label" : {
  5856. "IRI-based" : "hasInputVar"
  5857. },
  5858. "domain" : "18",
  5859. "subproperty" : [ "92", "93", "94", "81", "95", "96" ],
  5860. "attributes" : [ "object", "external" ],
  5861. "id" : "83"
  5862. }, {
  5863. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isTermsAndConditionsForStep",
  5864. "inverse" : "81",
  5865. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  5866. "range" : "18",
  5867. "label" : {
  5868. "IRI-based" : "isTermsAndConditionsForStep",
  5869. "undefined" : "isTermsAndConditionsForStep"
  5870. },
  5871. "superproperty" : [ "98" ],
  5872. "domain" : "18",
  5873. "attributes" : [ "object" ],
  5874. "id" : "97"
  5875. }, {
  5876. "iri" : "http://www.w3.org/ns/prov#qualifiedDelegation",
  5877. "baseIri" : "http://www.w3.org/ns/prov",
  5878. "range" : "51",
  5879. "annotations" : {
  5880. "sharesDefinitionWith" : [ {
  5881. "identifier" : "sharesDefinitionWith",
  5882. "language" : "undefined",
  5883. "value" : "http://www.w3.org/ns/prov#Delegation",
  5884. "type" : "iri"
  5885. } ],
  5886. "inverse" : [ {
  5887. "identifier" : "inverse",
  5888. "language" : "undefined",
  5889. "value" : "qualifiedDelegationOf",
  5890. "type" : "label"
  5891. } ],
  5892. "component" : [ {
  5893. "identifier" : "component",
  5894. "language" : "undefined",
  5895. "value" : "agents-responsibility",
  5896. "type" : "label"
  5897. } ],
  5898. "isDefinedBy" : [ {
  5899. "identifier" : "isDefinedBy",
  5900. "language" : "undefined",
  5901. "value" : "http://www.w3.org/ns/prov-o#",
  5902. "type" : "iri"
  5903. } ],
  5904. "unqualifiedForm" : [ {
  5905. "identifier" : "unqualifiedForm",
  5906. "language" : "undefined",
  5907. "value" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  5908. "type" : "iri"
  5909. } ],
  5910. "category" : [ {
  5911. "identifier" : "category",
  5912. "language" : "undefined",
  5913. "value" : "qualified",
  5914. "type" : "label"
  5915. } ]
  5916. },
  5917. "label" : {
  5918. "IRI-based" : "qualifiedDelegation",
  5919. "undefined" : "qualifiedDelegation"
  5920. },
  5921. "superproperty" : [ "80" ],
  5922. "domain" : "9",
  5923. "comment" : {
  5924. "en" : "If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility; prov:agent :ag; :foo :bar ]."
  5925. },
  5926. "attributes" : [ "object", "external" ],
  5927. "id" : "102"
  5928. }, {
  5929. "range" : "23",
  5930. "domain" : "105",
  5931. "attributes" : [ "object", "anonymous" ],
  5932. "id" : "104"
  5933. }, {
  5934. "range" : "23",
  5935. "domain" : "107",
  5936. "attributes" : [ "object", "anonymous" ],
  5937. "id" : "106"
  5938. }, {
  5939. "range" : "23",
  5940. "domain" : "45",
  5941. "attributes" : [ "object", "anonymous" ],
  5942. "id" : "108"
  5943. }, {
  5944. "range" : "23",
  5945. "domain" : "110",
  5946. "attributes" : [ "object", "anonymous" ],
  5947. "id" : "109"
  5948. }, {
  5949. "iri" : "http://www.w3.org/ns/prov#atTime",
  5950. "baseIri" : "http://www.w3.org/ns/prov",
  5951. "range" : "114",
  5952. "annotations" : {
  5953. "sharesDefinitionWith" : [ {
  5954. "identifier" : "sharesDefinitionWith",
  5955. "language" : "undefined",
  5956. "value" : "http://www.w3.org/ns/prov#InstantaneousEvent",
  5957. "type" : "iri"
  5958. } ],
  5959. "component" : [ {
  5960. "identifier" : "component",
  5961. "language" : "undefined",
  5962. "value" : "entities-activities",
  5963. "type" : "label"
  5964. } ],
  5965. "isDefinedBy" : [ {
  5966. "identifier" : "isDefinedBy",
  5967. "language" : "undefined",
  5968. "value" : "http://www.w3.org/ns/prov-o#",
  5969. "type" : "iri"
  5970. } ],
  5971. "unqualifiedForm" : [ {
  5972. "identifier" : "unqualifiedForm",
  5973. "language" : "undefined",
  5974. "value" : "http://www.w3.org/ns/prov#startedAtTime",
  5975. "type" : "iri"
  5976. }, {
  5977. "identifier" : "unqualifiedForm",
  5978. "language" : "undefined",
  5979. "value" : "http://www.w3.org/ns/prov#endedAtTime",
  5980. "type" : "iri"
  5981. }, {
  5982. "identifier" : "unqualifiedForm",
  5983. "language" : "undefined",
  5984. "value" : "http://www.w3.org/ns/prov#invalidatedAtTime",
  5985. "type" : "iri"
  5986. }, {
  5987. "identifier" : "unqualifiedForm",
  5988. "language" : "undefined",
  5989. "value" : "http://www.w3.org/ns/prov#generatedAtTime",
  5990. "type" : "iri"
  5991. } ],
  5992. "category" : [ {
  5993. "identifier" : "category",
  5994. "language" : "undefined",
  5995. "value" : "qualified",
  5996. "type" : "label"
  5997. } ]
  5998. },
  5999. "label" : {
  6000. "IRI-based" : "atTime",
  6001. "undefined" : "atTime"
  6002. },
  6003. "domain" : "113",
  6004. "comment" : {
  6005. "en" : "The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime."
  6006. },
  6007. "attributes" : [ "datatype", "external" ],
  6008. "id" : "112"
  6009. }, {
  6010. "iri" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  6011. "baseIri" : "http://www.w3.org/ns/prov",
  6012. "range" : "76",
  6013. "annotations" : {
  6014. "inverse" : [ {
  6015. "identifier" : "inverse",
  6016. "language" : "undefined",
  6017. "value" : "invalidated",
  6018. "type" : "label"
  6019. } ],
  6020. "component" : [ {
  6021. "identifier" : "component",
  6022. "language" : "undefined",
  6023. "value" : "entities-activities",
  6024. "type" : "label"
  6025. } ],
  6026. "isDefinedBy" : [ {
  6027. "identifier" : "isDefinedBy",
  6028. "language" : "undefined",
  6029. "value" : "http://www.w3.org/ns/prov-o#",
  6030. "type" : "iri"
  6031. } ],
  6032. "category" : [ {
  6033. "identifier" : "category",
  6034. "language" : "undefined",
  6035. "value" : "expanded",
  6036. "type" : "label"
  6037. } ],
  6038. "qualifiedForm" : [ {
  6039. "identifier" : "qualifiedForm",
  6040. "language" : "undefined",
  6041. "value" : "http://www.w3.org/ns/prov#Invalidation",
  6042. "type" : "iri"
  6043. }, {
  6044. "identifier" : "qualifiedForm",
  6045. "language" : "undefined",
  6046. "value" : "http://www.w3.org/ns/prov#qualifiedInvalidation",
  6047. "type" : "iri"
  6048. } ]
  6049. },
  6050. "label" : {
  6051. "IRI-based" : "wasInvalidatedBy",
  6052. "undefined" : "wasInvalidatedBy"
  6053. },
  6054. "superproperty" : [ "116" ],
  6055. "domain" : "30",
  6056. "attributes" : [ "object", "external" ],
  6057. "id" : "115"
  6058. }, {
  6059. "iri" : "http://purl.org/net/p-plan#isOutputVarOf",
  6060. "baseIri" : "http://purl.org/net/p-plan",
  6061. "range" : "18",
  6062. "label" : {
  6063. "IRI-based" : "isOutputVarOf"
  6064. },
  6065. "domain" : "18",
  6066. "subproperty" : [ "17", "117", "118" ],
  6067. "attributes" : [ "object", "external" ],
  6068. "id" : "19"
  6069. }, {
  6070. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#collectsDataFromAgent",
  6071. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6072. "range" : "9",
  6073. "label" : {
  6074. "IRI-based" : "collectsDataFromAgent"
  6075. },
  6076. "superproperty" : [ "125" ],
  6077. "domain" : "124",
  6078. "attributes" : [ "object" ],
  6079. "id" : "123"
  6080. }, {
  6081. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#archivesConsentAs",
  6082. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6083. "range" : "1",
  6084. "label" : {
  6085. "IRI-based" : "archivesConsentAs",
  6086. "undefined" : "archives consent as"
  6087. },
  6088. "superproperty" : [ "130" ],
  6089. "domain" : "129",
  6090. "comment" : {
  6091. "undefined" : "Archives the consent into some entity"
  6092. },
  6093. "attributes" : [ "object" ],
  6094. "id" : "128"
  6095. }, {
  6096. "range" : "133",
  6097. "domain" : "132",
  6098. "attributes" : [ "object", "anonymous" ],
  6099. "id" : "131"
  6100. }, {
  6101. "range" : "133",
  6102. "domain" : "135",
  6103. "attributes" : [ "object", "anonymous" ],
  6104. "id" : "134"
  6105. }, {
  6106. "range" : "138",
  6107. "domain" : "137",
  6108. "attributes" : [ "object", "anonymous" ],
  6109. "id" : "136"
  6110. }, {
  6111. "range" : "138",
  6112. "domain" : "140",
  6113. "attributes" : [ "object", "anonymous" ],
  6114. "id" : "139"
  6115. }, {
  6116. "range" : "23",
  6117. "domain" : "142",
  6118. "attributes" : [ "object", "anonymous" ],
  6119. "id" : "141"
  6120. }, {
  6121. "range" : "23",
  6122. "domain" : "145",
  6123. "attributes" : [ "object", "anonymous" ],
  6124. "id" : "144"
  6125. }, {
  6126. "range" : "148",
  6127. "domain" : "147",
  6128. "attributes" : [ "object", "anonymous" ],
  6129. "id" : "146"
  6130. }, {
  6131. "range" : "148",
  6132. "domain" : "150",
  6133. "attributes" : [ "object", "anonymous" ],
  6134. "id" : "149"
  6135. }, {
  6136. "range" : "148",
  6137. "domain" : "152",
  6138. "attributes" : [ "object", "anonymous" ],
  6139. "id" : "151"
  6140. }, {
  6141. "range" : "154",
  6142. "domain" : "127",
  6143. "attributes" : [ "object", "anonymous" ],
  6144. "id" : "153"
  6145. }, {
  6146. "range" : "133",
  6147. "domain" : "156",
  6148. "attributes" : [ "object", "anonymous" ],
  6149. "id" : "155"
  6150. }, {
  6151. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#anonymityLevel",
  6152. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6153. "range" : "158",
  6154. "label" : {
  6155. "IRI-based" : "anonymityLevel",
  6156. "undefined" : "anonymity level"
  6157. },
  6158. "domain" : "154",
  6159. "attributes" : [ "deprecated", "object" ],
  6160. "id" : "157"
  6161. }, {
  6162. "range" : "28",
  6163. "domain" : "143",
  6164. "attributes" : [ "object", "anonymous" ],
  6165. "id" : "164"
  6166. }, {
  6167. "range" : "161",
  6168. "domain" : "166",
  6169. "attributes" : [ "object", "anonymous" ],
  6170. "id" : "165"
  6171. }, {
  6172. "range" : "161",
  6173. "domain" : "168",
  6174. "attributes" : [ "object", "anonymous" ],
  6175. "id" : "167"
  6176. }, {
  6177. "range" : "161",
  6178. "domain" : "160",
  6179. "attributes" : [ "object", "anonymous" ],
  6180. "id" : "169"
  6181. }, {
  6182. "range" : "161",
  6183. "domain" : "154",
  6184. "attributes" : [ "object", "anonymous" ],
  6185. "id" : "170"
  6186. }, {
  6187. "range" : "28",
  6188. "domain" : "172",
  6189. "attributes" : [ "object", "anonymous" ],
  6190. "id" : "171"
  6191. }, {
  6192. "range" : "28",
  6193. "domain" : "162",
  6194. "attributes" : [ "object", "anonymous" ],
  6195. "id" : "182"
  6196. }, {
  6197. "range" : "28",
  6198. "domain" : "119",
  6199. "attributes" : [ "object", "anonymous" ],
  6200. "id" : "183"
  6201. }, {
  6202. "range" : "28",
  6203. "domain" : "185",
  6204. "attributes" : [ "object", "anonymous" ],
  6205. "id" : "184"
  6206. }, {
  6207. "range" : "28",
  6208. "domain" : "187",
  6209. "attributes" : [ "object", "anonymous" ],
  6210. "id" : "186"
  6211. }, {
  6212. "range" : "28",
  6213. "domain" : "71",
  6214. "attributes" : [ "object", "anonymous" ],
  6215. "id" : "188"
  6216. }, {
  6217. "iri" : "http://www.w3.org/ns/prov#qualifiedRevision",
  6218. "baseIri" : "http://www.w3.org/ns/prov",
  6219. "range" : "191",
  6220. "annotations" : {
  6221. "sharesDefinitionWith" : [ {
  6222. "identifier" : "sharesDefinitionWith",
  6223. "language" : "undefined",
  6224. "value" : "http://www.w3.org/ns/prov#Revision",
  6225. "type" : "iri"
  6226. } ],
  6227. "inverse" : [ {
  6228. "identifier" : "inverse",
  6229. "language" : "undefined",
  6230. "value" : "revisedEntity",
  6231. "type" : "label"
  6232. } ],
  6233. "component" : [ {
  6234. "identifier" : "component",
  6235. "language" : "undefined",
  6236. "value" : "derivations",
  6237. "type" : "label"
  6238. } ],
  6239. "isDefinedBy" : [ {
  6240. "identifier" : "isDefinedBy",
  6241. "language" : "undefined",
  6242. "value" : "http://www.w3.org/ns/prov-o#",
  6243. "type" : "iri"
  6244. } ],
  6245. "unqualifiedForm" : [ {
  6246. "identifier" : "unqualifiedForm",
  6247. "language" : "undefined",
  6248. "value" : "http://www.w3.org/ns/prov#wasRevisionOf",
  6249. "type" : "iri"
  6250. } ],
  6251. "category" : [ {
  6252. "identifier" : "category",
  6253. "language" : "undefined",
  6254. "value" : "qualified",
  6255. "type" : "label"
  6256. } ]
  6257. },
  6258. "label" : {
  6259. "IRI-based" : "qualifiedRevision",
  6260. "undefined" : "qualifiedRevision"
  6261. },
  6262. "superproperty" : [ "80" ],
  6263. "domain" : "30",
  6264. "comment" : {
  6265. "en" : "If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision; prov:entity :e; :foo :bar ]."
  6266. },
  6267. "attributes" : [ "object", "external" ],
  6268. "id" : "190"
  6269. }, {
  6270. "range" : "28",
  6271. "domain" : "193",
  6272. "attributes" : [ "object", "anonymous" ],
  6273. "id" : "192"
  6274. }, {
  6275. "range" : "28",
  6276. "domain" : "195",
  6277. "attributes" : [ "object", "anonymous" ],
  6278. "id" : "194"
  6279. }, {
  6280. "range" : "28",
  6281. "domain" : "197",
  6282. "attributes" : [ "object", "anonymous" ],
  6283. "id" : "196"
  6284. }, {
  6285. "range" : "28",
  6286. "domain" : "199",
  6287. "attributes" : [ "object", "anonymous" ],
  6288. "id" : "198"
  6289. }, {
  6290. "range" : "28",
  6291. "domain" : "111",
  6292. "attributes" : [ "object", "anonymous" ],
  6293. "id" : "200"
  6294. }, {
  6295. "range" : "28",
  6296. "domain" : "202",
  6297. "attributes" : [ "object", "anonymous" ],
  6298. "id" : "201"
  6299. }, {
  6300. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#invalidatesData",
  6301. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6302. "range" : "4",
  6303. "label" : {
  6304. "IRI-based" : "invalidatesData"
  6305. },
  6306. "domain" : "204",
  6307. "attributes" : [ "object" ],
  6308. "id" : "203"
  6309. }, {
  6310. "range" : "28",
  6311. "domain" : "206",
  6312. "attributes" : [ "object", "anonymous" ],
  6313. "id" : "205"
  6314. }, {
  6315. "range" : "28",
  6316. "domain" : "208",
  6317. "attributes" : [ "object", "anonymous" ],
  6318. "id" : "207"
  6319. }, {
  6320. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#wasSharedWithThirdParty",
  6321. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6322. "range" : "34",
  6323. "label" : {
  6324. "IRI-based" : "wasSharedWithThirdParty"
  6325. },
  6326. "superproperty" : [ "98" ],
  6327. "domain" : "4",
  6328. "attributes" : [ "object" ],
  6329. "id" : "209"
  6330. }, {
  6331. "range" : "28",
  6332. "domain" : "159",
  6333. "attributes" : [ "object", "anonymous" ],
  6334. "id" : "210"
  6335. }, {
  6336. "range" : "28",
  6337. "domain" : "27",
  6338. "attributes" : [ "object", "anonymous" ],
  6339. "id" : "211"
  6340. }, {
  6341. "range" : "28",
  6342. "domain" : "74",
  6343. "attributes" : [ "object", "anonymous" ],
  6344. "id" : "212"
  6345. }, {
  6346. "iri" : "http://www.w3.org/ns/prov#qualifiedInvalidation",
  6347. "baseIri" : "http://www.w3.org/ns/prov",
  6348. "range" : "214",
  6349. "annotations" : {
  6350. "inverse" : [ {
  6351. "identifier" : "inverse",
  6352. "language" : "undefined",
  6353. "value" : "qualifiedInvalidationOf",
  6354. "type" : "label"
  6355. } ],
  6356. "sharesDefinitionWith" : [ {
  6357. "identifier" : "sharesDefinitionWith",
  6358. "language" : "undefined",
  6359. "value" : "http://www.w3.org/ns/prov#Invalidation",
  6360. "type" : "iri"
  6361. } ],
  6362. "component" : [ {
  6363. "identifier" : "component",
  6364. "language" : "undefined",
  6365. "value" : "entities-activities",
  6366. "type" : "label"
  6367. } ],
  6368. "isDefinedBy" : [ {
  6369. "identifier" : "isDefinedBy",
  6370. "language" : "undefined",
  6371. "value" : "http://www.w3.org/ns/prov-o#",
  6372. "type" : "iri"
  6373. } ],
  6374. "unqualifiedForm" : [ {
  6375. "identifier" : "unqualifiedForm",
  6376. "language" : "undefined",
  6377. "value" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  6378. "type" : "iri"
  6379. } ],
  6380. "category" : [ {
  6381. "identifier" : "category",
  6382. "language" : "undefined",
  6383. "value" : "qualified",
  6384. "type" : "label"
  6385. } ]
  6386. },
  6387. "label" : {
  6388. "IRI-based" : "qualifiedInvalidation",
  6389. "undefined" : "qualifiedInvalidation"
  6390. },
  6391. "superproperty" : [ "80" ],
  6392. "domain" : "30",
  6393. "comment" : {
  6394. "en" : "If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :a; :foo :bar ]."
  6395. },
  6396. "attributes" : [ "object", "external" ],
  6397. "id" : "213"
  6398. }, {
  6399. "range" : "28",
  6400. "domain" : "100",
  6401. "attributes" : [ "object", "anonymous" ],
  6402. "id" : "216"
  6403. }, {
  6404. "range" : "28",
  6405. "domain" : "99",
  6406. "attributes" : [ "object", "anonymous" ],
  6407. "id" : "217"
  6408. }, {
  6409. "range" : "28",
  6410. "domain" : "219",
  6411. "attributes" : [ "object", "anonymous" ],
  6412. "id" : "218"
  6413. }, {
  6414. "iri" : "http://www.w3.org/ns/prov#qualifiedDerivation",
  6415. "baseIri" : "http://www.w3.org/ns/prov",
  6416. "range" : "57",
  6417. "annotations" : {
  6418. "inverse" : [ {
  6419. "identifier" : "inverse",
  6420. "language" : "undefined",
  6421. "value" : "qualifiedDerivationOf",
  6422. "type" : "label"
  6423. } ],
  6424. "sharesDefinitionWith" : [ {
  6425. "identifier" : "sharesDefinitionWith",
  6426. "language" : "undefined",
  6427. "value" : "http://www.w3.org/ns/prov#Derivation",
  6428. "type" : "iri"
  6429. } ],
  6430. "component" : [ {
  6431. "identifier" : "component",
  6432. "language" : "undefined",
  6433. "value" : "derivations",
  6434. "type" : "label"
  6435. } ],
  6436. "isDefinedBy" : [ {
  6437. "identifier" : "isDefinedBy",
  6438. "language" : "undefined",
  6439. "value" : "http://www.w3.org/ns/prov-o#",
  6440. "type" : "iri"
  6441. } ],
  6442. "unqualifiedForm" : [ {
  6443. "identifier" : "unqualifiedForm",
  6444. "language" : "undefined",
  6445. "value" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  6446. "type" : "iri"
  6447. } ],
  6448. "category" : [ {
  6449. "identifier" : "category",
  6450. "language" : "undefined",
  6451. "value" : "qualified",
  6452. "type" : "label"
  6453. } ]
  6454. },
  6455. "label" : {
  6456. "IRI-based" : "qualifiedDerivation",
  6457. "undefined" : "qualifiedDerivation"
  6458. },
  6459. "superproperty" : [ "80" ],
  6460. "domain" : "30",
  6461. "comment" : {
  6462. "en" : "If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation; prov:entity :e; :foo :bar ]."
  6463. },
  6464. "attributes" : [ "object", "external" ],
  6465. "id" : "221"
  6466. }, {
  6467. "iri" : "http://www.w3.org/ns/prov#wasStartedBy",
  6468. "baseIri" : "http://www.w3.org/ns/prov",
  6469. "range" : "30",
  6470. "annotations" : {
  6471. "inverse" : [ {
  6472. "identifier" : "inverse",
  6473. "language" : "undefined",
  6474. "value" : "started",
  6475. "type" : "label"
  6476. } ],
  6477. "component" : [ {
  6478. "identifier" : "component",
  6479. "language" : "undefined",
  6480. "value" : "entities-activities",
  6481. "type" : "label"
  6482. } ],
  6483. "isDefinedBy" : [ {
  6484. "identifier" : "isDefinedBy",
  6485. "language" : "undefined",
  6486. "value" : "http://www.w3.org/ns/prov-o#",
  6487. "type" : "iri"
  6488. } ],
  6489. "category" : [ {
  6490. "identifier" : "category",
  6491. "language" : "undefined",
  6492. "value" : "expanded",
  6493. "type" : "label"
  6494. } ],
  6495. "qualifiedForm" : [ {
  6496. "identifier" : "qualifiedForm",
  6497. "language" : "undefined",
  6498. "value" : "http://www.w3.org/ns/prov#qualifiedStart",
  6499. "type" : "iri"
  6500. }, {
  6501. "identifier" : "qualifiedForm",
  6502. "language" : "undefined",
  6503. "value" : "http://www.w3.org/ns/prov#Start",
  6504. "type" : "iri"
  6505. } ]
  6506. },
  6507. "label" : {
  6508. "IRI-based" : "wasStartedBy",
  6509. "undefined" : "wasStartedBy"
  6510. },
  6511. "superproperty" : [ "116" ],
  6512. "domain" : "76",
  6513. "comment" : {
  6514. "en" : "Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity."
  6515. },
  6516. "attributes" : [ "object", "external" ],
  6517. "id" : "222"
  6518. }, {
  6519. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#transferredDataToRegion",
  6520. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6521. "range" : "225",
  6522. "label" : {
  6523. "IRI-based" : "transferredDataToRegion",
  6524. "undefined" : "transferredDataToRegion"
  6525. },
  6526. "domain" : "224",
  6527. "attributes" : [ "object" ],
  6528. "id" : "223"
  6529. }, {
  6530. "iri" : "http://www.w3.org/ns/prov#qualifiedEnd",
  6531. "baseIri" : "http://www.w3.org/ns/prov",
  6532. "range" : "59",
  6533. "annotations" : {
  6534. "sharesDefinitionWith" : [ {
  6535. "identifier" : "sharesDefinitionWith",
  6536. "language" : "undefined",
  6537. "value" : "http://www.w3.org/ns/prov#End",
  6538. "type" : "iri"
  6539. } ],
  6540. "inverse" : [ {
  6541. "identifier" : "inverse",
  6542. "language" : "undefined",
  6543. "value" : "qualifiedEndOf",
  6544. "type" : "label"
  6545. } ],
  6546. "component" : [ {
  6547. "identifier" : "component",
  6548. "language" : "undefined",
  6549. "value" : "entities-activities",
  6550. "type" : "label"
  6551. } ],
  6552. "isDefinedBy" : [ {
  6553. "identifier" : "isDefinedBy",
  6554. "language" : "undefined",
  6555. "value" : "http://www.w3.org/ns/prov-o#",
  6556. "type" : "iri"
  6557. } ],
  6558. "unqualifiedForm" : [ {
  6559. "identifier" : "unqualifiedForm",
  6560. "language" : "undefined",
  6561. "value" : "http://www.w3.org/ns/prov#wasEndedBy",
  6562. "type" : "iri"
  6563. } ],
  6564. "category" : [ {
  6565. "identifier" : "category",
  6566. "language" : "undefined",
  6567. "value" : "qualified",
  6568. "type" : "label"
  6569. } ]
  6570. },
  6571. "label" : {
  6572. "IRI-based" : "qualifiedEnd",
  6573. "undefined" : "qualifiedEnd"
  6574. },
  6575. "superproperty" : [ "80" ],
  6576. "domain" : "76",
  6577. "comment" : {
  6578. "en" : "If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End; prov:entity :e1; :foo :bar ]."
  6579. },
  6580. "attributes" : [ "object", "external" ],
  6581. "id" : "229"
  6582. }, {
  6583. "iri" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  6584. "baseIri" : "http://www.w3.org/ns/prov",
  6585. "range" : "9",
  6586. "annotations" : {
  6587. "inverse" : [ {
  6588. "identifier" : "inverse",
  6589. "language" : "undefined",
  6590. "value" : "wasAssociateFor",
  6591. "type" : "label"
  6592. } ],
  6593. "component" : [ {
  6594. "identifier" : "component",
  6595. "language" : "undefined",
  6596. "value" : "agents-responsibility",
  6597. "type" : "label"
  6598. } ],
  6599. "isDefinedBy" : [ {
  6600. "identifier" : "isDefinedBy",
  6601. "language" : "undefined",
  6602. "value" : "http://www.w3.org/ns/prov-o#",
  6603. "type" : "iri"
  6604. } ],
  6605. "category" : [ {
  6606. "identifier" : "category",
  6607. "language" : "undefined",
  6608. "value" : "starting-point",
  6609. "type" : "label"
  6610. } ],
  6611. "qualifiedForm" : [ {
  6612. "identifier" : "qualifiedForm",
  6613. "language" : "undefined",
  6614. "value" : "http://www.w3.org/ns/prov#Association",
  6615. "type" : "iri"
  6616. }, {
  6617. "identifier" : "qualifiedForm",
  6618. "language" : "undefined",
  6619. "value" : "http://www.w3.org/ns/prov#qualifiedAssociation",
  6620. "type" : "iri"
  6621. } ]
  6622. },
  6623. "label" : {
  6624. "IRI-based" : "wasAssociatedWith",
  6625. "undefined" : "wasAssociatedWith"
  6626. },
  6627. "superproperty" : [ "116" ],
  6628. "domain" : "76",
  6629. "comment" : {
  6630. "en" : "An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity."
  6631. },
  6632. "attributes" : [ "object", "external" ],
  6633. "id" : "231"
  6634. }, {
  6635. "iri" : "http://www.w3.org/ns/prov#wasRevisionOf",
  6636. "baseIri" : "http://www.w3.org/ns/prov",
  6637. "range" : "31",
  6638. "annotations" : {
  6639. "inverse" : [ {
  6640. "identifier" : "inverse",
  6641. "language" : "undefined",
  6642. "value" : "hadRevision",
  6643. "type" : "label"
  6644. } ],
  6645. "component" : [ {
  6646. "identifier" : "component",
  6647. "language" : "undefined",
  6648. "value" : "derivations",
  6649. "type" : "label"
  6650. } ],
  6651. "isDefinedBy" : [ {
  6652. "identifier" : "isDefinedBy",
  6653. "language" : "undefined",
  6654. "value" : "http://www.w3.org/ns/prov-o#",
  6655. "type" : "iri"
  6656. } ],
  6657. "category" : [ {
  6658. "identifier" : "category",
  6659. "language" : "undefined",
  6660. "value" : "expanded",
  6661. "type" : "label"
  6662. } ],
  6663. "qualifiedForm" : [ {
  6664. "identifier" : "qualifiedForm",
  6665. "language" : "undefined",
  6666. "value" : "http://www.w3.org/ns/prov#qualifiedRevision",
  6667. "type" : "iri"
  6668. }, {
  6669. "identifier" : "qualifiedForm",
  6670. "language" : "undefined",
  6671. "value" : "http://www.w3.org/ns/prov#Revision",
  6672. "type" : "iri"
  6673. } ]
  6674. },
  6675. "label" : {
  6676. "IRI-based" : "wasRevisionOf",
  6677. "undefined" : "wasRevisionOf"
  6678. },
  6679. "superproperty" : [ "237" ],
  6680. "domain" : "30",
  6681. "comment" : {
  6682. "en" : "A revision is a derivation that revises an entity into a revised version."
  6683. },
  6684. "attributes" : [ "object", "external" ],
  6685. "id" : "236"
  6686. }, {
  6687. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isGeneratedByStep",
  6688. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6689. "range" : "18",
  6690. "label" : {
  6691. "IRI-based" : "isGeneratedByStep",
  6692. "undefined" : "isGeneratedByStep"
  6693. },
  6694. "superproperty" : [ "19" ],
  6695. "domain" : "18",
  6696. "attributes" : [ "object" ],
  6697. "id" : "118"
  6698. }, {
  6699. "range" : "30",
  6700. "domain" : "113",
  6701. "attributes" : [ "object", "anonymous" ],
  6702. "id" : "245"
  6703. }, {
  6704. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isUsedByStep",
  6705. "inverse" : "94",
  6706. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6707. "range" : "18",
  6708. "label" : {
  6709. "IRI-based" : "isUsedByStep",
  6710. "undefined" : "isUsedByStep"
  6711. },
  6712. "superproperty" : [ "98" ],
  6713. "domain" : "18",
  6714. "attributes" : [ "object" ],
  6715. "id" : "247"
  6716. }, {
  6717. "range" : "9",
  6718. "domain" : "215",
  6719. "attributes" : [ "object", "anonymous" ],
  6720. "id" : "248"
  6721. }, {
  6722. "range" : "9",
  6723. "domain" : "250",
  6724. "attributes" : [ "object", "anonymous" ],
  6725. "id" : "249"
  6726. }, {
  6727. "range" : "9",
  6728. "domain" : "253",
  6729. "attributes" : [ "object", "anonymous" ],
  6730. "id" : "252"
  6731. }, {
  6732. "iri" : "http://purl.org/net/p-plan#isStepOfPlan",
  6733. "baseIri" : "http://purl.org/net/p-plan",
  6734. "range" : "18",
  6735. "label" : {
  6736. "IRI-based" : "isStepOfPlan"
  6737. },
  6738. "domain" : "18",
  6739. "subproperty" : [ "90" ],
  6740. "attributes" : [ "object", "external" ],
  6741. "id" : "91"
  6742. }, {
  6743. "iri" : "http://www.w3.org/ns/prov#qualifiedAttribution",
  6744. "baseIri" : "http://www.w3.org/ns/prov",
  6745. "range" : "255",
  6746. "annotations" : {
  6747. "sharesDefinitionWith" : [ {
  6748. "identifier" : "sharesDefinitionWith",
  6749. "language" : "undefined",
  6750. "value" : "http://www.w3.org/ns/prov#Attribution",
  6751. "type" : "iri"
  6752. } ],
  6753. "inverse" : [ {
  6754. "identifier" : "inverse",
  6755. "language" : "undefined",
  6756. "value" : "qualifiedAttributionOf",
  6757. "type" : "label"
  6758. } ],
  6759. "component" : [ {
  6760. "identifier" : "component",
  6761. "language" : "undefined",
  6762. "value" : "agents-responsibility",
  6763. "type" : "label"
  6764. } ],
  6765. "isDefinedBy" : [ {
  6766. "identifier" : "isDefinedBy",
  6767. "language" : "undefined",
  6768. "value" : "http://www.w3.org/ns/prov-o#",
  6769. "type" : "iri"
  6770. } ],
  6771. "unqualifiedForm" : [ {
  6772. "identifier" : "unqualifiedForm",
  6773. "language" : "undefined",
  6774. "value" : "http://www.w3.org/ns/prov#wasAttributedTo",
  6775. "type" : "iri"
  6776. } ],
  6777. "category" : [ {
  6778. "identifier" : "category",
  6779. "language" : "undefined",
  6780. "value" : "qualified",
  6781. "type" : "label"
  6782. } ]
  6783. },
  6784. "label" : {
  6785. "IRI-based" : "qualifiedAttribution",
  6786. "undefined" : "qualifiedAttribution"
  6787. },
  6788. "superproperty" : [ "80" ],
  6789. "domain" : "30",
  6790. "comment" : {
  6791. "en" : "If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution; prov:agent :ag; :foo :bar ]."
  6792. },
  6793. "attributes" : [ "object", "external" ],
  6794. "id" : "254"
  6795. }, {
  6796. "range" : "9",
  6797. "domain" : "48",
  6798. "attributes" : [ "object", "anonymous" ],
  6799. "id" : "256"
  6800. }, {
  6801. "range" : "34",
  6802. "domain" : "64",
  6803. "attributes" : [ "object", "anonymous" ],
  6804. "id" : "257"
  6805. }, {
  6806. "range" : "9",
  6807. "domain" : "251",
  6808. "attributes" : [ "object", "anonymous" ],
  6809. "id" : "258"
  6810. }, {
  6811. "range" : "9",
  6812. "domain" : "49",
  6813. "attributes" : [ "object", "anonymous" ],
  6814. "id" : "259"
  6815. }, {
  6816. "range" : "181",
  6817. "domain" : "214",
  6818. "attributes" : [ "object", "anonymous" ],
  6819. "id" : "260"
  6820. }, {
  6821. "range" : "181",
  6822. "domain" : "262",
  6823. "attributes" : [ "object", "anonymous" ],
  6824. "id" : "261"
  6825. }, {
  6826. "range" : "34",
  6827. "domain" : "33",
  6828. "attributes" : [ "object", "anonymous" ],
  6829. "id" : "263"
  6830. }, {
  6831. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#collectsData",
  6832. "inverse" : "17",
  6833. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6834. "range" : "4",
  6835. "label" : {
  6836. "IRI-based" : "collectsData",
  6837. "undefined" : "collectsData"
  6838. },
  6839. "superproperty" : [ "130" ],
  6840. "domain" : "85",
  6841. "comment" : {
  6842. "undefined" : "Links data obtained (collected) by the step/activity that acquired it"
  6843. },
  6844. "attributes" : [ "object" ],
  6845. "id" : "264"
  6846. }, {
  6847. "range" : "33",
  6848. "domain" : "35",
  6849. "attributes" : [ "object", "anonymous" ],
  6850. "id" : "265"
  6851. }, {
  6852. "range" : "181",
  6853. "domain" : "79",
  6854. "attributes" : [ "object", "anonymous" ],
  6855. "id" : "266"
  6856. }, {
  6857. "range" : "113",
  6858. "domain" : "61",
  6859. "attributes" : [ "object", "anonymous" ],
  6860. "id" : "267"
  6861. }, {
  6862. "iri" : "http://purl.org/net/p-plan#hasOutputVar",
  6863. "baseIri" : "http://purl.org/net/p-plan",
  6864. "range" : "18",
  6865. "label" : {
  6866. "IRI-based" : "hasOutputVar"
  6867. },
  6868. "domain" : "18",
  6869. "subproperty" : [ "269", "128", "264", "270" ],
  6870. "attributes" : [ "object", "external" ],
  6871. "id" : "130"
  6872. }, {
  6873. "range" : "113",
  6874. "domain" : "59",
  6875. "attributes" : [ "object", "anonymous" ],
  6876. "id" : "271"
  6877. }, {
  6878. "range" : "113",
  6879. "domain" : "54",
  6880. "attributes" : [ "object", "anonymous" ],
  6881. "id" : "272"
  6882. }, {
  6883. "range" : "21",
  6884. "domain" : "26",
  6885. "attributes" : [ "object", "anonymous" ],
  6886. "id" : "273"
  6887. }, {
  6888. "range" : "113",
  6889. "domain" : "214",
  6890. "attributes" : [ "object", "anonymous" ],
  6891. "id" : "274"
  6892. }, {
  6893. "range" : "113",
  6894. "domain" : "262",
  6895. "attributes" : [ "object", "anonymous" ],
  6896. "id" : "275"
  6897. }, {
  6898. "iri" : "http://www.w3.org/ns/prov#hadGeneration",
  6899. "baseIri" : "http://www.w3.org/ns/prov",
  6900. "range" : "262",
  6901. "annotations" : {
  6902. "inverse" : [ {
  6903. "identifier" : "inverse",
  6904. "language" : "undefined",
  6905. "value" : "generatedAsDerivation",
  6906. "type" : "label"
  6907. } ],
  6908. "sharesDefinitionWith" : [ {
  6909. "identifier" : "sharesDefinitionWith",
  6910. "language" : "undefined",
  6911. "value" : "http://www.w3.org/ns/prov#Generation",
  6912. "type" : "iri"
  6913. } ],
  6914. "component" : [ {
  6915. "identifier" : "component",
  6916. "language" : "undefined",
  6917. "value" : "derivations",
  6918. "type" : "label"
  6919. } ],
  6920. "isDefinedBy" : [ {
  6921. "identifier" : "isDefinedBy",
  6922. "language" : "undefined",
  6923. "value" : "http://www.w3.org/ns/prov-o#",
  6924. "type" : "iri"
  6925. } ],
  6926. "category" : [ {
  6927. "identifier" : "category",
  6928. "language" : "undefined",
  6929. "value" : "qualified",
  6930. "type" : "label"
  6931. } ]
  6932. },
  6933. "label" : {
  6934. "IRI-based" : "hadGeneration",
  6935. "undefined" : "hadGeneration"
  6936. },
  6937. "domain" : "57",
  6938. "comment" : {
  6939. "en" : "The _optional_ Generation involved in an Entity's Derivation."
  6940. },
  6941. "attributes" : [ "object", "external" ],
  6942. "id" : "276"
  6943. }, {
  6944. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#sharesData",
  6945. "inverse" : "279",
  6946. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  6947. "range" : "4",
  6948. "label" : {
  6949. "IRI-based" : "sharesData",
  6950. "undefined" : "sharesData"
  6951. },
  6952. "superproperty" : [ "83" ],
  6953. "domain" : "68",
  6954. "comment" : {
  6955. "undefined" : "Indicates sharing of Data through a DataStep"
  6956. },
  6957. "attributes" : [ "object" ],
  6958. "id" : "95"
  6959. }, {
  6960. "range" : "21",
  6961. "domain" : "25",
  6962. "attributes" : [ "object", "anonymous" ],
  6963. "id" : "280"
  6964. }, {
  6965. "range" : "21",
  6966. "domain" : "24",
  6967. "attributes" : [ "object", "anonymous" ],
  6968. "id" : "281"
  6969. }, {
  6970. "iri" : "http://www.w3.org/ns/prov#startedAtTime",
  6971. "baseIri" : "http://www.w3.org/ns/prov",
  6972. "range" : "234",
  6973. "annotations" : {
  6974. "editorialNote" : [ {
  6975. "identifier" : "editorialNote",
  6976. "language" : "en",
  6977. "value" : "It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime.",
  6978. "type" : "label"
  6979. } ],
  6980. "component" : [ {
  6981. "identifier" : "component",
  6982. "language" : "undefined",
  6983. "value" : "entities-activities",
  6984. "type" : "label"
  6985. } ],
  6986. "isDefinedBy" : [ {
  6987. "identifier" : "isDefinedBy",
  6988. "language" : "undefined",
  6989. "value" : "http://www.w3.org/ns/prov-o#",
  6990. "type" : "iri"
  6991. } ],
  6992. "category" : [ {
  6993. "identifier" : "category",
  6994. "language" : "undefined",
  6995. "value" : "starting-point",
  6996. "type" : "label"
  6997. } ],
  6998. "qualifiedForm" : [ {
  6999. "identifier" : "qualifiedForm",
  7000. "language" : "undefined",
  7001. "value" : "http://www.w3.org/ns/prov#Start",
  7002. "type" : "iri"
  7003. }, {
  7004. "identifier" : "qualifiedForm",
  7005. "language" : "undefined",
  7006. "value" : "http://www.w3.org/ns/prov#atTime",
  7007. "type" : "iri"
  7008. } ]
  7009. },
  7010. "label" : {
  7011. "IRI-based" : "startedAtTime",
  7012. "undefined" : "startedAtTime"
  7013. },
  7014. "domain" : "76",
  7015. "comment" : {
  7016. "en" : "The time at which an activity started. See also prov:endedAtTime."
  7017. },
  7018. "attributes" : [ "datatype", "external" ],
  7019. "id" : "282"
  7020. }, {
  7021. "range" : "4",
  7022. "domain" : "39",
  7023. "attributes" : [ "object", "anonymous" ],
  7024. "id" : "283"
  7025. }, {
  7026. "range" : "162",
  7027. "domain" : "163",
  7028. "attributes" : [ "object", "anonymous" ],
  7029. "id" : "284"
  7030. }, {
  7031. "range" : "85",
  7032. "domain" : "124",
  7033. "attributes" : [ "object", "anonymous" ],
  7034. "id" : "285"
  7035. }, {
  7036. "range" : "85",
  7037. "domain" : "174",
  7038. "attributes" : [ "object", "anonymous" ],
  7039. "id" : "286"
  7040. }, {
  7041. "iri" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  7042. "baseIri" : "http://www.w3.org/ns/prov",
  7043. "range" : "30",
  7044. "annotations" : {
  7045. "inverse" : [ {
  7046. "identifier" : "inverse",
  7047. "language" : "undefined",
  7048. "value" : "quotedAs",
  7049. "type" : "label"
  7050. } ],
  7051. "component" : [ {
  7052. "identifier" : "component",
  7053. "language" : "undefined",
  7054. "value" : "derivations",
  7055. "type" : "label"
  7056. } ],
  7057. "isDefinedBy" : [ {
  7058. "identifier" : "isDefinedBy",
  7059. "language" : "undefined",
  7060. "value" : "http://www.w3.org/ns/prov-o#",
  7061. "type" : "iri"
  7062. } ],
  7063. "category" : [ {
  7064. "identifier" : "category",
  7065. "language" : "undefined",
  7066. "value" : "expanded",
  7067. "type" : "label"
  7068. } ],
  7069. "qualifiedForm" : [ {
  7070. "identifier" : "qualifiedForm",
  7071. "language" : "undefined",
  7072. "value" : "http://www.w3.org/ns/prov#Quotation",
  7073. "type" : "iri"
  7074. }, {
  7075. "identifier" : "qualifiedForm",
  7076. "language" : "undefined",
  7077. "value" : "http://www.w3.org/ns/prov#qualifiedQuotation",
  7078. "type" : "iri"
  7079. } ]
  7080. },
  7081. "label" : {
  7082. "IRI-based" : "wasQuotedFrom",
  7083. "undefined" : "wasQuotedFrom"
  7084. },
  7085. "superproperty" : [ "237" ],
  7086. "domain" : "30",
  7087. "comment" : {
  7088. "en" : "An entity is derived from an original entity by copying, or 'quoting', some or all of it."
  7089. },
  7090. "attributes" : [ "object", "external" ],
  7091. "id" : "288"
  7092. }, {
  7093. "range" : "15",
  7094. "domain" : "122",
  7095. "attributes" : [ "object", "anonymous" ],
  7096. "id" : "290"
  7097. }, {
  7098. "iri" : "http://www.w3.org/ns/prov#used",
  7099. "baseIri" : "http://www.w3.org/ns/prov",
  7100. "range" : "30",
  7101. "annotations" : {
  7102. "inverse" : [ {
  7103. "identifier" : "inverse",
  7104. "language" : "undefined",
  7105. "value" : "wasUsedBy",
  7106. "type" : "label"
  7107. } ],
  7108. "component" : [ {
  7109. "identifier" : "component",
  7110. "language" : "undefined",
  7111. "value" : "entities-activities",
  7112. "type" : "label"
  7113. } ],
  7114. "isDefinedBy" : [ {
  7115. "identifier" : "isDefinedBy",
  7116. "language" : "undefined",
  7117. "value" : "http://www.w3.org/ns/prov-o#",
  7118. "type" : "iri"
  7119. } ],
  7120. "category" : [ {
  7121. "identifier" : "category",
  7122. "language" : "undefined",
  7123. "value" : "starting-point",
  7124. "type" : "label"
  7125. } ],
  7126. "qualifiedForm" : [ {
  7127. "identifier" : "qualifiedForm",
  7128. "language" : "undefined",
  7129. "value" : "http://www.w3.org/ns/prov#Usage",
  7130. "type" : "iri"
  7131. }, {
  7132. "identifier" : "qualifiedForm",
  7133. "language" : "undefined",
  7134. "value" : "http://www.w3.org/ns/prov#qualifiedUsage",
  7135. "type" : "iri"
  7136. } ]
  7137. },
  7138. "label" : {
  7139. "IRI-based" : "used",
  7140. "undefined" : "used"
  7141. },
  7142. "superproperty" : [ "116" ],
  7143. "domain" : "76",
  7144. "comment" : {
  7145. "en" : "A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven ."
  7146. },
  7147. "attributes" : [ "object", "external" ],
  7148. "id" : "291"
  7149. }, {
  7150. "iri" : "http://www.w3.org/ns/prov#hadUsage",
  7151. "baseIri" : "http://www.w3.org/ns/prov",
  7152. "range" : "54",
  7153. "annotations" : {
  7154. "sharesDefinitionWith" : [ {
  7155. "identifier" : "sharesDefinitionWith",
  7156. "language" : "undefined",
  7157. "value" : "http://www.w3.org/ns/prov#Usage",
  7158. "type" : "iri"
  7159. } ],
  7160. "inverse" : [ {
  7161. "identifier" : "inverse",
  7162. "language" : "undefined",
  7163. "value" : "wasUsedInDerivation",
  7164. "type" : "label"
  7165. } ],
  7166. "component" : [ {
  7167. "identifier" : "component",
  7168. "language" : "undefined",
  7169. "value" : "derivations",
  7170. "type" : "label"
  7171. } ],
  7172. "isDefinedBy" : [ {
  7173. "identifier" : "isDefinedBy",
  7174. "language" : "undefined",
  7175. "value" : "http://www.w3.org/ns/prov-o#",
  7176. "type" : "iri"
  7177. } ],
  7178. "category" : [ {
  7179. "identifier" : "category",
  7180. "language" : "undefined",
  7181. "value" : "qualified",
  7182. "type" : "label"
  7183. } ]
  7184. },
  7185. "label" : {
  7186. "IRI-based" : "hadUsage",
  7187. "undefined" : "hadUsage"
  7188. },
  7189. "domain" : "57",
  7190. "comment" : {
  7191. "en" : "The _optional_ Usage involved in an Entity's Derivation."
  7192. },
  7193. "attributes" : [ "object", "external" ],
  7194. "id" : "292"
  7195. }, {
  7196. "iri" : "http://www.w3.org/ns/prov#agent",
  7197. "baseIri" : "http://www.w3.org/ns/prov",
  7198. "range" : "9",
  7199. "annotations" : {
  7200. "editorialNote" : [ {
  7201. "identifier" : "editorialNote",
  7202. "language" : "en",
  7203. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  7204. "type" : "label"
  7205. } ],
  7206. "inverse" : [ {
  7207. "identifier" : "inverse",
  7208. "language" : "undefined",
  7209. "value" : "agentOfInfluence",
  7210. "type" : "label"
  7211. } ],
  7212. "isDefinedBy" : [ {
  7213. "identifier" : "isDefinedBy",
  7214. "language" : "undefined",
  7215. "value" : "http://www.w3.org/ns/prov-o#",
  7216. "type" : "iri"
  7217. } ],
  7218. "editorsDefinition" : [ {
  7219. "identifier" : "editorsDefinition",
  7220. "language" : "en",
  7221. "value" : "The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  7222. "type" : "label"
  7223. } ],
  7224. "category" : [ {
  7225. "identifier" : "category",
  7226. "language" : "undefined",
  7227. "value" : "qualified",
  7228. "type" : "label"
  7229. } ]
  7230. },
  7231. "label" : {
  7232. "IRI-based" : "agent",
  7233. "undefined" : "agent"
  7234. },
  7235. "superproperty" : [ "295" ],
  7236. "domain" : "52",
  7237. "attributes" : [ "object", "external" ],
  7238. "id" : "294"
  7239. }, {
  7240. "range" : "15",
  7241. "domain" : "121",
  7242. "attributes" : [ "object", "anonymous" ],
  7243. "id" : "296"
  7244. }, {
  7245. "range" : "15",
  7246. "domain" : "120",
  7247. "attributes" : [ "object", "anonymous" ],
  7248. "id" : "297"
  7249. }, {
  7250. "iri" : "http://purl.org/net/p-plan#isInputVarOf",
  7251. "baseIri" : "http://purl.org/net/p-plan",
  7252. "range" : "18",
  7253. "label" : {
  7254. "IRI-based" : "isInputVarOf"
  7255. },
  7256. "domain" : "18",
  7257. "subproperty" : [ "97", "247", "279", "209", "298", "299" ],
  7258. "attributes" : [ "object", "external" ],
  7259. "id" : "98"
  7260. }, {
  7261. "range" : "57",
  7262. "domain" : "287",
  7263. "attributes" : [ "object", "anonymous" ],
  7264. "id" : "300"
  7265. }, {
  7266. "range" : "127",
  7267. "domain" : "268",
  7268. "attributes" : [ "object", "anonymous" ],
  7269. "id" : "301"
  7270. }, {
  7271. "range" : "57",
  7272. "domain" : "191",
  7273. "attributes" : [ "object", "anonymous" ],
  7274. "id" : "302"
  7275. }, {
  7276. "range" : "57",
  7277. "domain" : "293",
  7278. "attributes" : [ "object", "anonymous" ],
  7279. "id" : "303"
  7280. }, {
  7281. "range" : "179",
  7282. "domain" : "147",
  7283. "attributes" : [ "object", "anonymous" ],
  7284. "id" : "304"
  7285. }, {
  7286. "range" : "173",
  7287. "domain" : "306",
  7288. "attributes" : [ "object", "anonymous" ],
  7289. "id" : "305"
  7290. }, {
  7291. "range" : "127",
  7292. "domain" : "126",
  7293. "attributes" : [ "object", "anonymous" ],
  7294. "id" : "308"
  7295. }, {
  7296. "iri" : "http://www.w3.org/ns/prov#alternateOf",
  7297. "baseIri" : "http://www.w3.org/ns/prov",
  7298. "range" : "30",
  7299. "annotations" : {
  7300. "inverse" : [ {
  7301. "identifier" : "inverse",
  7302. "language" : "undefined",
  7303. "value" : "alternateOf",
  7304. "type" : "label"
  7305. } ],
  7306. "component" : [ {
  7307. "identifier" : "component",
  7308. "language" : "undefined",
  7309. "value" : "alternate",
  7310. "type" : "label"
  7311. } ],
  7312. "isDefinedBy" : [ {
  7313. "identifier" : "isDefinedBy",
  7314. "language" : "undefined",
  7315. "value" : "http://www.w3.org/ns/prov-o#",
  7316. "type" : "iri"
  7317. } ],
  7318. "dm" : [ {
  7319. "identifier" : "dm",
  7320. "language" : "undefined",
  7321. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate",
  7322. "type" : "label"
  7323. } ],
  7324. "definition" : [ {
  7325. "identifier" : "definition",
  7326. "language" : "en",
  7327. "value" : "Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.",
  7328. "type" : "label"
  7329. } ],
  7330. "category" : [ {
  7331. "identifier" : "category",
  7332. "language" : "undefined",
  7333. "value" : "expanded",
  7334. "type" : "label"
  7335. } ],
  7336. "constraints" : [ {
  7337. "identifier" : "constraints",
  7338. "language" : "undefined",
  7339. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  7340. "type" : "label"
  7341. } ],
  7342. "n" : [ {
  7343. "identifier" : "n",
  7344. "language" : "undefined",
  7345. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate",
  7346. "type" : "label"
  7347. } ],
  7348. "seeAlso" : [ {
  7349. "identifier" : "seeAlso",
  7350. "language" : "undefined",
  7351. "value" : "http://www.w3.org/ns/prov#specializationOf",
  7352. "type" : "iri"
  7353. } ]
  7354. },
  7355. "label" : {
  7356. "IRI-based" : "alternateOf",
  7357. "undefined" : "alternateOf"
  7358. },
  7359. "domain" : "30",
  7360. "subproperty" : [ "29" ],
  7361. "attributes" : [ "object", "external" ],
  7362. "id" : "32"
  7363. }, {
  7364. "range" : "127",
  7365. "domain" : "289",
  7366. "attributes" : [ "object", "anonymous" ],
  7367. "id" : "309"
  7368. }, {
  7369. "iri" : "http://www.w3.org/ns/prov#qualifiedGeneration",
  7370. "baseIri" : "http://www.w3.org/ns/prov",
  7371. "range" : "262",
  7372. "annotations" : {
  7373. "sharesDefinitionWith" : [ {
  7374. "identifier" : "sharesDefinitionWith",
  7375. "language" : "undefined",
  7376. "value" : "http://www.w3.org/ns/prov#Generation",
  7377. "type" : "iri"
  7378. } ],
  7379. "inverse" : [ {
  7380. "identifier" : "inverse",
  7381. "language" : "undefined",
  7382. "value" : "qualifiedGenerationOf",
  7383. "type" : "label"
  7384. } ],
  7385. "component" : [ {
  7386. "identifier" : "component",
  7387. "language" : "undefined",
  7388. "value" : "entities-activities",
  7389. "type" : "label"
  7390. } ],
  7391. "isDefinedBy" : [ {
  7392. "identifier" : "isDefinedBy",
  7393. "language" : "undefined",
  7394. "value" : "http://www.w3.org/ns/prov-o#",
  7395. "type" : "iri"
  7396. } ],
  7397. "unqualifiedForm" : [ {
  7398. "identifier" : "unqualifiedForm",
  7399. "language" : "undefined",
  7400. "value" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  7401. "type" : "iri"
  7402. } ],
  7403. "category" : [ {
  7404. "identifier" : "category",
  7405. "language" : "undefined",
  7406. "value" : "qualified",
  7407. "type" : "label"
  7408. } ]
  7409. },
  7410. "label" : {
  7411. "IRI-based" : "qualifiedGeneration",
  7412. "undefined" : "qualifiedGeneration"
  7413. },
  7414. "superproperty" : [ "80" ],
  7415. "domain" : "30",
  7416. "comment" : {
  7417. "en" : "If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation; prov:entity :e; :foo :bar ]."
  7418. },
  7419. "attributes" : [ "object", "external" ],
  7420. "id" : "310"
  7421. }, {
  7422. "range" : "173",
  7423. "domain" : "138",
  7424. "attributes" : [ "object", "anonymous" ],
  7425. "id" : "311"
  7426. }, {
  7427. "range" : "173",
  7428. "domain" : "133",
  7429. "attributes" : [ "object", "anonymous" ],
  7430. "id" : "312"
  7431. }, {
  7432. "range" : "173",
  7433. "domain" : "314",
  7434. "attributes" : [ "object", "anonymous" ],
  7435. "id" : "313"
  7436. }, {
  7437. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isAnonymisedByStep",
  7438. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7439. "range" : "18",
  7440. "label" : {
  7441. "IRI-based" : "isAnonymisedByStep",
  7442. "undefined" : "isAnonymisedByStep"
  7443. },
  7444. "superproperty" : [ "117" ],
  7445. "domain" : "18",
  7446. "attributes" : [ "object" ],
  7447. "id" : "315"
  7448. }, {
  7449. "range" : "9",
  7450. "domain" : "34",
  7451. "attributes" : [ "object", "anonymous" ],
  7452. "id" : "316"
  7453. }, {
  7454. "range" : "9",
  7455. "domain" : "318",
  7456. "attributes" : [ "object", "anonymous" ],
  7457. "id" : "317"
  7458. }, {
  7459. "range" : "173",
  7460. "domain" : "85",
  7461. "attributes" : [ "object", "anonymous" ],
  7462. "id" : "319"
  7463. }, {
  7464. "range" : "120",
  7465. "domain" : "321",
  7466. "attributes" : [ "object", "anonymous" ],
  7467. "id" : "320"
  7468. }, {
  7469. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#hasLegalBasis",
  7470. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7471. "range" : "189",
  7472. "label" : {
  7473. "IRI-based" : "hasLegalBasis",
  7474. "undefined" : "hasLegalBasis"
  7475. },
  7476. "domain" : "220",
  7477. "attributes" : [ "object" ],
  7478. "id" : "322"
  7479. }, {
  7480. "range" : "238",
  7481. "domain" : "55",
  7482. "attributes" : [ "object", "anonymous" ],
  7483. "id" : "323"
  7484. }, {
  7485. "range" : "238",
  7486. "domain" : "52",
  7487. "attributes" : [ "object", "anonymous" ],
  7488. "id" : "324"
  7489. }, {
  7490. "range" : "39",
  7491. "domain" : "239",
  7492. "attributes" : [ "object", "anonymous" ],
  7493. "id" : "325"
  7494. }, {
  7495. "range" : "238",
  7496. "domain" : "181",
  7497. "attributes" : [ "object", "anonymous" ],
  7498. "id" : "326"
  7499. }, {
  7500. "range" : "30",
  7501. "domain" : "103",
  7502. "attributes" : [ "object", "anonymous" ],
  7503. "id" : "327"
  7504. }, {
  7505. "range" : "30",
  7506. "domain" : "226",
  7507. "attributes" : [ "object", "anonymous" ],
  7508. "id" : "328"
  7509. }, {
  7510. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isDataGeneratedBy",
  7511. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7512. "range" : "18",
  7513. "label" : {
  7514. "IRI-based" : "isDataGeneratedBy",
  7515. "undefined" : "isDataGeneratedByStep"
  7516. },
  7517. "superproperty" : [ "19" ],
  7518. "domain" : "18",
  7519. "subproperty" : [ "315" ],
  7520. "attributes" : [ "object" ],
  7521. "id" : "117"
  7522. }, {
  7523. "range" : "30",
  7524. "domain" : "67",
  7525. "attributes" : [ "object", "anonymous" ],
  7526. "id" : "329"
  7527. }, {
  7528. "iri" : "http://www.w3.org/ns/prov#activity",
  7529. "baseIri" : "http://www.w3.org/ns/prov",
  7530. "range" : "76",
  7531. "annotations" : {
  7532. "inverse" : [ {
  7533. "identifier" : "inverse",
  7534. "language" : "undefined",
  7535. "value" : "activityOfInfluence",
  7536. "type" : "label"
  7537. } ],
  7538. "editorialNote" : [ {
  7539. "identifier" : "editorialNote",
  7540. "language" : "en",
  7541. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  7542. "type" : "label"
  7543. } ],
  7544. "isDefinedBy" : [ {
  7545. "identifier" : "isDefinedBy",
  7546. "language" : "undefined",
  7547. "value" : "http://www.w3.org/ns/prov-o#",
  7548. "type" : "iri"
  7549. } ],
  7550. "editorsDefinition" : [ {
  7551. "identifier" : "editorsDefinition",
  7552. "language" : "undefined",
  7553. "value" : "The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  7554. "type" : "label"
  7555. } ],
  7556. "category" : [ {
  7557. "identifier" : "category",
  7558. "language" : "undefined",
  7559. "value" : "qualified",
  7560. "type" : "label"
  7561. } ]
  7562. },
  7563. "label" : {
  7564. "IRI-based" : "activity",
  7565. "undefined" : "activity"
  7566. },
  7567. "superproperty" : [ "295" ],
  7568. "domain" : "181",
  7569. "attributes" : [ "object", "external" ],
  7570. "id" : "330"
  7571. }, {
  7572. "iri" : "http://www.w3.org/ns/prov#hadMember",
  7573. "baseIri" : "http://www.w3.org/ns/prov",
  7574. "range" : "30",
  7575. "annotations" : {
  7576. "sharesDefinitionWith" : [ {
  7577. "identifier" : "sharesDefinitionWith",
  7578. "language" : "undefined",
  7579. "value" : "http://www.w3.org/ns/prov#Collection",
  7580. "type" : "iri"
  7581. } ],
  7582. "inverse" : [ {
  7583. "identifier" : "inverse",
  7584. "language" : "undefined",
  7585. "value" : "wasMemberOf",
  7586. "type" : "label"
  7587. } ],
  7588. "component" : [ {
  7589. "identifier" : "component",
  7590. "language" : "undefined",
  7591. "value" : "expanded",
  7592. "type" : "label"
  7593. } ],
  7594. "isDefinedBy" : [ {
  7595. "identifier" : "isDefinedBy",
  7596. "language" : "undefined",
  7597. "value" : "http://www.w3.org/ns/prov-o#",
  7598. "type" : "iri"
  7599. } ],
  7600. "category" : [ {
  7601. "identifier" : "category",
  7602. "language" : "undefined",
  7603. "value" : "expanded",
  7604. "type" : "label"
  7605. } ]
  7606. },
  7607. "label" : {
  7608. "IRI-based" : "hadMember",
  7609. "undefined" : "hadMember"
  7610. },
  7611. "superproperty" : [ "116" ],
  7612. "domain" : "67",
  7613. "attributes" : [ "object", "external" ],
  7614. "id" : "331"
  7615. }, {
  7616. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#collectsConsentFromAgent",
  7617. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7618. "range" : "9",
  7619. "label" : {
  7620. "IRI-based" : "collectsConsentFromAgent"
  7621. },
  7622. "superproperty" : [ "125" ],
  7623. "domain" : "82",
  7624. "attributes" : [ "object" ],
  7625. "id" : "332"
  7626. }, {
  7627. "range" : "110",
  7628. "domain" : "47",
  7629. "attributes" : [ "object", "anonymous" ],
  7630. "id" : "333"
  7631. }, {
  7632. "range" : "306",
  7633. "domain" : "82",
  7634. "attributes" : [ "object", "anonymous" ],
  7635. "id" : "334"
  7636. }, {
  7637. "range" : "87",
  7638. "domain" : "86",
  7639. "attributes" : [ "object", "anonymous" ],
  7640. "id" : "335"
  7641. }, {
  7642. "range" : "337",
  7643. "domain" : "28",
  7644. "attributes" : [ "object", "anonymous" ],
  7645. "id" : "336"
  7646. }, {
  7647. "range" : "85",
  7648. "domain" : "180",
  7649. "attributes" : [ "object", "anonymous" ],
  7650. "id" : "338"
  7651. }, {
  7652. "range" : "85",
  7653. "domain" : "179",
  7654. "attributes" : [ "object", "anonymous" ],
  7655. "id" : "339"
  7656. }, {
  7657. "range" : "306",
  7658. "domain" : "87",
  7659. "attributes" : [ "object", "anonymous" ],
  7660. "id" : "340"
  7661. }, {
  7662. "range" : "306",
  7663. "domain" : "129",
  7664. "attributes" : [ "object", "anonymous" ],
  7665. "id" : "341"
  7666. }, {
  7667. "range" : "85",
  7668. "domain" : "178",
  7669. "attributes" : [ "object", "anonymous" ],
  7670. "id" : "342"
  7671. }, {
  7672. "range" : "85",
  7673. "domain" : "84",
  7674. "attributes" : [ "object", "anonymous" ],
  7675. "id" : "343"
  7676. }, {
  7677. "iri" : "http://www.w3.org/ns/prov#qualifiedInfluence",
  7678. "baseIri" : "http://www.w3.org/ns/prov",
  7679. "range" : "238",
  7680. "annotations" : {
  7681. "sharesDefinitionWith" : [ {
  7682. "identifier" : "sharesDefinitionWith",
  7683. "language" : "undefined",
  7684. "value" : "http://www.w3.org/ns/prov#Influence",
  7685. "type" : "iri"
  7686. } ],
  7687. "inverse" : [ {
  7688. "identifier" : "inverse",
  7689. "language" : "undefined",
  7690. "value" : "qualifiedInfluenceOf",
  7691. "type" : "label"
  7692. } ],
  7693. "component" : [ {
  7694. "identifier" : "component",
  7695. "language" : "undefined",
  7696. "value" : "derivations",
  7697. "type" : "label"
  7698. } ],
  7699. "isDefinedBy" : [ {
  7700. "identifier" : "isDefinedBy",
  7701. "language" : "undefined",
  7702. "value" : "http://www.w3.org/ns/prov-o#",
  7703. "type" : "iri"
  7704. } ],
  7705. "unqualifiedForm" : [ {
  7706. "identifier" : "unqualifiedForm",
  7707. "language" : "undefined",
  7708. "value" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  7709. "type" : "iri"
  7710. } ],
  7711. "category" : [ {
  7712. "identifier" : "category",
  7713. "language" : "undefined",
  7714. "value" : "qualified",
  7715. "type" : "label"
  7716. } ]
  7717. },
  7718. "label" : {
  7719. "IRI-based" : "qualifiedInfluence",
  7720. "undefined" : "qualifiedInfluence"
  7721. },
  7722. "domain" : "241",
  7723. "subproperty" : [ "254", "221", "344", "213", "102", "345", "346", "310", "78", "229", "347", "190", "348" ],
  7724. "comment" : {
  7725. "en" : "Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable."
  7726. },
  7727. "attributes" : [ "object", "external" ],
  7728. "id" : "80"
  7729. }, {
  7730. "range" : "85",
  7731. "domain" : "177",
  7732. "attributes" : [ "object", "anonymous" ],
  7733. "id" : "349"
  7734. }, {
  7735. "range" : "85",
  7736. "domain" : "175",
  7737. "attributes" : [ "object", "anonymous" ],
  7738. "id" : "350"
  7739. }, {
  7740. "range" : "85",
  7741. "domain" : "68",
  7742. "attributes" : [ "object", "anonymous" ],
  7743. "id" : "351"
  7744. }, {
  7745. "range" : "85",
  7746. "domain" : "176",
  7747. "attributes" : [ "object", "anonymous" ],
  7748. "id" : "352"
  7749. }, {
  7750. "range" : "85",
  7751. "domain" : "148",
  7752. "attributes" : [ "object", "anonymous" ],
  7753. "id" : "353"
  7754. }, {
  7755. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isConsentAgreementTemplateForStep",
  7756. "inverse" : "92",
  7757. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7758. "range" : "18",
  7759. "label" : {
  7760. "IRI-based" : "isConsentAgreementTemplateForStep",
  7761. "undefined" : "isConsentAgreementTemplateForStep"
  7762. },
  7763. "superproperty" : [ "98" ],
  7764. "domain" : "18",
  7765. "attributes" : [ "object" ],
  7766. "id" : "298"
  7767. }, {
  7768. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#usesConsentAgreement",
  7769. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7770. "range" : "1",
  7771. "label" : {
  7772. "IRI-based" : "usesConsentAgreement",
  7773. "undefined" : "uses Consent Agreement"
  7774. },
  7775. "superproperty" : [ "83" ],
  7776. "domain" : "306",
  7777. "comment" : {
  7778. "undefined" : "uses Consent Agreement entity"
  7779. },
  7780. "attributes" : [ "object" ],
  7781. "id" : "96"
  7782. }, {
  7783. "iri" : "http://www.w3.org/ns/prov#generatedAtTime",
  7784. "baseIri" : "http://www.w3.org/ns/prov",
  7785. "range" : "240",
  7786. "annotations" : {
  7787. "editorialNote" : [ {
  7788. "identifier" : "editorialNote",
  7789. "language" : "en",
  7790. "value" : "It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime.",
  7791. "type" : "label"
  7792. } ],
  7793. "component" : [ {
  7794. "identifier" : "component",
  7795. "language" : "undefined",
  7796. "value" : "entities-activities",
  7797. "type" : "label"
  7798. } ],
  7799. "isDefinedBy" : [ {
  7800. "identifier" : "isDefinedBy",
  7801. "language" : "undefined",
  7802. "value" : "http://www.w3.org/ns/prov-o#",
  7803. "type" : "iri"
  7804. } ],
  7805. "category" : [ {
  7806. "identifier" : "category",
  7807. "language" : "undefined",
  7808. "value" : "expanded",
  7809. "type" : "label"
  7810. } ],
  7811. "qualifiedForm" : [ {
  7812. "identifier" : "qualifiedForm",
  7813. "language" : "undefined",
  7814. "value" : "http://www.w3.org/ns/prov#Generation",
  7815. "type" : "iri"
  7816. }, {
  7817. "identifier" : "qualifiedForm",
  7818. "language" : "undefined",
  7819. "value" : "http://www.w3.org/ns/prov#atTime",
  7820. "type" : "iri"
  7821. } ]
  7822. },
  7823. "label" : {
  7824. "IRI-based" : "generatedAtTime",
  7825. "undefined" : "generatedAtTime"
  7826. },
  7827. "domain" : "30",
  7828. "comment" : {
  7829. "en" : "The time at which an entity was completely created and is available for use."
  7830. },
  7831. "attributes" : [ "datatype", "external" ],
  7832. "id" : "354"
  7833. }, {
  7834. "range" : "39",
  7835. "domain" : "38",
  7836. "attributes" : [ "object", "anonymous" ],
  7837. "id" : "355"
  7838. }, {
  7839. "range" : "39",
  7840. "domain" : "101",
  7841. "attributes" : [ "object", "anonymous" ],
  7842. "id" : "356"
  7843. }, {
  7844. "range" : "52",
  7845. "domain" : "255",
  7846. "attributes" : [ "object", "anonymous" ],
  7847. "id" : "357"
  7848. }, {
  7849. "iri" : "http://www.w3.org/ns/prov#value",
  7850. "baseIri" : "http://www.w3.org/ns/prov",
  7851. "range" : "230",
  7852. "annotations" : {
  7853. "editorialNote" : [ {
  7854. "identifier" : "editorialNote",
  7855. "language" : "undefined",
  7856. "value" : "The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue",
  7857. "type" : "label"
  7858. }, {
  7859. "identifier" : "editorialNote",
  7860. "language" : "en",
  7861. "value" : "This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values').",
  7862. "type" : "label"
  7863. } ],
  7864. "component" : [ {
  7865. "identifier" : "component",
  7866. "language" : "undefined",
  7867. "value" : "entities-activities",
  7868. "type" : "label"
  7869. } ],
  7870. "isDefinedBy" : [ {
  7871. "identifier" : "isDefinedBy",
  7872. "language" : "undefined",
  7873. "value" : "http://www.w3.org/ns/prov-o#",
  7874. "type" : "iri"
  7875. } ],
  7876. "dm" : [ {
  7877. "identifier" : "dm",
  7878. "language" : "undefined",
  7879. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value",
  7880. "type" : "label"
  7881. } ],
  7882. "definition" : [ {
  7883. "identifier" : "definition",
  7884. "language" : "en",
  7885. "value" : "Provides a value that is a direct representation of an entity.",
  7886. "type" : "label"
  7887. } ],
  7888. "category" : [ {
  7889. "identifier" : "category",
  7890. "language" : "undefined",
  7891. "value" : "expanded",
  7892. "type" : "label"
  7893. } ]
  7894. },
  7895. "label" : {
  7896. "IRI-based" : "value",
  7897. "undefined" : "value"
  7898. },
  7899. "domain" : "30",
  7900. "attributes" : [ "datatype", "external" ],
  7901. "id" : "358"
  7902. }, {
  7903. "iri" : "http://www.w3.org/ns/prov#invalidated",
  7904. "inverse" : "115",
  7905. "baseIri" : "http://www.w3.org/ns/prov",
  7906. "range" : "30",
  7907. "annotations" : {
  7908. "inverse" : [ {
  7909. "identifier" : "inverse",
  7910. "language" : "undefined",
  7911. "value" : "wasInvalidatedBy",
  7912. "type" : "label"
  7913. } ],
  7914. "editorialNote" : [ {
  7915. "identifier" : "editorialNote",
  7916. "language" : "en",
  7917. "value" : "prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.",
  7918. "type" : "label"
  7919. } ],
  7920. "sharesDefinitionWith" : [ {
  7921. "identifier" : "sharesDefinitionWith",
  7922. "language" : "undefined",
  7923. "value" : "http://www.w3.org/ns/prov#Invalidation",
  7924. "type" : "iri"
  7925. } ],
  7926. "component" : [ {
  7927. "identifier" : "component",
  7928. "language" : "undefined",
  7929. "value" : "entities-activities",
  7930. "type" : "label"
  7931. } ],
  7932. "isDefinedBy" : [ {
  7933. "identifier" : "isDefinedBy",
  7934. "language" : "undefined",
  7935. "value" : "http://www.w3.org/ns/prov-o#",
  7936. "type" : "iri"
  7937. } ],
  7938. "category" : [ {
  7939. "identifier" : "category",
  7940. "language" : "undefined",
  7941. "value" : "expanded",
  7942. "type" : "label"
  7943. } ]
  7944. },
  7945. "label" : {
  7946. "IRI-based" : "invalidated",
  7947. "undefined" : "invalidated"
  7948. },
  7949. "superproperty" : [ "360" ],
  7950. "domain" : "76",
  7951. "attributes" : [ "object", "external" ],
  7952. "id" : "359"
  7953. }, {
  7954. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isJustificationForDataStep",
  7955. "inverse" : "93",
  7956. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7957. "range" : "18",
  7958. "label" : {
  7959. "IRI-based" : "isJustificationForDataStep",
  7960. "undefined" : "isJustificationForDataStep"
  7961. },
  7962. "superproperty" : [ "98" ],
  7963. "domain" : "18",
  7964. "attributes" : [ "object" ],
  7965. "id" : "299"
  7966. }, {
  7967. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#generatesAnonymisedData",
  7968. "inverse" : "315",
  7969. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7970. "range" : "38",
  7971. "label" : {
  7972. "IRI-based" : "generatesAnonymisedData",
  7973. "undefined" : "generatesAnonymisedData"
  7974. },
  7975. "superproperty" : [ "270" ],
  7976. "domain" : "150",
  7977. "comment" : {
  7978. "undefined" : "Indicates that an DataAnonymisationStep transforms a Data object into AnonymisedData"
  7979. },
  7980. "attributes" : [ "object" ],
  7981. "id" : "361"
  7982. }, {
  7983. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#generatesConsentAgreement",
  7984. "inverse" : "118",
  7985. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  7986. "range" : "1",
  7987. "label" : {
  7988. "IRI-based" : "generatesConsentAgreement",
  7989. "undefined" : "generatesConsentAgreement"
  7990. },
  7991. "superproperty" : [ "130" ],
  7992. "domain" : "306",
  7993. "comment" : {
  7994. "undefined" : "Generates ConsentAgreement which is a the consent granted by the user based on the ConsentAgreementTemplate through a ConsentAcquisitionStep"
  7995. },
  7996. "attributes" : [ "object" ],
  7997. "id" : "269"
  7998. }, {
  7999. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#involvesAgent",
  8000. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8001. "range" : "9",
  8002. "label" : {
  8003. "IRI-based" : "involvesAgent"
  8004. },
  8005. "domain" : "232",
  8006. "subproperty" : [ "123", "362", "363", "332" ],
  8007. "attributes" : [ "object" ],
  8008. "id" : "125"
  8009. }, {
  8010. "iri" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  8011. "baseIri" : "http://www.w3.org/ns/prov",
  8012. "range" : "30",
  8013. "annotations" : {
  8014. "inverse" : [ {
  8015. "identifier" : "inverse",
  8016. "language" : "undefined",
  8017. "value" : "hadDerivation",
  8018. "type" : "label"
  8019. } ],
  8020. "component" : [ {
  8021. "identifier" : "component",
  8022. "language" : "undefined",
  8023. "value" : "derivations",
  8024. "type" : "label"
  8025. } ],
  8026. "isDefinedBy" : [ {
  8027. "identifier" : "isDefinedBy",
  8028. "language" : "undefined",
  8029. "value" : "http://www.w3.org/ns/prov-o#",
  8030. "type" : "iri"
  8031. } ],
  8032. "definition" : [ {
  8033. "identifier" : "definition",
  8034. "language" : "en",
  8035. "value" : "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.",
  8036. "type" : "label"
  8037. } ],
  8038. "category" : [ {
  8039. "identifier" : "category",
  8040. "language" : "undefined",
  8041. "value" : "starting-point",
  8042. "type" : "label"
  8043. } ],
  8044. "qualifiedForm" : [ {
  8045. "identifier" : "qualifiedForm",
  8046. "language" : "undefined",
  8047. "value" : "http://www.w3.org/ns/prov#qualifiedDerivation",
  8048. "type" : "iri"
  8049. }, {
  8050. "identifier" : "qualifiedForm",
  8051. "language" : "undefined",
  8052. "value" : "http://www.w3.org/ns/prov#Derivation",
  8053. "type" : "iri"
  8054. } ]
  8055. },
  8056. "label" : {
  8057. "IRI-based" : "wasDerivedFrom",
  8058. "undefined" : "wasDerivedFrom"
  8059. },
  8060. "superproperty" : [ "116" ],
  8061. "domain" : "30",
  8062. "subproperty" : [ "364", "236", "288" ],
  8063. "comment" : {
  8064. "en" : "The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable."
  8065. },
  8066. "attributes" : [ "object", "external" ],
  8067. "id" : "237"
  8068. }, {
  8069. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#collectedConsentFromAgent",
  8070. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8071. "range" : "9",
  8072. "label" : {
  8073. "IRI-based" : "collectedConsentFromAgent"
  8074. },
  8075. "superproperty" : [ "125" ],
  8076. "domain" : "122",
  8077. "attributes" : [ "object" ],
  8078. "id" : "362"
  8079. }, {
  8080. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#usesData",
  8081. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8082. "range" : "4",
  8083. "label" : {
  8084. "IRI-based" : "usesData",
  8085. "undefined" : "usesData"
  8086. },
  8087. "superproperty" : [ "83" ],
  8088. "domain" : "85",
  8089. "comment" : {
  8090. "undefined" : "links step with data used"
  8091. },
  8092. "attributes" : [ "object" ],
  8093. "id" : "94"
  8094. }, {
  8095. "iri" : "http://www.w3.org/ns/prov#qualifiedStart",
  8096. "baseIri" : "http://www.w3.org/ns/prov",
  8097. "range" : "61",
  8098. "annotations" : {
  8099. "inverse" : [ {
  8100. "identifier" : "inverse",
  8101. "language" : "undefined",
  8102. "value" : "qualifiedStartOf",
  8103. "type" : "label"
  8104. } ],
  8105. "sharesDefinitionWith" : [ {
  8106. "identifier" : "sharesDefinitionWith",
  8107. "language" : "undefined",
  8108. "value" : "http://www.w3.org/ns/prov#Start",
  8109. "type" : "iri"
  8110. } ],
  8111. "component" : [ {
  8112. "identifier" : "component",
  8113. "language" : "undefined",
  8114. "value" : "entities-activities",
  8115. "type" : "label"
  8116. } ],
  8117. "isDefinedBy" : [ {
  8118. "identifier" : "isDefinedBy",
  8119. "language" : "undefined",
  8120. "value" : "http://www.w3.org/ns/prov-o#",
  8121. "type" : "iri"
  8122. } ],
  8123. "unqualifiedForm" : [ {
  8124. "identifier" : "unqualifiedForm",
  8125. "language" : "undefined",
  8126. "value" : "http://www.w3.org/ns/prov#wasStartedBy",
  8127. "type" : "iri"
  8128. } ],
  8129. "category" : [ {
  8130. "identifier" : "category",
  8131. "language" : "undefined",
  8132. "value" : "qualified",
  8133. "type" : "label"
  8134. } ]
  8135. },
  8136. "label" : {
  8137. "IRI-based" : "qualifiedStart",
  8138. "undefined" : "qualifiedStart"
  8139. },
  8140. "superproperty" : [ "80" ],
  8141. "domain" : "76",
  8142. "comment" : {
  8143. "en" : "If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start; prov:entity :e1; :foo :bar ]."
  8144. },
  8145. "attributes" : [ "object", "external" ],
  8146. "id" : "345"
  8147. }, {
  8148. "iri" : "http://www.w3.org/ns/prov#qualifiedQuotation",
  8149. "baseIri" : "http://www.w3.org/ns/prov",
  8150. "range" : "287",
  8151. "annotations" : {
  8152. "sharesDefinitionWith" : [ {
  8153. "identifier" : "sharesDefinitionWith",
  8154. "language" : "undefined",
  8155. "value" : "http://www.w3.org/ns/prov#Quotation",
  8156. "type" : "iri"
  8157. } ],
  8158. "inverse" : [ {
  8159. "identifier" : "inverse",
  8160. "language" : "undefined",
  8161. "value" : "qualifiedQuotationOf",
  8162. "type" : "label"
  8163. } ],
  8164. "component" : [ {
  8165. "identifier" : "component",
  8166. "language" : "undefined",
  8167. "value" : "derivations",
  8168. "type" : "label"
  8169. } ],
  8170. "isDefinedBy" : [ {
  8171. "identifier" : "isDefinedBy",
  8172. "language" : "undefined",
  8173. "value" : "http://www.w3.org/ns/prov-o#",
  8174. "type" : "iri"
  8175. } ],
  8176. "unqualifiedForm" : [ {
  8177. "identifier" : "unqualifiedForm",
  8178. "language" : "undefined",
  8179. "value" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  8180. "type" : "iri"
  8181. } ],
  8182. "category" : [ {
  8183. "identifier" : "category",
  8184. "language" : "undefined",
  8185. "value" : "qualified",
  8186. "type" : "label"
  8187. } ]
  8188. },
  8189. "label" : {
  8190. "IRI-based" : "qualifiedQuotation",
  8191. "undefined" : "qualifiedQuotation"
  8192. },
  8193. "superproperty" : [ "80" ],
  8194. "domain" : "30",
  8195. "comment" : {
  8196. "en" : "If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ]."
  8197. },
  8198. "attributes" : [ "object", "external" ],
  8199. "id" : "346"
  8200. }, {
  8201. "iri" : "http://www.w3.org/ns/prov#hadPlan",
  8202. "baseIri" : "http://www.w3.org/ns/prov",
  8203. "range" : "226",
  8204. "annotations" : {
  8205. "sharesDefinitionWith" : [ {
  8206. "identifier" : "sharesDefinitionWith",
  8207. "language" : "undefined",
  8208. "value" : "http://www.w3.org/ns/prov#Plan",
  8209. "type" : "iri"
  8210. } ],
  8211. "inverse" : [ {
  8212. "identifier" : "inverse",
  8213. "language" : "undefined",
  8214. "value" : "wasPlanOf",
  8215. "type" : "label"
  8216. } ],
  8217. "component" : [ {
  8218. "identifier" : "component",
  8219. "language" : "undefined",
  8220. "value" : "agents-responsibility",
  8221. "type" : "label"
  8222. } ],
  8223. "isDefinedBy" : [ {
  8224. "identifier" : "isDefinedBy",
  8225. "language" : "undefined",
  8226. "value" : "http://www.w3.org/ns/prov-o#",
  8227. "type" : "iri"
  8228. } ],
  8229. "category" : [ {
  8230. "identifier" : "category",
  8231. "language" : "undefined",
  8232. "value" : "qualified",
  8233. "type" : "label"
  8234. } ]
  8235. },
  8236. "label" : {
  8237. "IRI-based" : "hadPlan",
  8238. "undefined" : "hadPlan"
  8239. },
  8240. "domain" : "89",
  8241. "comment" : {
  8242. "en" : "The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification."
  8243. },
  8244. "attributes" : [ "object", "external" ],
  8245. "id" : "365"
  8246. }, {
  8247. "iri" : "http://www.w3.org/ns/prov#qualifiedUsage",
  8248. "baseIri" : "http://www.w3.org/ns/prov",
  8249. "range" : "54",
  8250. "annotations" : {
  8251. "inverse" : [ {
  8252. "identifier" : "inverse",
  8253. "language" : "undefined",
  8254. "value" : "qualifiedUsingActivity",
  8255. "type" : "label"
  8256. } ],
  8257. "sharesDefinitionWith" : [ {
  8258. "identifier" : "sharesDefinitionWith",
  8259. "language" : "undefined",
  8260. "value" : "http://www.w3.org/ns/prov#Usage",
  8261. "type" : "iri"
  8262. } ],
  8263. "component" : [ {
  8264. "identifier" : "component",
  8265. "language" : "undefined",
  8266. "value" : "entities-activities",
  8267. "type" : "label"
  8268. } ],
  8269. "isDefinedBy" : [ {
  8270. "identifier" : "isDefinedBy",
  8271. "language" : "undefined",
  8272. "value" : "http://www.w3.org/ns/prov-o#",
  8273. "type" : "iri"
  8274. } ],
  8275. "unqualifiedForm" : [ {
  8276. "identifier" : "unqualifiedForm",
  8277. "language" : "undefined",
  8278. "value" : "http://www.w3.org/ns/prov#used",
  8279. "type" : "iri"
  8280. } ],
  8281. "category" : [ {
  8282. "identifier" : "category",
  8283. "language" : "undefined",
  8284. "value" : "qualified",
  8285. "type" : "label"
  8286. } ]
  8287. },
  8288. "label" : {
  8289. "IRI-based" : "qualifiedUsage",
  8290. "undefined" : "qualifiedUsage"
  8291. },
  8292. "superproperty" : [ "80" ],
  8293. "domain" : "76",
  8294. "comment" : {
  8295. "en" : "If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ]."
  8296. },
  8297. "attributes" : [ "object", "external" ],
  8298. "id" : "344"
  8299. }, {
  8300. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#wasSharedBy",
  8301. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8302. "range" : "18",
  8303. "label" : {
  8304. "IRI-based" : "wasSharedBy"
  8305. },
  8306. "superproperty" : [ "98" ],
  8307. "domain" : "18",
  8308. "attributes" : [ "object" ],
  8309. "id" : "279"
  8310. }, {
  8311. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#isJustifiedUsingConsentAgreement",
  8312. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8313. "range" : "1",
  8314. "label" : {
  8315. "IRI-based" : "isJustifiedUsingConsentAgreement",
  8316. "undefined" : "isJustifiedUsingConsentAgreement"
  8317. },
  8318. "superproperty" : [ "83" ],
  8319. "domain" : "85",
  8320. "comment" : {
  8321. "undefined" : "justifies use of data by step through specified consent agreement"
  8322. },
  8323. "attributes" : [ "object" ],
  8324. "id" : "93"
  8325. }, {
  8326. "iri" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  8327. "baseIri" : "http://www.w3.org/ns/prov",
  8328. "range" : "243",
  8329. "annotations" : {
  8330. "inverse" : [ {
  8331. "identifier" : "inverse",
  8332. "language" : "undefined",
  8333. "value" : "influenced",
  8334. "type" : "label"
  8335. } ],
  8336. "editorialNote" : [ {
  8337. "identifier" : "editorialNote",
  8338. "language" : "en",
  8339. "value" : "The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .\n\nSubproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.\n\nprov:wasInfluencedBy should not be used without also using one of its subproperties. \n",
  8340. "type" : "label"
  8341. } ],
  8342. "sharesDefinitionWith" : [ {
  8343. "identifier" : "sharesDefinitionWith",
  8344. "language" : "undefined",
  8345. "value" : "http://www.w3.org/ns/prov#Influence",
  8346. "type" : "iri"
  8347. } ],
  8348. "component" : [ {
  8349. "identifier" : "component",
  8350. "language" : "undefined",
  8351. "value" : "agents-responsibility",
  8352. "type" : "label"
  8353. } ],
  8354. "isDefinedBy" : [ {
  8355. "identifier" : "isDefinedBy",
  8356. "language" : "undefined",
  8357. "value" : "http://www.w3.org/ns/prov-o#",
  8358. "type" : "iri"
  8359. } ],
  8360. "category" : [ {
  8361. "identifier" : "category",
  8362. "language" : "undefined",
  8363. "value" : "qualified",
  8364. "type" : "label"
  8365. } ],
  8366. "qualifiedForm" : [ {
  8367. "identifier" : "qualifiedForm",
  8368. "language" : "undefined",
  8369. "value" : "http://www.w3.org/ns/prov#qualifiedInfluence",
  8370. "type" : "iri"
  8371. }, {
  8372. "identifier" : "qualifiedForm",
  8373. "language" : "undefined",
  8374. "value" : "http://www.w3.org/ns/prov#Influence",
  8375. "type" : "iri"
  8376. } ]
  8377. },
  8378. "label" : {
  8379. "IRI-based" : "wasInfluencedBy",
  8380. "undefined" : "wasInfluencedBy"
  8381. },
  8382. "domain" : "244",
  8383. "subproperty" : [ "366", "367", "237", "368", "291", "231", "222", "369", "370", "115", "331" ],
  8384. "comment" : {
  8385. "en" : "Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable.",
  8386. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  8387. },
  8388. "attributes" : [ "object", "external" ],
  8389. "id" : "116"
  8390. }, {
  8391. "iri" : "http://www.w3.org/ns/prov#wasAttributedTo",
  8392. "baseIri" : "http://www.w3.org/ns/prov",
  8393. "range" : "9",
  8394. "annotations" : {
  8395. "inverse" : [ {
  8396. "identifier" : "inverse",
  8397. "language" : "undefined",
  8398. "value" : "contributed",
  8399. "type" : "label"
  8400. } ],
  8401. "component" : [ {
  8402. "identifier" : "component",
  8403. "language" : "undefined",
  8404. "value" : "agents-responsibility",
  8405. "type" : "label"
  8406. } ],
  8407. "isDefinedBy" : [ {
  8408. "identifier" : "isDefinedBy",
  8409. "language" : "undefined",
  8410. "value" : "http://www.w3.org/ns/prov-o#",
  8411. "type" : "iri"
  8412. } ],
  8413. "definition" : [ {
  8414. "identifier" : "definition",
  8415. "language" : "en",
  8416. "value" : "Attribution is the ascribing of an entity to an agent.",
  8417. "type" : "label"
  8418. } ],
  8419. "category" : [ {
  8420. "identifier" : "category",
  8421. "language" : "undefined",
  8422. "value" : "starting-point",
  8423. "type" : "label"
  8424. } ],
  8425. "qualifiedForm" : [ {
  8426. "identifier" : "qualifiedForm",
  8427. "language" : "undefined",
  8428. "value" : "http://www.w3.org/ns/prov#Attribution",
  8429. "type" : "iri"
  8430. }, {
  8431. "identifier" : "qualifiedForm",
  8432. "language" : "undefined",
  8433. "value" : "http://www.w3.org/ns/prov#qualifiedAttribution",
  8434. "type" : "iri"
  8435. } ]
  8436. },
  8437. "label" : {
  8438. "IRI-based" : "wasAttributedTo",
  8439. "undefined" : "wasAttributedTo"
  8440. },
  8441. "superproperty" : [ "116" ],
  8442. "domain" : "30",
  8443. "comment" : {
  8444. "en" : "Attribution is the ascribing of an entity to an agent."
  8445. },
  8446. "attributes" : [ "object", "external" ],
  8447. "id" : "368"
  8448. }, {
  8449. "iri" : "http://www.w3.org/ns/prov#qualifiedPrimarySource",
  8450. "baseIri" : "http://www.w3.org/ns/prov",
  8451. "range" : "293",
  8452. "annotations" : {
  8453. "sharesDefinitionWith" : [ {
  8454. "identifier" : "sharesDefinitionWith",
  8455. "language" : "undefined",
  8456. "value" : "http://www.w3.org/ns/prov#PrimarySource",
  8457. "type" : "iri"
  8458. } ],
  8459. "inverse" : [ {
  8460. "identifier" : "inverse",
  8461. "language" : "undefined",
  8462. "value" : "qualifiedSourceOf",
  8463. "type" : "label"
  8464. } ],
  8465. "component" : [ {
  8466. "identifier" : "component",
  8467. "language" : "undefined",
  8468. "value" : "derivations",
  8469. "type" : "label"
  8470. } ],
  8471. "isDefinedBy" : [ {
  8472. "identifier" : "isDefinedBy",
  8473. "language" : "undefined",
  8474. "value" : "http://www.w3.org/ns/prov-o#",
  8475. "type" : "iri"
  8476. } ],
  8477. "unqualifiedForm" : [ {
  8478. "identifier" : "unqualifiedForm",
  8479. "language" : "undefined",
  8480. "value" : "http://www.w3.org/ns/prov#hadPrimarySource",
  8481. "type" : "iri"
  8482. } ],
  8483. "category" : [ {
  8484. "identifier" : "category",
  8485. "language" : "undefined",
  8486. "value" : "qualified",
  8487. "type" : "label"
  8488. } ]
  8489. },
  8490. "label" : {
  8491. "IRI-based" : "qualifiedPrimarySource",
  8492. "undefined" : "qualifiedPrimarySource"
  8493. },
  8494. "superproperty" : [ "80" ],
  8495. "domain" : "30",
  8496. "comment" : {
  8497. "en" : "If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ]."
  8498. },
  8499. "attributes" : [ "object", "external" ],
  8500. "id" : "348"
  8501. }, {
  8502. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#sharesDataWith",
  8503. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8504. "range" : "9",
  8505. "label" : {
  8506. "IRI-based" : "sharesDataWith",
  8507. "undefined" : "sharesDataWith"
  8508. },
  8509. "domain" : "68",
  8510. "attributes" : [ "object" ],
  8511. "id" : "371"
  8512. }, {
  8513. "iri" : "http://www.w3.org/ns/prov#hadActivity",
  8514. "baseIri" : "http://www.w3.org/ns/prov",
  8515. "range" : "76",
  8516. "annotations" : {
  8517. "editorialNote" : [ {
  8518. "identifier" : "editorialNote",
  8519. "language" : "en",
  8520. "value" : "The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL.",
  8521. "type" : "label"
  8522. } ],
  8523. "inverse" : [ {
  8524. "identifier" : "inverse",
  8525. "language" : "undefined",
  8526. "value" : "wasActivityOfInfluence",
  8527. "type" : "label"
  8528. } ],
  8529. "sharesDefinitionWith" : [ {
  8530. "identifier" : "sharesDefinitionWith",
  8531. "language" : "undefined",
  8532. "value" : "http://www.w3.org/ns/prov#Activity",
  8533. "type" : "iri"
  8534. } ],
  8535. "component" : [ {
  8536. "identifier" : "component",
  8537. "language" : "undefined",
  8538. "value" : "derivations",
  8539. "type" : "label"
  8540. } ],
  8541. "isDefinedBy" : [ {
  8542. "identifier" : "isDefinedBy",
  8543. "language" : "undefined",
  8544. "value" : "http://www.w3.org/ns/prov-o#",
  8545. "type" : "iri"
  8546. } ],
  8547. "category" : [ {
  8548. "identifier" : "category",
  8549. "language" : "undefined",
  8550. "value" : "qualified",
  8551. "type" : "label"
  8552. } ]
  8553. },
  8554. "label" : {
  8555. "IRI-based" : "hadActivity",
  8556. "undefined" : "hadActivity"
  8557. },
  8558. "domain" : "278",
  8559. "comment" : {
  8560. "en" : "The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead).",
  8561. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  8562. },
  8563. "attributes" : [ "object", "external" ],
  8564. "id" : "372"
  8565. }, {
  8566. "iri" : "http://www.w3.org/ns/prov#wasEndedBy",
  8567. "baseIri" : "http://www.w3.org/ns/prov",
  8568. "range" : "30",
  8569. "annotations" : {
  8570. "inverse" : [ {
  8571. "identifier" : "inverse",
  8572. "language" : "undefined",
  8573. "value" : "ended",
  8574. "type" : "label"
  8575. } ],
  8576. "component" : [ {
  8577. "identifier" : "component",
  8578. "language" : "undefined",
  8579. "value" : "entities-activities",
  8580. "type" : "label"
  8581. } ],
  8582. "isDefinedBy" : [ {
  8583. "identifier" : "isDefinedBy",
  8584. "language" : "undefined",
  8585. "value" : "http://www.w3.org/ns/prov-o#",
  8586. "type" : "iri"
  8587. } ],
  8588. "category" : [ {
  8589. "identifier" : "category",
  8590. "language" : "undefined",
  8591. "value" : "expanded",
  8592. "type" : "label"
  8593. } ],
  8594. "qualifiedForm" : [ {
  8595. "identifier" : "qualifiedForm",
  8596. "language" : "undefined",
  8597. "value" : "http://www.w3.org/ns/prov#qualifiedEnd",
  8598. "type" : "iri"
  8599. }, {
  8600. "identifier" : "qualifiedForm",
  8601. "language" : "undefined",
  8602. "value" : "http://www.w3.org/ns/prov#End",
  8603. "type" : "iri"
  8604. } ]
  8605. },
  8606. "label" : {
  8607. "IRI-based" : "wasEndedBy",
  8608. "undefined" : "wasEndedBy"
  8609. },
  8610. "superproperty" : [ "116" ],
  8611. "domain" : "76",
  8612. "comment" : {
  8613. "en" : "End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity."
  8614. },
  8615. "attributes" : [ "object", "external" ],
  8616. "id" : "366"
  8617. }, {
  8618. "iri" : "http://www.w3.org/ns/prov#hadPrimarySource",
  8619. "baseIri" : "http://www.w3.org/ns/prov",
  8620. "range" : "30",
  8621. "annotations" : {
  8622. "inverse" : [ {
  8623. "identifier" : "inverse",
  8624. "language" : "undefined",
  8625. "value" : "wasPrimarySourceOf",
  8626. "type" : "label"
  8627. } ],
  8628. "component" : [ {
  8629. "identifier" : "component",
  8630. "language" : "undefined",
  8631. "value" : "derivations",
  8632. "type" : "label"
  8633. } ],
  8634. "isDefinedBy" : [ {
  8635. "identifier" : "isDefinedBy",
  8636. "language" : "undefined",
  8637. "value" : "http://www.w3.org/ns/prov-o#",
  8638. "type" : "iri"
  8639. } ],
  8640. "category" : [ {
  8641. "identifier" : "category",
  8642. "language" : "undefined",
  8643. "value" : "expanded",
  8644. "type" : "label"
  8645. } ],
  8646. "qualifiedForm" : [ {
  8647. "identifier" : "qualifiedForm",
  8648. "language" : "undefined",
  8649. "value" : "http://www.w3.org/ns/prov#qualifiedPrimarySource",
  8650. "type" : "iri"
  8651. }, {
  8652. "identifier" : "qualifiedForm",
  8653. "language" : "undefined",
  8654. "value" : "http://www.w3.org/ns/prov#PrimarySource",
  8655. "type" : "iri"
  8656. } ]
  8657. },
  8658. "label" : {
  8659. "IRI-based" : "hadPrimarySource",
  8660. "undefined" : "hadPrimarySource"
  8661. },
  8662. "superproperty" : [ "237" ],
  8663. "domain" : "30",
  8664. "attributes" : [ "object", "external" ],
  8665. "id" : "364"
  8666. }, {
  8667. "iri" : "http://www.w3.org/ns/prov#influenced",
  8668. "inverse" : "116",
  8669. "baseIri" : "http://www.w3.org/ns/prov",
  8670. "range" : "18",
  8671. "annotations" : {
  8672. "inverse" : [ {
  8673. "identifier" : "inverse",
  8674. "language" : "undefined",
  8675. "value" : "wasInfluencedBy",
  8676. "type" : "label"
  8677. } ],
  8678. "sharesDefinitionWith" : [ {
  8679. "identifier" : "sharesDefinitionWith",
  8680. "language" : "undefined",
  8681. "value" : "http://www.w3.org/ns/prov#Influence",
  8682. "type" : "iri"
  8683. } ],
  8684. "component" : [ {
  8685. "identifier" : "component",
  8686. "language" : "undefined",
  8687. "value" : "agents-responsibility",
  8688. "type" : "label"
  8689. } ],
  8690. "isDefinedBy" : [ {
  8691. "identifier" : "isDefinedBy",
  8692. "language" : "undefined",
  8693. "value" : "http://www.w3.org/ns/prov-o#",
  8694. "type" : "iri"
  8695. } ],
  8696. "category" : [ {
  8697. "identifier" : "category",
  8698. "language" : "undefined",
  8699. "value" : "expanded",
  8700. "type" : "label"
  8701. } ]
  8702. },
  8703. "label" : {
  8704. "IRI-based" : "influenced",
  8705. "undefined" : "influenced"
  8706. },
  8707. "domain" : "18",
  8708. "subproperty" : [ "373", "359" ],
  8709. "attributes" : [ "object", "external" ],
  8710. "id" : "360"
  8711. }, {
  8712. "range" : "23",
  8713. "domain" : "204",
  8714. "attributes" : [ "object", "anonymous" ],
  8715. "id" : "374"
  8716. }, {
  8717. "range" : "23",
  8718. "domain" : "224",
  8719. "attributes" : [ "object", "anonymous" ],
  8720. "id" : "375"
  8721. }, {
  8722. "iri" : "http://www.w3.org/ns/prov#influencer",
  8723. "baseIri" : "http://www.w3.org/ns/prov",
  8724. "range" : "233",
  8725. "annotations" : {
  8726. "editorialNote" : [ {
  8727. "identifier" : "editorialNote",
  8728. "language" : "en",
  8729. "value" : "This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple.",
  8730. "type" : "label"
  8731. } ],
  8732. "inverse" : [ {
  8733. "identifier" : "inverse",
  8734. "language" : "undefined",
  8735. "value" : "hadInfluence",
  8736. "type" : "label"
  8737. } ],
  8738. "isDefinedBy" : [ {
  8739. "identifier" : "isDefinedBy",
  8740. "language" : "undefined",
  8741. "value" : "http://www.w3.org/ns/prov-o#",
  8742. "type" : "iri"
  8743. } ],
  8744. "editorsDefinition" : [ {
  8745. "identifier" : "editorsDefinition",
  8746. "language" : "en",
  8747. "value" : "This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified.",
  8748. "type" : "label"
  8749. } ],
  8750. "dm" : [ {
  8751. "identifier" : "dm",
  8752. "language" : "undefined",
  8753. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence",
  8754. "type" : "label"
  8755. } ],
  8756. "category" : [ {
  8757. "identifier" : "category",
  8758. "language" : "undefined",
  8759. "value" : "qualified",
  8760. "type" : "label"
  8761. } ]
  8762. },
  8763. "label" : {
  8764. "IRI-based" : "influencer",
  8765. "undefined" : "influencer"
  8766. },
  8767. "domain" : "238",
  8768. "subproperty" : [ "294", "376", "330" ],
  8769. "comment" : {
  8770. "en" : "Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used."
  8771. },
  8772. "attributes" : [ "object", "external" ],
  8773. "id" : "295"
  8774. }, {
  8775. "range" : "23",
  8776. "domain" : "8",
  8777. "attributes" : [ "object", "anonymous" ],
  8778. "id" : "377"
  8779. }, {
  8780. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#hasAnonymityLevel",
  8781. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8782. "range" : "158",
  8783. "label" : {
  8784. "IRI-based" : "hasAnonymityLevel",
  8785. "undefined" : "hasAnonymityLevel"
  8786. },
  8787. "domain" : "39",
  8788. "comment" : {
  8789. "undefined" : "Indicates the anonymity level of an AnonymisedData object using instances of the AnonymityLevel class"
  8790. },
  8791. "attributes" : [ "object" ],
  8792. "id" : "378"
  8793. }, {
  8794. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#generatesData",
  8795. "inverse" : "117",
  8796. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8797. "range" : "4",
  8798. "label" : {
  8799. "IRI-based" : "generatesData",
  8800. "undefined" : "generatesData"
  8801. },
  8802. "superproperty" : [ "130" ],
  8803. "domain" : "85",
  8804. "subproperty" : [ "361" ],
  8805. "comment" : {
  8806. "undefined" : "produces data"
  8807. },
  8808. "attributes" : [ "object" ],
  8809. "id" : "270"
  8810. }, {
  8811. "iri" : "http://www.w3.org/ns/prov#qualifiedAssociation",
  8812. "baseIri" : "http://www.w3.org/ns/prov",
  8813. "range" : "89",
  8814. "annotations" : {
  8815. "sharesDefinitionWith" : [ {
  8816. "identifier" : "sharesDefinitionWith",
  8817. "language" : "undefined",
  8818. "value" : "http://www.w3.org/ns/prov#Association",
  8819. "type" : "iri"
  8820. } ],
  8821. "inverse" : [ {
  8822. "identifier" : "inverse",
  8823. "language" : "undefined",
  8824. "value" : "qualifiedAssociationOf",
  8825. "type" : "label"
  8826. } ],
  8827. "component" : [ {
  8828. "identifier" : "component",
  8829. "language" : "undefined",
  8830. "value" : "agents-responsibility",
  8831. "type" : "label"
  8832. } ],
  8833. "isDefinedBy" : [ {
  8834. "identifier" : "isDefinedBy",
  8835. "language" : "undefined",
  8836. "value" : "http://www.w3.org/ns/prov-o#",
  8837. "type" : "iri"
  8838. } ],
  8839. "unqualifiedForm" : [ {
  8840. "identifier" : "unqualifiedForm",
  8841. "language" : "undefined",
  8842. "value" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  8843. "type" : "iri"
  8844. } ],
  8845. "category" : [ {
  8846. "identifier" : "category",
  8847. "language" : "undefined",
  8848. "value" : "qualified",
  8849. "type" : "label"
  8850. } ]
  8851. },
  8852. "label" : {
  8853. "IRI-based" : "qualifiedAssociation",
  8854. "undefined" : "qualifiedAssociation"
  8855. },
  8856. "superproperty" : [ "80" ],
  8857. "domain" : "76",
  8858. "comment" : {
  8859. "en" : "If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association; prov:agent :ag; :foo :bar ]."
  8860. },
  8861. "attributes" : [ "object", "external" ],
  8862. "id" : "347"
  8863. }, {
  8864. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#transfersDataToRegion",
  8865. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8866. "range" : "228",
  8867. "label" : {
  8868. "IRI-based" : "transfersDataToRegion",
  8869. "undefined" : "transfersDataToRegion"
  8870. },
  8871. "domain" : "180",
  8872. "attributes" : [ "object" ],
  8873. "id" : "379"
  8874. }, {
  8875. "iri" : "http://www.w3.org/ns/prov#invalidatedAtTime",
  8876. "baseIri" : "http://www.w3.org/ns/prov",
  8877. "range" : "235",
  8878. "annotations" : {
  8879. "editorialNote" : [ {
  8880. "identifier" : "editorialNote",
  8881. "language" : "en",
  8882. "value" : "It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime.",
  8883. "type" : "label"
  8884. } ],
  8885. "component" : [ {
  8886. "identifier" : "component",
  8887. "language" : "undefined",
  8888. "value" : "entities-activities",
  8889. "type" : "label"
  8890. } ],
  8891. "isDefinedBy" : [ {
  8892. "identifier" : "isDefinedBy",
  8893. "language" : "undefined",
  8894. "value" : "http://www.w3.org/ns/prov-o#",
  8895. "type" : "iri"
  8896. } ],
  8897. "category" : [ {
  8898. "identifier" : "category",
  8899. "language" : "undefined",
  8900. "value" : "expanded",
  8901. "type" : "label"
  8902. } ],
  8903. "qualifiedForm" : [ {
  8904. "identifier" : "qualifiedForm",
  8905. "language" : "undefined",
  8906. "value" : "http://www.w3.org/ns/prov#atTime",
  8907. "type" : "iri"
  8908. }, {
  8909. "identifier" : "qualifiedForm",
  8910. "language" : "undefined",
  8911. "value" : "http://www.w3.org/ns/prov#Invalidation",
  8912. "type" : "iri"
  8913. } ]
  8914. },
  8915. "label" : {
  8916. "IRI-based" : "invalidatedAtTime",
  8917. "undefined" : "invalidatedAtTime"
  8918. },
  8919. "domain" : "30",
  8920. "comment" : {
  8921. "en" : "The time at which an entity was invalidated (i.e., no longer usable)."
  8922. },
  8923. "attributes" : [ "datatype", "external" ],
  8924. "id" : "380"
  8925. }, {
  8926. "iri" : "http://www.w3.org/ns/prov#wasInformedBy",
  8927. "baseIri" : "http://www.w3.org/ns/prov",
  8928. "range" : "76",
  8929. "annotations" : {
  8930. "inverse" : [ {
  8931. "identifier" : "inverse",
  8932. "language" : "undefined",
  8933. "value" : "informed",
  8934. "type" : "label"
  8935. } ],
  8936. "component" : [ {
  8937. "identifier" : "component",
  8938. "language" : "undefined",
  8939. "value" : "entities-activities",
  8940. "type" : "label"
  8941. } ],
  8942. "isDefinedBy" : [ {
  8943. "identifier" : "isDefinedBy",
  8944. "language" : "undefined",
  8945. "value" : "http://www.w3.org/ns/prov-o#",
  8946. "type" : "iri"
  8947. } ],
  8948. "category" : [ {
  8949. "identifier" : "category",
  8950. "language" : "undefined",
  8951. "value" : "starting-point",
  8952. "type" : "label"
  8953. } ],
  8954. "qualifiedForm" : [ {
  8955. "identifier" : "qualifiedForm",
  8956. "language" : "undefined",
  8957. "value" : "http://www.w3.org/ns/prov#Communication",
  8958. "type" : "iri"
  8959. }, {
  8960. "identifier" : "qualifiedForm",
  8961. "language" : "undefined",
  8962. "value" : "http://www.w3.org/ns/prov#qualifiedCommunication",
  8963. "type" : "iri"
  8964. } ]
  8965. },
  8966. "label" : {
  8967. "IRI-based" : "wasInformedBy",
  8968. "undefined" : "wasInformedBy"
  8969. },
  8970. "superproperty" : [ "116" ],
  8971. "domain" : "76",
  8972. "comment" : {
  8973. "en" : "An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2."
  8974. },
  8975. "attributes" : [ "object", "external" ],
  8976. "id" : "370"
  8977. }, {
  8978. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#hasLegalJustification",
  8979. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  8980. "range" : "189",
  8981. "label" : {
  8982. "IRI-based" : "hasLegalJustification",
  8983. "undefined" : "has legal justification"
  8984. },
  8985. "domain" : "16",
  8986. "attributes" : [ "deprecated", "object" ],
  8987. "id" : "381"
  8988. }, {
  8989. "iri" : "http://www.w3.org/ns/prov#generated",
  8990. "inverse" : "367",
  8991. "baseIri" : "http://www.w3.org/ns/prov",
  8992. "range" : "30",
  8993. "annotations" : {
  8994. "sharesDefinitionWith" : [ {
  8995. "identifier" : "sharesDefinitionWith",
  8996. "language" : "undefined",
  8997. "value" : "http://www.w3.org/ns/prov#Generation",
  8998. "type" : "iri"
  8999. } ],
  9000. "inverse" : [ {
  9001. "identifier" : "inverse",
  9002. "language" : "undefined",
  9003. "value" : "wasGeneratedBy",
  9004. "type" : "label"
  9005. } ],
  9006. "editorialNote" : [ {
  9007. "identifier" : "editorialNote",
  9008. "language" : "en",
  9009. "value" : "prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.",
  9010. "type" : "label"
  9011. } ],
  9012. "component" : [ {
  9013. "identifier" : "component",
  9014. "language" : "undefined",
  9015. "value" : "entities-activities",
  9016. "type" : "label"
  9017. } ],
  9018. "isDefinedBy" : [ {
  9019. "identifier" : "isDefinedBy",
  9020. "language" : "undefined",
  9021. "value" : "http://www.w3.org/ns/prov-o#",
  9022. "type" : "iri"
  9023. } ],
  9024. "category" : [ {
  9025. "identifier" : "category",
  9026. "language" : "undefined",
  9027. "value" : "expanded",
  9028. "type" : "label"
  9029. } ]
  9030. },
  9031. "label" : {
  9032. "IRI-based" : "generated",
  9033. "undefined" : "generated"
  9034. },
  9035. "superproperty" : [ "360" ],
  9036. "domain" : "76",
  9037. "attributes" : [ "object", "external" ],
  9038. "id" : "373"
  9039. }, {
  9040. "iri" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  9041. "baseIri" : "http://www.w3.org/ns/prov",
  9042. "range" : "9",
  9043. "annotations" : {
  9044. "inverse" : [ {
  9045. "identifier" : "inverse",
  9046. "language" : "undefined",
  9047. "value" : "hadDelegate",
  9048. "type" : "label"
  9049. } ],
  9050. "component" : [ {
  9051. "identifier" : "component",
  9052. "language" : "undefined",
  9053. "value" : "agents-responsibility",
  9054. "type" : "label"
  9055. } ],
  9056. "isDefinedBy" : [ {
  9057. "identifier" : "isDefinedBy",
  9058. "language" : "undefined",
  9059. "value" : "http://www.w3.org/ns/prov-o#",
  9060. "type" : "iri"
  9061. } ],
  9062. "category" : [ {
  9063. "identifier" : "category",
  9064. "language" : "undefined",
  9065. "value" : "starting-point",
  9066. "type" : "label"
  9067. } ],
  9068. "qualifiedForm" : [ {
  9069. "identifier" : "qualifiedForm",
  9070. "language" : "undefined",
  9071. "value" : "http://www.w3.org/ns/prov#Delegation",
  9072. "type" : "iri"
  9073. }, {
  9074. "identifier" : "qualifiedForm",
  9075. "language" : "undefined",
  9076. "value" : "http://www.w3.org/ns/prov#qualifiedDelegation",
  9077. "type" : "iri"
  9078. } ]
  9079. },
  9080. "label" : {
  9081. "IRI-based" : "actedOnBehalfOf",
  9082. "undefined" : "actedOnBehalfOf"
  9083. },
  9084. "superproperty" : [ "116" ],
  9085. "domain" : "9",
  9086. "comment" : {
  9087. "en" : "An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. "
  9088. },
  9089. "attributes" : [ "object", "external" ],
  9090. "id" : "369"
  9091. }, {
  9092. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#refersToProcess",
  9093. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  9094. "range" : "28",
  9095. "label" : {
  9096. "IRI-based" : "refersToProcess"
  9097. },
  9098. "domain" : "227",
  9099. "attributes" : [ "object" ],
  9100. "id" : "382"
  9101. }, {
  9102. "iri" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  9103. "baseIri" : "http://www.w3.org/ns/prov",
  9104. "range" : "76",
  9105. "annotations" : {
  9106. "inverse" : [ {
  9107. "identifier" : "inverse",
  9108. "language" : "undefined",
  9109. "value" : "generated",
  9110. "type" : "label"
  9111. } ],
  9112. "component" : [ {
  9113. "identifier" : "component",
  9114. "language" : "undefined",
  9115. "value" : "entities-activities",
  9116. "type" : "label"
  9117. } ],
  9118. "isDefinedBy" : [ {
  9119. "identifier" : "isDefinedBy",
  9120. "language" : "undefined",
  9121. "value" : "http://www.w3.org/ns/prov-o#",
  9122. "type" : "iri"
  9123. } ],
  9124. "category" : [ {
  9125. "identifier" : "category",
  9126. "language" : "undefined",
  9127. "value" : "starting-point",
  9128. "type" : "label"
  9129. } ],
  9130. "qualifiedForm" : [ {
  9131. "identifier" : "qualifiedForm",
  9132. "language" : "undefined",
  9133. "value" : "http://www.w3.org/ns/prov#qualifiedGeneration",
  9134. "type" : "iri"
  9135. }, {
  9136. "identifier" : "qualifiedForm",
  9137. "language" : "undefined",
  9138. "value" : "http://www.w3.org/ns/prov#Generation",
  9139. "type" : "iri"
  9140. } ]
  9141. },
  9142. "label" : {
  9143. "IRI-based" : "wasGeneratedBy",
  9144. "undefined" : "wasGeneratedBy"
  9145. },
  9146. "superproperty" : [ "116" ],
  9147. "domain" : "30",
  9148. "attributes" : [ "object", "external" ],
  9149. "id" : "367"
  9150. }, {
  9151. "iri" : "http://www.w3.org/ns/prov#entity",
  9152. "baseIri" : "http://www.w3.org/ns/prov",
  9153. "range" : "30",
  9154. "annotations" : {
  9155. "editorialNote" : [ {
  9156. "identifier" : "editorialNote",
  9157. "language" : "en",
  9158. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  9159. "type" : "label"
  9160. } ],
  9161. "inverse" : [ {
  9162. "identifier" : "inverse",
  9163. "language" : "undefined",
  9164. "value" : "entityOfInfluence",
  9165. "type" : "label"
  9166. } ],
  9167. "isDefinedBy" : [ {
  9168. "identifier" : "isDefinedBy",
  9169. "language" : "undefined",
  9170. "value" : "http://www.w3.org/ns/prov-o#",
  9171. "type" : "iri"
  9172. } ],
  9173. "editorsDefinition" : [ {
  9174. "identifier" : "editorsDefinition",
  9175. "language" : "undefined",
  9176. "value" : "The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  9177. "type" : "label"
  9178. } ],
  9179. "category" : [ {
  9180. "identifier" : "category",
  9181. "language" : "undefined",
  9182. "value" : "qualified",
  9183. "type" : "label"
  9184. } ]
  9185. },
  9186. "label" : {
  9187. "IRI-based" : "entity",
  9188. "undefined" : "entity"
  9189. },
  9190. "superproperty" : [ "295" ],
  9191. "domain" : "55",
  9192. "attributes" : [ "object", "external" ],
  9193. "id" : "376"
  9194. }, {
  9195. "range" : "4",
  9196. "domain" : "1",
  9197. "attributes" : [ "object", "anonymous" ],
  9198. "id" : "383"
  9199. }, {
  9200. "range" : "6",
  9201. "domain" : "1",
  9202. "attributes" : [ "object", "anonymous" ],
  9203. "id" : "384"
  9204. }, {
  9205. "range" : "13",
  9206. "domain" : "6",
  9207. "attributes" : [ "object", "anonymous" ],
  9208. "id" : "385"
  9209. }, {
  9210. "range" : "6",
  9211. "domain" : "4",
  9212. "attributes" : [ "object", "anonymous" ],
  9213. "id" : "386"
  9214. }, {
  9215. "range" : "13",
  9216. "domain" : "4",
  9217. "attributes" : [ "object", "anonymous" ],
  9218. "id" : "387"
  9219. }, {
  9220. "range" : "30",
  9221. "domain" : "76",
  9222. "attributes" : [ "object", "anonymous" ],
  9223. "id" : "388"
  9224. }, {
  9225. "range" : "181",
  9226. "domain" : "55",
  9227. "attributes" : [ "object", "anonymous" ],
  9228. "id" : "389"
  9229. }, {
  9230. "range" : "9",
  9231. "domain" : "113",
  9232. "attributes" : [ "object", "anonymous" ],
  9233. "id" : "390"
  9234. }, {
  9235. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#hasAnonymityLevel",
  9236. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  9237. "range" : "158",
  9238. "label" : {
  9239. "IRI-based" : "hasAnonymityLevel",
  9240. "undefined" : "hasAnonymityLevel"
  9241. },
  9242. "domain" : "38",
  9243. "comment" : {
  9244. "undefined" : "Indicates the anonymity level of an AnonymisedData object using instances of the AnonymityLevel class"
  9245. },
  9246. "attributes" : [ "someValues", "object" ],
  9247. "id" : "391"
  9248. }, {
  9249. "range" : "13",
  9250. "domain" : "1",
  9251. "attributes" : [ "object", "anonymous" ],
  9252. "id" : "392"
  9253. }, {
  9254. "iri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov#collectedDataFromAgent",
  9255. "baseIri" : "http://purl.org/adaptcentre/openscience/ontologies/gdprov",
  9256. "range" : "9",
  9257. "label" : {
  9258. "IRI-based" : "collectedDataFromAgent"
  9259. },
  9260. "superproperty" : [ "125" ],
  9261. "domain" : "142",
  9262. "attributes" : [ "object" ],
  9263. "id" : "363"
  9264. }, {
  9265. "iri" : "http://www.w3.org/ns/prov#hadRole",
  9266. "baseIri" : "http://www.w3.org/ns/prov",
  9267. "range" : "307",
  9268. "annotations" : {
  9269. "sharesDefinitionWith" : [ {
  9270. "identifier" : "sharesDefinitionWith",
  9271. "language" : "undefined",
  9272. "value" : "http://www.w3.org/ns/prov#Role",
  9273. "type" : "iri"
  9274. } ],
  9275. "inverse" : [ {
  9276. "identifier" : "inverse",
  9277. "language" : "undefined",
  9278. "value" : "wasRoleIn",
  9279. "type" : "label"
  9280. } ],
  9281. "component" : [ {
  9282. "identifier" : "component",
  9283. "language" : "undefined",
  9284. "value" : "agents-responsibility",
  9285. "type" : "label"
  9286. } ],
  9287. "isDefinedBy" : [ {
  9288. "identifier" : "isDefinedBy",
  9289. "language" : "undefined",
  9290. "value" : "http://www.w3.org/ns/prov-o#",
  9291. "type" : "iri"
  9292. } ],
  9293. "editorsDefinition" : [ {
  9294. "identifier" : "editorsDefinition",
  9295. "language" : "en",
  9296. "value" : "prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end.",
  9297. "type" : "label"
  9298. } ],
  9299. "category" : [ {
  9300. "identifier" : "category",
  9301. "language" : "undefined",
  9302. "value" : "qualified",
  9303. "type" : "label"
  9304. } ]
  9305. },
  9306. "label" : {
  9307. "IRI-based" : "hadRole",
  9308. "undefined" : "hadRole"
  9309. },
  9310. "domain" : "277",
  9311. "comment" : {
  9312. "en" : "The _optional_ Role that an Entity assumed in the context of an Activity. For example, :baking prov:used :spoon; prov:qualified [ a prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ].",
  9313. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  9314. },
  9315. "attributes" : [ "object", "external" ],
  9316. "id" : "393"
  9317. } ]
  9318. }