ontology.json 284 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794
  1. {
  2. "_comment" : "Created with OWL2VOWL (version 0.3.4), 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", "https://w3id.org/GDPRov", "http://www.w3.org/2002/07/owl", "http://www.w3.org/2000/01/rdf-schema", "http://www.w3.org/ns/prov", "http://www.w3.org/2001/XMLSchema", "https://w3id.org/GDPRtEXT" ],
  6. "title" : {
  7. "undefined" : "The GDPR Provenance ontology"
  8. },
  9. "iri" : "https://w3id.org/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. "preferredNamespaceUri" : [ {
  61. "identifier" : "preferredNamespaceUri",
  62. "language" : "undefined",
  63. "value" : "https://w3id.org/GDPRov#",
  64. "type" : "label"
  65. } ],
  66. "versionInfo" : [ {
  67. "identifier" : "versionInfo",
  68. "language" : "undefined",
  69. "value" : "0.7",
  70. "type" : "label"
  71. } ],
  72. "abstract" : [ {
  73. "identifier" : "abstract",
  74. "language" : "undefined",
  75. "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.",
  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" : "11",
  95. "type" : "owl:Class"
  96. }, {
  97. "id" : "6",
  98. "type" : "owl:Class"
  99. }, {
  100. "id" : "32",
  101. "type" : "owl:Class"
  102. }, {
  103. "id" : "42",
  104. "type" : "owl:Class"
  105. }, {
  106. "id" : "46",
  107. "type" : "owl:Class"
  108. }, {
  109. "id" : "10",
  110. "type" : "owl:Class"
  111. }, {
  112. "id" : "82",
  113. "type" : "owl:Class"
  114. }, {
  115. "id" : "84",
  116. "type" : "owl:Class"
  117. }, {
  118. "id" : "86",
  119. "type" : "owl:Class"
  120. }, {
  121. "id" : "93",
  122. "type" : "owl:Class"
  123. }, {
  124. "id" : "94",
  125. "type" : "owl:Class"
  126. }, {
  127. "id" : "1",
  128. "type" : "owl:Class"
  129. }, {
  130. "id" : "100",
  131. "type" : "owl:Class"
  132. }, {
  133. "id" : "102",
  134. "type" : "owl:Class"
  135. }, {
  136. "id" : "103",
  137. "type" : "owl:Class"
  138. }, {
  139. "id" : "104",
  140. "type" : "owl:Class"
  141. }, {
  142. "id" : "105",
  143. "type" : "owl:Class"
  144. }, {
  145. "id" : "112",
  146. "type" : "owl:Class"
  147. }, {
  148. "id" : "62",
  149. "type" : "owl:Class"
  150. }, {
  151. "id" : "121",
  152. "type" : "owl:Class"
  153. }, {
  154. "id" : "127",
  155. "type" : "owl:Class"
  156. }, {
  157. "id" : "138",
  158. "type" : "owl:Class"
  159. }, {
  160. "id" : "147",
  161. "type" : "owl:Class"
  162. }, {
  163. "id" : "151",
  164. "type" : "owl:Class"
  165. }, {
  166. "id" : "156",
  167. "type" : "owl:Class"
  168. }, {
  169. "id" : "158",
  170. "type" : "owl:Class"
  171. }, {
  172. "id" : "160",
  173. "type" : "owl:Class"
  174. }, {
  175. "id" : "71",
  176. "type" : "owl:Class"
  177. }, {
  178. "id" : "178",
  179. "type" : "owl:Class"
  180. }, {
  181. "id" : "183",
  182. "type" : "owl:Class"
  183. }, {
  184. "id" : "188",
  185. "type" : "owl:Class"
  186. }, {
  187. "id" : "193",
  188. "type" : "owl:Class"
  189. }, {
  190. "id" : "58",
  191. "type" : "owl:Class"
  192. }, {
  193. "id" : "39",
  194. "type" : "owl:Class"
  195. }, {
  196. "id" : "85",
  197. "type" : "owl:Class"
  198. }, {
  199. "id" : "211",
  200. "type" : "owl:Class"
  201. }, {
  202. "id" : "30",
  203. "type" : "owl:Class"
  204. }, {
  205. "id" : "221",
  206. "type" : "owl:Thing"
  207. }, {
  208. "id" : "68",
  209. "type" : "owl:Class"
  210. }, {
  211. "id" : "34",
  212. "type" : "owl:Class"
  213. }, {
  214. "id" : "110",
  215. "type" : "owl:Class"
  216. }, {
  217. "id" : "225",
  218. "type" : "owl:Class"
  219. }, {
  220. "id" : "226",
  221. "type" : "owl:Class"
  222. }, {
  223. "id" : "20",
  224. "type" : "owl:Class"
  225. }, {
  226. "id" : "227",
  227. "type" : "owl:Thing"
  228. }, {
  229. "id" : "228",
  230. "type" : "owl:Thing"
  231. }, {
  232. "id" : "230",
  233. "type" : "rdfs:Literal"
  234. }, {
  235. "id" : "26",
  236. "type" : "owl:Thing"
  237. }, {
  238. "id" : "232",
  239. "type" : "owl:Thing"
  240. }, {
  241. "id" : "233",
  242. "type" : "owl:Thing"
  243. }, {
  244. "id" : "234",
  245. "type" : "rdfs:Datatype"
  246. }, {
  247. "id" : "235",
  248. "type" : "owl:Class"
  249. }, {
  250. "id" : "236",
  251. "type" : "rdfs:Datatype"
  252. }, {
  253. "id" : "24",
  254. "type" : "owl:Thing"
  255. }, {
  256. "id" : "21",
  257. "type" : "owl:Thing"
  258. }, {
  259. "id" : "49",
  260. "type" : "owl:Class"
  261. }, {
  262. "id" : "45",
  263. "type" : "owl:Class"
  264. }, {
  265. "id" : "69",
  266. "type" : "rdfs:Datatype"
  267. }, {
  268. "id" : "120",
  269. "type" : "rdfs:Datatype"
  270. }, {
  271. "id" : "240",
  272. "type" : "rdfs:Datatype"
  273. }, {
  274. "id" : "241",
  275. "type" : "owl:unionOf"
  276. }, {
  277. "id" : "242",
  278. "type" : "owl:unionOf"
  279. }, {
  280. "id" : "243",
  281. "type" : "owl:unionOf"
  282. }, {
  283. "id" : "244",
  284. "type" : "owl:unionOf"
  285. }, {
  286. "id" : "246",
  287. "type" : "owl:unionOf"
  288. }, {
  289. "id" : "36",
  290. "type" : "owl:unionOf"
  291. }, {
  292. "id" : "248",
  293. "type" : "owl:Class"
  294. }, {
  295. "id" : "251",
  296. "type" : "owl:Class"
  297. }, {
  298. "id" : "210",
  299. "type" : "owl:Class"
  300. }, {
  301. "id" : "273",
  302. "type" : "owl:Class"
  303. }, {
  304. "id" : "176",
  305. "type" : "owl:Class"
  306. }, {
  307. "id" : "280",
  308. "type" : "owl:Class"
  309. }, {
  310. "id" : "281",
  311. "type" : "owl:Class"
  312. }, {
  313. "id" : "60",
  314. "type" : "owl:Class"
  315. }, {
  316. "id" : "289",
  317. "type" : "owl:Class"
  318. }, {
  319. "id" : "295",
  320. "type" : "owl:Class"
  321. }, {
  322. "id" : "89",
  323. "type" : "owl:Class"
  324. }, {
  325. "id" : "299",
  326. "type" : "owl:Class"
  327. }, {
  328. "id" : "107",
  329. "type" : "owl:Class"
  330. }, {
  331. "id" : "12",
  332. "type" : "owl:Class"
  333. }, {
  334. "id" : "182",
  335. "type" : "owl:Class"
  336. }, {
  337. "id" : "311",
  338. "type" : "owl:Class"
  339. }, {
  340. "id" : "314",
  341. "type" : "owl:Class"
  342. }, {
  343. "id" : "169",
  344. "type" : "owl:Class"
  345. }, {
  346. "id" : "207",
  347. "type" : "owl:Class"
  348. }, {
  349. "id" : "260",
  350. "type" : "owl:Class"
  351. }, {
  352. "id" : "307",
  353. "type" : "owl:Class"
  354. }, {
  355. "id" : "65",
  356. "type" : "owl:Class"
  357. }, {
  358. "id" : "106",
  359. "type" : "owl:Class"
  360. }, {
  361. "id" : "126",
  362. "type" : "owl:Class"
  363. }, {
  364. "id" : "41",
  365. "type" : "owl:Class"
  366. }, {
  367. "id" : "161",
  368. "type" : "owl:Class"
  369. }, {
  370. "id" : "132",
  371. "type" : "owl:Class"
  372. }, {
  373. "id" : "119",
  374. "type" : "owl:Class"
  375. }, {
  376. "id" : "53",
  377. "type" : "owl:Class"
  378. }, {
  379. "id" : "196",
  380. "type" : "owl:Class"
  381. }, {
  382. "id" : "208",
  383. "type" : "owl:Class"
  384. }, {
  385. "id" : "173",
  386. "type" : "owl:Class"
  387. }, {
  388. "id" : "43",
  389. "type" : "owl:Class"
  390. }, {
  391. "id" : "114",
  392. "type" : "owl:Class"
  393. }, {
  394. "id" : "139",
  395. "type" : "owl:Class"
  396. }, {
  397. "id" : "140",
  398. "type" : "owl:Class"
  399. }, {
  400. "id" : "137",
  401. "type" : "owl:Class"
  402. }, {
  403. "id" : "184",
  404. "type" : "owl:Class"
  405. }, {
  406. "id" : "215",
  407. "type" : "owl:Class"
  408. }, {
  409. "id" : "75",
  410. "type" : "owl:Class"
  411. }, {
  412. "id" : "37",
  413. "type" : "owl:Class"
  414. }, {
  415. "id" : "150",
  416. "type" : "owl:Class"
  417. }, {
  418. "id" : "167",
  419. "type" : "owl:Class"
  420. }, {
  421. "id" : "190",
  422. "type" : "owl:Class"
  423. }, {
  424. "id" : "159",
  425. "type" : "owl:Class"
  426. }, {
  427. "id" : "64",
  428. "type" : "owl:Class"
  429. }, {
  430. "id" : "108",
  431. "type" : "owl:Class"
  432. }, {
  433. "id" : "219",
  434. "type" : "owl:Class"
  435. }, {
  436. "id" : "171",
  437. "type" : "owl:Class"
  438. }, {
  439. "id" : "222",
  440. "type" : "owl:Class"
  441. }, {
  442. "id" : "56",
  443. "type" : "owl:Class"
  444. }, {
  445. "id" : "134",
  446. "type" : "owl:Class"
  447. }, {
  448. "id" : "33",
  449. "type" : "owl:Class"
  450. }, {
  451. "id" : "203",
  452. "type" : "owl:Class"
  453. }, {
  454. "id" : "206",
  455. "type" : "owl:Class"
  456. }, {
  457. "id" : "317",
  458. "type" : "owl:Class"
  459. }, {
  460. "id" : "128",
  461. "type" : "owl:Class"
  462. }, {
  463. "id" : "74",
  464. "type" : "owl:Class"
  465. }, {
  466. "id" : "340",
  467. "type" : "owl:Class"
  468. }, {
  469. "id" : "4",
  470. "type" : "owl:Class"
  471. }, {
  472. "id" : "16",
  473. "type" : "owl:Class"
  474. }, {
  475. "id" : "88",
  476. "type" : "owl:Class"
  477. }, {
  478. "id" : "31",
  479. "type" : "owl:Class"
  480. }, {
  481. "id" : "186",
  482. "type" : "owl:Class"
  483. }, {
  484. "id" : "267",
  485. "type" : "owl:Class"
  486. }, {
  487. "id" : "2",
  488. "type" : "owl:Class"
  489. }, {
  490. "id" : "48",
  491. "type" : "owl:Class"
  492. }, {
  493. "id" : "146",
  494. "type" : "owl:Class"
  495. }, {
  496. "id" : "51",
  497. "type" : "owl:Class"
  498. }, {
  499. "id" : "257",
  500. "type" : "owl:Class"
  501. }, {
  502. "id" : "359",
  503. "type" : "owl:Class"
  504. }, {
  505. "id" : "144",
  506. "type" : "owl:Class"
  507. }, {
  508. "id" : "263",
  509. "type" : "owl:Class"
  510. }, {
  511. "id" : "174",
  512. "type" : "owl:Class"
  513. }, {
  514. "id" : "155",
  515. "type" : "owl:Class"
  516. }, {
  517. "id" : "8",
  518. "type" : "owl:Class"
  519. }, {
  520. "id" : "76",
  521. "type" : "owl:Class"
  522. }, {
  523. "id" : "101",
  524. "type" : "owl:Class"
  525. }, {
  526. "id" : "99",
  527. "type" : "owl:Class"
  528. }, {
  529. "id" : "204",
  530. "type" : "owl:Class"
  531. }, {
  532. "id" : "87",
  533. "type" : "owl:Class"
  534. }, {
  535. "id" : "201",
  536. "type" : "owl:Class"
  537. }, {
  538. "id" : "92",
  539. "type" : "owl:Class"
  540. }, {
  541. "id" : "83",
  542. "type" : "owl:Class"
  543. }, {
  544. "id" : "90",
  545. "type" : "owl:Class"
  546. }, {
  547. "id" : "111",
  548. "type" : "owl:Class"
  549. }, {
  550. "id" : "116",
  551. "type" : "owl:Class"
  552. }, {
  553. "id" : "324",
  554. "type" : "owl:Class"
  555. }, {
  556. "id" : "14",
  557. "type" : "owl:Class"
  558. }, {
  559. "id" : "192",
  560. "type" : "owl:Class"
  561. }, {
  562. "id" : "18",
  563. "type" : "owl:Class"
  564. }, {
  565. "id" : "205",
  566. "type" : "owl:Class"
  567. }, {
  568. "id" : "95",
  569. "type" : "owl:Class"
  570. }, {
  571. "id" : "162",
  572. "type" : "owl:Class"
  573. }, {
  574. "id" : "148",
  575. "type" : "owl:Class"
  576. } ],
  577. "classAttribute" : [ {
  578. "iri" : "https://w3id.org/GDPRov#NotifyDataSubject",
  579. "baseIri" : "https://w3id.org/GDPRov",
  580. "instances" : 0,
  581. "annotations" : {
  582. "isDefinedBy" : [ {
  583. "identifier" : "isDefinedBy",
  584. "language" : "undefined",
  585. "value" : "https://w3id.org/GDPRtEXT#NotifyDataSubjectOfBreach",
  586. "type" : "iri"
  587. } ],
  588. "seeAlso" : [ {
  589. "identifier" : "seeAlso",
  590. "language" : "undefined",
  591. "value" : "https://w3id.org/GDPRov#NotifyDataSubjectActivity",
  592. "type" : "iri"
  593. } ]
  594. },
  595. "label" : {
  596. "IRI-based" : "NotifyDataSubject",
  597. "undefined" : "Notify Data Subject"
  598. },
  599. "comment" : {
  600. "undefined" : "Step that notifies the data subject of data breach."
  601. },
  602. "id" : "11",
  603. "superClasses" : [ "12" ]
  604. }, {
  605. "iri" : "https://w3id.org/GDPRov#HandleRightToRestrictProcessing",
  606. "baseIri" : "https://w3id.org/GDPRov",
  607. "instances" : 0,
  608. "annotations" : {
  609. "isDefinedBy" : [ {
  610. "identifier" : "isDefinedBy",
  611. "language" : "undefined",
  612. "value" : "https://w3id.org/GDPRtEXT#RightToRestrictProcessing",
  613. "type" : "iri"
  614. } ]
  615. },
  616. "label" : {
  617. "IRI-based" : "HandleRightToRestrictProcessing",
  618. "undefined" : "Handle Right to restrict Processing"
  619. },
  620. "comment" : {
  621. "undefined" : "The process or series of steps that handle the right to restrict processing."
  622. },
  623. "id" : "6",
  624. "superClasses" : [ "2" ]
  625. }, {
  626. "iri" : "https://w3id.org/GDPRov#DataArchivalActivity",
  627. "baseIri" : "https://w3id.org/GDPRov",
  628. "instances" : 0,
  629. "annotations" : {
  630. "isDefinedBy" : [ {
  631. "identifier" : "isDefinedBy",
  632. "language" : "undefined",
  633. "value" : "https://w3id.org/GDPRtEXT#ArchiveData",
  634. "type" : "iri"
  635. } ],
  636. "seeAlso" : [ {
  637. "identifier" : "seeAlso",
  638. "language" : "undefined",
  639. "value" : "https://w3id.org/GDPRov#DataArchivalStep",
  640. "type" : "iri"
  641. } ]
  642. },
  643. "label" : {
  644. "IRI-based" : "DataArchivalActivity",
  645. "undefined" : "Data Archival Activity"
  646. },
  647. "comment" : {
  648. "undefined" : "Is an activity that archives data. Archival is transformation of data into some form for storage."
  649. },
  650. "id" : "32",
  651. "superClasses" : [ "33", "34" ]
  652. }, {
  653. "iri" : "http://www.w3.org/ns/prov#Person",
  654. "baseIri" : "http://www.w3.org/ns/prov",
  655. "instances" : 0,
  656. "annotations" : {
  657. "component" : [ {
  658. "identifier" : "component",
  659. "language" : "undefined",
  660. "value" : "agents-responsibility",
  661. "type" : "label"
  662. } ],
  663. "isDefinedBy" : [ {
  664. "identifier" : "isDefinedBy",
  665. "language" : "undefined",
  666. "value" : "http://www.w3.org/ns/prov-o#",
  667. "type" : "iri"
  668. } ],
  669. "dm" : [ {
  670. "identifier" : "dm",
  671. "language" : "undefined",
  672. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  673. "type" : "label"
  674. } ],
  675. "definition" : [ {
  676. "identifier" : "definition",
  677. "language" : "en",
  678. "value" : "Person agents are people.",
  679. "type" : "label"
  680. } ],
  681. "category" : [ {
  682. "identifier" : "category",
  683. "language" : "undefined",
  684. "value" : "expanded",
  685. "type" : "label"
  686. } ],
  687. "n" : [ {
  688. "identifier" : "n",
  689. "language" : "undefined",
  690. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  691. "type" : "label"
  692. } ]
  693. },
  694. "label" : {
  695. "IRI-based" : "Person",
  696. "undefined" : "Person"
  697. },
  698. "attributes" : [ "external" ],
  699. "id" : "42",
  700. "superClasses" : [ "43" ]
  701. }, {
  702. "iri" : "https://w3id.org/GDPRov#HandleRightToObjectDirectMarketing",
  703. "baseIri" : "https://w3id.org/GDPRov",
  704. "instances" : 0,
  705. "annotations" : {
  706. "isDefinedBy" : [ {
  707. "identifier" : "isDefinedBy",
  708. "language" : "undefined",
  709. "value" : "https://w3id.org/GDPRtEXT#RightToObjectForDirectMarketting",
  710. "type" : "iri"
  711. } ]
  712. },
  713. "label" : {
  714. "IRI-based" : "HandleRightToObjectDirectMarketing",
  715. "undefined" : "Handle Right to Object to Direct Marketing"
  716. },
  717. "comment" : {
  718. "undefined" : "The process or series of steps that handle the right to object to direct marketing."
  719. },
  720. "id" : "46",
  721. "superClasses" : [ "2" ]
  722. }, {
  723. "iri" : "https://w3id.org/GDPRov#HandleRightOfDataPortability",
  724. "baseIri" : "https://w3id.org/GDPRov",
  725. "instances" : 0,
  726. "annotations" : {
  727. "isDefinedBy" : [ {
  728. "identifier" : "isDefinedBy",
  729. "language" : "undefined",
  730. "value" : "https://w3id.org/GDPRtEXT#RightOfDataPortability",
  731. "type" : "iri"
  732. } ]
  733. },
  734. "label" : {
  735. "IRI-based" : "HandleRightOfDataPortability",
  736. "undefined" : "Handle Right of Data Portability"
  737. },
  738. "comment" : {
  739. "undefined" : "The process or series of steps that handle the right of data portability."
  740. },
  741. "id" : "10",
  742. "superClasses" : [ "2" ]
  743. }, {
  744. "iri" : "https://w3id.org/GDPRov#GivenConsent",
  745. "baseIri" : "https://w3id.org/GDPRov",
  746. "instances" : 0,
  747. "annotations" : {
  748. "isDefinedBy" : [ {
  749. "identifier" : "isDefinedBy",
  750. "language" : "undefined",
  751. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  752. "type" : "iri"
  753. } ],
  754. "seeAlso" : [ {
  755. "identifier" : "seeAlso",
  756. "language" : "undefined",
  757. "value" : "https://w3id.org/GDPRov#ConsentAgreement",
  758. "type" : "iri"
  759. } ]
  760. },
  761. "label" : {
  762. "IRI-based" : "GivenConsent",
  763. "undefined" : "Given Consent"
  764. },
  765. "comment" : {
  766. "undefined" : "Represents the given consent by the data subject."
  767. },
  768. "id" : "82",
  769. "superClasses" : [ "83" ]
  770. }, {
  771. "iri" : "https://w3id.org/GDPRov#DataStepWithoutProvenance",
  772. "baseIri" : "https://w3id.org/GDPRov",
  773. "instances" : 0,
  774. "label" : {
  775. "IRI-based" : "DataStepWithoutProvenance",
  776. "undefined" : "Data Step without Provenance"
  777. },
  778. "id" : "84",
  779. "superClasses" : [ "85" ]
  780. }, {
  781. "iri" : "https://w3id.org/GDPRov#DataBreachActivity",
  782. "baseIri" : "https://w3id.org/GDPRov",
  783. "instances" : 0,
  784. "annotations" : {
  785. "isDefinedBy" : [ {
  786. "identifier" : "isDefinedBy",
  787. "language" : "undefined",
  788. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreach",
  789. "type" : "iri"
  790. } ],
  791. "seeAlso" : [ {
  792. "identifier" : "seeAlso",
  793. "language" : "undefined",
  794. "value" : "https://w3id.org/GDPRov#DataBreachStep",
  795. "type" : "iri"
  796. } ]
  797. },
  798. "label" : {
  799. "IRI-based" : "DataBreachActivity",
  800. "undefined" : "Data Breach Activity"
  801. },
  802. "subClasses" : [ "88", "89", "90" ],
  803. "comment" : {
  804. "undefined" : "Is an activity dealing with data breach."
  805. },
  806. "id" : "86",
  807. "superClasses" : [ "87" ]
  808. }, {
  809. "iri" : "https://w3id.org/GDPRov#DataAccessProcess",
  810. "baseIri" : "https://w3id.org/GDPRov",
  811. "instances" : 0,
  812. "annotations" : {
  813. "isDefinedBy" : [ {
  814. "identifier" : "isDefinedBy",
  815. "language" : "undefined",
  816. "value" : "https://w3id.org/GDPRtEXT#ProvideCopyOfPersonalData",
  817. "type" : "iri"
  818. } ]
  819. },
  820. "label" : {
  821. "IRI-based" : "DataAccessProcess",
  822. "en" : "Data Access Process"
  823. },
  824. "comment" : {
  825. "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."
  826. },
  827. "id" : "93",
  828. "superClasses" : [ "2" ]
  829. }, {
  830. "iri" : "https://w3id.org/GDPRov#SensitiveData",
  831. "baseIri" : "https://w3id.org/GDPRov",
  832. "instances" : 0,
  833. "annotations" : {
  834. "isDefinedBy" : [ {
  835. "identifier" : "isDefinedBy",
  836. "language" : "undefined",
  837. "value" : "https://w3id.org/GDPRtEXT#SensitivePersonalData",
  838. "type" : "iri"
  839. } ],
  840. "seeAlso" : [ {
  841. "identifier" : "seeAlso",
  842. "language" : "undefined",
  843. "value" : "https://w3id.org/GDPRov#SensitiveDataEntity",
  844. "type" : "iri"
  845. } ]
  846. },
  847. "label" : {
  848. "IRI-based" : "SensitiveData",
  849. "undefined" : "Sensitive Personal Data"
  850. },
  851. "comment" : {
  852. "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."
  853. },
  854. "id" : "94",
  855. "superClasses" : [ "45" ]
  856. }, {
  857. "iri" : "https://w3id.org/GDPRov#Marketing",
  858. "baseIri" : "https://w3id.org/GDPRov",
  859. "instances" : 0,
  860. "annotations" : {
  861. "isDefinedBy" : [ {
  862. "identifier" : "isDefinedBy",
  863. "language" : "undefined",
  864. "value" : "https://w3id.org/GDPRtEXT#Marketing",
  865. "type" : "iri"
  866. } ]
  867. },
  868. "label" : {
  869. "IRI-based" : "Marketing",
  870. "undefined" : "Marketing"
  871. },
  872. "subClasses" : [ "95" ],
  873. "comment" : {
  874. "undefined" : "Marketing as a process or collection of steps."
  875. },
  876. "id" : "1",
  877. "superClasses" : [ "2" ]
  878. }, {
  879. "iri" : "http://www.w3.org/ns/prov#Bundle",
  880. "baseIri" : "http://www.w3.org/ns/prov",
  881. "instances" : 0,
  882. "annotations" : {
  883. "isDefinedBy" : [ {
  884. "identifier" : "isDefinedBy",
  885. "language" : "undefined",
  886. "value" : "http://www.w3.org/ns/prov-o#",
  887. "type" : "iri"
  888. }, {
  889. "identifier" : "isDefinedBy",
  890. "language" : "undefined",
  891. "value" : "http://www.w3.org/ns/prov#",
  892. "type" : "iri"
  893. } ],
  894. "dm" : [ {
  895. "identifier" : "dm",
  896. "language" : "undefined",
  897. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity",
  898. "type" : "label"
  899. } ],
  900. "definition" : [ {
  901. "identifier" : "definition",
  902. "language" : "en",
  903. "value" : "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.",
  904. "type" : "label"
  905. } ],
  906. "category" : [ {
  907. "identifier" : "category",
  908. "language" : "undefined",
  909. "value" : "expanded",
  910. "type" : "label"
  911. } ],
  912. "n" : [ {
  913. "identifier" : "n",
  914. "language" : "undefined",
  915. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration",
  916. "type" : "label"
  917. } ]
  918. },
  919. "label" : {
  920. "IRI-based" : "Bundle",
  921. "undefined" : "Bundle"
  922. },
  923. "subClasses" : [ "101" ],
  924. "comment" : {
  925. "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."
  926. },
  927. "attributes" : [ "external" ],
  928. "id" : "100",
  929. "superClasses" : [ "20" ]
  930. }, {
  931. "iri" : "https://w3id.org/GDPRov#AnonymityLevel",
  932. "baseIri" : "https://w3id.org/GDPRov",
  933. "instances" : 0,
  934. "annotations" : {
  935. "isDefinedBy" : [ {
  936. "identifier" : "isDefinedBy",
  937. "language" : "undefined",
  938. "value" : "https://w3id.org/GDPRtEXT#PseudoAnonymousData",
  939. "type" : "iri"
  940. }, {
  941. "identifier" : "isDefinedBy",
  942. "language" : "undefined",
  943. "value" : "https://w3id.org/GDPRtEXT#AnonymousData",
  944. "type" : "iri"
  945. } ]
  946. },
  947. "label" : {
  948. "IRI-based" : "AnonymityLevel",
  949. "undefined" : "AnonymityLevel"
  950. },
  951. "comment" : {
  952. "undefined" : "Provides a way to express the Anonymity Level of AnonymisedData objects through the object property hasAnonymityLevel"
  953. },
  954. "id" : "102"
  955. }, {
  956. "iri" : "https://w3id.org/GDPRov#DataSharingStep",
  957. "baseIri" : "https://w3id.org/GDPRov",
  958. "instances" : 0,
  959. "annotations" : {
  960. "isDefinedBy" : [ {
  961. "identifier" : "isDefinedBy",
  962. "language" : "undefined",
  963. "value" : "https://w3id.org/GDPRtEXT#ShareDataWithThirdParty",
  964. "type" : "iri"
  965. } ],
  966. "seeAlso" : [ {
  967. "identifier" : "seeAlso",
  968. "language" : "undefined",
  969. "value" : "https://w3id.org/GDPRov#DataSharingActivity",
  970. "type" : "iri"
  971. } ]
  972. },
  973. "label" : {
  974. "IRI-based" : "DataSharingStep",
  975. "en" : "Data Sharing Step"
  976. },
  977. "comment" : {
  978. "en" : "DataSharingStep shares data with another agent/organisation. These may be internal or external entities."
  979. },
  980. "id" : "103",
  981. "superClasses" : [ "85" ]
  982. }, {
  983. "iri" : "https://w3id.org/GDPRov#DataSubject",
  984. "baseIri" : "https://w3id.org/GDPRov",
  985. "instances" : 0,
  986. "annotations" : {
  987. "isDefinedBy" : [ {
  988. "identifier" : "isDefinedBy",
  989. "language" : "undefined",
  990. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  991. "type" : "iri"
  992. } ]
  993. },
  994. "label" : {
  995. "IRI-based" : "DataSubject",
  996. "undefined" : "Data Subject"
  997. },
  998. "comment" : {
  999. "undefined" : "An individual or entity"
  1000. },
  1001. "id" : "104",
  1002. "superClasses" : [ "43" ]
  1003. }, {
  1004. "iri" : "https://w3id.org/GDPRov#ConsentActivity",
  1005. "baseIri" : "https://w3id.org/GDPRov",
  1006. "instances" : 0,
  1007. "annotations" : {
  1008. "isDefinedBy" : [ {
  1009. "identifier" : "isDefinedBy",
  1010. "language" : "undefined",
  1011. "value" : "https://w3id.org/GDPRtEXT#ConsentActivity",
  1012. "type" : "iri"
  1013. } ],
  1014. "seeAlso" : [ {
  1015. "identifier" : "seeAlso",
  1016. "language" : "undefined",
  1017. "value" : "https://w3id.org/GDPRov#ConsentStep",
  1018. "type" : "iri"
  1019. } ]
  1020. },
  1021. "label" : {
  1022. "IRI-based" : "ConsentActivity",
  1023. "undefined" : "Consent Activity"
  1024. },
  1025. "subClasses" : [ "106", "107", "108" ],
  1026. "comment" : {
  1027. "undefined" : "Is an activity dealing with consent."
  1028. },
  1029. "id" : "105",
  1030. "superClasses" : [ "87" ]
  1031. }, {
  1032. "iri" : "https://w3id.org/GDPRov#CrossBorderDataTransfer",
  1033. "baseIri" : "https://w3id.org/GDPRov",
  1034. "instances" : 0,
  1035. "annotations" : {
  1036. "isDefinedBy" : [ {
  1037. "identifier" : "isDefinedBy",
  1038. "language" : "undefined",
  1039. "value" : "https://w3id.org/GDPRtEXT#CrossBorderTransfer",
  1040. "type" : "iri"
  1041. } ],
  1042. "seeAlso" : [ {
  1043. "identifier" : "seeAlso",
  1044. "language" : "undefined",
  1045. "value" : "https://w3id.org/GDPRov#CrossBorderTransferActivity",
  1046. "type" : "iri"
  1047. } ]
  1048. },
  1049. "label" : {
  1050. "IRI-based" : "CrossBorderDataTransfer",
  1051. "undefined" : "Cross-border Data Transfer"
  1052. },
  1053. "comment" : {
  1054. "undefined" : "Reflects cross-border transfer of data"
  1055. },
  1056. "id" : "112",
  1057. "superClasses" : [ "85" ]
  1058. }, {
  1059. "iri" : "https://w3id.org/GDPRov#HandleRightToObjectProcessing",
  1060. "baseIri" : "https://w3id.org/GDPRov",
  1061. "instances" : 0,
  1062. "annotations" : {
  1063. "isDefinedBy" : [ {
  1064. "identifier" : "isDefinedBy",
  1065. "language" : "undefined",
  1066. "value" : "https://w3id.org/GDPRtEXT#RightToObjectToProcessing",
  1067. "type" : "iri"
  1068. } ]
  1069. },
  1070. "label" : {
  1071. "IRI-based" : "HandleRightToObjectProcessing",
  1072. "undefined" : "Handle Right to Object to Processing"
  1073. },
  1074. "comment" : {
  1075. "undefined" : "The process or series of steps that handle the right to object to processing."
  1076. },
  1077. "id" : "62",
  1078. "superClasses" : [ "2" ]
  1079. }, {
  1080. "iri" : "https://w3id.org/GDPRov#ControllerRepresentative",
  1081. "baseIri" : "https://w3id.org/GDPRov",
  1082. "instances" : 0,
  1083. "annotations" : {
  1084. "isDefinedBy" : [ {
  1085. "identifier" : "isDefinedBy",
  1086. "language" : "undefined",
  1087. "value" : "https://w3id.org/GDPRtEXT#ControllerRepresentative",
  1088. "type" : "iri"
  1089. } ]
  1090. },
  1091. "label" : {
  1092. "IRI-based" : "ControllerRepresentative",
  1093. "undefined" : "Controller Representative"
  1094. },
  1095. "comment" : {
  1096. "undefined" : "A Representative of the Controller"
  1097. },
  1098. "id" : "121",
  1099. "superClasses" : [ "43" ]
  1100. }, {
  1101. "iri" : "http://purl.org/net/p-plan#MultiStep",
  1102. "baseIri" : "http://purl.org/net/p-plan",
  1103. "instances" : 0,
  1104. "annotations" : {
  1105. "isDefinedBy" : [ {
  1106. "identifier" : "isDefinedBy",
  1107. "language" : "undefined",
  1108. "value" : "http://purl.org/net/p-plan#",
  1109. "type" : "iri"
  1110. } ],
  1111. "definition" : [ {
  1112. "identifier" : "definition",
  1113. "language" : "en",
  1114. "value" : "A multi step is the representation of a plan that appears as a step of another plan.",
  1115. "type" : "label"
  1116. } ]
  1117. },
  1118. "label" : {
  1119. "IRI-based" : "MultiStep",
  1120. "en" : "MultiStep"
  1121. },
  1122. "attributes" : [ "external" ],
  1123. "id" : "127",
  1124. "superClasses" : [ "75", "128" ]
  1125. }, {
  1126. "iri" : "https://w3id.org/GDPRov#Processor",
  1127. "baseIri" : "https://w3id.org/GDPRov",
  1128. "instances" : 0,
  1129. "label" : {
  1130. "IRI-based" : "Processor",
  1131. "en" : "Processor",
  1132. "undefined" : "https://w3id.org/GDPRtEXT#Processor"
  1133. },
  1134. "subClasses" : [ "140" ],
  1135. "comment" : {
  1136. "en" : "A ThirdPartyDataProcessor is a Third Party entity that acts as a Data Processor"
  1137. },
  1138. "id" : "138",
  1139. "superClasses" : [ "139" ]
  1140. }, {
  1141. "iri" : "https://w3id.org/GDPRov#ConsentWithdrawalStep",
  1142. "baseIri" : "https://w3id.org/GDPRov",
  1143. "instances" : 0,
  1144. "annotations" : {
  1145. "isDefinedBy" : [ {
  1146. "identifier" : "isDefinedBy",
  1147. "language" : "undefined",
  1148. "value" : "https://w3id.org/GDPRtEXT#WithdrawingConsent",
  1149. "type" : "iri"
  1150. }, {
  1151. "identifier" : "isDefinedBy",
  1152. "language" : "undefined",
  1153. "value" : "https://w3id.org/GDPRtEXT#CanBeWithdrawnEasilyConsentObligation",
  1154. "type" : "iri"
  1155. } ],
  1156. "seeAlso" : [ {
  1157. "identifier" : "seeAlso",
  1158. "language" : "undefined",
  1159. "value" : "https://w3id.org/GDPRov#WithdrawConsentActivity",
  1160. "type" : "iri"
  1161. } ]
  1162. },
  1163. "label" : {
  1164. "IRI-based" : "ConsentWithdrawalStep",
  1165. "en" : "Consent Withdrawal Step"
  1166. },
  1167. "comment" : {
  1168. "en" : "ConsentWithdrawalStep deals with withdrawal of consent"
  1169. },
  1170. "id" : "147",
  1171. "superClasses" : [ "148" ]
  1172. }, {
  1173. "iri" : "https://w3id.org/GDPRov#AnonymisedData",
  1174. "baseIri" : "https://w3id.org/GDPRov",
  1175. "instances" : 0,
  1176. "annotations" : {
  1177. "isDefinedBy" : [ {
  1178. "identifier" : "isDefinedBy",
  1179. "language" : "undefined",
  1180. "value" : "https://w3id.org/GDPRtEXT#AnonymousData",
  1181. "type" : "iri"
  1182. }, {
  1183. "identifier" : "isDefinedBy",
  1184. "language" : "undefined",
  1185. "value" : "https://w3id.org/GDPRtEXT#PseudoAnonymousData",
  1186. "type" : "iri"
  1187. } ],
  1188. "seeAlso" : [ {
  1189. "identifier" : "seeAlso",
  1190. "language" : "undefined",
  1191. "value" : "https://w3id.org/GDPRov#AnonymisedDataEntity",
  1192. "type" : "iri"
  1193. } ]
  1194. },
  1195. "label" : {
  1196. "IRI-based" : "AnonymisedData",
  1197. "undefined" : "AnonymisedData"
  1198. },
  1199. "comment" : {
  1200. "undefined" : "Represents data that has been Anonymised at some level reflected by the hasAnonymityLevel object property"
  1201. },
  1202. "id" : "151",
  1203. "superClasses" : [ "45" ]
  1204. }, {
  1205. "iri" : "https://w3id.org/GDPRov#AnonymisationActivity",
  1206. "baseIri" : "https://w3id.org/GDPRov",
  1207. "instances" : 0,
  1208. "annotations" : {
  1209. "seeAlso" : [ {
  1210. "identifier" : "seeAlso",
  1211. "language" : "undefined",
  1212. "value" : "https://w3id.org/GDPRov#DataAnonymisationStep",
  1213. "type" : "iri"
  1214. } ]
  1215. },
  1216. "label" : {
  1217. "IRI-based" : "AnonymisationActivity",
  1218. "undefined" : "Anonymisation Activity"
  1219. },
  1220. "comment" : {
  1221. "undefined" : "Is an activity that anonymises data."
  1222. },
  1223. "id" : "156",
  1224. "superClasses" : [ "34" ]
  1225. }, {
  1226. "iri" : "https://w3id.org/GDPRov#Controller",
  1227. "baseIri" : "https://w3id.org/GDPRov",
  1228. "instances" : 0,
  1229. "annotations" : {
  1230. "isDefinedBy" : [ {
  1231. "identifier" : "isDefinedBy",
  1232. "language" : "undefined",
  1233. "value" : "https://w3id.org/GDPRtEXT#Controller",
  1234. "type" : "iri"
  1235. } ]
  1236. },
  1237. "label" : {
  1238. "IRI-based" : "Controller",
  1239. "en" : "Controller"
  1240. },
  1241. "subClasses" : [ "159" ],
  1242. "comment" : {
  1243. "en" : "A ThirdPartyDataController is a Third Party entity that acts as a Data Controller"
  1244. },
  1245. "id" : "158",
  1246. "superClasses" : [ "139" ]
  1247. }, {
  1248. "iri" : "https://w3id.org/GDPRov#DataArchivalStep",
  1249. "baseIri" : "https://w3id.org/GDPRov",
  1250. "instances" : 0,
  1251. "annotations" : {
  1252. "isDefinedBy" : [ {
  1253. "identifier" : "isDefinedBy",
  1254. "language" : "undefined",
  1255. "value" : "https://w3id.org/GDPRtEXT#ArchiveData",
  1256. "type" : "iri"
  1257. } ],
  1258. "seeAlso" : [ {
  1259. "identifier" : "seeAlso",
  1260. "language" : "undefined",
  1261. "value" : "https://w3id.org/GDPRov#DataArchivalActivity",
  1262. "type" : "iri"
  1263. } ]
  1264. },
  1265. "label" : {
  1266. "IRI-based" : "DataArchivalStep",
  1267. "en" : "Data Archival Step"
  1268. },
  1269. "comment" : {
  1270. "en" : "DataArchivalStep archives data by transforming it and storing it"
  1271. },
  1272. "id" : "160",
  1273. "superClasses" : [ "161", "162" ]
  1274. }, {
  1275. "iri" : "http://www.w3.org/ns/prov#Communication",
  1276. "baseIri" : "http://www.w3.org/ns/prov",
  1277. "instances" : 0,
  1278. "annotations" : {
  1279. "component" : [ {
  1280. "identifier" : "component",
  1281. "language" : "undefined",
  1282. "value" : "entities-activities",
  1283. "type" : "label"
  1284. } ],
  1285. "isDefinedBy" : [ {
  1286. "identifier" : "isDefinedBy",
  1287. "language" : "undefined",
  1288. "value" : "http://www.w3.org/ns/prov-o#",
  1289. "type" : "iri"
  1290. } ],
  1291. "unqualifiedForm" : [ {
  1292. "identifier" : "unqualifiedForm",
  1293. "language" : "undefined",
  1294. "value" : "http://www.w3.org/ns/prov#wasInformedBy",
  1295. "type" : "iri"
  1296. } ],
  1297. "dm" : [ {
  1298. "identifier" : "dm",
  1299. "language" : "undefined",
  1300. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication",
  1301. "type" : "label"
  1302. } ],
  1303. "definition" : [ {
  1304. "identifier" : "definition",
  1305. "language" : "undefined",
  1306. "value" : "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other.",
  1307. "type" : "label"
  1308. } ],
  1309. "category" : [ {
  1310. "identifier" : "category",
  1311. "language" : "undefined",
  1312. "value" : "qualified",
  1313. "type" : "label"
  1314. } ],
  1315. "constraints" : [ {
  1316. "identifier" : "constraints",
  1317. "language" : "undefined",
  1318. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1319. "type" : "label"
  1320. } ],
  1321. "n" : [ {
  1322. "identifier" : "n",
  1323. "language" : "undefined",
  1324. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy",
  1325. "type" : "label"
  1326. } ]
  1327. },
  1328. "label" : {
  1329. "IRI-based" : "Communication",
  1330. "undefined" : "Communication"
  1331. },
  1332. "comment" : {
  1333. "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 ]."
  1334. },
  1335. "attributes" : [ "external" ],
  1336. "id" : "71",
  1337. "superClasses" : [ "53" ]
  1338. }, {
  1339. "iri" : "https://w3id.org/GDPRov#DataDeanonymisationStep",
  1340. "baseIri" : "https://w3id.org/GDPRov",
  1341. "instances" : 0,
  1342. "annotations" : {
  1343. "seeAlso" : [ {
  1344. "identifier" : "seeAlso",
  1345. "language" : "undefined",
  1346. "value" : "https://w3id.org/GDPRov#DeAnonymisationActivity",
  1347. "type" : "iri"
  1348. } ]
  1349. },
  1350. "label" : {
  1351. "IRI-based" : "DataDeanonymisationStep",
  1352. "en" : "Data Deanonymisation Step"
  1353. },
  1354. "comment" : {
  1355. "en" : "DataDeanonymisationStep deanonymises data by transforming it from one form to another along the anonymisation chain."
  1356. },
  1357. "id" : "178",
  1358. "superClasses" : [ "162" ]
  1359. }, {
  1360. "iri" : "https://w3id.org/GDPRov#HandleDataBreachProcess",
  1361. "baseIri" : "https://w3id.org/GDPRov",
  1362. "instances" : 0,
  1363. "annotations" : {
  1364. "isDefinedBy" : [ {
  1365. "identifier" : "isDefinedBy",
  1366. "language" : "undefined",
  1367. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  1368. "type" : "iri"
  1369. } ]
  1370. },
  1371. "label" : {
  1372. "IRI-based" : "HandleDataBreachProcess",
  1373. "undefined" : "HandleDataBreachProcess"
  1374. },
  1375. "subClasses" : [ "184" ],
  1376. "comment" : {
  1377. "undefined" : "A process that defines the actions that should be undertaken in event of a data breach"
  1378. },
  1379. "id" : "183",
  1380. "superClasses" : [ "2" ]
  1381. }, {
  1382. "iri" : "https://w3id.org/GDPRov#AppointProcessor",
  1383. "baseIri" : "https://w3id.org/GDPRov",
  1384. "instances" : 0,
  1385. "annotations" : {
  1386. "isDefinedBy" : [ {
  1387. "identifier" : "isDefinedBy",
  1388. "language" : "undefined",
  1389. "value" : "https://w3id.org/GDPRtEXT#AppointmentOfProcessors",
  1390. "type" : "iri"
  1391. } ]
  1392. },
  1393. "label" : {
  1394. "IRI-based" : "AppointProcessor",
  1395. "undefined" : "Appoint Processor"
  1396. },
  1397. "comment" : {
  1398. "undefined" : "Reflects the process(es) used to appoint processors"
  1399. },
  1400. "id" : "188",
  1401. "superClasses" : [ "2" ]
  1402. }, {
  1403. "iri" : "https://w3id.org/GDPRov#ProvideCopyOfPersonalData",
  1404. "baseIri" : "https://w3id.org/GDPRov",
  1405. "instances" : 0,
  1406. "annotations" : {
  1407. "isDefinedBy" : [ {
  1408. "identifier" : "isDefinedBy",
  1409. "language" : "undefined",
  1410. "value" : "https://w3id.org/GDPRtEXT#ProvideCopyOfPersonalData",
  1411. "type" : "iri"
  1412. } ]
  1413. },
  1414. "label" : {
  1415. "IRI-based" : "ProvideCopyOfPersonalData",
  1416. "undefined" : "Provide copy of Personal Data"
  1417. },
  1418. "comment" : {
  1419. "undefined" : "A step that provides the data subject with a copy of their personal data."
  1420. },
  1421. "id" : "193",
  1422. "superClasses" : [ "85" ]
  1423. }, {
  1424. "iri" : "https://w3id.org/GDPRov#ConsentWithdrawalProcess",
  1425. "baseIri" : "https://w3id.org/GDPRov",
  1426. "instances" : 0,
  1427. "annotations" : {
  1428. "isDefinedBy" : [ {
  1429. "identifier" : "isDefinedBy",
  1430. "language" : "undefined",
  1431. "value" : "https://w3id.org/GDPRtEXT#WithdrawingConsent",
  1432. "type" : "iri"
  1433. } ],
  1434. "seeAlso" : [ {
  1435. "identifier" : "seeAlso",
  1436. "language" : "undefined",
  1437. "value" : "https://w3id.org/GDPRov#ConsentWithdrawalStep",
  1438. "type" : "iri"
  1439. } ]
  1440. },
  1441. "label" : {
  1442. "IRI-based" : "ConsentWithdrawalProcess",
  1443. "en" : "Consent Withdrawal Process"
  1444. },
  1445. "comment" : {
  1446. "en" : "A ConsentWithdrawalProcess deals with the withdrawal of consent by the user and the corresponding activity carried out within the system"
  1447. },
  1448. "id" : "58",
  1449. "superClasses" : [ "2" ]
  1450. }, {
  1451. "iri" : "https://w3id.org/GDPRov#HandleRightToRectification",
  1452. "baseIri" : "https://w3id.org/GDPRov",
  1453. "instances" : 0,
  1454. "annotations" : {
  1455. "isDefinedBy" : [ {
  1456. "identifier" : "isDefinedBy",
  1457. "language" : "undefined",
  1458. "value" : "https://w3id.org/GDPRtEXT#RightToRectification",
  1459. "type" : "iri"
  1460. } ]
  1461. },
  1462. "label" : {
  1463. "IRI-based" : "HandleRightToRectification",
  1464. "undefined" : "Handle Right to Rectification"
  1465. },
  1466. "comment" : {
  1467. "undefined" : "The process or series of steps that handle the right to rectification of personal data."
  1468. },
  1469. "id" : "39",
  1470. "superClasses" : [ "2" ]
  1471. }, {
  1472. "iri" : "https://w3id.org/GDPRov#DataStep",
  1473. "baseIri" : "https://w3id.org/GDPRov",
  1474. "instances" : 0,
  1475. "annotations" : {
  1476. "isDefinedBy" : [ {
  1477. "identifier" : "isDefinedBy",
  1478. "language" : "undefined",
  1479. "value" : "https://w3id.org/GDPRtEXT#DataActivity",
  1480. "type" : "iri"
  1481. } ],
  1482. "seeAlso" : [ {
  1483. "identifier" : "seeAlso",
  1484. "language" : "undefined",
  1485. "value" : "https://w3id.org/GDPRov#DataActivity",
  1486. "type" : "iri"
  1487. } ]
  1488. },
  1489. "label" : {
  1490. "IRI-based" : "DataStep",
  1491. "en" : "Data Step"
  1492. },
  1493. "subClasses" : [ "204", "193", "112", "205", "84", "161", "206", "103", "207", "208", "162" ],
  1494. "comment" : {
  1495. "en" : "A DataStep deals with data"
  1496. },
  1497. "id" : "85",
  1498. "superClasses" : [ "75" ]
  1499. }, {
  1500. "iri" : "http://www.w3.org/ns/prov#Organization",
  1501. "baseIri" : "http://www.w3.org/ns/prov",
  1502. "instances" : 0,
  1503. "annotations" : {
  1504. "component" : [ {
  1505. "identifier" : "component",
  1506. "language" : "undefined",
  1507. "value" : "agents-responsibility",
  1508. "type" : "label"
  1509. } ],
  1510. "isDefinedBy" : [ {
  1511. "identifier" : "isDefinedBy",
  1512. "language" : "undefined",
  1513. "value" : "http://www.w3.org/ns/prov-o#",
  1514. "type" : "iri"
  1515. } ],
  1516. "dm" : [ {
  1517. "identifier" : "dm",
  1518. "language" : "undefined",
  1519. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  1520. "type" : "label"
  1521. } ],
  1522. "definition" : [ {
  1523. "identifier" : "definition",
  1524. "language" : "undefined",
  1525. "value" : "An organization is a social or legal institution such as a company, society, etc.",
  1526. "type" : "label"
  1527. } ],
  1528. "category" : [ {
  1529. "identifier" : "category",
  1530. "language" : "undefined",
  1531. "value" : "expanded",
  1532. "type" : "label"
  1533. } ],
  1534. "n" : [ {
  1535. "identifier" : "n",
  1536. "language" : "undefined",
  1537. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  1538. "type" : "label"
  1539. } ]
  1540. },
  1541. "label" : {
  1542. "IRI-based" : "Organization",
  1543. "undefined" : "Organization"
  1544. },
  1545. "attributes" : [ "external" ],
  1546. "id" : "211",
  1547. "superClasses" : [ "43" ]
  1548. }, {
  1549. "iri" : "https://w3id.org/GDPRov#DataDeletionActivity",
  1550. "baseIri" : "https://w3id.org/GDPRov",
  1551. "instances" : 0,
  1552. "annotations" : {
  1553. "isDefinedBy" : [ {
  1554. "identifier" : "isDefinedBy",
  1555. "language" : "undefined",
  1556. "value" : "https://w3id.org/GDPRtEXT#EraseData",
  1557. "type" : "iri"
  1558. } ],
  1559. "seeAlso" : [ {
  1560. "identifier" : "seeAlso",
  1561. "language" : "undefined",
  1562. "value" : "https://w3id.org/GDPRov#DataDeletionStep",
  1563. "type" : "iri"
  1564. } ]
  1565. },
  1566. "label" : {
  1567. "IRI-based" : "DataDeletionActivity",
  1568. "undefined" : "Data Deletion Activity"
  1569. },
  1570. "comment" : {
  1571. "undefined" : "Is an activity that deletes or erases data."
  1572. },
  1573. "id" : "30",
  1574. "superClasses" : [ "116" ]
  1575. }, {
  1576. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1577. "baseIri" : "http://owl2vowl.de",
  1578. "id" : "221",
  1579. "label" : {
  1580. "undefined" : "Thing"
  1581. }
  1582. }, {
  1583. "iri" : "http://www.w3.org/ns/prov#Activity",
  1584. "baseIri" : "http://www.w3.org/ns/prov",
  1585. "instances" : 0,
  1586. "annotations" : {
  1587. "component" : [ {
  1588. "identifier" : "component",
  1589. "language" : "undefined",
  1590. "value" : "entities-activities",
  1591. "type" : "label"
  1592. } ],
  1593. "isDefinedBy" : [ {
  1594. "identifier" : "isDefinedBy",
  1595. "language" : "undefined",
  1596. "value" : "http://www.w3.org/ns/prov#",
  1597. "type" : "iri"
  1598. }, {
  1599. "identifier" : "isDefinedBy",
  1600. "language" : "undefined",
  1601. "value" : "http://www.w3.org/ns/prov-o#",
  1602. "type" : "iri"
  1603. } ],
  1604. "dm" : [ {
  1605. "identifier" : "dm",
  1606. "language" : "undefined",
  1607. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity",
  1608. "type" : "label"
  1609. } ],
  1610. "definition" : [ {
  1611. "identifier" : "definition",
  1612. "language" : "undefined",
  1613. "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.",
  1614. "type" : "label"
  1615. } ],
  1616. "category" : [ {
  1617. "identifier" : "category",
  1618. "language" : "undefined",
  1619. "value" : "starting-point",
  1620. "type" : "label"
  1621. } ],
  1622. "constraints" : [ {
  1623. "identifier" : "constraints",
  1624. "language" : "undefined",
  1625. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1626. "type" : "label"
  1627. } ],
  1628. "n" : [ {
  1629. "identifier" : "n",
  1630. "language" : "undefined",
  1631. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity",
  1632. "type" : "label"
  1633. } ]
  1634. },
  1635. "label" : {
  1636. "IRI-based" : "Activity",
  1637. "undefined" : "Activity"
  1638. },
  1639. "subClasses" : [ "87" ],
  1640. "attributes" : [ "external" ],
  1641. "id" : "68"
  1642. }, {
  1643. "iri" : "https://w3id.org/GDPRov#DataTransformationActivity",
  1644. "baseIri" : "https://w3id.org/GDPRov",
  1645. "instances" : 0,
  1646. "annotations" : {
  1647. "seeAlso" : [ {
  1648. "identifier" : "seeAlso",
  1649. "language" : "undefined",
  1650. "value" : "https://w3id.org/GDPRov#DataTransformationStep",
  1651. "type" : "iri"
  1652. } ]
  1653. },
  1654. "label" : {
  1655. "IRI-based" : "DataTransformationActivity",
  1656. "undefined" : "Data Transformation Activity"
  1657. },
  1658. "subClasses" : [ "222", "156", "32" ],
  1659. "comment" : {
  1660. "undefined" : "Is an activity that transforms data."
  1661. },
  1662. "id" : "34",
  1663. "superClasses" : [ "116" ]
  1664. }, {
  1665. "iri" : "https://w3id.org/GDPRov#UserInputStep",
  1666. "baseIri" : "https://w3id.org/GDPRov",
  1667. "instances" : 0,
  1668. "label" : {
  1669. "IRI-based" : "UserInputStep",
  1670. "undefined" : "User Input Step"
  1671. },
  1672. "id" : "110",
  1673. "superClasses" : [ "111" ]
  1674. }, {
  1675. "iri" : "https://w3id.org/GDPRov#CrossBorderTransferActivity",
  1676. "baseIri" : "https://w3id.org/GDPRov",
  1677. "instances" : 0,
  1678. "annotations" : {
  1679. "isDefinedBy" : [ {
  1680. "identifier" : "isDefinedBy",
  1681. "language" : "undefined",
  1682. "value" : "https://w3id.org/GDPRtEXT#CrossBorderTransfer",
  1683. "type" : "iri"
  1684. } ],
  1685. "seeAlso" : [ {
  1686. "identifier" : "seeAlso",
  1687. "language" : "undefined",
  1688. "value" : "https://w3id.org/GDPRov#CrossBorderDataTransfer",
  1689. "type" : "iri"
  1690. } ]
  1691. },
  1692. "label" : {
  1693. "IRI-based" : "CrossBorderTransferActivity",
  1694. "undefined" : "Cross Border Transfer Activity"
  1695. },
  1696. "comment" : {
  1697. "undefined" : "Is an activity that transfer data across borders (as defined in the GDPR)."
  1698. },
  1699. "id" : "225",
  1700. "superClasses" : [ "116" ]
  1701. }, {
  1702. "iri" : "https://w3id.org/GDPRov#DataTransferActivity",
  1703. "baseIri" : "https://w3id.org/GDPRov",
  1704. "instances" : 0,
  1705. "label" : {
  1706. "IRI-based" : "DataTransferActivity",
  1707. "undefined" : "Data Transfer Activity"
  1708. },
  1709. "id" : "226",
  1710. "superClasses" : [ "116" ]
  1711. }, {
  1712. "iri" : "http://www.w3.org/ns/prov#Entity",
  1713. "baseIri" : "http://www.w3.org/ns/prov",
  1714. "instances" : 0,
  1715. "annotations" : {
  1716. "component" : [ {
  1717. "identifier" : "component",
  1718. "language" : "undefined",
  1719. "value" : "entities-activities",
  1720. "type" : "label"
  1721. } ],
  1722. "isDefinedBy" : [ {
  1723. "identifier" : "isDefinedBy",
  1724. "language" : "undefined",
  1725. "value" : "http://www.w3.org/ns/prov-o#",
  1726. "type" : "iri"
  1727. }, {
  1728. "identifier" : "isDefinedBy",
  1729. "language" : "undefined",
  1730. "value" : "http://www.w3.org/ns/prov#",
  1731. "type" : "iri"
  1732. } ],
  1733. "dm" : [ {
  1734. "identifier" : "dm",
  1735. "language" : "undefined",
  1736. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity",
  1737. "type" : "label"
  1738. } ],
  1739. "definition" : [ {
  1740. "identifier" : "definition",
  1741. "language" : "en",
  1742. "value" : "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. ",
  1743. "type" : "label"
  1744. } ],
  1745. "category" : [ {
  1746. "identifier" : "category",
  1747. "language" : "undefined",
  1748. "value" : "starting-point",
  1749. "type" : "label"
  1750. } ],
  1751. "constraints" : [ {
  1752. "identifier" : "constraints",
  1753. "language" : "undefined",
  1754. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1755. "type" : "label"
  1756. } ],
  1757. "n" : [ {
  1758. "identifier" : "n",
  1759. "language" : "undefined",
  1760. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity",
  1761. "type" : "label"
  1762. } ]
  1763. },
  1764. "label" : {
  1765. "IRI-based" : "Entity",
  1766. "undefined" : "Entity"
  1767. },
  1768. "subClasses" : [ "100", "83", "174", "74" ],
  1769. "attributes" : [ "external" ],
  1770. "id" : "20"
  1771. }, {
  1772. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1773. "baseIri" : "http://owl2vowl.de",
  1774. "id" : "227",
  1775. "label" : {
  1776. "undefined" : "Thing"
  1777. }
  1778. }, {
  1779. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1780. "baseIri" : "http://owl2vowl.de",
  1781. "id" : "228",
  1782. "label" : {
  1783. "undefined" : "Thing"
  1784. }
  1785. }, {
  1786. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  1787. "id" : "230",
  1788. "label" : {
  1789. "IRI-based" : "Literal",
  1790. "undefined" : "Literal"
  1791. }
  1792. }, {
  1793. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1794. "baseIri" : "http://owl2vowl.de",
  1795. "id" : "26",
  1796. "label" : {
  1797. "undefined" : "Thing"
  1798. }
  1799. }, {
  1800. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1801. "baseIri" : "http://owl2vowl.de",
  1802. "id" : "232",
  1803. "label" : {
  1804. "undefined" : "Thing"
  1805. }
  1806. }, {
  1807. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1808. "baseIri" : "http://owl2vowl.de",
  1809. "id" : "233",
  1810. "label" : {
  1811. "undefined" : "Thing"
  1812. }
  1813. }, {
  1814. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1815. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1816. "id" : "234",
  1817. "label" : {
  1818. "IRI-based" : "dateTime"
  1819. }
  1820. }, {
  1821. "iri" : "https://w3id.org/GDPRov#DataUsageActivity",
  1822. "baseIri" : "https://w3id.org/GDPRov",
  1823. "instances" : 0,
  1824. "annotations" : {
  1825. "isDefinedBy" : [ {
  1826. "identifier" : "isDefinedBy",
  1827. "language" : "undefined",
  1828. "value" : "https://w3id.org/GDPRtEXT#UseData",
  1829. "type" : "iri"
  1830. } ],
  1831. "seeAlso" : [ {
  1832. "identifier" : "seeAlso",
  1833. "language" : "undefined",
  1834. "value" : "https://w3id.org/GDPRov#DataUsageStep",
  1835. "type" : "iri"
  1836. } ]
  1837. },
  1838. "label" : {
  1839. "IRI-based" : "DataUsageActivity",
  1840. "undefined" : "Data Usage Activity"
  1841. },
  1842. "comment" : {
  1843. "undefined" : "Is an activity that uses data. Can also be termed as 'Processing' of data."
  1844. },
  1845. "id" : "235",
  1846. "superClasses" : [ "116" ]
  1847. }, {
  1848. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1849. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1850. "id" : "236",
  1851. "label" : {
  1852. "IRI-based" : "dateTime"
  1853. }
  1854. }, {
  1855. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1856. "baseIri" : "http://owl2vowl.de",
  1857. "id" : "24",
  1858. "label" : {
  1859. "undefined" : "Thing"
  1860. }
  1861. }, {
  1862. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1863. "baseIri" : "http://owl2vowl.de",
  1864. "id" : "21",
  1865. "label" : {
  1866. "undefined" : "Thing"
  1867. }
  1868. }, {
  1869. "iri" : "http://www.w3.org/ns/prov#Influence",
  1870. "baseIri" : "http://www.w3.org/ns/prov",
  1871. "instances" : 0,
  1872. "annotations" : {
  1873. "component" : [ {
  1874. "identifier" : "component",
  1875. "language" : "undefined",
  1876. "value" : "derivations",
  1877. "type" : "label"
  1878. } ],
  1879. "isDefinedBy" : [ {
  1880. "identifier" : "isDefinedBy",
  1881. "language" : "undefined",
  1882. "value" : "http://www.w3.org/ns/prov-o#",
  1883. "type" : "iri"
  1884. } ],
  1885. "unqualifiedForm" : [ {
  1886. "identifier" : "unqualifiedForm",
  1887. "language" : "undefined",
  1888. "value" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  1889. "type" : "iri"
  1890. } ],
  1891. "dm" : [ {
  1892. "identifier" : "dm",
  1893. "language" : "undefined",
  1894. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence",
  1895. "type" : "label"
  1896. } ],
  1897. "definition" : [ {
  1898. "identifier" : "definition",
  1899. "language" : "en",
  1900. "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.",
  1901. "type" : "label"
  1902. } ],
  1903. "category" : [ {
  1904. "identifier" : "category",
  1905. "language" : "undefined",
  1906. "value" : "qualified",
  1907. "type" : "label"
  1908. } ],
  1909. "n" : [ {
  1910. "identifier" : "n",
  1911. "language" : "undefined",
  1912. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence",
  1913. "type" : "label"
  1914. } ]
  1915. },
  1916. "label" : {
  1917. "IRI-based" : "Influence",
  1918. "undefined" : "Influence"
  1919. },
  1920. "subClasses" : [ "48", "51", "53" ],
  1921. "comment" : {
  1922. "en" : "Because prov:Influence is a broad relation, its most specific subclasses (e.g. prov:Communication, prov:Delegation, prov:End, prov:Revision, etc.) should be used when applicable."
  1923. },
  1924. "attributes" : [ "external" ],
  1925. "id" : "49"
  1926. }, {
  1927. "iri" : "https://w3id.org/GDPRov#PersonalData",
  1928. "baseIri" : "https://w3id.org/GDPRov",
  1929. "instances" : 0,
  1930. "annotations" : {
  1931. "isDefinedBy" : [ {
  1932. "identifier" : "isDefinedBy",
  1933. "language" : "undefined",
  1934. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1935. "type" : "iri"
  1936. } ],
  1937. "seeAlso" : [ {
  1938. "identifier" : "seeAlso",
  1939. "language" : "undefined",
  1940. "value" : "https://w3id.org/GDPRov#PersonalDataEntity",
  1941. "type" : "iri"
  1942. } ]
  1943. },
  1944. "label" : {
  1945. "IRI-based" : "PersonalData",
  1946. "en" : "PersonalData"
  1947. },
  1948. "subClasses" : [ "94", "151", "201" ],
  1949. "comment" : {
  1950. "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"
  1951. },
  1952. "id" : "45",
  1953. "superClasses" : [ "31" ]
  1954. }, {
  1955. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1956. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1957. "id" : "69",
  1958. "label" : {
  1959. "IRI-based" : "dateTime"
  1960. }
  1961. }, {
  1962. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1963. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1964. "id" : "120",
  1965. "label" : {
  1966. "IRI-based" : "dateTime"
  1967. }
  1968. }, {
  1969. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  1970. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  1971. "id" : "240",
  1972. "label" : {
  1973. "IRI-based" : "dateTime"
  1974. }
  1975. }, {
  1976. "instances" : 0,
  1977. "union" : [ "68", "20", "43" ],
  1978. "attributes" : [ "anonymous", "union" ],
  1979. "id" : "241"
  1980. }, {
  1981. "instances" : 0,
  1982. "union" : [ "186", "119" ],
  1983. "attributes" : [ "anonymous", "union" ],
  1984. "id" : "242"
  1985. }, {
  1986. "instances" : 0,
  1987. "union" : [ "68", "20", "43" ],
  1988. "attributes" : [ "anonymous", "union" ],
  1989. "id" : "243"
  1990. }, {
  1991. "instances" : 0,
  1992. "union" : [ "68", "20", "43" ],
  1993. "attributes" : [ "anonymous", "union" ],
  1994. "id" : "244"
  1995. }, {
  1996. "instances" : 0,
  1997. "union" : [ "99", "167", "169", "171" ],
  1998. "attributes" : [ "anonymous", "union" ],
  1999. "id" : "246"
  2000. }, {
  2001. "instances" : 0,
  2002. "union" : [ "68", "20", "119", "43" ],
  2003. "attributes" : [ "anonymous", "union" ],
  2004. "id" : "36"
  2005. }, {
  2006. "iri" : "https://w3id.org/GDPRov#UserIdentifierEntity",
  2007. "baseIri" : "https://w3id.org/GDPRov",
  2008. "instances" : 0,
  2009. "annotations" : {
  2010. "seeAlso" : [ {
  2011. "identifier" : "seeAlso",
  2012. "language" : "undefined",
  2013. "value" : "https://w3id.org/GDPRov#UserIdentifier",
  2014. "type" : "iri"
  2015. } ]
  2016. },
  2017. "label" : {
  2018. "IRI-based" : "UserIdentifierEntity",
  2019. "undefined" : "User Identifier Entity"
  2020. },
  2021. "comment" : {
  2022. "undefined" : "Is an entity acting as the user identifier. Or contains an identifier."
  2023. },
  2024. "id" : "248",
  2025. "superClasses" : [ "190" ]
  2026. }, {
  2027. "iri" : "https://w3id.org/GDPRov#SensitiveDataEntity",
  2028. "baseIri" : "https://w3id.org/GDPRov",
  2029. "instances" : 0,
  2030. "annotations" : {
  2031. "isDefinedBy" : [ {
  2032. "identifier" : "isDefinedBy",
  2033. "language" : "undefined",
  2034. "value" : "https://w3id.org/GDPRtEXT#SensitivePersonalData",
  2035. "type" : "iri"
  2036. } ],
  2037. "seeAlso" : [ {
  2038. "identifier" : "seeAlso",
  2039. "language" : "undefined",
  2040. "value" : "https://w3id.org/GDPRov#SensitiveData",
  2041. "type" : "iri"
  2042. } ]
  2043. },
  2044. "label" : {
  2045. "IRI-based" : "SensitiveDataEntity",
  2046. "undefined" : "Sensitive Data Entity"
  2047. },
  2048. "comment" : {
  2049. "undefined" : "Is an entity containing sensitive personal information."
  2050. },
  2051. "id" : "251",
  2052. "superClasses" : [ "190" ]
  2053. }, {
  2054. "iri" : "http://www.w3.org/ns/prov#Invalidation",
  2055. "baseIri" : "http://www.w3.org/ns/prov",
  2056. "instances" : 0,
  2057. "annotations" : {
  2058. "component" : [ {
  2059. "identifier" : "component",
  2060. "language" : "undefined",
  2061. "value" : "entities-activities",
  2062. "type" : "label"
  2063. } ],
  2064. "isDefinedBy" : [ {
  2065. "identifier" : "isDefinedBy",
  2066. "language" : "undefined",
  2067. "value" : "http://www.w3.org/ns/prov-o#",
  2068. "type" : "iri"
  2069. } ],
  2070. "unqualifiedForm" : [ {
  2071. "identifier" : "unqualifiedForm",
  2072. "language" : "undefined",
  2073. "value" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  2074. "type" : "iri"
  2075. } ],
  2076. "dm" : [ {
  2077. "identifier" : "dm",
  2078. "language" : "undefined",
  2079. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation",
  2080. "type" : "label"
  2081. } ],
  2082. "definition" : [ {
  2083. "identifier" : "definition",
  2084. "language" : "undefined",
  2085. "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.",
  2086. "type" : "label"
  2087. } ],
  2088. "category" : [ {
  2089. "identifier" : "category",
  2090. "language" : "undefined",
  2091. "value" : "qualified",
  2092. "type" : "label"
  2093. } ],
  2094. "constraints" : [ {
  2095. "identifier" : "constraints",
  2096. "language" : "undefined",
  2097. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2098. "type" : "label"
  2099. } ],
  2100. "n" : [ {
  2101. "identifier" : "n",
  2102. "language" : "undefined",
  2103. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation",
  2104. "type" : "label"
  2105. } ]
  2106. },
  2107. "label" : {
  2108. "IRI-based" : "Invalidation",
  2109. "undefined" : "Invalidation"
  2110. },
  2111. "comment" : {
  2112. "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 ]."
  2113. },
  2114. "attributes" : [ "external" ],
  2115. "id" : "210",
  2116. "superClasses" : [ "119", "53" ]
  2117. }, {
  2118. "iri" : "https://w3id.org/GDPRov#RectifyDataActivity",
  2119. "baseIri" : "https://w3id.org/GDPRov",
  2120. "instances" : 0,
  2121. "annotations" : {
  2122. "seeAlso" : [ {
  2123. "identifier" : "seeAlso",
  2124. "language" : "undefined",
  2125. "value" : "https://w3id.org/GDPRov#RectifyData",
  2126. "type" : "iri"
  2127. } ]
  2128. },
  2129. "label" : {
  2130. "IRI-based" : "RectifyDataActivity",
  2131. "undefined" : "Rectify Data Activity"
  2132. },
  2133. "comment" : {
  2134. "undefined" : "Is an activity that recitifies data."
  2135. },
  2136. "id" : "273",
  2137. "superClasses" : [ "116" ]
  2138. }, {
  2139. "iri" : "https://w3id.org/GDPRov#DataBreachRecord",
  2140. "baseIri" : "https://w3id.org/GDPRov",
  2141. "instances" : 0,
  2142. "annotations" : {
  2143. "isDefinedBy" : [ {
  2144. "identifier" : "isDefinedBy",
  2145. "language" : "undefined",
  2146. "value" : "https://w3id.org/GDPRtEXT#MaintainRecordOfBreach",
  2147. "type" : "iri"
  2148. } ]
  2149. },
  2150. "label" : {
  2151. "IRI-based" : "DataBreachRecord",
  2152. "undefined" : "Data Breach Record"
  2153. },
  2154. "comment" : {
  2155. "undefined" : "A record of a data breach."
  2156. },
  2157. "id" : "176",
  2158. "superClasses" : [ "76" ]
  2159. }, {
  2160. "instances" : 0,
  2161. "union" : [ "49", "242" ],
  2162. "attributes" : [ "anonymous", "union" ],
  2163. "id" : "280"
  2164. }, {
  2165. "instances" : 0,
  2166. "union" : [ "49", "246" ],
  2167. "attributes" : [ "anonymous", "union" ],
  2168. "id" : "281"
  2169. }, {
  2170. "iri" : "https://w3id.org/GDPRov#HandleRightToBasicInfoAboutProcessing",
  2171. "baseIri" : "https://w3id.org/GDPRov",
  2172. "instances" : 0,
  2173. "annotations" : {
  2174. "isDefinedBy" : [ {
  2175. "identifier" : "isDefinedBy",
  2176. "language" : "undefined",
  2177. "value" : "https://w3id.org/GDPRtEXT#RightToBasicInformationAboutProcessing",
  2178. "type" : "iri"
  2179. } ]
  2180. },
  2181. "label" : {
  2182. "IRI-based" : "HandleRightToBasicInfoAboutProcessing",
  2183. "undefined" : "Handle Right to basic information about Processing"
  2184. },
  2185. "comment" : {
  2186. "undefined" : "The process or series of steps that handle the right to basic information about processing."
  2187. },
  2188. "id" : "60",
  2189. "superClasses" : [ "2" ]
  2190. }, {
  2191. "iri" : "http://www.w3.org/ns/prov#Quotation",
  2192. "baseIri" : "http://www.w3.org/ns/prov",
  2193. "instances" : 0,
  2194. "annotations" : {
  2195. "component" : [ {
  2196. "identifier" : "component",
  2197. "language" : "undefined",
  2198. "value" : "derivations",
  2199. "type" : "label"
  2200. } ],
  2201. "isDefinedBy" : [ {
  2202. "identifier" : "isDefinedBy",
  2203. "language" : "undefined",
  2204. "value" : "http://www.w3.org/ns/prov-o#",
  2205. "type" : "iri"
  2206. } ],
  2207. "unqualifiedForm" : [ {
  2208. "identifier" : "unqualifiedForm",
  2209. "language" : "undefined",
  2210. "value" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  2211. "type" : "iri"
  2212. } ],
  2213. "dm" : [ {
  2214. "identifier" : "dm",
  2215. "language" : "undefined",
  2216. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation",
  2217. "type" : "label"
  2218. } ],
  2219. "definition" : [ {
  2220. "identifier" : "definition",
  2221. "language" : "en",
  2222. "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.",
  2223. "type" : "label"
  2224. } ],
  2225. "category" : [ {
  2226. "identifier" : "category",
  2227. "language" : "undefined",
  2228. "value" : "qualified",
  2229. "type" : "label"
  2230. } ],
  2231. "n" : [ {
  2232. "identifier" : "n",
  2233. "language" : "undefined",
  2234. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation",
  2235. "type" : "label"
  2236. } ]
  2237. },
  2238. "label" : {
  2239. "IRI-based" : "Quotation",
  2240. "undefined" : "Quotation"
  2241. },
  2242. "comment" : {
  2243. "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 ]."
  2244. },
  2245. "attributes" : [ "external" ],
  2246. "id" : "289",
  2247. "superClasses" : [ "167" ]
  2248. }, {
  2249. "iri" : "http://www.w3.org/ns/prov#PrimarySource",
  2250. "baseIri" : "http://www.w3.org/ns/prov",
  2251. "instances" : 0,
  2252. "annotations" : {
  2253. "component" : [ {
  2254. "identifier" : "component",
  2255. "language" : "undefined",
  2256. "value" : "derivations",
  2257. "type" : "label"
  2258. } ],
  2259. "isDefinedBy" : [ {
  2260. "identifier" : "isDefinedBy",
  2261. "language" : "undefined",
  2262. "value" : "http://www.w3.org/ns/prov-o#",
  2263. "type" : "iri"
  2264. } ],
  2265. "unqualifiedForm" : [ {
  2266. "identifier" : "unqualifiedForm",
  2267. "language" : "undefined",
  2268. "value" : "http://www.w3.org/ns/prov#hadPrimarySource",
  2269. "type" : "iri"
  2270. } ],
  2271. "dm" : [ {
  2272. "identifier" : "dm",
  2273. "language" : "undefined",
  2274. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source",
  2275. "type" : "label"
  2276. } ],
  2277. "definition" : [ {
  2278. "identifier" : "definition",
  2279. "language" : "en",
  2280. "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.",
  2281. "type" : "label"
  2282. } ],
  2283. "category" : [ {
  2284. "identifier" : "category",
  2285. "language" : "undefined",
  2286. "value" : "qualified",
  2287. "type" : "label"
  2288. } ],
  2289. "n" : [ {
  2290. "identifier" : "n",
  2291. "language" : "undefined",
  2292. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source",
  2293. "type" : "label"
  2294. } ]
  2295. },
  2296. "label" : {
  2297. "IRI-based" : "PrimarySource",
  2298. "undefined" : "PrimarySource"
  2299. },
  2300. "comment" : {
  2301. "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 ] ."
  2302. },
  2303. "attributes" : [ "external" ],
  2304. "id" : "295",
  2305. "superClasses" : [ "167" ]
  2306. }, {
  2307. "iri" : "https://w3id.org/GDPRov#NotifyControllerActivity",
  2308. "baseIri" : "https://w3id.org/GDPRov",
  2309. "instances" : 0,
  2310. "annotations" : {
  2311. "isDefinedBy" : [ {
  2312. "identifier" : "isDefinedBy",
  2313. "language" : "undefined",
  2314. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreachToController",
  2315. "type" : "iri"
  2316. } ],
  2317. "seeAlso" : [ {
  2318. "identifier" : "seeAlso",
  2319. "language" : "undefined",
  2320. "value" : "https://w3id.org/GDPRov#NotifyController",
  2321. "type" : "iri"
  2322. } ]
  2323. },
  2324. "label" : {
  2325. "IRI-based" : "NotifyControllerActivity",
  2326. "undefined" : "Notify Controller Activity"
  2327. },
  2328. "comment" : {
  2329. "undefined" : "Is an activity that notifies controller about data breach"
  2330. },
  2331. "id" : "89",
  2332. "superClasses" : [ "86" ]
  2333. }, {
  2334. "iri" : "https://w3id.org/GDPRov#DataCollectionActivity",
  2335. "baseIri" : "https://w3id.org/GDPRov",
  2336. "instances" : 0,
  2337. "annotations" : {
  2338. "isDefinedBy" : [ {
  2339. "identifier" : "isDefinedBy",
  2340. "language" : "undefined",
  2341. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  2342. "type" : "iri"
  2343. } ],
  2344. "seeAlso" : [ {
  2345. "identifier" : "seeAlso",
  2346. "language" : "undefined",
  2347. "value" : "https://w3id.org/GDPRov#DataCollectionStep",
  2348. "type" : "iri"
  2349. } ]
  2350. },
  2351. "label" : {
  2352. "IRI-based" : "DataCollectionActivity",
  2353. "undefined" : "Data Collection Activity"
  2354. },
  2355. "comment" : {
  2356. "undefined" : "Is an activity that collects or acquires data."
  2357. },
  2358. "id" : "299",
  2359. "superClasses" : [ "116" ]
  2360. }, {
  2361. "iri" : "https://w3id.org/GDPRov#ModifyConsentActivity",
  2362. "baseIri" : "https://w3id.org/GDPRov",
  2363. "instances" : 0,
  2364. "annotations" : {
  2365. "seeAlso" : [ {
  2366. "identifier" : "seeAlso",
  2367. "language" : "undefined",
  2368. "value" : "https://w3id.org/GDPRov#ConsentModificationStep",
  2369. "type" : "iri"
  2370. } ]
  2371. },
  2372. "label" : {
  2373. "IRI-based" : "ModifyConsentActivity",
  2374. "undefined" : "Modify Consent Activity"
  2375. },
  2376. "subClasses" : [ "132" ],
  2377. "comment" : {
  2378. "undefined" : "Is an activity that modifies given consent."
  2379. },
  2380. "id" : "107",
  2381. "superClasses" : [ "105" ]
  2382. }, {
  2383. "iri" : "https://w3id.org/GDPRov#DataBreachStep",
  2384. "baseIri" : "https://w3id.org/GDPRov",
  2385. "instances" : 0,
  2386. "annotations" : {
  2387. "isDefinedBy" : [ {
  2388. "identifier" : "isDefinedBy",
  2389. "language" : "undefined",
  2390. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreach",
  2391. "type" : "iri"
  2392. } ],
  2393. "seeAlso" : [ {
  2394. "identifier" : "seeAlso",
  2395. "language" : "undefined",
  2396. "value" : "https://w3id.org/GDPRov#DataBreachActivity",
  2397. "type" : "iri"
  2398. } ]
  2399. },
  2400. "label" : {
  2401. "IRI-based" : "DataBreachStep",
  2402. "undefined" : "Data Breach Step"
  2403. },
  2404. "subClasses" : [ "134", "11", "137" ],
  2405. "comment" : {
  2406. "undefined" : "Step representing an action associated with data breach."
  2407. },
  2408. "id" : "12",
  2409. "superClasses" : [ "75" ]
  2410. }, {
  2411. "iri" : "http://www.w3.org/ns/prov#Revision",
  2412. "baseIri" : "http://www.w3.org/ns/prov",
  2413. "instances" : 0,
  2414. "annotations" : {
  2415. "component" : [ {
  2416. "identifier" : "component",
  2417. "language" : "undefined",
  2418. "value" : "derivations",
  2419. "type" : "label"
  2420. } ],
  2421. "isDefinedBy" : [ {
  2422. "identifier" : "isDefinedBy",
  2423. "language" : "undefined",
  2424. "value" : "http://www.w3.org/ns/prov-o#",
  2425. "type" : "iri"
  2426. } ],
  2427. "unqualifiedForm" : [ {
  2428. "identifier" : "unqualifiedForm",
  2429. "language" : "undefined",
  2430. "value" : "http://www.w3.org/ns/prov#wasRevisionOf",
  2431. "type" : "iri"
  2432. } ],
  2433. "dm" : [ {
  2434. "identifier" : "dm",
  2435. "language" : "undefined",
  2436. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision",
  2437. "type" : "label"
  2438. } ],
  2439. "definition" : [ {
  2440. "identifier" : "definition",
  2441. "language" : "en",
  2442. "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.",
  2443. "type" : "label"
  2444. } ],
  2445. "category" : [ {
  2446. "identifier" : "category",
  2447. "language" : "undefined",
  2448. "value" : "qualified",
  2449. "type" : "label"
  2450. } ],
  2451. "n" : [ {
  2452. "identifier" : "n",
  2453. "language" : "undefined",
  2454. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision",
  2455. "type" : "label"
  2456. } ]
  2457. },
  2458. "label" : {
  2459. "IRI-based" : "Revision",
  2460. "undefined" : "Revision"
  2461. },
  2462. "comment" : {
  2463. "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 ]."
  2464. },
  2465. "attributes" : [ "external" ],
  2466. "id" : "182",
  2467. "superClasses" : [ "167" ]
  2468. }, {
  2469. "iri" : "http://www.w3.org/ns/prov#Role",
  2470. "baseIri" : "http://www.w3.org/ns/prov",
  2471. "instances" : 0,
  2472. "annotations" : {
  2473. "component" : [ {
  2474. "identifier" : "component",
  2475. "language" : "undefined",
  2476. "value" : "agents-responsibility",
  2477. "type" : "label"
  2478. } ],
  2479. "isDefinedBy" : [ {
  2480. "identifier" : "isDefinedBy",
  2481. "language" : "undefined",
  2482. "value" : "http://www.w3.org/ns/prov-o#",
  2483. "type" : "iri"
  2484. } ],
  2485. "dm" : [ {
  2486. "identifier" : "dm",
  2487. "language" : "undefined",
  2488. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role",
  2489. "type" : "label"
  2490. } ],
  2491. "definition" : [ {
  2492. "identifier" : "definition",
  2493. "language" : "en",
  2494. "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.",
  2495. "type" : "label"
  2496. } ],
  2497. "category" : [ {
  2498. "identifier" : "category",
  2499. "language" : "undefined",
  2500. "value" : "qualified",
  2501. "type" : "label"
  2502. } ],
  2503. "n" : [ {
  2504. "identifier" : "n",
  2505. "language" : "undefined",
  2506. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute",
  2507. "type" : "label"
  2508. } ],
  2509. "seeAlso" : [ {
  2510. "identifier" : "seeAlso",
  2511. "language" : "undefined",
  2512. "value" : "http://www.w3.org/ns/prov#hadRole",
  2513. "type" : "iri"
  2514. } ]
  2515. },
  2516. "label" : {
  2517. "IRI-based" : "Role",
  2518. "undefined" : "Role"
  2519. },
  2520. "attributes" : [ "external" ],
  2521. "id" : "311"
  2522. }, {
  2523. "iri" : "https://w3id.org/GDPRtEXT#LawfulBasisForProcessing",
  2524. "baseIri" : "https://w3id.org/GDPRtEXT",
  2525. "instances" : 0,
  2526. "label" : {
  2527. "IRI-based" : "LawfulBasisForProcessing"
  2528. },
  2529. "attributes" : [ "external" ],
  2530. "id" : "314"
  2531. }, {
  2532. "iri" : "http://www.w3.org/ns/prov#End",
  2533. "baseIri" : "http://www.w3.org/ns/prov",
  2534. "instances" : 0,
  2535. "annotations" : {
  2536. "component" : [ {
  2537. "identifier" : "component",
  2538. "language" : "undefined",
  2539. "value" : "entities-activities",
  2540. "type" : "label"
  2541. } ],
  2542. "isDefinedBy" : [ {
  2543. "identifier" : "isDefinedBy",
  2544. "language" : "undefined",
  2545. "value" : "http://www.w3.org/ns/prov-o#",
  2546. "type" : "iri"
  2547. } ],
  2548. "unqualifiedForm" : [ {
  2549. "identifier" : "unqualifiedForm",
  2550. "language" : "undefined",
  2551. "value" : "http://www.w3.org/ns/prov#wasEndedBy",
  2552. "type" : "iri"
  2553. } ],
  2554. "dm" : [ {
  2555. "identifier" : "dm",
  2556. "language" : "undefined",
  2557. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End",
  2558. "type" : "label"
  2559. } ],
  2560. "definition" : [ {
  2561. "identifier" : "definition",
  2562. "language" : "en",
  2563. "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.",
  2564. "type" : "label"
  2565. } ],
  2566. "category" : [ {
  2567. "identifier" : "category",
  2568. "language" : "undefined",
  2569. "value" : "qualified",
  2570. "type" : "label"
  2571. } ],
  2572. "constraints" : [ {
  2573. "identifier" : "constraints",
  2574. "language" : "undefined",
  2575. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2576. "type" : "label"
  2577. } ],
  2578. "n" : [ {
  2579. "identifier" : "n",
  2580. "language" : "undefined",
  2581. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End",
  2582. "type" : "label"
  2583. } ]
  2584. },
  2585. "label" : {
  2586. "IRI-based" : "End",
  2587. "undefined" : "End"
  2588. },
  2589. "comment" : {
  2590. "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 ]."
  2591. },
  2592. "attributes" : [ "external" ],
  2593. "id" : "169",
  2594. "superClasses" : [ "51", "119" ]
  2595. }, {
  2596. "iri" : "https://w3id.org/GDPRov#DataUsageStep",
  2597. "baseIri" : "https://w3id.org/GDPRov",
  2598. "instances" : 0,
  2599. "annotations" : {
  2600. "isDefinedBy" : [ {
  2601. "identifier" : "isDefinedBy",
  2602. "language" : "undefined",
  2603. "value" : "https://w3id.org/GDPRtEXT#Processing",
  2604. "type" : "iri"
  2605. } ],
  2606. "seeAlso" : [ {
  2607. "identifier" : "seeAlso",
  2608. "language" : "undefined",
  2609. "value" : "https://w3id.org/GDPRov#DataUsageActivity",
  2610. "type" : "iri"
  2611. } ]
  2612. },
  2613. "label" : {
  2614. "IRI-based" : "DataUsageStep",
  2615. "en" : "Data Usage Step"
  2616. },
  2617. "comment" : {
  2618. "en" : "A DataUsageStep is a DataStep that uses existing data present within the system"
  2619. },
  2620. "id" : "207",
  2621. "superClasses" : [ "85" ]
  2622. }, {
  2623. "iri" : "https://w3id.org/GDPRov#DPO",
  2624. "baseIri" : "https://w3id.org/GDPRov",
  2625. "instances" : 0,
  2626. "annotations" : {
  2627. "isDefinedBy" : [ {
  2628. "identifier" : "isDefinedBy",
  2629. "language" : "undefined",
  2630. "value" : "https://w3id.org/GDPRtEXT#DPO",
  2631. "type" : "iri"
  2632. } ]
  2633. },
  2634. "label" : {
  2635. "IRI-based" : "DPO",
  2636. "undefined" : "Data Protection Officer (DPO)"
  2637. },
  2638. "comment" : {
  2639. "undefined" : "The Data Protection Officer appointed to an organisation."
  2640. },
  2641. "id" : "260",
  2642. "superClasses" : [ "43" ]
  2643. }, {
  2644. "iri" : "https://w3id.org/GDPRov#AnonymisedDataEntity",
  2645. "baseIri" : "https://w3id.org/GDPRov",
  2646. "instances" : 0,
  2647. "annotations" : {
  2648. "isDefinedBy" : [ {
  2649. "identifier" : "isDefinedBy",
  2650. "language" : "undefined",
  2651. "value" : "https://w3id.org/GDPRtEXT#PseudoAnonymousData",
  2652. "type" : "iri"
  2653. }, {
  2654. "identifier" : "isDefinedBy",
  2655. "language" : "undefined",
  2656. "value" : "https://w3id.org/GDPRtEXT#AnonymousData",
  2657. "type" : "iri"
  2658. } ],
  2659. "seeAlso" : [ {
  2660. "identifier" : "seeAlso",
  2661. "language" : "undefined",
  2662. "value" : "https://w3id.org/GDPRov#AnonymisedData",
  2663. "type" : "iri"
  2664. } ]
  2665. },
  2666. "label" : {
  2667. "IRI-based" : "AnonymisedDataEntity",
  2668. "undefined" : "Anonymised Data Entity"
  2669. },
  2670. "comment" : {
  2671. "undefined" : "Is an entity where personal data has been anonymised to some extent."
  2672. },
  2673. "id" : "307",
  2674. "superClasses" : [ "190" ]
  2675. }, {
  2676. "iri" : "https://w3id.org/GDPRov#ConsentAgreementTemplate",
  2677. "baseIri" : "https://w3id.org/GDPRov",
  2678. "instances" : 0,
  2679. "annotations" : {
  2680. "isDefinedBy" : [ {
  2681. "identifier" : "isDefinedBy",
  2682. "language" : "undefined",
  2683. "value" : "https://w3id.org/GDPRtEXT#Consent",
  2684. "type" : "iri"
  2685. }, {
  2686. "identifier" : "isDefinedBy",
  2687. "language" : "undefined",
  2688. "value" : "https://w3id.org/GDPRtEXT#ValidConsent",
  2689. "type" : "iri"
  2690. }, {
  2691. "identifier" : "isDefinedBy",
  2692. "language" : "undefined",
  2693. "value" : "https://w3id.org/GDPRtEXT#ObligationForObtainingConsent",
  2694. "type" : "iri"
  2695. } ],
  2696. "seeAlso" : [ {
  2697. "identifier" : "seeAlso",
  2698. "language" : "undefined",
  2699. "value" : "https://w3id.org/GDPRov#GivenConsentTemplate",
  2700. "type" : "iri"
  2701. } ]
  2702. },
  2703. "label" : {
  2704. "IRI-based" : "ConsentAgreementTemplate",
  2705. "en" : "ConsentAgreementTemplate"
  2706. },
  2707. "comment" : {
  2708. "en" : "This is a template for consent requested from the user."
  2709. },
  2710. "id" : "65",
  2711. "superClasses" : [ "76" ]
  2712. }, {
  2713. "iri" : "https://w3id.org/GDPRov#AcquireConsentActivity",
  2714. "baseIri" : "https://w3id.org/GDPRov",
  2715. "instances" : 0,
  2716. "annotations" : {
  2717. "isDefinedBy" : [ {
  2718. "identifier" : "isDefinedBy",
  2719. "language" : "undefined",
  2720. "value" : "https://w3id.org/GDPRtEXT#ObtainingConsent",
  2721. "type" : "iri"
  2722. } ],
  2723. "seeAlso" : [ {
  2724. "identifier" : "seeAlso",
  2725. "language" : "undefined",
  2726. "value" : "https://w3id.org/GDPRov#ConsentAcquisitionStep",
  2727. "type" : "iri"
  2728. } ]
  2729. },
  2730. "label" : {
  2731. "IRI-based" : "AcquireConsentActivity",
  2732. "undefined" : "Acquire Consent Activity"
  2733. },
  2734. "comment" : {
  2735. "undefined" : "Is an activity that acquires consent."
  2736. },
  2737. "id" : "106",
  2738. "superClasses" : [ "105" ]
  2739. }, {
  2740. "iri" : "https://w3id.org/GDPRov#TermsAndConditions",
  2741. "baseIri" : "https://w3id.org/GDPRov",
  2742. "instances" : 0,
  2743. "annotations" : {
  2744. "seeAlso" : [ {
  2745. "identifier" : "seeAlso",
  2746. "language" : "undefined",
  2747. "value" : "https://w3id.org/GDPRov#TermsAndConditionsEntity",
  2748. "type" : "iri"
  2749. } ]
  2750. },
  2751. "label" : {
  2752. "IRI-based" : "TermsAndConditions",
  2753. "en" : "TermsAndConditions"
  2754. },
  2755. "comment" : {
  2756. "en" : "Terms and Conditions of usage as provided to the user in agreement of provided service"
  2757. },
  2758. "id" : "126",
  2759. "superClasses" : [ "76" ]
  2760. }, {
  2761. "iri" : "https://w3id.org/GDPRov#ImpactAssessment",
  2762. "baseIri" : "https://w3id.org/GDPRov",
  2763. "instances" : 0,
  2764. "annotations" : {
  2765. "isDefinedBy" : [ {
  2766. "identifier" : "isDefinedBy",
  2767. "language" : "undefined",
  2768. "value" : "https://w3id.org/GDPRtEXT#ImpactAssessment",
  2769. "type" : "iri"
  2770. } ]
  2771. },
  2772. "label" : {
  2773. "IRI-based" : "ImpactAssessment",
  2774. "undefined" : "Impact Assessment"
  2775. },
  2776. "comment" : {
  2777. "undefined" : "Represents the process or collection of steps representing the Impact Assessment."
  2778. },
  2779. "id" : "41",
  2780. "superClasses" : [ "2" ]
  2781. }, {
  2782. "iri" : "https://w3id.org/GDPRov#DataStorageStep",
  2783. "baseIri" : "https://w3id.org/GDPRov",
  2784. "instances" : 0,
  2785. "annotations" : {
  2786. "isDefinedBy" : [ {
  2787. "identifier" : "isDefinedBy",
  2788. "language" : "undefined",
  2789. "value" : "https://w3id.org/GDPRtEXT#StoreData",
  2790. "type" : "iri"
  2791. } ],
  2792. "seeAlso" : [ {
  2793. "identifier" : "seeAlso",
  2794. "language" : "undefined",
  2795. "value" : "https://w3id.org/GDPRov#DataStorageActivity",
  2796. "type" : "iri"
  2797. } ]
  2798. },
  2799. "label" : {
  2800. "IRI-based" : "DataStorageStep",
  2801. "en" : "Data Storage Step"
  2802. },
  2803. "subClasses" : [ "160" ],
  2804. "comment" : {
  2805. "en" : "DataStorageStep stores data within the system"
  2806. },
  2807. "id" : "161",
  2808. "superClasses" : [ "85" ]
  2809. }, {
  2810. "iri" : "https://w3id.org/GDPRov#WithdrawConsentActivity",
  2811. "baseIri" : "https://w3id.org/GDPRov",
  2812. "instances" : 0,
  2813. "annotations" : {
  2814. "isDefinedBy" : [ {
  2815. "identifier" : "isDefinedBy",
  2816. "language" : "undefined",
  2817. "value" : "https://w3id.org/GDPRtEXT#WithdrawingConsent",
  2818. "type" : "iri"
  2819. } ],
  2820. "seeAlso" : [ {
  2821. "identifier" : "seeAlso",
  2822. "language" : "undefined",
  2823. "value" : "https://w3id.org/GDPRov#ConsentWithdrawalStep",
  2824. "type" : "iri"
  2825. } ]
  2826. },
  2827. "label" : {
  2828. "IRI-based" : "WithdrawConsentActivity",
  2829. "undefined" : "Withdraw Consent Activity"
  2830. },
  2831. "comment" : {
  2832. "undefined" : "Is an activity that withdraws given consent. Can also term it so as to depict withdrawal as a modification of consent."
  2833. },
  2834. "id" : "132",
  2835. "superClasses" : [ "107" ]
  2836. }, {
  2837. "iri" : "http://www.w3.org/ns/prov#InstantaneousEvent",
  2838. "baseIri" : "http://www.w3.org/ns/prov",
  2839. "instances" : 0,
  2840. "annotations" : {
  2841. "component" : [ {
  2842. "identifier" : "component",
  2843. "language" : "undefined",
  2844. "value" : "entities-activities",
  2845. "type" : "label"
  2846. } ],
  2847. "isDefinedBy" : [ {
  2848. "identifier" : "isDefinedBy",
  2849. "language" : "undefined",
  2850. "value" : "http://www.w3.org/ns/prov-o#",
  2851. "type" : "iri"
  2852. } ],
  2853. "definition" : [ {
  2854. "identifier" : "definition",
  2855. "language" : "en",
  2856. "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.",
  2857. "type" : "label"
  2858. } ],
  2859. "category" : [ {
  2860. "identifier" : "category",
  2861. "language" : "undefined",
  2862. "value" : "qualified",
  2863. "type" : "label"
  2864. } ],
  2865. "constraints" : [ {
  2866. "identifier" : "constraints",
  2867. "language" : "undefined",
  2868. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event",
  2869. "type" : "label"
  2870. } ]
  2871. },
  2872. "label" : {
  2873. "IRI-based" : "InstantaneousEvent",
  2874. "undefined" : "InstantaneousEvent"
  2875. },
  2876. "subClasses" : [ "192", "267", "210", "169", "171" ],
  2877. "comment" : {
  2878. "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."
  2879. },
  2880. "attributes" : [ "external" ],
  2881. "id" : "119"
  2882. }, {
  2883. "iri" : "http://www.w3.org/ns/prov#ActivityInfluence",
  2884. "baseIri" : "http://www.w3.org/ns/prov",
  2885. "instances" : 0,
  2886. "annotations" : {
  2887. "isDefinedBy" : [ {
  2888. "identifier" : "isDefinedBy",
  2889. "language" : "undefined",
  2890. "value" : "http://www.w3.org/ns/prov-o#",
  2891. "type" : "iri"
  2892. } ],
  2893. "editorsDefinition" : [ {
  2894. "identifier" : "editorsDefinition",
  2895. "language" : "en",
  2896. "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.",
  2897. "type" : "label"
  2898. } ],
  2899. "category" : [ {
  2900. "identifier" : "category",
  2901. "language" : "undefined",
  2902. "value" : "qualified",
  2903. "type" : "label"
  2904. } ],
  2905. "seeAlso" : [ {
  2906. "identifier" : "seeAlso",
  2907. "language" : "undefined",
  2908. "value" : "http://www.w3.org/ns/prov#activity",
  2909. "type" : "iri"
  2910. } ]
  2911. },
  2912. "label" : {
  2913. "IRI-based" : "ActivityInfluence",
  2914. "undefined" : "ActivityInfluence"
  2915. },
  2916. "subClasses" : [ "71", "267", "210" ],
  2917. "comment" : {
  2918. "en" : "ActivityInfluence provides additional descriptions of an Activity's binary influence upon any other kind of resource. Instances of ActivityInfluence use the prov:activity property to cite the influencing Activity."
  2919. },
  2920. "attributes" : [ "external" ],
  2921. "id" : "53",
  2922. "superClasses" : [ "49" ]
  2923. }, {
  2924. "iri" : "https://w3id.org/GDPRov#DataArchivalProcess",
  2925. "baseIri" : "https://w3id.org/GDPRov",
  2926. "instances" : 0,
  2927. "annotations" : {
  2928. "isDefinedBy" : [ {
  2929. "identifier" : "isDefinedBy",
  2930. "language" : "undefined",
  2931. "value" : "https://w3id.org/GDPRtEXT#ArchiveData",
  2932. "type" : "iri"
  2933. } ]
  2934. },
  2935. "label" : {
  2936. "IRI-based" : "DataArchivalProcess",
  2937. "en" : "Data Archival Process"
  2938. },
  2939. "comment" : {
  2940. "en" : "A DataArchivalProcess describes the process of data archival"
  2941. },
  2942. "id" : "196",
  2943. "superClasses" : [ "2" ]
  2944. }, {
  2945. "iri" : "https://w3id.org/GDPRov#DataCollectionStep",
  2946. "baseIri" : "https://w3id.org/GDPRov",
  2947. "instances" : 0,
  2948. "annotations" : {
  2949. "isDefinedBy" : [ {
  2950. "identifier" : "isDefinedBy",
  2951. "language" : "undefined",
  2952. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  2953. "type" : "iri"
  2954. } ],
  2955. "seeAlso" : [ {
  2956. "identifier" : "seeAlso",
  2957. "language" : "undefined",
  2958. "value" : "https://w3id.org/GDPRov#DataCollectionActivity",
  2959. "type" : "iri"
  2960. } ]
  2961. },
  2962. "label" : {
  2963. "IRI-based" : "DataCollectionStep",
  2964. "en" : "Data Collection Step"
  2965. },
  2966. "comment" : {
  2967. "en" : "DataCollectionStep collects data from the user"
  2968. },
  2969. "id" : "208",
  2970. "superClasses" : [ "85" ]
  2971. }, {
  2972. "iri" : "http://www.w3.org/ns/prov#EmptyCollection",
  2973. "baseIri" : "http://www.w3.org/ns/prov",
  2974. "instances" : 0,
  2975. "annotations" : {
  2976. "component" : [ {
  2977. "identifier" : "component",
  2978. "language" : "undefined",
  2979. "value" : "collections",
  2980. "type" : "label"
  2981. } ],
  2982. "isDefinedBy" : [ {
  2983. "identifier" : "isDefinedBy",
  2984. "language" : "undefined",
  2985. "value" : "http://www.w3.org/ns/prov-o#",
  2986. "type" : "iri"
  2987. } ],
  2988. "definition" : [ {
  2989. "identifier" : "definition",
  2990. "language" : "en",
  2991. "value" : "An empty collection is a collection without members.",
  2992. "type" : "label"
  2993. } ],
  2994. "category" : [ {
  2995. "identifier" : "category",
  2996. "language" : "undefined",
  2997. "value" : "expanded",
  2998. "type" : "label"
  2999. } ]
  3000. },
  3001. "label" : {
  3002. "IRI-based" : "EmptyCollection",
  3003. "en" : "EmptyCollection"
  3004. },
  3005. "attributes" : [ "external" ],
  3006. "id" : "173",
  3007. "superClasses" : [ "174" ]
  3008. }, {
  3009. "iri" : "http://www.w3.org/ns/prov#Agent",
  3010. "baseIri" : "http://www.w3.org/ns/prov",
  3011. "instances" : 0,
  3012. "annotations" : {
  3013. "component" : [ {
  3014. "identifier" : "component",
  3015. "language" : "undefined",
  3016. "value" : "agents-responsibility",
  3017. "type" : "label"
  3018. } ],
  3019. "isDefinedBy" : [ {
  3020. "identifier" : "isDefinedBy",
  3021. "language" : "undefined",
  3022. "value" : "http://www.w3.org/ns/prov-o#",
  3023. "type" : "iri"
  3024. } ],
  3025. "dm" : [ {
  3026. "identifier" : "dm",
  3027. "language" : "undefined",
  3028. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  3029. "type" : "label"
  3030. } ],
  3031. "definition" : [ {
  3032. "identifier" : "definition",
  3033. "language" : "en",
  3034. "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. ",
  3035. "type" : "label"
  3036. } ],
  3037. "category" : [ {
  3038. "identifier" : "category",
  3039. "language" : "undefined",
  3040. "value" : "starting-point",
  3041. "type" : "label"
  3042. } ],
  3043. "n" : [ {
  3044. "identifier" : "n",
  3045. "language" : "undefined",
  3046. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent",
  3047. "type" : "label"
  3048. } ]
  3049. },
  3050. "label" : {
  3051. "IRI-based" : "Agent",
  3052. "undefined" : "Agent"
  3053. },
  3054. "subClasses" : [ "42", "260", "139", "263", "211", "121", "104", "257" ],
  3055. "attributes" : [ "external" ],
  3056. "id" : "43"
  3057. }, {
  3058. "iri" : "https://w3id.org/GDPRov#UserOutputStep",
  3059. "baseIri" : "https://w3id.org/GDPRov",
  3060. "instances" : 0,
  3061. "label" : {
  3062. "IRI-based" : "UserOutputStep",
  3063. "undefined" : "User Output Step"
  3064. },
  3065. "id" : "114",
  3066. "superClasses" : [ "111" ]
  3067. }, {
  3068. "iri" : "https://w3id.org/GDPRov#ThirdParty",
  3069. "baseIri" : "https://w3id.org/GDPRov",
  3070. "instances" : 0,
  3071. "annotations" : {
  3072. "isDefinedBy" : [ {
  3073. "identifier" : "isDefinedBy",
  3074. "language" : "undefined",
  3075. "value" : "https://w3id.org/GDPRtEXT#Entity",
  3076. "type" : "iri"
  3077. } ]
  3078. },
  3079. "label" : {
  3080. "IRI-based" : "ThirdParty",
  3081. "en" : "ThirdParty"
  3082. },
  3083. "subClasses" : [ "138", "158" ],
  3084. "comment" : {
  3085. "en" : "A ThirdParty is any external entitiy associated with some internal activity"
  3086. },
  3087. "id" : "139",
  3088. "superClasses" : [ "43" ]
  3089. }, {
  3090. "iri" : "https://w3id.org/GDPRov#SubProcessor",
  3091. "baseIri" : "https://w3id.org/GDPRov",
  3092. "instances" : 0,
  3093. "annotations" : {
  3094. "isDefinedBy" : [ {
  3095. "identifier" : "isDefinedBy",
  3096. "language" : "undefined",
  3097. "value" : "https://w3id.org/GDPRtEXT#SubProcessor",
  3098. "type" : "iri"
  3099. } ]
  3100. },
  3101. "label" : {
  3102. "IRI-based" : "SubProcessor",
  3103. "undefined" : "Sub-Processor"
  3104. },
  3105. "comment" : {
  3106. "undefined" : "A Processor appointed under or by another Processor is a Sub-Processor."
  3107. },
  3108. "id" : "140",
  3109. "superClasses" : [ "138" ]
  3110. }, {
  3111. "iri" : "https://w3id.org/GDPRov#NotifyDPA",
  3112. "baseIri" : "https://w3id.org/GDPRov",
  3113. "instances" : 0,
  3114. "annotations" : {
  3115. "isDefinedBy" : [ {
  3116. "identifier" : "isDefinedBy",
  3117. "language" : "undefined",
  3118. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreachToDPAWithin72Hours",
  3119. "type" : "iri"
  3120. } ],
  3121. "seeAlso" : [ {
  3122. "identifier" : "seeAlso",
  3123. "language" : "undefined",
  3124. "value" : "https://w3id.org/GDPRov#NotifyDPAActivity",
  3125. "type" : "iri"
  3126. } ]
  3127. },
  3128. "label" : {
  3129. "IRI-based" : "NotifyDPA",
  3130. "undefined" : "Notify Data Protection Authority"
  3131. },
  3132. "comment" : {
  3133. "undefined" : "Step that notifies the Data Protection Authorities of a data breach."
  3134. },
  3135. "id" : "137",
  3136. "superClasses" : [ "12" ]
  3137. }, {
  3138. "iri" : "https://w3id.org/GDPRov#ReportDataBreach",
  3139. "baseIri" : "https://w3id.org/GDPRov",
  3140. "instances" : 0,
  3141. "annotations" : {
  3142. "isDefinedBy" : [ {
  3143. "identifier" : "isDefinedBy",
  3144. "language" : "undefined",
  3145. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreach",
  3146. "type" : "iri"
  3147. } ]
  3148. },
  3149. "label" : {
  3150. "IRI-based" : "ReportDataBreach",
  3151. "undefined" : "Report Data Breach"
  3152. },
  3153. "comment" : {
  3154. "undefined" : "The process of reporting after a data breach has taken place."
  3155. },
  3156. "id" : "184",
  3157. "superClasses" : [ "183" ]
  3158. }, {
  3159. "iri" : "https://w3id.org/GDPRov#HandleRightToTransparency",
  3160. "baseIri" : "https://w3id.org/GDPRov",
  3161. "instances" : 0,
  3162. "annotations" : {
  3163. "isDefinedBy" : [ {
  3164. "identifier" : "isDefinedBy",
  3165. "language" : "undefined",
  3166. "value" : "https://w3id.org/GDPRtEXT#RightToTransparency",
  3167. "type" : "iri"
  3168. } ]
  3169. },
  3170. "label" : {
  3171. "IRI-based" : "HandleRightToTransparency",
  3172. "undefined" : "Handle Right to Transparency"
  3173. },
  3174. "comment" : {
  3175. "undefined" : "The process or series of steps that handle the right to transparency."
  3176. },
  3177. "id" : "215",
  3178. "superClasses" : [ "2" ]
  3179. }, {
  3180. "iri" : "http://purl.org/net/p-plan#Step",
  3181. "baseIri" : "http://purl.org/net/p-plan",
  3182. "instances" : 0,
  3183. "annotations" : {
  3184. "isDefinedBy" : [ {
  3185. "identifier" : "isDefinedBy",
  3186. "language" : "undefined",
  3187. "value" : "http://purl.org/net/p-plan#",
  3188. "type" : "iri"
  3189. } ],
  3190. "definition" : [ {
  3191. "identifier" : "definition",
  3192. "language" : "en",
  3193. "value" : "A p-plan:Step represents the planned execution activity",
  3194. "type" : "label"
  3195. } ]
  3196. },
  3197. "label" : {
  3198. "IRI-based" : "Step",
  3199. "en" : "Step"
  3200. },
  3201. "subClasses" : [ "317", "324", "111", "85", "127", "12" ],
  3202. "attributes" : [ "external" ],
  3203. "id" : "75"
  3204. }, {
  3205. "iri" : "http://www.w3.org/ns/prov#Location",
  3206. "baseIri" : "http://www.w3.org/ns/prov",
  3207. "instances" : 0,
  3208. "annotations" : {
  3209. "isDefinedBy" : [ {
  3210. "identifier" : "isDefinedBy",
  3211. "language" : "undefined",
  3212. "value" : "http://www.w3.org/ns/prov-o#",
  3213. "type" : "iri"
  3214. } ],
  3215. "dm" : [ {
  3216. "identifier" : "dm",
  3217. "language" : "undefined",
  3218. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location",
  3219. "type" : "label"
  3220. } ],
  3221. "definition" : [ {
  3222. "identifier" : "definition",
  3223. "language" : "en",
  3224. "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.",
  3225. "type" : "label"
  3226. } ],
  3227. "category" : [ {
  3228. "identifier" : "category",
  3229. "language" : "undefined",
  3230. "value" : "expanded",
  3231. "type" : "label"
  3232. } ],
  3233. "seeAlso" : [ {
  3234. "identifier" : "seeAlso",
  3235. "language" : "undefined",
  3236. "value" : "http://www.w3.org/ns/prov#atLocation",
  3237. "type" : "iri"
  3238. } ],
  3239. "n" : [ {
  3240. "identifier" : "n",
  3241. "language" : "undefined",
  3242. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute",
  3243. "type" : "label"
  3244. } ]
  3245. },
  3246. "label" : {
  3247. "IRI-based" : "Location",
  3248. "undefined" : "Location"
  3249. },
  3250. "attributes" : [ "external" ],
  3251. "id" : "37"
  3252. }, {
  3253. "iri" : "https://w3id.org/GDPRov#TermsAndConditionsEntity",
  3254. "baseIri" : "https://w3id.org/GDPRov",
  3255. "instances" : 0,
  3256. "annotations" : {
  3257. "seeAlso" : [ {
  3258. "identifier" : "seeAlso",
  3259. "language" : "undefined",
  3260. "value" : "https://w3id.org/GDPRov#TermsAndConditions",
  3261. "type" : "iri"
  3262. } ]
  3263. },
  3264. "label" : {
  3265. "IRI-based" : "TermsAndConditionsEntity",
  3266. "undefined" : "Terms and Conditions Entity"
  3267. },
  3268. "comment" : {
  3269. "undefined" : "Represents the Terms and Conditions entity."
  3270. },
  3271. "id" : "150",
  3272. "superClasses" : [ "83" ]
  3273. }, {
  3274. "iri" : "http://www.w3.org/ns/prov#Derivation",
  3275. "baseIri" : "http://www.w3.org/ns/prov",
  3276. "instances" : 0,
  3277. "annotations" : {
  3278. "component" : [ {
  3279. "identifier" : "component",
  3280. "language" : "undefined",
  3281. "value" : "derivations",
  3282. "type" : "label"
  3283. } ],
  3284. "isDefinedBy" : [ {
  3285. "identifier" : "isDefinedBy",
  3286. "language" : "undefined",
  3287. "value" : "http://www.w3.org/ns/prov-o#",
  3288. "type" : "iri"
  3289. } ],
  3290. "unqualifiedForm" : [ {
  3291. "identifier" : "unqualifiedForm",
  3292. "language" : "undefined",
  3293. "value" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  3294. "type" : "iri"
  3295. } ],
  3296. "dm" : [ {
  3297. "identifier" : "dm",
  3298. "language" : "undefined",
  3299. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation",
  3300. "type" : "label"
  3301. } ],
  3302. "definition" : [ {
  3303. "identifier" : "definition",
  3304. "language" : "en",
  3305. "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.",
  3306. "type" : "label"
  3307. } ],
  3308. "category" : [ {
  3309. "identifier" : "category",
  3310. "language" : "undefined",
  3311. "value" : "qualified",
  3312. "type" : "label"
  3313. } ],
  3314. "constraints" : [ {
  3315. "identifier" : "constraints",
  3316. "language" : "undefined",
  3317. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3318. "type" : "label"
  3319. } ],
  3320. "n" : [ {
  3321. "identifier" : "n",
  3322. "language" : "undefined",
  3323. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation",
  3324. "type" : "label"
  3325. } ]
  3326. },
  3327. "label" : {
  3328. "IRI-based" : "Derivation",
  3329. "undefined" : "Derivation"
  3330. },
  3331. "subClasses" : [ "289", "295", "182" ],
  3332. "comment" : {
  3333. "en" : "The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply."
  3334. },
  3335. "attributes" : [ "external" ],
  3336. "id" : "167",
  3337. "superClasses" : [ "51" ]
  3338. }, {
  3339. "iri" : "https://w3id.org/GDPRov#PersonalDataEntity",
  3340. "baseIri" : "https://w3id.org/GDPRov",
  3341. "instances" : 0,
  3342. "annotations" : {
  3343. "isDefinedBy" : [ {
  3344. "identifier" : "isDefinedBy",
  3345. "language" : "undefined",
  3346. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  3347. "type" : "iri"
  3348. } ],
  3349. "seeAlso" : [ {
  3350. "identifier" : "seeAlso",
  3351. "language" : "undefined",
  3352. "value" : "https://w3id.org/GDPRov#PersonalData",
  3353. "type" : "iri"
  3354. } ]
  3355. },
  3356. "label" : {
  3357. "IRI-based" : "PersonalDataEntity",
  3358. "undefined" : "Personal Data Entity"
  3359. },
  3360. "subClasses" : [ "248", "251", "307" ],
  3361. "comment" : {
  3362. "undefined" : "Represents a personal data entity."
  3363. },
  3364. "id" : "190",
  3365. "superClasses" : [ "146" ]
  3366. }, {
  3367. "iri" : "https://w3id.org/GDPRov#JointController",
  3368. "baseIri" : "https://w3id.org/GDPRov",
  3369. "instances" : 0,
  3370. "annotations" : {
  3371. "isDefinedBy" : [ {
  3372. "identifier" : "isDefinedBy",
  3373. "language" : "undefined",
  3374. "value" : "https://w3id.org/GDPRtEXT#JointController",
  3375. "type" : "iri"
  3376. } ]
  3377. },
  3378. "label" : {
  3379. "IRI-based" : "JointController",
  3380. "undefined" : "Joint Controller(s)"
  3381. },
  3382. "comment" : {
  3383. "undefined" : "A Joint Controller is where two or more controllers jointly determine the purposes and means of processing."
  3384. },
  3385. "id" : "159",
  3386. "superClasses" : [ "158" ]
  3387. }, {
  3388. "iri" : "https://w3id.org/GDPRov#ConsentAcquisitionStep",
  3389. "baseIri" : "https://w3id.org/GDPRov",
  3390. "instances" : 0,
  3391. "annotations" : {
  3392. "isDefinedBy" : [ {
  3393. "identifier" : "isDefinedBy",
  3394. "language" : "undefined",
  3395. "value" : "https://w3id.org/GDPRtEXT#ObtainingConsent",
  3396. "type" : "iri"
  3397. } ],
  3398. "seeAlso" : [ {
  3399. "identifier" : "seeAlso",
  3400. "language" : "undefined",
  3401. "value" : "https://w3id.org/GDPRov#AcquireConsentActivity",
  3402. "type" : "iri"
  3403. } ]
  3404. },
  3405. "label" : {
  3406. "IRI-based" : "ConsentAcquisitionStep",
  3407. "en" : "Consent Acquisition Step"
  3408. },
  3409. "comment" : {
  3410. "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."
  3411. },
  3412. "id" : "64",
  3413. "superClasses" : [ "317" ]
  3414. }, {
  3415. "iri" : "https://w3id.org/GDPRov#ArchiveConsentActivity",
  3416. "baseIri" : "https://w3id.org/GDPRov",
  3417. "instances" : 0,
  3418. "annotations" : {
  3419. "seeAlso" : [ {
  3420. "identifier" : "seeAlso",
  3421. "language" : "undefined",
  3422. "value" : "https://w3id.org/GDPRov#ConsentArchivalStep",
  3423. "type" : "iri"
  3424. } ]
  3425. },
  3426. "label" : {
  3427. "IRI-based" : "ArchiveConsentActivity",
  3428. "undefined" : "Archive Consent Activity"
  3429. },
  3430. "comment" : {
  3431. "undefined" : "An activity that archives given/acquired consent for storage."
  3432. },
  3433. "id" : "108",
  3434. "superClasses" : [ "105" ]
  3435. }, {
  3436. "iri" : "https://w3id.org/GDPRov#HandleRightToNoAutomatedProcessing",
  3437. "baseIri" : "https://w3id.org/GDPRov",
  3438. "instances" : 0,
  3439. "annotations" : {
  3440. "isDefinedBy" : [ {
  3441. "identifier" : "isDefinedBy",
  3442. "language" : "undefined",
  3443. "value" : "https://w3id.org/GDPRtEXT#RightToNotBeEvaluatedThroughAutomatedProcessing",
  3444. "type" : "iri"
  3445. } ]
  3446. },
  3447. "label" : {
  3448. "IRI-based" : "HandleRightToNoAutomatedProcessing",
  3449. "undefined" : "Handle Right to not be evaluated through Automated Processing"
  3450. },
  3451. "comment" : {
  3452. "undefined" : "The process or series of steps that handle the right to not be processed automatically."
  3453. },
  3454. "id" : "219",
  3455. "superClasses" : [ "2" ]
  3456. }, {
  3457. "iri" : "http://www.w3.org/ns/prov#Start",
  3458. "baseIri" : "http://www.w3.org/ns/prov",
  3459. "instances" : 0,
  3460. "annotations" : {
  3461. "component" : [ {
  3462. "identifier" : "component",
  3463. "language" : "undefined",
  3464. "value" : "entities-activities",
  3465. "type" : "label"
  3466. } ],
  3467. "isDefinedBy" : [ {
  3468. "identifier" : "isDefinedBy",
  3469. "language" : "undefined",
  3470. "value" : "http://www.w3.org/ns/prov-o#",
  3471. "type" : "iri"
  3472. } ],
  3473. "unqualifiedForm" : [ {
  3474. "identifier" : "unqualifiedForm",
  3475. "language" : "undefined",
  3476. "value" : "http://www.w3.org/ns/prov#wasStartedBy",
  3477. "type" : "iri"
  3478. } ],
  3479. "dm" : [ {
  3480. "identifier" : "dm",
  3481. "language" : "undefined",
  3482. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start",
  3483. "type" : "label"
  3484. } ],
  3485. "definition" : [ {
  3486. "identifier" : "definition",
  3487. "language" : "en",
  3488. "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.",
  3489. "type" : "label"
  3490. } ],
  3491. "category" : [ {
  3492. "identifier" : "category",
  3493. "language" : "undefined",
  3494. "value" : "qualified",
  3495. "type" : "label"
  3496. } ],
  3497. "constraints" : [ {
  3498. "identifier" : "constraints",
  3499. "language" : "undefined",
  3500. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3501. "type" : "label"
  3502. } ],
  3503. "n" : [ {
  3504. "identifier" : "n",
  3505. "language" : "undefined",
  3506. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start",
  3507. "type" : "label"
  3508. } ]
  3509. },
  3510. "label" : {
  3511. "IRI-based" : "Start",
  3512. "undefined" : "Start"
  3513. },
  3514. "comment" : {
  3515. "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 ] ."
  3516. },
  3517. "attributes" : [ "external" ],
  3518. "id" : "171",
  3519. "superClasses" : [ "51", "119" ]
  3520. }, {
  3521. "iri" : "https://w3id.org/GDPRov#DeAnonymisationActivity",
  3522. "baseIri" : "https://w3id.org/GDPRov",
  3523. "instances" : 0,
  3524. "annotations" : {
  3525. "seeAlso" : [ {
  3526. "identifier" : "seeAlso",
  3527. "language" : "undefined",
  3528. "value" : "https://w3id.org/GDPRov#DataDeanonymisationStep",
  3529. "type" : "iri"
  3530. } ]
  3531. },
  3532. "label" : {
  3533. "IRI-based" : "DeAnonymisationActivity",
  3534. "undefined" : "DeAnonymisation Activity"
  3535. },
  3536. "comment" : {
  3537. "undefined" : "Is an activity that deanonymises data."
  3538. },
  3539. "id" : "222",
  3540. "superClasses" : [ "34" ]
  3541. }, {
  3542. "iri" : "https://w3id.org/GDPRov#MonitorCompliance",
  3543. "baseIri" : "https://w3id.org/GDPRov",
  3544. "instances" : 0,
  3545. "annotations" : {
  3546. "isDefinedBy" : [ {
  3547. "identifier" : "isDefinedBy",
  3548. "language" : "undefined",
  3549. "value" : "https://w3id.org/GDPRtEXT#MonitorCompliance",
  3550. "type" : "iri"
  3551. } ]
  3552. },
  3553. "label" : {
  3554. "IRI-based" : "MonitorCompliance",
  3555. "undefined" : "Monitor Compliance"
  3556. },
  3557. "comment" : {
  3558. "undefined" : "The process of monitoring compliance as mandated by the GDPR."
  3559. },
  3560. "id" : "56",
  3561. "superClasses" : [ "2" ]
  3562. }, {
  3563. "iri" : "https://w3id.org/GDPRov#NotifyController",
  3564. "baseIri" : "https://w3id.org/GDPRov",
  3565. "instances" : 0,
  3566. "annotations" : {
  3567. "isDefinedBy" : [ {
  3568. "identifier" : "isDefinedBy",
  3569. "language" : "undefined",
  3570. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreachToController",
  3571. "type" : "iri"
  3572. } ],
  3573. "seeAlso" : [ {
  3574. "identifier" : "seeAlso",
  3575. "language" : "undefined",
  3576. "value" : "https://w3id.org/GDPRov#NotifyControllerActivity",
  3577. "type" : "iri"
  3578. } ]
  3579. },
  3580. "label" : {
  3581. "IRI-based" : "NotifyController",
  3582. "undefined" : "Notify Controller"
  3583. },
  3584. "comment" : {
  3585. "undefined" : "Step that notifies the controller of data breach."
  3586. },
  3587. "id" : "134",
  3588. "superClasses" : [ "12" ]
  3589. }, {
  3590. "iri" : "https://w3id.org/GDPRov#DataStorageActivity",
  3591. "baseIri" : "https://w3id.org/GDPRov",
  3592. "instances" : 0,
  3593. "annotations" : {
  3594. "isDefinedBy" : [ {
  3595. "identifier" : "isDefinedBy",
  3596. "language" : "undefined",
  3597. "value" : "https://w3id.org/GDPRtEXT#StoreData",
  3598. "type" : "iri"
  3599. } ],
  3600. "seeAlso" : [ {
  3601. "identifier" : "seeAlso",
  3602. "language" : "undefined",
  3603. "value" : "https://w3id.org/GDPRov#DataStorageStep",
  3604. "type" : "iri"
  3605. } ]
  3606. },
  3607. "label" : {
  3608. "IRI-based" : "DataStorageActivity",
  3609. "undefined" : "Data Storage Activity"
  3610. },
  3611. "subClasses" : [ "32" ],
  3612. "comment" : {
  3613. "undefined" : "Is an activity that stores data."
  3614. },
  3615. "id" : "33",
  3616. "superClasses" : [ "116" ]
  3617. }, {
  3618. "iri" : "http://www.w3.org/ns/prov#Attribution",
  3619. "baseIri" : "http://www.w3.org/ns/prov",
  3620. "instances" : 0,
  3621. "annotations" : {
  3622. "component" : [ {
  3623. "identifier" : "component",
  3624. "language" : "undefined",
  3625. "value" : "agents-responsibility",
  3626. "type" : "label"
  3627. } ],
  3628. "isDefinedBy" : [ {
  3629. "identifier" : "isDefinedBy",
  3630. "language" : "undefined",
  3631. "value" : "http://www.w3.org/ns/prov-o#",
  3632. "type" : "iri"
  3633. } ],
  3634. "unqualifiedForm" : [ {
  3635. "identifier" : "unqualifiedForm",
  3636. "language" : "undefined",
  3637. "value" : "http://www.w3.org/ns/prov#wasAttributedTo",
  3638. "type" : "iri"
  3639. } ],
  3640. "dm" : [ {
  3641. "identifier" : "dm",
  3642. "language" : "undefined",
  3643. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution",
  3644. "type" : "label"
  3645. } ],
  3646. "definition" : [ {
  3647. "identifier" : "definition",
  3648. "language" : "en",
  3649. "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.",
  3650. "type" : "label"
  3651. } ],
  3652. "category" : [ {
  3653. "identifier" : "category",
  3654. "language" : "undefined",
  3655. "value" : "qualified",
  3656. "type" : "label"
  3657. } ],
  3658. "constraints" : [ {
  3659. "identifier" : "constraints",
  3660. "language" : "undefined",
  3661. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3662. "type" : "label"
  3663. } ],
  3664. "n" : [ {
  3665. "identifier" : "n",
  3666. "language" : "undefined",
  3667. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution",
  3668. "type" : "label"
  3669. } ]
  3670. },
  3671. "label" : {
  3672. "IRI-based" : "Attribution",
  3673. "undefined" : "Attribution"
  3674. },
  3675. "comment" : {
  3676. "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 ]."
  3677. },
  3678. "attributes" : [ "external" ],
  3679. "id" : "203",
  3680. "superClasses" : [ "48" ]
  3681. }, {
  3682. "iri" : "https://w3id.org/GDPRov#RectifyData",
  3683. "baseIri" : "https://w3id.org/GDPRov",
  3684. "instances" : 0,
  3685. "annotations" : {
  3686. "isDefinedBy" : [ {
  3687. "identifier" : "isDefinedBy",
  3688. "language" : "undefined",
  3689. "value" : "https://w3id.org/GDPRtEXT#RectifyData",
  3690. "type" : "iri"
  3691. } ],
  3692. "seeAlso" : [ {
  3693. "identifier" : "seeAlso",
  3694. "language" : "undefined",
  3695. "value" : "https://w3id.org/GDPRov#RectifyDataActivity",
  3696. "type" : "iri"
  3697. } ]
  3698. },
  3699. "label" : {
  3700. "IRI-based" : "RectifyData",
  3701. "undefined" : "Rectify Data"
  3702. },
  3703. "comment" : {
  3704. "undefined" : "Rectifies existing data"
  3705. },
  3706. "id" : "206",
  3707. "superClasses" : [ "85" ]
  3708. }, {
  3709. "iri" : "https://w3id.org/GDPRov#ConsentStep",
  3710. "baseIri" : "https://w3id.org/GDPRov",
  3711. "instances" : 0,
  3712. "annotations" : {
  3713. "isDefinedBy" : [ {
  3714. "identifier" : "isDefinedBy",
  3715. "language" : "undefined",
  3716. "value" : "https://w3id.org/GDPRtEXT#ConsentActivity",
  3717. "type" : "iri"
  3718. } ],
  3719. "seeAlso" : [ {
  3720. "identifier" : "seeAlso",
  3721. "language" : "undefined",
  3722. "value" : "https://w3id.org/GDPRov#ConsentActivity",
  3723. "type" : "iri"
  3724. } ]
  3725. },
  3726. "label" : {
  3727. "IRI-based" : "ConsentStep",
  3728. "en" : "Consent Step"
  3729. },
  3730. "subClasses" : [ "64", "340", "148" ],
  3731. "comment" : {
  3732. "en" : "A ConsentStep acts/interacts with/uses Consent"
  3733. },
  3734. "id" : "317",
  3735. "superClasses" : [ "75" ]
  3736. }, {
  3737. "iri" : "http://purl.org/net/p-plan#Plan",
  3738. "baseIri" : "http://purl.org/net/p-plan",
  3739. "instances" : 0,
  3740. "annotations" : {
  3741. "isDefinedBy" : [ {
  3742. "identifier" : "isDefinedBy",
  3743. "language" : "undefined",
  3744. "value" : "http://purl.org/net/p-plan#",
  3745. "type" : "iri"
  3746. } ],
  3747. "definition" : [ {
  3748. "identifier" : "definition",
  3749. "language" : "en",
  3750. "value" : "A p-plan:Plan is a specific type of prov:Plan. It is composed of smaller steps that use and produce Variables.",
  3751. "type" : "label"
  3752. } ]
  3753. },
  3754. "label" : {
  3755. "IRI-based" : "Plan",
  3756. "en" : "Plan"
  3757. },
  3758. "subClasses" : [ "2", "127" ],
  3759. "attributes" : [ "external" ],
  3760. "id" : "128",
  3761. "superClasses" : [ "83", "74" ]
  3762. }, {
  3763. "iri" : "http://www.w3.org/ns/prov#Plan",
  3764. "baseIri" : "http://www.w3.org/ns/prov",
  3765. "instances" : 0,
  3766. "annotations" : {
  3767. "component" : [ {
  3768. "identifier" : "component",
  3769. "language" : "undefined",
  3770. "value" : "agents-responsibility",
  3771. "type" : "label"
  3772. } ],
  3773. "isDefinedBy" : [ {
  3774. "identifier" : "isDefinedBy",
  3775. "language" : "undefined",
  3776. "value" : "http://www.w3.org/ns/prov#",
  3777. "type" : "iri"
  3778. }, {
  3779. "identifier" : "isDefinedBy",
  3780. "language" : "undefined",
  3781. "value" : "http://www.w3.org/ns/prov-o#",
  3782. "type" : "iri"
  3783. } ],
  3784. "dm" : [ {
  3785. "identifier" : "dm",
  3786. "language" : "undefined",
  3787. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association",
  3788. "type" : "label"
  3789. } ],
  3790. "definition" : [ {
  3791. "identifier" : "definition",
  3792. "language" : "undefined",
  3793. "value" : "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.",
  3794. "type" : "label"
  3795. } ],
  3796. "category" : [ {
  3797. "identifier" : "category",
  3798. "language" : "undefined",
  3799. "value" : "qualified",
  3800. "type" : "label"
  3801. }, {
  3802. "identifier" : "category",
  3803. "language" : "undefined",
  3804. "value" : "expanded",
  3805. "type" : "label"
  3806. } ],
  3807. "n" : [ {
  3808. "identifier" : "n",
  3809. "language" : "undefined",
  3810. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association",
  3811. "type" : "label"
  3812. } ]
  3813. },
  3814. "label" : {
  3815. "IRI-based" : "Plan",
  3816. "undefined" : "Plan"
  3817. },
  3818. "subClasses" : [ "128" ],
  3819. "comment" : {
  3820. "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."
  3821. },
  3822. "attributes" : [ "external" ],
  3823. "id" : "74",
  3824. "superClasses" : [ "20" ]
  3825. }, {
  3826. "iri" : "https://w3id.org/GDPRov#ConsentArchivalStep",
  3827. "baseIri" : "https://w3id.org/GDPRov",
  3828. "instances" : 0,
  3829. "annotations" : {
  3830. "isDefinedBy" : [ {
  3831. "identifier" : "isDefinedBy",
  3832. "language" : "undefined",
  3833. "value" : "https://w3id.org/GDPRtEXT#DemonstratingConsent",
  3834. "type" : "iri"
  3835. } ],
  3836. "seeAlso" : [ {
  3837. "identifier" : "seeAlso",
  3838. "language" : "undefined",
  3839. "value" : "https://w3id.org/GDPRov#ArchiveConsentActivity",
  3840. "type" : "iri"
  3841. } ]
  3842. },
  3843. "label" : {
  3844. "IRI-based" : "ConsentArchivalStep",
  3845. "en" : "Consent Archival Step"
  3846. },
  3847. "comment" : {
  3848. "en" : "ConsentArchivalStep archives acquired consent to form a record of the consent given by the user."
  3849. },
  3850. "id" : "340",
  3851. "superClasses" : [ "317" ]
  3852. }, {
  3853. "iri" : "https://w3id.org/GDPRov#HandleRightOfErasure",
  3854. "baseIri" : "https://w3id.org/GDPRov",
  3855. "instances" : 0,
  3856. "annotations" : {
  3857. "isDefinedBy" : [ {
  3858. "identifier" : "isDefinedBy",
  3859. "language" : "undefined",
  3860. "value" : "https://w3id.org/GDPRtEXT#RightOfErasure",
  3861. "type" : "iri"
  3862. } ]
  3863. },
  3864. "label" : {
  3865. "IRI-based" : "HandleRightOfErasure",
  3866. "undefined" : "Handle Right of Erasure"
  3867. },
  3868. "comment" : {
  3869. "undefined" : "The process or series of steps that handle the right of erasure."
  3870. },
  3871. "id" : "4",
  3872. "superClasses" : [ "2" ]
  3873. }, {
  3874. "iri" : "https://w3id.org/GDPRov#DataRectificationProcess",
  3875. "baseIri" : "https://w3id.org/GDPRov",
  3876. "instances" : 0,
  3877. "annotations" : {
  3878. "isDefinedBy" : [ {
  3879. "identifier" : "isDefinedBy",
  3880. "language" : "undefined",
  3881. "value" : "https://w3id.org/GDPRtEXT#RectifyData",
  3882. "type" : "iri"
  3883. } ]
  3884. },
  3885. "label" : {
  3886. "IRI-based" : "DataRectificationProcess",
  3887. "en" : "Data Rectification Process"
  3888. },
  3889. "comment" : {
  3890. "en" : "A DataRectificationProcess describes the process of data rectification, which is the correction of data already present within the system"
  3891. },
  3892. "id" : "16",
  3893. "superClasses" : [ "2" ]
  3894. }, {
  3895. "iri" : "https://w3id.org/GDPRov#NotifyDPAActivity",
  3896. "baseIri" : "https://w3id.org/GDPRov",
  3897. "instances" : 0,
  3898. "annotations" : {
  3899. "isDefinedBy" : [ {
  3900. "identifier" : "isDefinedBy",
  3901. "language" : "undefined",
  3902. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreachToDPAWithin72Hours",
  3903. "type" : "iri"
  3904. } ],
  3905. "seeAlso" : [ {
  3906. "identifier" : "seeAlso",
  3907. "language" : "undefined",
  3908. "value" : "https://w3id.org/GDPRov#NotifyDPA",
  3909. "type" : "iri"
  3910. } ]
  3911. },
  3912. "label" : {
  3913. "IRI-based" : "NotifyDPAActivity",
  3914. "undefined" : "Notify DPA Activity"
  3915. },
  3916. "comment" : {
  3917. "undefined" : "Is an activity that notifies data protection authorities about data breach"
  3918. },
  3919. "id" : "88",
  3920. "superClasses" : [ "86" ]
  3921. }, {
  3922. "iri" : "https://w3id.org/GDPRov#Data",
  3923. "baseIri" : "https://w3id.org/GDPRov",
  3924. "instances" : 0,
  3925. "annotations" : {
  3926. "isDefinedBy" : [ {
  3927. "identifier" : "isDefinedBy",
  3928. "language" : "undefined",
  3929. "value" : "https://w3id.org/GDPRtEXT#Data",
  3930. "type" : "iri"
  3931. } ],
  3932. "seeAlso" : [ {
  3933. "identifier" : "seeAlso",
  3934. "language" : "undefined",
  3935. "value" : "https://w3id.org/GDPRov#DataEntity",
  3936. "type" : "iri"
  3937. } ]
  3938. },
  3939. "label" : {
  3940. "IRI-based" : "Data",
  3941. "en" : "Data"
  3942. },
  3943. "subClasses" : [ "45" ],
  3944. "comment" : {
  3945. "en" : "Represents class of data collected or generated through various activities"
  3946. },
  3947. "id" : "31",
  3948. "superClasses" : [ "76" ]
  3949. }, {
  3950. "iri" : "http://www.w3.org/ns/prov#Association",
  3951. "baseIri" : "http://www.w3.org/ns/prov",
  3952. "instances" : 0,
  3953. "annotations" : {
  3954. "component" : [ {
  3955. "identifier" : "component",
  3956. "language" : "undefined",
  3957. "value" : "agents-responsibility",
  3958. "type" : "label"
  3959. } ],
  3960. "isDefinedBy" : [ {
  3961. "identifier" : "isDefinedBy",
  3962. "language" : "undefined",
  3963. "value" : "http://www.w3.org/ns/prov-o#",
  3964. "type" : "iri"
  3965. } ],
  3966. "unqualifiedForm" : [ {
  3967. "identifier" : "unqualifiedForm",
  3968. "language" : "undefined",
  3969. "value" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  3970. "type" : "iri"
  3971. } ],
  3972. "dm" : [ {
  3973. "identifier" : "dm",
  3974. "language" : "undefined",
  3975. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association",
  3976. "type" : "label"
  3977. } ],
  3978. "definition" : [ {
  3979. "identifier" : "definition",
  3980. "language" : "en",
  3981. "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.",
  3982. "type" : "label"
  3983. } ],
  3984. "category" : [ {
  3985. "identifier" : "category",
  3986. "language" : "undefined",
  3987. "value" : "qualified",
  3988. "type" : "label"
  3989. } ],
  3990. "n" : [ {
  3991. "identifier" : "n",
  3992. "language" : "undefined",
  3993. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association",
  3994. "type" : "label"
  3995. } ]
  3996. },
  3997. "label" : {
  3998. "IRI-based" : "Association",
  3999. "undefined" : "Association"
  4000. },
  4001. "comment" : {
  4002. "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 ]."
  4003. },
  4004. "attributes" : [ "external" ],
  4005. "id" : "186",
  4006. "superClasses" : [ "48" ]
  4007. }, {
  4008. "iri" : "http://www.w3.org/ns/prov#Generation",
  4009. "baseIri" : "http://www.w3.org/ns/prov",
  4010. "instances" : 0,
  4011. "annotations" : {
  4012. "component" : [ {
  4013. "identifier" : "component",
  4014. "language" : "undefined",
  4015. "value" : "entities-activities",
  4016. "type" : "label"
  4017. } ],
  4018. "isDefinedBy" : [ {
  4019. "identifier" : "isDefinedBy",
  4020. "language" : "undefined",
  4021. "value" : "http://www.w3.org/ns/prov-o#",
  4022. "type" : "iri"
  4023. } ],
  4024. "unqualifiedForm" : [ {
  4025. "identifier" : "unqualifiedForm",
  4026. "language" : "undefined",
  4027. "value" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  4028. "type" : "iri"
  4029. } ],
  4030. "dm" : [ {
  4031. "identifier" : "dm",
  4032. "language" : "undefined",
  4033. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation",
  4034. "type" : "label"
  4035. } ],
  4036. "definition" : [ {
  4037. "identifier" : "definition",
  4038. "language" : "en",
  4039. "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.",
  4040. "type" : "label"
  4041. } ],
  4042. "category" : [ {
  4043. "identifier" : "category",
  4044. "language" : "undefined",
  4045. "value" : "qualified",
  4046. "type" : "label"
  4047. } ],
  4048. "constraints" : [ {
  4049. "identifier" : "constraints",
  4050. "language" : "undefined",
  4051. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  4052. "type" : "label"
  4053. } ],
  4054. "n" : [ {
  4055. "identifier" : "n",
  4056. "language" : "undefined",
  4057. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation",
  4058. "type" : "label"
  4059. } ]
  4060. },
  4061. "label" : {
  4062. "IRI-based" : "Generation",
  4063. "undefined" : "Generation"
  4064. },
  4065. "comment" : {
  4066. "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 ]."
  4067. },
  4068. "attributes" : [ "external" ],
  4069. "id" : "267",
  4070. "superClasses" : [ "119", "53" ]
  4071. }, {
  4072. "iri" : "https://w3id.org/GDPRov#Process",
  4073. "baseIri" : "https://w3id.org/GDPRov",
  4074. "instances" : 0,
  4075. "label" : {
  4076. "IRI-based" : "Process",
  4077. "en" : "Process"
  4078. },
  4079. "subClasses" : [ "46", "56", "58", "60", "62", "39", "41", "1", "4", "6", "8", "10", "14", "16", "18", "215", "219", "93", "183", "196", "188" ],
  4080. "comment" : {
  4081. "en" : "A Process describes a 'Plan' of action for carrying out a particular activity that uses or is related to Data or Consent"
  4082. },
  4083. "id" : "2",
  4084. "superClasses" : [ "128" ]
  4085. }, {
  4086. "iri" : "http://www.w3.org/ns/prov#AgentInfluence",
  4087. "baseIri" : "http://www.w3.org/ns/prov",
  4088. "instances" : 0,
  4089. "annotations" : {
  4090. "isDefinedBy" : [ {
  4091. "identifier" : "isDefinedBy",
  4092. "language" : "undefined",
  4093. "value" : "http://www.w3.org/ns/prov-o#",
  4094. "type" : "iri"
  4095. } ],
  4096. "editorsDefinition" : [ {
  4097. "identifier" : "editorsDefinition",
  4098. "language" : "en",
  4099. "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.",
  4100. "type" : "label"
  4101. } ],
  4102. "category" : [ {
  4103. "identifier" : "category",
  4104. "language" : "undefined",
  4105. "value" : "qualified",
  4106. "type" : "label"
  4107. } ],
  4108. "seeAlso" : [ {
  4109. "identifier" : "seeAlso",
  4110. "language" : "undefined",
  4111. "value" : "http://www.w3.org/ns/prov#agent",
  4112. "type" : "iri"
  4113. } ]
  4114. },
  4115. "label" : {
  4116. "IRI-based" : "AgentInfluence",
  4117. "undefined" : "AgentInfluence"
  4118. },
  4119. "subClasses" : [ "203", "186", "99" ],
  4120. "comment" : {
  4121. "en" : "AgentInfluence provides additional descriptions of an Agent's binary influence upon any other kind of resource. Instances of AgentInfluence use the prov:agent property to cite the influencing Agent."
  4122. },
  4123. "attributes" : [ "external" ],
  4124. "id" : "48",
  4125. "superClasses" : [ "49" ]
  4126. }, {
  4127. "iri" : "https://w3id.org/GDPRov#DataEntity",
  4128. "baseIri" : "https://w3id.org/GDPRov",
  4129. "instances" : 0,
  4130. "annotations" : {
  4131. "isDefinedBy" : [ {
  4132. "identifier" : "isDefinedBy",
  4133. "language" : "undefined",
  4134. "value" : "https://w3id.org/GDPRtEXT#Data",
  4135. "type" : "iri"
  4136. } ],
  4137. "seeAlso" : [ {
  4138. "identifier" : "seeAlso",
  4139. "language" : "undefined",
  4140. "value" : "https://w3id.org/GDPRov#Data",
  4141. "type" : "iri"
  4142. } ]
  4143. },
  4144. "label" : {
  4145. "IRI-based" : "DataEntity",
  4146. "undefined" : "Data Entity"
  4147. },
  4148. "subClasses" : [ "190" ],
  4149. "comment" : {
  4150. "undefined" : "Represents a data entity."
  4151. },
  4152. "id" : "146",
  4153. "superClasses" : [ "83" ]
  4154. }, {
  4155. "iri" : "http://www.w3.org/ns/prov#EntityInfluence",
  4156. "baseIri" : "http://www.w3.org/ns/prov",
  4157. "instances" : 0,
  4158. "annotations" : {
  4159. "isDefinedBy" : [ {
  4160. "identifier" : "isDefinedBy",
  4161. "language" : "undefined",
  4162. "value" : "http://www.w3.org/ns/prov-o#",
  4163. "type" : "iri"
  4164. } ],
  4165. "editorsDefinition" : [ {
  4166. "identifier" : "editorsDefinition",
  4167. "language" : "en",
  4168. "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. ",
  4169. "type" : "label"
  4170. } ],
  4171. "category" : [ {
  4172. "identifier" : "category",
  4173. "language" : "undefined",
  4174. "value" : "qualified",
  4175. "type" : "label"
  4176. } ],
  4177. "seeAlso" : [ {
  4178. "identifier" : "seeAlso",
  4179. "language" : "undefined",
  4180. "value" : "http://www.w3.org/ns/prov#entity",
  4181. "type" : "iri"
  4182. } ]
  4183. },
  4184. "label" : {
  4185. "IRI-based" : "EntityInfluence",
  4186. "undefined" : "EntityInfluence"
  4187. },
  4188. "subClasses" : [ "192", "167", "169", "171" ],
  4189. "comment" : {
  4190. "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."
  4191. },
  4192. "attributes" : [ "external" ],
  4193. "id" : "51",
  4194. "superClasses" : [ "49" ]
  4195. }, {
  4196. "iri" : "http://www.w3.org/ns/prov#SoftwareAgent",
  4197. "baseIri" : "http://www.w3.org/ns/prov",
  4198. "instances" : 0,
  4199. "annotations" : {
  4200. "component" : [ {
  4201. "identifier" : "component",
  4202. "language" : "undefined",
  4203. "value" : "agents-responsibility",
  4204. "type" : "label"
  4205. } ],
  4206. "isDefinedBy" : [ {
  4207. "identifier" : "isDefinedBy",
  4208. "language" : "undefined",
  4209. "value" : "http://www.w3.org/ns/prov-o#",
  4210. "type" : "iri"
  4211. } ],
  4212. "dm" : [ {
  4213. "identifier" : "dm",
  4214. "language" : "undefined",
  4215. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  4216. "type" : "label"
  4217. } ],
  4218. "definition" : [ {
  4219. "identifier" : "definition",
  4220. "language" : "en",
  4221. "value" : "A software agent is running software.",
  4222. "type" : "label"
  4223. } ],
  4224. "category" : [ {
  4225. "identifier" : "category",
  4226. "language" : "undefined",
  4227. "value" : "expanded",
  4228. "type" : "label"
  4229. } ],
  4230. "n" : [ {
  4231. "identifier" : "n",
  4232. "language" : "undefined",
  4233. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  4234. "type" : "label"
  4235. } ]
  4236. },
  4237. "label" : {
  4238. "IRI-based" : "SoftwareAgent",
  4239. "undefined" : "SoftwareAgent"
  4240. },
  4241. "attributes" : [ "external" ],
  4242. "id" : "257",
  4243. "superClasses" : [ "43" ]
  4244. }, {
  4245. "iri" : "https://w3id.org/GDPRov#DataAnonymisationStep",
  4246. "baseIri" : "https://w3id.org/GDPRov",
  4247. "instances" : 0,
  4248. "annotations" : {
  4249. "seeAlso" : [ {
  4250. "identifier" : "seeAlso",
  4251. "language" : "undefined",
  4252. "value" : "https://w3id.org/GDPRov#AnonymisationActivity",
  4253. "type" : "iri"
  4254. } ]
  4255. },
  4256. "label" : {
  4257. "IRI-based" : "DataAnonymisationStep",
  4258. "en" : "Data Anonymisation Step"
  4259. },
  4260. "comment" : {
  4261. "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."
  4262. },
  4263. "id" : "359",
  4264. "superClasses" : [ "162" ]
  4265. }, {
  4266. "iri" : "https://w3id.org/GDPRov#GivenConsentTemplate",
  4267. "baseIri" : "https://w3id.org/GDPRov",
  4268. "instances" : 0,
  4269. "annotations" : {
  4270. "seeAlso" : [ {
  4271. "identifier" : "seeAlso",
  4272. "language" : "undefined",
  4273. "value" : "https://w3id.org/GDPRov#ConsentAgreementTemplate",
  4274. "type" : "iri"
  4275. } ]
  4276. },
  4277. "label" : {
  4278. "IRI-based" : "GivenConsentTemplate",
  4279. "undefined" : "Given Consent Template"
  4280. },
  4281. "comment" : {
  4282. "undefined" : "Is the template used to obtain the given consent."
  4283. },
  4284. "id" : "144",
  4285. "superClasses" : [ "83" ]
  4286. }, {
  4287. "iri" : "https://w3id.org/GDPRov#ProcessorRepresentative",
  4288. "baseIri" : "https://w3id.org/GDPRov",
  4289. "instances" : 0,
  4290. "annotations" : {
  4291. "isDefinedBy" : [ {
  4292. "identifier" : "isDefinedBy",
  4293. "language" : "undefined",
  4294. "value" : "https://w3id.org/GDPRtEXT#ProcessorRepresentative",
  4295. "type" : "iri"
  4296. } ]
  4297. },
  4298. "label" : {
  4299. "IRI-based" : "ProcessorRepresentative",
  4300. "undefined" : "Processor Representative"
  4301. },
  4302. "comment" : {
  4303. "undefined" : "A representative of the Processor."
  4304. },
  4305. "id" : "263",
  4306. "superClasses" : [ "43" ]
  4307. }, {
  4308. "iri" : "http://www.w3.org/ns/prov#Collection",
  4309. "baseIri" : "http://www.w3.org/ns/prov",
  4310. "instances" : 0,
  4311. "annotations" : {
  4312. "component" : [ {
  4313. "identifier" : "component",
  4314. "language" : "undefined",
  4315. "value" : "collections",
  4316. "type" : "label"
  4317. } ],
  4318. "isDefinedBy" : [ {
  4319. "identifier" : "isDefinedBy",
  4320. "language" : "undefined",
  4321. "value" : "http://www.w3.org/ns/prov-o#",
  4322. "type" : "iri"
  4323. } ],
  4324. "dm" : [ {
  4325. "identifier" : "dm",
  4326. "language" : "undefined",
  4327. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection",
  4328. "type" : "label"
  4329. } ],
  4330. "definition" : [ {
  4331. "identifier" : "definition",
  4332. "language" : "en",
  4333. "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.",
  4334. "type" : "label"
  4335. } ],
  4336. "category" : [ {
  4337. "identifier" : "category",
  4338. "language" : "undefined",
  4339. "value" : "expanded",
  4340. "type" : "label"
  4341. } ]
  4342. },
  4343. "label" : {
  4344. "IRI-based" : "Collection",
  4345. "undefined" : "Collection"
  4346. },
  4347. "subClasses" : [ "173" ],
  4348. "attributes" : [ "external" ],
  4349. "id" : "174",
  4350. "superClasses" : [ "20" ]
  4351. }, {
  4352. "iri" : "https://w3id.org/GDPRov#ConsentAgreement",
  4353. "baseIri" : "https://w3id.org/GDPRov",
  4354. "instances" : 0,
  4355. "annotations" : {
  4356. "isDefinedBy" : [ {
  4357. "identifier" : "isDefinedBy",
  4358. "language" : "undefined",
  4359. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  4360. "type" : "iri"
  4361. } ],
  4362. "seeAlso" : [ {
  4363. "identifier" : "seeAlso",
  4364. "language" : "undefined",
  4365. "value" : "https://w3id.org/GDPRov#GivenConsent",
  4366. "type" : "iri"
  4367. } ]
  4368. },
  4369. "label" : {
  4370. "IRI-based" : "ConsentAgreement",
  4371. "en" : "ConsentAgreement"
  4372. },
  4373. "comment" : {
  4374. "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."
  4375. },
  4376. "id" : "155",
  4377. "superClasses" : [ "76" ]
  4378. }, {
  4379. "iri" : "https://w3id.org/GDPRov#HandleSAR",
  4380. "baseIri" : "https://w3id.org/GDPRov",
  4381. "instances" : 0,
  4382. "label" : {
  4383. "IRI-based" : "HandleSAR",
  4384. "undefined" : "HandleSAR"
  4385. },
  4386. "id" : "8",
  4387. "superClasses" : [ "2" ]
  4388. }, {
  4389. "iri" : "http://purl.org/net/p-plan#Variable",
  4390. "baseIri" : "http://purl.org/net/p-plan",
  4391. "instances" : 0,
  4392. "annotations" : {
  4393. "isDefinedBy" : [ {
  4394. "identifier" : "isDefinedBy",
  4395. "language" : "undefined",
  4396. "value" : "http://purl.org/net/p-plan#",
  4397. "type" : "iri"
  4398. } ],
  4399. "definition" : [ {
  4400. "identifier" : "definition",
  4401. "language" : "en",
  4402. "value" : "A p-plan:Variable represents a description of the input of the planned Activity (p-plan:Step)",
  4403. "type" : "label"
  4404. } ]
  4405. },
  4406. "label" : {
  4407. "IRI-based" : "Variable",
  4408. "en" : "Variable"
  4409. },
  4410. "subClasses" : [ "176", "126", "155", "65", "31" ],
  4411. "attributes" : [ "external" ],
  4412. "id" : "76"
  4413. }, {
  4414. "iri" : "http://purl.org/net/p-plan#Bundle",
  4415. "baseIri" : "http://purl.org/net/p-plan",
  4416. "instances" : 0,
  4417. "annotations" : {
  4418. "isDefinedBy" : [ {
  4419. "identifier" : "isDefinedBy",
  4420. "language" : "undefined",
  4421. "value" : "http://purl.org/net/p-plan#",
  4422. "type" : "iri"
  4423. } ],
  4424. "definition" : [ {
  4425. "identifier" : "definition",
  4426. "language" : "en",
  4427. "value" : "A p-plan:Bundle is a specific type of prov:Bundle that contains the provenance assertions of the execution of a p-plan:Plan",
  4428. "type" : "label"
  4429. } ]
  4430. },
  4431. "label" : {
  4432. "IRI-based" : "Bundle",
  4433. "en" : "Bundle"
  4434. },
  4435. "attributes" : [ "external" ],
  4436. "id" : "101",
  4437. "superClasses" : [ "100", "83" ]
  4438. }, {
  4439. "iri" : "http://www.w3.org/ns/prov#Delegation",
  4440. "baseIri" : "http://www.w3.org/ns/prov",
  4441. "instances" : 0,
  4442. "annotations" : {
  4443. "component" : [ {
  4444. "identifier" : "component",
  4445. "language" : "undefined",
  4446. "value" : "agents-responsibility",
  4447. "type" : "label"
  4448. } ],
  4449. "isDefinedBy" : [ {
  4450. "identifier" : "isDefinedBy",
  4451. "language" : "undefined",
  4452. "value" : "http://www.w3.org/ns/prov-o#",
  4453. "type" : "iri"
  4454. } ],
  4455. "unqualifiedForm" : [ {
  4456. "identifier" : "unqualifiedForm",
  4457. "language" : "undefined",
  4458. "value" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  4459. "type" : "iri"
  4460. } ],
  4461. "dm" : [ {
  4462. "identifier" : "dm",
  4463. "language" : "undefined",
  4464. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation",
  4465. "type" : "label"
  4466. } ],
  4467. "definition" : [ {
  4468. "identifier" : "definition",
  4469. "language" : "en",
  4470. "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.",
  4471. "type" : "label"
  4472. } ],
  4473. "category" : [ {
  4474. "identifier" : "category",
  4475. "language" : "undefined",
  4476. "value" : "qualified",
  4477. "type" : "label"
  4478. } ],
  4479. "n" : [ {
  4480. "identifier" : "n",
  4481. "language" : "undefined",
  4482. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation",
  4483. "type" : "label"
  4484. } ]
  4485. },
  4486. "label" : {
  4487. "IRI-based" : "Delegation",
  4488. "undefined" : "Delegation"
  4489. },
  4490. "comment" : {
  4491. "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 ]."
  4492. },
  4493. "attributes" : [ "external" ],
  4494. "id" : "99",
  4495. "superClasses" : [ "48" ]
  4496. }, {
  4497. "iri" : "https://w3id.org/GDPRov#DataDeletionStep",
  4498. "baseIri" : "https://w3id.org/GDPRov",
  4499. "instances" : 0,
  4500. "annotations" : {
  4501. "isDefinedBy" : [ {
  4502. "identifier" : "isDefinedBy",
  4503. "language" : "undefined",
  4504. "value" : "https://w3id.org/GDPRtEXT#EraseData",
  4505. "type" : "iri"
  4506. } ],
  4507. "seeAlso" : [ {
  4508. "identifier" : "seeAlso",
  4509. "language" : "undefined",
  4510. "value" : "https://w3id.org/GDPRov#DataDeletionActivity",
  4511. "type" : "iri"
  4512. } ]
  4513. },
  4514. "label" : {
  4515. "IRI-based" : "DataDeletionStep",
  4516. "en" : "Data Deletion Step"
  4517. },
  4518. "comment" : {
  4519. "en" : "DataDeletionStep deletes data from within the system;\nThe deletion is expressed as prov:invalidated over the dataset."
  4520. },
  4521. "id" : "204",
  4522. "superClasses" : [ "85" ]
  4523. }, {
  4524. "iri" : "http://purl.org/net/p-plan#Activity",
  4525. "baseIri" : "http://purl.org/net/p-plan",
  4526. "instances" : 0,
  4527. "annotations" : {
  4528. "isDefinedBy" : [ {
  4529. "identifier" : "isDefinedBy",
  4530. "language" : "undefined",
  4531. "value" : "http://purl.org/net/p-plan#",
  4532. "type" : "iri"
  4533. } ]
  4534. },
  4535. "label" : {
  4536. "IRI-based" : "Activity",
  4537. "en" : "Activity"
  4538. },
  4539. "subClasses" : [ "86", "105", "116" ],
  4540. "comment" : {
  4541. "en" : "A p-plan:Activity represents the execution process planned in a p-plan:Step"
  4542. },
  4543. "attributes" : [ "external" ],
  4544. "id" : "87",
  4545. "superClasses" : [ "68" ]
  4546. }, {
  4547. "iri" : "https://w3id.org/GDPRov#UserIdentifier",
  4548. "baseIri" : "https://w3id.org/GDPRov",
  4549. "instances" : 0,
  4550. "annotations" : {
  4551. "seeAlso" : [ {
  4552. "identifier" : "seeAlso",
  4553. "language" : "undefined",
  4554. "value" : "https://w3id.org/GDPRov#UserIdentifierEntity",
  4555. "type" : "iri"
  4556. } ]
  4557. },
  4558. "label" : {
  4559. "IRI-based" : "UserIdentifier",
  4560. "en" : "UserIdentifier"
  4561. },
  4562. "comment" : {
  4563. "en" : "An UserIdentifier is a specific way to identify the user through a unique ID or a combination of other attributes"
  4564. },
  4565. "id" : "201",
  4566. "superClasses" : [ "45" ]
  4567. }, {
  4568. "iri" : "https://w3id.org/GDPRov#DataSharingActivity",
  4569. "baseIri" : "https://w3id.org/GDPRov",
  4570. "instances" : 0,
  4571. "annotations" : {
  4572. "isDefinedBy" : [ {
  4573. "identifier" : "isDefinedBy",
  4574. "language" : "undefined",
  4575. "value" : "https://w3id.org/GDPRtEXT#ShareDataWithThirdParty",
  4576. "type" : "iri"
  4577. } ],
  4578. "seeAlso" : [ {
  4579. "identifier" : "seeAlso",
  4580. "language" : "undefined",
  4581. "value" : "https://w3id.org/GDPRov#DataSharingStep",
  4582. "type" : "iri"
  4583. } ]
  4584. },
  4585. "label" : {
  4586. "IRI-based" : "DataSharingActivity",
  4587. "undefined" : "Data Sharing Activity"
  4588. },
  4589. "comment" : {
  4590. "undefined" : "Is an activity that shares data."
  4591. },
  4592. "id" : "92",
  4593. "superClasses" : [ "116" ]
  4594. }, {
  4595. "iri" : "http://purl.org/net/p-plan#Entity",
  4596. "baseIri" : "http://purl.org/net/p-plan",
  4597. "instances" : 0,
  4598. "annotations" : {
  4599. "isDefinedBy" : [ {
  4600. "identifier" : "isDefinedBy",
  4601. "language" : "undefined",
  4602. "value" : "http://purl.org/net/p-plan#",
  4603. "type" : "iri"
  4604. } ],
  4605. "definition" : [ {
  4606. "identifier" : "definition",
  4607. "language" : "en",
  4608. "value" : "A p-plan:Entity represents the input of the execution of a p-plan:Activity. It corresponds to a p-plan:Variable.",
  4609. "type" : "label"
  4610. } ]
  4611. },
  4612. "label" : {
  4613. "IRI-based" : "Entity",
  4614. "en" : "Entity"
  4615. },
  4616. "subClasses" : [ "101", "144", "146", "150", "128", "82" ],
  4617. "attributes" : [ "external" ],
  4618. "id" : "83",
  4619. "superClasses" : [ "20" ]
  4620. }, {
  4621. "iri" : "https://w3id.org/GDPRov#NotifyDataSubjectActivity",
  4622. "baseIri" : "https://w3id.org/GDPRov",
  4623. "instances" : 0,
  4624. "annotations" : {
  4625. "isDefinedBy" : [ {
  4626. "identifier" : "isDefinedBy",
  4627. "language" : "undefined",
  4628. "value" : "https://w3id.org/GDPRtEXT#NotifyDataSubjectOfBreach",
  4629. "type" : "iri"
  4630. } ],
  4631. "seeAlso" : [ {
  4632. "identifier" : "seeAlso",
  4633. "language" : "undefined",
  4634. "value" : "https://w3id.org/GDPRov#NotifyDataSubject",
  4635. "type" : "iri"
  4636. } ]
  4637. },
  4638. "label" : {
  4639. "IRI-based" : "NotifyDataSubjectActivity",
  4640. "undefined" : "Notify Data Subject Activity"
  4641. },
  4642. "comment" : {
  4643. "undefined" : "Is an activity that notifies data subjects about data breach"
  4644. },
  4645. "id" : "90",
  4646. "superClasses" : [ "86" ]
  4647. }, {
  4648. "iri" : "https://w3id.org/GDPRov#UserInteractionStep",
  4649. "baseIri" : "https://w3id.org/GDPRov",
  4650. "instances" : 0,
  4651. "label" : {
  4652. "IRI-based" : "UserInteractionStep",
  4653. "undefined" : "User Interaction Step"
  4654. },
  4655. "subClasses" : [ "110", "114" ],
  4656. "id" : "111",
  4657. "superClasses" : [ "75" ]
  4658. }, {
  4659. "iri" : "https://w3id.org/GDPRov#DataActivity",
  4660. "baseIri" : "https://w3id.org/GDPRov",
  4661. "instances" : 0,
  4662. "annotations" : {
  4663. "isDefinedBy" : [ {
  4664. "identifier" : "isDefinedBy",
  4665. "language" : "undefined",
  4666. "value" : "https://w3id.org/GDPRtEXT#DataActivity",
  4667. "type" : "iri"
  4668. } ],
  4669. "seeAlso" : [ {
  4670. "identifier" : "seeAlso",
  4671. "language" : "undefined",
  4672. "value" : "https://w3id.org/GDPRov#DataStep",
  4673. "type" : "iri"
  4674. } ]
  4675. },
  4676. "label" : {
  4677. "IRI-based" : "DataActivity",
  4678. "undefined" : "Data Activity"
  4679. },
  4680. "subClasses" : [ "92", "33", "30", "225", "226", "34", "299", "235", "273" ],
  4681. "comment" : {
  4682. "undefined" : "Is an activity involving data."
  4683. },
  4684. "id" : "116",
  4685. "superClasses" : [ "87" ]
  4686. }, {
  4687. "iri" : "https://w3id.org/GDPRov#AutomatedStep",
  4688. "baseIri" : "https://w3id.org/GDPRov",
  4689. "instances" : 0,
  4690. "label" : {
  4691. "IRI-based" : "AutomatedStep",
  4692. "undefined" : "AutomatedStep"
  4693. },
  4694. "id" : "324",
  4695. "superClasses" : [ "75" ]
  4696. }, {
  4697. "iri" : "https://w3id.org/GDPRov#DataErasureProcess",
  4698. "baseIri" : "https://w3id.org/GDPRov",
  4699. "instances" : 0,
  4700. "annotations" : {
  4701. "isDefinedBy" : [ {
  4702. "identifier" : "isDefinedBy",
  4703. "language" : "undefined",
  4704. "value" : "https://w3id.org/GDPRtEXT#EraseData",
  4705. "type" : "iri"
  4706. } ]
  4707. },
  4708. "label" : {
  4709. "IRI-based" : "DataErasureProcess",
  4710. "en" : "Data Erasure Process"
  4711. },
  4712. "comment" : {
  4713. "en" : "A DataErasureProcess is responsible for handling the data erasure of a data subject."
  4714. },
  4715. "id" : "14",
  4716. "superClasses" : [ "2" ]
  4717. }, {
  4718. "iri" : "http://www.w3.org/ns/prov#Usage",
  4719. "baseIri" : "http://www.w3.org/ns/prov",
  4720. "instances" : 0,
  4721. "annotations" : {
  4722. "component" : [ {
  4723. "identifier" : "component",
  4724. "language" : "undefined",
  4725. "value" : "entities-activities",
  4726. "type" : "label"
  4727. } ],
  4728. "isDefinedBy" : [ {
  4729. "identifier" : "isDefinedBy",
  4730. "language" : "undefined",
  4731. "value" : "http://www.w3.org/ns/prov-o#",
  4732. "type" : "iri"
  4733. } ],
  4734. "unqualifiedForm" : [ {
  4735. "identifier" : "unqualifiedForm",
  4736. "language" : "undefined",
  4737. "value" : "http://www.w3.org/ns/prov#used",
  4738. "type" : "iri"
  4739. } ],
  4740. "dm" : [ {
  4741. "identifier" : "dm",
  4742. "language" : "undefined",
  4743. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage",
  4744. "type" : "label"
  4745. } ],
  4746. "definition" : [ {
  4747. "identifier" : "definition",
  4748. "language" : "en",
  4749. "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.",
  4750. "type" : "label"
  4751. } ],
  4752. "category" : [ {
  4753. "identifier" : "category",
  4754. "language" : "undefined",
  4755. "value" : "qualified",
  4756. "type" : "label"
  4757. } ],
  4758. "constraints" : [ {
  4759. "identifier" : "constraints",
  4760. "language" : "undefined",
  4761. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  4762. "type" : "label"
  4763. } ],
  4764. "n" : [ {
  4765. "identifier" : "n",
  4766. "language" : "undefined",
  4767. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage",
  4768. "type" : "label"
  4769. } ]
  4770. },
  4771. "label" : {
  4772. "IRI-based" : "Usage",
  4773. "undefined" : "Usage"
  4774. },
  4775. "comment" : {
  4776. "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 ]."
  4777. },
  4778. "attributes" : [ "external" ],
  4779. "id" : "192",
  4780. "superClasses" : [ "51", "119" ]
  4781. }, {
  4782. "iri" : "https://w3id.org/GDPRov#HandleRightToAccessPersonalData",
  4783. "baseIri" : "https://w3id.org/GDPRov",
  4784. "instances" : 0,
  4785. "annotations" : {
  4786. "isDefinedBy" : [ {
  4787. "identifier" : "isDefinedBy",
  4788. "language" : "undefined",
  4789. "value" : "https://w3id.org/GDPRtEXT#RightOfErasure",
  4790. "type" : "iri"
  4791. } ]
  4792. },
  4793. "label" : {
  4794. "IRI-based" : "HandleRightToAccessPersonalData",
  4795. "undefined" : "Handle Right to access Personal Data"
  4796. },
  4797. "comment" : {
  4798. "undefined" : "The process or series of steps that handle the right to access personal data."
  4799. },
  4800. "id" : "18",
  4801. "superClasses" : [ "2" ]
  4802. }, {
  4803. "iri" : "https://w3id.org/GDPRov#DataTransferStep",
  4804. "baseIri" : "https://w3id.org/GDPRov",
  4805. "instances" : 0,
  4806. "label" : {
  4807. "IRI-based" : "DataTransferStep",
  4808. "undefined" : "DataTransferStep"
  4809. },
  4810. "id" : "205",
  4811. "superClasses" : [ "85" ]
  4812. }, {
  4813. "iri" : "https://w3id.org/GDPRov#DirectMarketing",
  4814. "baseIri" : "https://w3id.org/GDPRov",
  4815. "instances" : 0,
  4816. "annotations" : {
  4817. "isDefinedBy" : [ {
  4818. "identifier" : "isDefinedBy",
  4819. "language" : "undefined",
  4820. "value" : "https://w3id.org/GDPRtEXT#DirectMarketing",
  4821. "type" : "iri"
  4822. } ]
  4823. },
  4824. "label" : {
  4825. "IRI-based" : "DirectMarketing",
  4826. "undefined" : "Direct Marketing"
  4827. },
  4828. "comment" : {
  4829. "undefined" : "Direct Marketing where the marketing is done directly to the data subject."
  4830. },
  4831. "id" : "95",
  4832. "superClasses" : [ "1" ]
  4833. }, {
  4834. "iri" : "https://w3id.org/GDPRov#DataTransformationStep",
  4835. "baseIri" : "https://w3id.org/GDPRov",
  4836. "instances" : 0,
  4837. "annotations" : {
  4838. "seeAlso" : [ {
  4839. "identifier" : "seeAlso",
  4840. "language" : "undefined",
  4841. "value" : "https://w3id.org/GDPRov#DataTransformationActivity",
  4842. "type" : "iri"
  4843. } ]
  4844. },
  4845. "label" : {
  4846. "IRI-based" : "DataTransformationStep",
  4847. "en" : "Data Transformation Step"
  4848. },
  4849. "subClasses" : [ "178", "160", "359" ],
  4850. "comment" : {
  4851. "en" : "DataTransformationStep transforms data from one form into another."
  4852. },
  4853. "id" : "162",
  4854. "superClasses" : [ "85" ]
  4855. }, {
  4856. "iri" : "https://w3id.org/GDPRov#ConsentModificationStep",
  4857. "baseIri" : "https://w3id.org/GDPRov",
  4858. "instances" : 0,
  4859. "annotations" : {
  4860. "isDefinedBy" : [ {
  4861. "identifier" : "isDefinedBy",
  4862. "language" : "undefined",
  4863. "value" : "https://w3id.org/GDPRtEXT#ObligationForObtainingConsent",
  4864. "type" : "iri"
  4865. } ],
  4866. "seeAlso" : [ {
  4867. "identifier" : "seeAlso",
  4868. "language" : "undefined",
  4869. "value" : "https://w3id.org/GDPRov#ModifyConsentActivity",
  4870. "type" : "iri"
  4871. } ]
  4872. },
  4873. "label" : {
  4874. "IRI-based" : "ConsentModificationStep",
  4875. "en" : "Consent Modification Step"
  4876. },
  4877. "subClasses" : [ "147" ],
  4878. "comment" : {
  4879. "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."
  4880. },
  4881. "id" : "148",
  4882. "superClasses" : [ "317" ]
  4883. } ],
  4884. "property" : [ {
  4885. "id" : "0",
  4886. "type" : "rdfs:SubClassOf"
  4887. }, {
  4888. "id" : "3",
  4889. "type" : "rdfs:SubClassOf"
  4890. }, {
  4891. "id" : "5",
  4892. "type" : "rdfs:SubClassOf"
  4893. }, {
  4894. "id" : "7",
  4895. "type" : "rdfs:SubClassOf"
  4896. }, {
  4897. "id" : "9",
  4898. "type" : "rdfs:SubClassOf"
  4899. }, {
  4900. "id" : "13",
  4901. "type" : "rdfs:SubClassOf"
  4902. }, {
  4903. "id" : "15",
  4904. "type" : "rdfs:SubClassOf"
  4905. }, {
  4906. "id" : "17",
  4907. "type" : "rdfs:SubClassOf"
  4908. }, {
  4909. "id" : "19",
  4910. "type" : "owl:objectProperty"
  4911. }, {
  4912. "id" : "23",
  4913. "type" : "owl:objectProperty"
  4914. }, {
  4915. "id" : "25",
  4916. "type" : "owl:objectProperty"
  4917. }, {
  4918. "id" : "29",
  4919. "type" : "owl:objectProperty"
  4920. }, {
  4921. "id" : "35",
  4922. "type" : "owl:objectProperty"
  4923. }, {
  4924. "id" : "38",
  4925. "type" : "rdfs:SubClassOf"
  4926. }, {
  4927. "id" : "40",
  4928. "type" : "rdfs:SubClassOf"
  4929. }, {
  4930. "id" : "44",
  4931. "type" : "rdfs:SubClassOf"
  4932. }, {
  4933. "id" : "47",
  4934. "type" : "rdfs:SubClassOf"
  4935. }, {
  4936. "id" : "50",
  4937. "type" : "rdfs:SubClassOf"
  4938. }, {
  4939. "id" : "52",
  4940. "type" : "rdfs:SubClassOf"
  4941. }, {
  4942. "id" : "54",
  4943. "type" : "rdfs:SubClassOf"
  4944. }, {
  4945. "id" : "55",
  4946. "type" : "rdfs:SubClassOf"
  4947. }, {
  4948. "id" : "57",
  4949. "type" : "rdfs:SubClassOf"
  4950. }, {
  4951. "id" : "59",
  4952. "type" : "rdfs:SubClassOf"
  4953. }, {
  4954. "id" : "61",
  4955. "type" : "rdfs:SubClassOf"
  4956. }, {
  4957. "id" : "63",
  4958. "type" : "owl:objectProperty"
  4959. }, {
  4960. "id" : "67",
  4961. "type" : "owl:datatypeProperty"
  4962. }, {
  4963. "id" : "70",
  4964. "type" : "owl:objectProperty"
  4965. }, {
  4966. "id" : "73",
  4967. "type" : "rdfs:SubClassOf"
  4968. }, {
  4969. "id" : "66",
  4970. "type" : "owl:objectProperty"
  4971. }, {
  4972. "id" : "91",
  4973. "type" : "owl:objectProperty"
  4974. }, {
  4975. "id" : "96",
  4976. "type" : "owl:objectProperty"
  4977. }, {
  4978. "id" : "98",
  4979. "type" : "owl:objectProperty"
  4980. }, {
  4981. "id" : "109",
  4982. "type" : "rdfs:SubClassOf"
  4983. }, {
  4984. "id" : "113",
  4985. "type" : "rdfs:SubClassOf"
  4986. }, {
  4987. "id" : "115",
  4988. "type" : "rdfs:SubClassOf"
  4989. }, {
  4990. "id" : "117",
  4991. "type" : "rdfs:SubClassOf"
  4992. }, {
  4993. "id" : "118",
  4994. "type" : "owl:datatypeProperty"
  4995. }, {
  4996. "id" : "122",
  4997. "type" : "owl:objectProperty"
  4998. }, {
  4999. "id" : "97",
  5000. "type" : "owl:objectProperty"
  5001. }, {
  5002. "id" : "78",
  5003. "type" : "owl:objectProperty"
  5004. }, {
  5005. "id" : "129",
  5006. "type" : "rdfs:SubClassOf"
  5007. }, {
  5008. "id" : "130",
  5009. "type" : "rdfs:SubClassOf"
  5010. }, {
  5011. "id" : "131",
  5012. "type" : "rdfs:SubClassOf"
  5013. }, {
  5014. "id" : "133",
  5015. "type" : "rdfs:SubClassOf"
  5016. }, {
  5017. "id" : "135",
  5018. "type" : "rdfs:SubClassOf"
  5019. }, {
  5020. "id" : "136",
  5021. "type" : "rdfs:SubClassOf"
  5022. }, {
  5023. "id" : "141",
  5024. "type" : "rdfs:SubClassOf"
  5025. }, {
  5026. "id" : "142",
  5027. "type" : "rdfs:SubClassOf"
  5028. }, {
  5029. "id" : "143",
  5030. "type" : "rdfs:SubClassOf"
  5031. }, {
  5032. "id" : "145",
  5033. "type" : "rdfs:SubClassOf"
  5034. }, {
  5035. "id" : "149",
  5036. "type" : "rdfs:SubClassOf"
  5037. }, {
  5038. "id" : "152",
  5039. "type" : "owl:objectProperty"
  5040. }, {
  5041. "id" : "154",
  5042. "type" : "rdfs:SubClassOf"
  5043. }, {
  5044. "id" : "157",
  5045. "type" : "rdfs:SubClassOf"
  5046. }, {
  5047. "id" : "163",
  5048. "type" : "rdfs:SubClassOf"
  5049. }, {
  5050. "id" : "164",
  5051. "type" : "rdfs:SubClassOf"
  5052. }, {
  5053. "id" : "165",
  5054. "type" : "rdfs:SubClassOf"
  5055. }, {
  5056. "id" : "166",
  5057. "type" : "rdfs:SubClassOf"
  5058. }, {
  5059. "id" : "168",
  5060. "type" : "rdfs:SubClassOf"
  5061. }, {
  5062. "id" : "170",
  5063. "type" : "rdfs:SubClassOf"
  5064. }, {
  5065. "id" : "172",
  5066. "type" : "rdfs:SubClassOf"
  5067. }, {
  5068. "id" : "175",
  5069. "type" : "rdfs:SubClassOf"
  5070. }, {
  5071. "id" : "177",
  5072. "type" : "rdfs:SubClassOf"
  5073. }, {
  5074. "id" : "179",
  5075. "type" : "owl:objectProperty"
  5076. }, {
  5077. "id" : "180",
  5078. "type" : "owl:objectProperty"
  5079. }, {
  5080. "id" : "181",
  5081. "type" : "owl:objectProperty"
  5082. }, {
  5083. "id" : "185",
  5084. "type" : "rdfs:SubClassOf"
  5085. }, {
  5086. "id" : "187",
  5087. "type" : "rdfs:SubClassOf"
  5088. }, {
  5089. "id" : "189",
  5090. "type" : "rdfs:SubClassOf"
  5091. }, {
  5092. "id" : "191",
  5093. "type" : "rdfs:SubClassOf"
  5094. }, {
  5095. "id" : "194",
  5096. "type" : "rdfs:SubClassOf"
  5097. }, {
  5098. "id" : "195",
  5099. "type" : "rdfs:SubClassOf"
  5100. }, {
  5101. "id" : "197",
  5102. "type" : "rdfs:SubClassOf"
  5103. }, {
  5104. "id" : "198",
  5105. "type" : "rdfs:SubClassOf"
  5106. }, {
  5107. "id" : "199",
  5108. "type" : "rdfs:SubClassOf"
  5109. }, {
  5110. "id" : "200",
  5111. "type" : "rdfs:SubClassOf"
  5112. }, {
  5113. "id" : "202",
  5114. "type" : "rdfs:SubClassOf"
  5115. }, {
  5116. "id" : "209",
  5117. "type" : "owl:objectProperty"
  5118. }, {
  5119. "id" : "212",
  5120. "type" : "owl:objectProperty"
  5121. }, {
  5122. "id" : "214",
  5123. "type" : "rdfs:SubClassOf"
  5124. }, {
  5125. "id" : "216",
  5126. "type" : "owl:objectProperty"
  5127. }, {
  5128. "id" : "218",
  5129. "type" : "rdfs:SubClassOf"
  5130. }, {
  5131. "id" : "220",
  5132. "type" : "rdfs:SubClassOf"
  5133. }, {
  5134. "id" : "223",
  5135. "type" : "owl:objectProperty"
  5136. }, {
  5137. "id" : "224",
  5138. "type" : "owl:objectProperty"
  5139. }, {
  5140. "id" : "229",
  5141. "type" : "owl:objectProperty"
  5142. }, {
  5143. "id" : "231",
  5144. "type" : "owl:objectProperty"
  5145. }, {
  5146. "id" : "237",
  5147. "type" : "owl:objectProperty"
  5148. }, {
  5149. "id" : "239",
  5150. "type" : "owl:objectProperty"
  5151. }, {
  5152. "id" : "124",
  5153. "type" : "owl:objectProperty"
  5154. }, {
  5155. "id" : "245",
  5156. "type" : "owl:disjointWith"
  5157. }, {
  5158. "id" : "247",
  5159. "type" : "rdfs:SubClassOf"
  5160. }, {
  5161. "id" : "249",
  5162. "type" : "rdfs:SubClassOf"
  5163. }, {
  5164. "id" : "250",
  5165. "type" : "rdfs:SubClassOf"
  5166. }, {
  5167. "id" : "153",
  5168. "type" : "owl:objectProperty"
  5169. }, {
  5170. "id" : "252",
  5171. "type" : "owl:objectProperty"
  5172. }, {
  5173. "id" : "79",
  5174. "type" : "owl:objectProperty"
  5175. }, {
  5176. "id" : "254",
  5177. "type" : "rdfs:SubClassOf"
  5178. }, {
  5179. "id" : "255",
  5180. "type" : "rdfs:SubClassOf"
  5181. }, {
  5182. "id" : "256",
  5183. "type" : "rdfs:SubClassOf"
  5184. }, {
  5185. "id" : "258",
  5186. "type" : "rdfs:SubClassOf"
  5187. }, {
  5188. "id" : "259",
  5189. "type" : "rdfs:SubClassOf"
  5190. }, {
  5191. "id" : "261",
  5192. "type" : "rdfs:SubClassOf"
  5193. }, {
  5194. "id" : "262",
  5195. "type" : "rdfs:SubClassOf"
  5196. }, {
  5197. "id" : "264",
  5198. "type" : "rdfs:SubClassOf"
  5199. }, {
  5200. "id" : "265",
  5201. "type" : "rdfs:SubClassOf"
  5202. }, {
  5203. "id" : "266",
  5204. "type" : "rdfs:SubClassOf"
  5205. }, {
  5206. "id" : "268",
  5207. "type" : "owl:objectProperty"
  5208. }, {
  5209. "id" : "77",
  5210. "type" : "owl:objectProperty"
  5211. }, {
  5212. "id" : "269",
  5213. "type" : "owl:objectProperty"
  5214. }, {
  5215. "id" : "274",
  5216. "type" : "rdfs:SubClassOf"
  5217. }, {
  5218. "id" : "275",
  5219. "type" : "rdfs:SubClassOf"
  5220. }, {
  5221. "id" : "276",
  5222. "type" : "rdfs:SubClassOf"
  5223. }, {
  5224. "id" : "277",
  5225. "type" : "rdfs:SubClassOf"
  5226. }, {
  5227. "id" : "278",
  5228. "type" : "rdfs:SubClassOf"
  5229. }, {
  5230. "id" : "279",
  5231. "type" : "owl:objectProperty"
  5232. }, {
  5233. "id" : "282",
  5234. "type" : "rdfs:SubClassOf"
  5235. }, {
  5236. "id" : "283",
  5237. "type" : "rdfs:SubClassOf"
  5238. }, {
  5239. "id" : "284",
  5240. "type" : "owl:datatypeProperty"
  5241. }, {
  5242. "id" : "285",
  5243. "type" : "rdfs:SubClassOf"
  5244. }, {
  5245. "id" : "286",
  5246. "type" : "rdfs:SubClassOf"
  5247. }, {
  5248. "id" : "287",
  5249. "type" : "rdfs:SubClassOf"
  5250. }, {
  5251. "id" : "288",
  5252. "type" : "rdfs:SubClassOf"
  5253. }, {
  5254. "id" : "290",
  5255. "type" : "owl:objectProperty"
  5256. }, {
  5257. "id" : "291",
  5258. "type" : "rdfs:SubClassOf"
  5259. }, {
  5260. "id" : "292",
  5261. "type" : "owl:objectProperty"
  5262. }, {
  5263. "id" : "293",
  5264. "type" : "owl:objectProperty"
  5265. }, {
  5266. "id" : "294",
  5267. "type" : "owl:objectProperty"
  5268. }, {
  5269. "id" : "296",
  5270. "type" : "owl:objectProperty"
  5271. }, {
  5272. "id" : "298",
  5273. "type" : "rdfs:SubClassOf"
  5274. }, {
  5275. "id" : "300",
  5276. "type" : "rdfs:SubClassOf"
  5277. }, {
  5278. "id" : "213",
  5279. "type" : "owl:objectProperty"
  5280. }, {
  5281. "id" : "303",
  5282. "type" : "rdfs:SubClassOf"
  5283. }, {
  5284. "id" : "304",
  5285. "type" : "rdfs:SubClassOf"
  5286. }, {
  5287. "id" : "125",
  5288. "type" : "owl:objectProperty"
  5289. }, {
  5290. "id" : "306",
  5291. "type" : "rdfs:SubClassOf"
  5292. }, {
  5293. "id" : "308",
  5294. "type" : "rdfs:SubClassOf"
  5295. }, {
  5296. "id" : "309",
  5297. "type" : "rdfs:SubClassOf"
  5298. }, {
  5299. "id" : "310",
  5300. "type" : "rdfs:SubClassOf"
  5301. }, {
  5302. "id" : "305",
  5303. "type" : "owl:objectProperty"
  5304. }, {
  5305. "id" : "312",
  5306. "type" : "rdfs:SubClassOf"
  5307. }, {
  5308. "id" : "22",
  5309. "type" : "owl:objectProperty"
  5310. }, {
  5311. "id" : "313",
  5312. "type" : "rdfs:SubClassOf"
  5313. }, {
  5314. "id" : "315",
  5315. "type" : "owl:objectProperty"
  5316. }, {
  5317. "id" : "316",
  5318. "type" : "rdfs:SubClassOf"
  5319. }, {
  5320. "id" : "80",
  5321. "type" : "owl:objectProperty"
  5322. }, {
  5323. "id" : "318",
  5324. "type" : "rdfs:SubClassOf"
  5325. }, {
  5326. "id" : "319",
  5327. "type" : "owl:objectProperty"
  5328. }, {
  5329. "id" : "320",
  5330. "type" : "rdfs:SubClassOf"
  5331. }, {
  5332. "id" : "321",
  5333. "type" : "rdfs:SubClassOf"
  5334. }, {
  5335. "id" : "322",
  5336. "type" : "rdfs:SubClassOf"
  5337. }, {
  5338. "id" : "323",
  5339. "type" : "rdfs:SubClassOf"
  5340. }, {
  5341. "id" : "325",
  5342. "type" : "rdfs:SubClassOf"
  5343. }, {
  5344. "id" : "326",
  5345. "type" : "rdfs:SubClassOf"
  5346. }, {
  5347. "id" : "327",
  5348. "type" : "owl:objectProperty"
  5349. }, {
  5350. "id" : "328",
  5351. "type" : "rdfs:SubClassOf"
  5352. }, {
  5353. "id" : "329",
  5354. "type" : "rdfs:SubClassOf"
  5355. }, {
  5356. "id" : "330",
  5357. "type" : "rdfs:SubClassOf"
  5358. }, {
  5359. "id" : "331",
  5360. "type" : "rdfs:SubClassOf"
  5361. }, {
  5362. "id" : "332",
  5363. "type" : "rdfs:SubClassOf"
  5364. }, {
  5365. "id" : "333",
  5366. "type" : "rdfs:SubClassOf"
  5367. }, {
  5368. "id" : "334",
  5369. "type" : "owl:objectProperty"
  5370. }, {
  5371. "id" : "335",
  5372. "type" : "owl:objectProperty"
  5373. }, {
  5374. "id" : "336",
  5375. "type" : "rdfs:SubClassOf"
  5376. }, {
  5377. "id" : "337",
  5378. "type" : "rdfs:SubClassOf"
  5379. }, {
  5380. "id" : "338",
  5381. "type" : "rdfs:SubClassOf"
  5382. }, {
  5383. "id" : "339",
  5384. "type" : "rdfs:SubClassOf"
  5385. }, {
  5386. "id" : "341",
  5387. "type" : "rdfs:SubClassOf"
  5388. }, {
  5389. "id" : "342",
  5390. "type" : "rdfs:SubClassOf"
  5391. }, {
  5392. "id" : "343",
  5393. "type" : "rdfs:SubClassOf"
  5394. }, {
  5395. "id" : "344",
  5396. "type" : "rdfs:SubClassOf"
  5397. }, {
  5398. "id" : "345",
  5399. "type" : "rdfs:SubClassOf"
  5400. }, {
  5401. "id" : "346",
  5402. "type" : "rdfs:SubClassOf"
  5403. }, {
  5404. "id" : "72",
  5405. "type" : "owl:objectProperty"
  5406. }, {
  5407. "id" : "352",
  5408. "type" : "owl:objectProperty"
  5409. }, {
  5410. "id" : "353",
  5411. "type" : "rdfs:SubClassOf"
  5412. }, {
  5413. "id" : "354",
  5414. "type" : "rdfs:SubClassOf"
  5415. }, {
  5416. "id" : "355",
  5417. "type" : "rdfs:SubClassOf"
  5418. }, {
  5419. "id" : "356",
  5420. "type" : "rdfs:SubClassOf"
  5421. }, {
  5422. "id" : "357",
  5423. "type" : "rdfs:SubClassOf"
  5424. }, {
  5425. "id" : "358",
  5426. "type" : "owl:objectProperty"
  5427. }, {
  5428. "id" : "360",
  5429. "type" : "owl:objectProperty"
  5430. }, {
  5431. "id" : "361",
  5432. "type" : "owl:datatypeProperty"
  5433. }, {
  5434. "id" : "362",
  5435. "type" : "rdfs:SubClassOf"
  5436. }, {
  5437. "id" : "363",
  5438. "type" : "rdfs:SubClassOf"
  5439. }, {
  5440. "id" : "364",
  5441. "type" : "rdfs:SubClassOf"
  5442. }, {
  5443. "id" : "365",
  5444. "type" : "owl:datatypeProperty"
  5445. }, {
  5446. "id" : "366",
  5447. "type" : "owl:objectProperty"
  5448. }, {
  5449. "id" : "368",
  5450. "type" : "owl:objectProperty"
  5451. }, {
  5452. "id" : "238",
  5453. "type" : "owl:objectProperty"
  5454. }, {
  5455. "id" : "28",
  5456. "type" : "owl:objectProperty"
  5457. }, {
  5458. "id" : "348",
  5459. "type" : "owl:objectProperty"
  5460. }, {
  5461. "id" : "349",
  5462. "type" : "owl:objectProperty"
  5463. }, {
  5464. "id" : "370",
  5465. "type" : "owl:objectProperty"
  5466. }, {
  5467. "id" : "371",
  5468. "type" : "owl:objectProperty"
  5469. }, {
  5470. "id" : "347",
  5471. "type" : "owl:objectProperty"
  5472. }, {
  5473. "id" : "81",
  5474. "type" : "owl:objectProperty"
  5475. }, {
  5476. "id" : "253",
  5477. "type" : "owl:objectProperty"
  5478. }, {
  5479. "id" : "123",
  5480. "type" : "owl:objectProperty"
  5481. }, {
  5482. "id" : "374",
  5483. "type" : "owl:objectProperty"
  5484. }, {
  5485. "id" : "217",
  5486. "type" : "owl:objectProperty"
  5487. }, {
  5488. "id" : "272",
  5489. "type" : "owl:objectProperty"
  5490. }, {
  5491. "id" : "351",
  5492. "type" : "owl:objectProperty"
  5493. }, {
  5494. "id" : "378",
  5495. "type" : "owl:objectProperty"
  5496. }, {
  5497. "id" : "302",
  5498. "type" : "owl:objectProperty"
  5499. }, {
  5500. "id" : "379",
  5501. "type" : "owl:objectProperty"
  5502. }, {
  5503. "id" : "372",
  5504. "type" : "owl:objectProperty"
  5505. }, {
  5506. "id" : "380",
  5507. "type" : "owl:objectProperty"
  5508. }, {
  5509. "id" : "369",
  5510. "type" : "owl:objectProperty"
  5511. }, {
  5512. "id" : "271",
  5513. "type" : "owl:objectProperty"
  5514. }, {
  5515. "id" : "367",
  5516. "type" : "owl:objectProperty"
  5517. }, {
  5518. "id" : "382",
  5519. "type" : "rdfs:SubClassOf"
  5520. }, {
  5521. "id" : "383",
  5522. "type" : "rdfs:SubClassOf"
  5523. }, {
  5524. "id" : "384",
  5525. "type" : "rdfs:SubClassOf"
  5526. }, {
  5527. "id" : "385",
  5528. "type" : "rdfs:SubClassOf"
  5529. }, {
  5530. "id" : "301",
  5531. "type" : "owl:objectProperty"
  5532. }, {
  5533. "id" : "386",
  5534. "type" : "owl:objectProperty"
  5535. }, {
  5536. "id" : "387",
  5537. "type" : "rdfs:SubClassOf"
  5538. }, {
  5539. "id" : "388",
  5540. "type" : "rdfs:SubClassOf"
  5541. }, {
  5542. "id" : "389",
  5543. "type" : "owl:objectProperty"
  5544. }, {
  5545. "id" : "297",
  5546. "type" : "owl:objectProperty"
  5547. }, {
  5548. "id" : "391",
  5549. "type" : "rdfs:SubClassOf"
  5550. }, {
  5551. "id" : "392",
  5552. "type" : "rdfs:SubClassOf"
  5553. }, {
  5554. "id" : "393",
  5555. "type" : "rdfs:SubClassOf"
  5556. }, {
  5557. "id" : "394",
  5558. "type" : "rdfs:SubClassOf"
  5559. }, {
  5560. "id" : "395",
  5561. "type" : "rdfs:SubClassOf"
  5562. }, {
  5563. "id" : "350",
  5564. "type" : "owl:objectProperty"
  5565. }, {
  5566. "id" : "27",
  5567. "type" : "owl:objectProperty"
  5568. }, {
  5569. "id" : "396",
  5570. "type" : "owl:datatypeProperty"
  5571. }, {
  5572. "id" : "376",
  5573. "type" : "owl:objectProperty"
  5574. }, {
  5575. "id" : "381",
  5576. "type" : "owl:objectProperty"
  5577. }, {
  5578. "id" : "375",
  5579. "type" : "owl:objectProperty"
  5580. }, {
  5581. "id" : "377",
  5582. "type" : "owl:objectProperty"
  5583. }, {
  5584. "id" : "373",
  5585. "type" : "owl:objectProperty"
  5586. }, {
  5587. "id" : "390",
  5588. "type" : "owl:objectProperty"
  5589. }, {
  5590. "id" : "397",
  5591. "type" : "owl:disjointWith"
  5592. }, {
  5593. "id" : "398",
  5594. "type" : "owl:disjointWith"
  5595. }, {
  5596. "id" : "399",
  5597. "type" : "owl:someValuesFrom"
  5598. }, {
  5599. "id" : "400",
  5600. "type" : "owl:disjointWith"
  5601. }, {
  5602. "id" : "401",
  5603. "type" : "owl:disjointWith"
  5604. }, {
  5605. "id" : "402",
  5606. "type" : "owl:objectProperty"
  5607. }, {
  5608. "id" : "403",
  5609. "type" : "owl:disjointWith"
  5610. }, {
  5611. "id" : "404",
  5612. "type" : "owl:disjointWith"
  5613. }, {
  5614. "id" : "405",
  5615. "type" : "owl:disjointWith"
  5616. }, {
  5617. "id" : "406",
  5618. "type" : "owl:objectProperty"
  5619. }, {
  5620. "id" : "270",
  5621. "type" : "owl:objectProperty"
  5622. }, {
  5623. "id" : "407",
  5624. "type" : "owl:disjointWith"
  5625. }, {
  5626. "id" : "408",
  5627. "type" : "owl:disjointWith"
  5628. }, {
  5629. "id" : "409",
  5630. "type" : "owl:objectProperty"
  5631. } ],
  5632. "propertyAttribute" : [ {
  5633. "range" : "2",
  5634. "domain" : "1",
  5635. "attributes" : [ "anonymous", "object" ],
  5636. "id" : "0"
  5637. }, {
  5638. "range" : "2",
  5639. "domain" : "4",
  5640. "attributes" : [ "anonymous", "object" ],
  5641. "id" : "3"
  5642. }, {
  5643. "range" : "2",
  5644. "domain" : "6",
  5645. "attributes" : [ "anonymous", "object" ],
  5646. "id" : "5"
  5647. }, {
  5648. "range" : "2",
  5649. "domain" : "8",
  5650. "attributes" : [ "anonymous", "object" ],
  5651. "id" : "7"
  5652. }, {
  5653. "range" : "2",
  5654. "domain" : "10",
  5655. "attributes" : [ "anonymous", "object" ],
  5656. "id" : "9"
  5657. }, {
  5658. "range" : "2",
  5659. "domain" : "14",
  5660. "attributes" : [ "anonymous", "object" ],
  5661. "id" : "13"
  5662. }, {
  5663. "range" : "2",
  5664. "domain" : "16",
  5665. "attributes" : [ "anonymous", "object" ],
  5666. "id" : "15"
  5667. }, {
  5668. "range" : "2",
  5669. "domain" : "18",
  5670. "attributes" : [ "anonymous", "object" ],
  5671. "id" : "17"
  5672. }, {
  5673. "iri" : "http://www.w3.org/ns/prov#specializationOf",
  5674. "baseIri" : "http://www.w3.org/ns/prov",
  5675. "range" : "21",
  5676. "annotations" : {
  5677. "inverse" : [ {
  5678. "identifier" : "inverse",
  5679. "language" : "undefined",
  5680. "value" : "generalizationOf",
  5681. "type" : "label"
  5682. } ],
  5683. "component" : [ {
  5684. "identifier" : "component",
  5685. "language" : "undefined",
  5686. "value" : "alternate",
  5687. "type" : "label"
  5688. } ],
  5689. "isDefinedBy" : [ {
  5690. "identifier" : "isDefinedBy",
  5691. "language" : "undefined",
  5692. "value" : "http://www.w3.org/ns/prov-o#",
  5693. "type" : "iri"
  5694. } ],
  5695. "dm" : [ {
  5696. "identifier" : "dm",
  5697. "language" : "undefined",
  5698. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization",
  5699. "type" : "label"
  5700. } ],
  5701. "definition" : [ {
  5702. "identifier" : "definition",
  5703. "language" : "en",
  5704. "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.",
  5705. "type" : "label"
  5706. } ],
  5707. "category" : [ {
  5708. "identifier" : "category",
  5709. "language" : "undefined",
  5710. "value" : "expanded",
  5711. "type" : "label"
  5712. } ],
  5713. "constraints" : [ {
  5714. "identifier" : "constraints",
  5715. "language" : "undefined",
  5716. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  5717. "type" : "label"
  5718. } ],
  5719. "n" : [ {
  5720. "identifier" : "n",
  5721. "language" : "undefined",
  5722. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization",
  5723. "type" : "label"
  5724. } ],
  5725. "seeAlso" : [ {
  5726. "identifier" : "seeAlso",
  5727. "language" : "undefined",
  5728. "value" : "http://www.w3.org/ns/prov#alternateOf",
  5729. "type" : "iri"
  5730. } ]
  5731. },
  5732. "label" : {
  5733. "IRI-based" : "specializationOf",
  5734. "undefined" : "specializationOf"
  5735. },
  5736. "superproperty" : [ "22" ],
  5737. "domain" : "20",
  5738. "attributes" : [ "external", "object" ],
  5739. "id" : "19"
  5740. }, {
  5741. "iri" : "https://w3id.org/GDPRov#refersToProcess",
  5742. "baseIri" : "https://w3id.org/GDPRov",
  5743. "range" : "2",
  5744. "label" : {
  5745. "IRI-based" : "refersToProcess"
  5746. },
  5747. "domain" : "24",
  5748. "attributes" : [ "object" ],
  5749. "id" : "23"
  5750. }, {
  5751. "iri" : "http://www.w3.org/2002/07/owl#topObjectProperty",
  5752. "baseIri" : "http://www.w3.org/2002/07/owl",
  5753. "range" : "26",
  5754. "label" : {
  5755. "IRI-based" : "topObjectProperty"
  5756. },
  5757. "domain" : "26",
  5758. "subproperty" : [ "27", "28" ],
  5759. "attributes" : [ "external", "object" ],
  5760. "id" : "25"
  5761. }, {
  5762. "iri" : "https://w3id.org/GDPRov#invalidatesData",
  5763. "baseIri" : "https://w3id.org/GDPRov",
  5764. "range" : "31",
  5765. "label" : {
  5766. "IRI-based" : "invalidatesData"
  5767. },
  5768. "domain" : "30",
  5769. "attributes" : [ "object" ],
  5770. "id" : "29"
  5771. }, {
  5772. "iri" : "http://www.w3.org/ns/prov#atLocation",
  5773. "baseIri" : "http://www.w3.org/ns/prov",
  5774. "range" : "37",
  5775. "annotations" : {
  5776. "editorialNote" : [ {
  5777. "identifier" : "editorialNote",
  5778. "language" : "en",
  5779. "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).",
  5780. "type" : "label"
  5781. }, {
  5782. "identifier" : "editorialNote",
  5783. "language" : "en",
  5784. "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.",
  5785. "type" : "label"
  5786. } ],
  5787. "sharesDefinitionWith" : [ {
  5788. "identifier" : "sharesDefinitionWith",
  5789. "language" : "undefined",
  5790. "value" : "http://www.w3.org/ns/prov#Location",
  5791. "type" : "iri"
  5792. } ],
  5793. "inverse" : [ {
  5794. "identifier" : "inverse",
  5795. "language" : "undefined",
  5796. "value" : "locationOf",
  5797. "type" : "label"
  5798. } ],
  5799. "isDefinedBy" : [ {
  5800. "identifier" : "isDefinedBy",
  5801. "language" : "undefined",
  5802. "value" : "http://www.w3.org/ns/prov-o#",
  5803. "type" : "iri"
  5804. } ],
  5805. "category" : [ {
  5806. "identifier" : "category",
  5807. "language" : "undefined",
  5808. "value" : "expanded",
  5809. "type" : "label"
  5810. } ]
  5811. },
  5812. "label" : {
  5813. "IRI-based" : "atLocation",
  5814. "undefined" : "atLocation"
  5815. },
  5816. "domain" : "36",
  5817. "comment" : {
  5818. "en" : "The Location of any resource.",
  5819. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  5820. },
  5821. "attributes" : [ "external", "object" ],
  5822. "id" : "35"
  5823. }, {
  5824. "range" : "2",
  5825. "domain" : "39",
  5826. "attributes" : [ "anonymous", "object" ],
  5827. "id" : "38"
  5828. }, {
  5829. "range" : "2",
  5830. "domain" : "41",
  5831. "attributes" : [ "anonymous", "object" ],
  5832. "id" : "40"
  5833. }, {
  5834. "range" : "31",
  5835. "domain" : "45",
  5836. "attributes" : [ "anonymous", "object" ],
  5837. "id" : "44"
  5838. }, {
  5839. "range" : "49",
  5840. "domain" : "48",
  5841. "attributes" : [ "anonymous", "object" ],
  5842. "id" : "47"
  5843. }, {
  5844. "range" : "49",
  5845. "domain" : "51",
  5846. "attributes" : [ "anonymous", "object" ],
  5847. "id" : "50"
  5848. }, {
  5849. "range" : "49",
  5850. "domain" : "53",
  5851. "attributes" : [ "anonymous", "object" ],
  5852. "id" : "52"
  5853. }, {
  5854. "range" : "2",
  5855. "domain" : "46",
  5856. "attributes" : [ "anonymous", "object" ],
  5857. "id" : "54"
  5858. }, {
  5859. "range" : "2",
  5860. "domain" : "56",
  5861. "attributes" : [ "anonymous", "object" ],
  5862. "id" : "55"
  5863. }, {
  5864. "range" : "2",
  5865. "domain" : "58",
  5866. "attributes" : [ "anonymous", "object" ],
  5867. "id" : "57"
  5868. }, {
  5869. "range" : "2",
  5870. "domain" : "60",
  5871. "attributes" : [ "anonymous", "object" ],
  5872. "id" : "59"
  5873. }, {
  5874. "range" : "2",
  5875. "domain" : "62",
  5876. "attributes" : [ "anonymous", "object" ],
  5877. "id" : "61"
  5878. }, {
  5879. "iri" : "https://w3id.org/GDPRov#usesConsentAgreementTemplate",
  5880. "baseIri" : "https://w3id.org/GDPRov",
  5881. "range" : "65",
  5882. "label" : {
  5883. "IRI-based" : "usesConsentAgreementTemplate",
  5884. "undefined" : "usesConsentAgreementTemplate"
  5885. },
  5886. "superproperty" : [ "66" ],
  5887. "domain" : "64",
  5888. "comment" : {
  5889. "undefined" : "links a Consent Acquisition Step with the Consent Agreement Template used to acquire consent"
  5890. },
  5891. "attributes" : [ "object" ],
  5892. "id" : "63"
  5893. }, {
  5894. "iri" : "http://www.w3.org/ns/prov#endedAtTime",
  5895. "baseIri" : "http://www.w3.org/ns/prov",
  5896. "range" : "69",
  5897. "annotations" : {
  5898. "editorialNote" : [ {
  5899. "identifier" : "editorialNote",
  5900. "language" : "en",
  5901. "value" : "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime.",
  5902. "type" : "label"
  5903. } ],
  5904. "component" : [ {
  5905. "identifier" : "component",
  5906. "language" : "undefined",
  5907. "value" : "entities-activities",
  5908. "type" : "label"
  5909. } ],
  5910. "isDefinedBy" : [ {
  5911. "identifier" : "isDefinedBy",
  5912. "language" : "undefined",
  5913. "value" : "http://www.w3.org/ns/prov-o#",
  5914. "type" : "iri"
  5915. } ],
  5916. "category" : [ {
  5917. "identifier" : "category",
  5918. "language" : "undefined",
  5919. "value" : "starting-point",
  5920. "type" : "label"
  5921. } ],
  5922. "qualifiedForm" : [ {
  5923. "identifier" : "qualifiedForm",
  5924. "language" : "undefined",
  5925. "value" : "http://www.w3.org/ns/prov#End",
  5926. "type" : "iri"
  5927. }, {
  5928. "identifier" : "qualifiedForm",
  5929. "language" : "undefined",
  5930. "value" : "http://www.w3.org/ns/prov#atTime",
  5931. "type" : "iri"
  5932. } ]
  5933. },
  5934. "label" : {
  5935. "IRI-based" : "endedAtTime",
  5936. "undefined" : "endedAtTime"
  5937. },
  5938. "domain" : "68",
  5939. "comment" : {
  5940. "en" : "The time at which an activity ended. See also prov:startedAtTime."
  5941. },
  5942. "attributes" : [ "datatype", "external" ],
  5943. "id" : "67"
  5944. }, {
  5945. "iri" : "http://www.w3.org/ns/prov#qualifiedCommunication",
  5946. "baseIri" : "http://www.w3.org/ns/prov",
  5947. "range" : "71",
  5948. "annotations" : {
  5949. "inverse" : [ {
  5950. "identifier" : "inverse",
  5951. "language" : "undefined",
  5952. "value" : "qualifiedCommunicationOf",
  5953. "type" : "label"
  5954. } ],
  5955. "sharesDefinitionWith" : [ {
  5956. "identifier" : "sharesDefinitionWith",
  5957. "language" : "undefined",
  5958. "value" : "http://www.w3.org/ns/prov#Communication",
  5959. "type" : "iri"
  5960. } ],
  5961. "component" : [ {
  5962. "identifier" : "component",
  5963. "language" : "undefined",
  5964. "value" : "entities-activities",
  5965. "type" : "label"
  5966. } ],
  5967. "isDefinedBy" : [ {
  5968. "identifier" : "isDefinedBy",
  5969. "language" : "undefined",
  5970. "value" : "http://www.w3.org/ns/prov-o#",
  5971. "type" : "iri"
  5972. } ],
  5973. "category" : [ {
  5974. "identifier" : "category",
  5975. "language" : "undefined",
  5976. "value" : "qualified",
  5977. "type" : "label"
  5978. } ],
  5979. "qualifiedForm" : [ {
  5980. "identifier" : "qualifiedForm",
  5981. "language" : "undefined",
  5982. "value" : "http://www.w3.org/ns/prov#Communication",
  5983. "type" : "iri"
  5984. } ]
  5985. },
  5986. "label" : {
  5987. "IRI-based" : "qualifiedCommunication",
  5988. "undefined" : "qualifiedCommunication"
  5989. },
  5990. "superproperty" : [ "72" ],
  5991. "domain" : "68",
  5992. "comment" : {
  5993. "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 ]."
  5994. },
  5995. "attributes" : [ "external", "object" ],
  5996. "id" : "70"
  5997. }, {
  5998. "range" : "20",
  5999. "domain" : "74",
  6000. "attributes" : [ "anonymous", "object" ],
  6001. "id" : "73"
  6002. }, {
  6003. "iri" : "http://purl.org/net/p-plan#hasInputVar",
  6004. "baseIri" : "http://purl.org/net/p-plan",
  6005. "range" : "76",
  6006. "annotations" : {
  6007. "isDefinedBy" : [ {
  6008. "identifier" : "isDefinedBy",
  6009. "language" : "undefined",
  6010. "value" : "http://purl.org/net/p-plan#",
  6011. "type" : "iri"
  6012. } ],
  6013. "definition" : [ {
  6014. "identifier" : "definition",
  6015. "language" : "en",
  6016. "value" : "p-plan:hasInputVar binds a p-plan:Step to the p-plan:Variable that takes as input for the planned execution",
  6017. "type" : "label"
  6018. } ]
  6019. },
  6020. "label" : {
  6021. "IRI-based" : "hasInputVar",
  6022. "en" : "hasInputVar"
  6023. },
  6024. "domain" : "75",
  6025. "subproperty" : [ "77", "78", "79", "80", "63", "81" ],
  6026. "attributes" : [ "external", "object" ],
  6027. "id" : "66"
  6028. }, {
  6029. "iri" : "https://w3id.org/GDPRov#hasSharedDataWith",
  6030. "baseIri" : "https://w3id.org/GDPRov",
  6031. "range" : "43",
  6032. "label" : {
  6033. "IRI-based" : "hasSharedDataWith",
  6034. "undefined" : "hasSharedDataWith"
  6035. },
  6036. "domain" : "92",
  6037. "attributes" : [ "object" ],
  6038. "id" : "91"
  6039. }, {
  6040. "iri" : "https://w3id.org/GDPRov#isDataCollectedByStep",
  6041. "baseIri" : "https://w3id.org/GDPRov",
  6042. "range" : "26",
  6043. "label" : {
  6044. "IRI-based" : "isDataCollectedByStep",
  6045. "undefined" : "isDataCollectedByStep"
  6046. },
  6047. "superproperty" : [ "97" ],
  6048. "domain" : "26",
  6049. "attributes" : [ "object" ],
  6050. "id" : "96"
  6051. }, {
  6052. "iri" : "http://www.w3.org/ns/prov#qualifiedDelegation",
  6053. "baseIri" : "http://www.w3.org/ns/prov",
  6054. "range" : "99",
  6055. "annotations" : {
  6056. "sharesDefinitionWith" : [ {
  6057. "identifier" : "sharesDefinitionWith",
  6058. "language" : "undefined",
  6059. "value" : "http://www.w3.org/ns/prov#Delegation",
  6060. "type" : "iri"
  6061. } ],
  6062. "inverse" : [ {
  6063. "identifier" : "inverse",
  6064. "language" : "undefined",
  6065. "value" : "qualifiedDelegationOf",
  6066. "type" : "label"
  6067. } ],
  6068. "component" : [ {
  6069. "identifier" : "component",
  6070. "language" : "undefined",
  6071. "value" : "agents-responsibility",
  6072. "type" : "label"
  6073. } ],
  6074. "isDefinedBy" : [ {
  6075. "identifier" : "isDefinedBy",
  6076. "language" : "undefined",
  6077. "value" : "http://www.w3.org/ns/prov-o#",
  6078. "type" : "iri"
  6079. } ],
  6080. "unqualifiedForm" : [ {
  6081. "identifier" : "unqualifiedForm",
  6082. "language" : "undefined",
  6083. "value" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  6084. "type" : "iri"
  6085. } ],
  6086. "category" : [ {
  6087. "identifier" : "category",
  6088. "language" : "undefined",
  6089. "value" : "qualified",
  6090. "type" : "label"
  6091. } ]
  6092. },
  6093. "label" : {
  6094. "IRI-based" : "qualifiedDelegation",
  6095. "undefined" : "qualifiedDelegation"
  6096. },
  6097. "superproperty" : [ "72" ],
  6098. "domain" : "43",
  6099. "comment" : {
  6100. "en" : "If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility; prov:agent :ag; :foo :bar ]."
  6101. },
  6102. "attributes" : [ "external", "object" ],
  6103. "id" : "98"
  6104. }, {
  6105. "range" : "111",
  6106. "domain" : "110",
  6107. "attributes" : [ "anonymous", "object" ],
  6108. "id" : "109"
  6109. }, {
  6110. "range" : "111",
  6111. "domain" : "114",
  6112. "attributes" : [ "anonymous", "object" ],
  6113. "id" : "113"
  6114. }, {
  6115. "range" : "116",
  6116. "domain" : "92",
  6117. "attributes" : [ "anonymous", "object" ],
  6118. "id" : "115"
  6119. }, {
  6120. "range" : "116",
  6121. "domain" : "33",
  6122. "attributes" : [ "anonymous", "object" ],
  6123. "id" : "117"
  6124. }, {
  6125. "iri" : "http://www.w3.org/ns/prov#atTime",
  6126. "baseIri" : "http://www.w3.org/ns/prov",
  6127. "range" : "120",
  6128. "annotations" : {
  6129. "sharesDefinitionWith" : [ {
  6130. "identifier" : "sharesDefinitionWith",
  6131. "language" : "undefined",
  6132. "value" : "http://www.w3.org/ns/prov#InstantaneousEvent",
  6133. "type" : "iri"
  6134. } ],
  6135. "component" : [ {
  6136. "identifier" : "component",
  6137. "language" : "undefined",
  6138. "value" : "entities-activities",
  6139. "type" : "label"
  6140. } ],
  6141. "isDefinedBy" : [ {
  6142. "identifier" : "isDefinedBy",
  6143. "language" : "undefined",
  6144. "value" : "http://www.w3.org/ns/prov-o#",
  6145. "type" : "iri"
  6146. } ],
  6147. "unqualifiedForm" : [ {
  6148. "identifier" : "unqualifiedForm",
  6149. "language" : "undefined",
  6150. "value" : "http://www.w3.org/ns/prov#invalidatedAtTime",
  6151. "type" : "iri"
  6152. }, {
  6153. "identifier" : "unqualifiedForm",
  6154. "language" : "undefined",
  6155. "value" : "http://www.w3.org/ns/prov#startedAtTime",
  6156. "type" : "iri"
  6157. }, {
  6158. "identifier" : "unqualifiedForm",
  6159. "language" : "undefined",
  6160. "value" : "http://www.w3.org/ns/prov#generatedAtTime",
  6161. "type" : "iri"
  6162. }, {
  6163. "identifier" : "unqualifiedForm",
  6164. "language" : "undefined",
  6165. "value" : "http://www.w3.org/ns/prov#endedAtTime",
  6166. "type" : "iri"
  6167. } ],
  6168. "category" : [ {
  6169. "identifier" : "category",
  6170. "language" : "undefined",
  6171. "value" : "qualified",
  6172. "type" : "label"
  6173. } ]
  6174. },
  6175. "label" : {
  6176. "IRI-based" : "atTime",
  6177. "undefined" : "atTime"
  6178. },
  6179. "domain" : "119",
  6180. "comment" : {
  6181. "en" : "The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime."
  6182. },
  6183. "attributes" : [ "datatype", "external" ],
  6184. "id" : "118"
  6185. }, {
  6186. "iri" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  6187. "baseIri" : "http://www.w3.org/ns/prov",
  6188. "range" : "68",
  6189. "annotations" : {
  6190. "inverse" : [ {
  6191. "identifier" : "inverse",
  6192. "language" : "undefined",
  6193. "value" : "invalidated",
  6194. "type" : "label"
  6195. } ],
  6196. "component" : [ {
  6197. "identifier" : "component",
  6198. "language" : "undefined",
  6199. "value" : "entities-activities",
  6200. "type" : "label"
  6201. } ],
  6202. "isDefinedBy" : [ {
  6203. "identifier" : "isDefinedBy",
  6204. "language" : "undefined",
  6205. "value" : "http://www.w3.org/ns/prov-o#",
  6206. "type" : "iri"
  6207. } ],
  6208. "category" : [ {
  6209. "identifier" : "category",
  6210. "language" : "undefined",
  6211. "value" : "expanded",
  6212. "type" : "label"
  6213. } ],
  6214. "qualifiedForm" : [ {
  6215. "identifier" : "qualifiedForm",
  6216. "language" : "undefined",
  6217. "value" : "http://www.w3.org/ns/prov#Invalidation",
  6218. "type" : "iri"
  6219. }, {
  6220. "identifier" : "qualifiedForm",
  6221. "language" : "undefined",
  6222. "value" : "http://www.w3.org/ns/prov#qualifiedInvalidation",
  6223. "type" : "iri"
  6224. } ]
  6225. },
  6226. "label" : {
  6227. "IRI-based" : "wasInvalidatedBy",
  6228. "undefined" : "wasInvalidatedBy"
  6229. },
  6230. "superproperty" : [ "123" ],
  6231. "domain" : "20",
  6232. "attributes" : [ "external", "object" ],
  6233. "id" : "122"
  6234. }, {
  6235. "iri" : "http://purl.org/net/p-plan#isOutputVarOf",
  6236. "baseIri" : "http://purl.org/net/p-plan",
  6237. "range" : "75",
  6238. "annotations" : {
  6239. "isDefinedBy" : [ {
  6240. "identifier" : "isDefinedBy",
  6241. "language" : "undefined",
  6242. "value" : "http://purl.org/net/p-plan#",
  6243. "type" : "iri"
  6244. } ],
  6245. "definition" : [ {
  6246. "identifier" : "definition",
  6247. "language" : "en",
  6248. "value" : "p-plan:isOutputVarOf is intended to link an output variable of a step to the step.",
  6249. "type" : "label"
  6250. } ]
  6251. },
  6252. "label" : {
  6253. "IRI-based" : "isOutputVarOf",
  6254. "en" : "isOutputVarOf"
  6255. },
  6256. "domain" : "76",
  6257. "subproperty" : [ "124", "96", "125" ],
  6258. "attributes" : [ "external", "object", "functional" ],
  6259. "id" : "97"
  6260. }, {
  6261. "iri" : "https://w3id.org/GDPRov#usesTermsAndConditions",
  6262. "baseIri" : "https://w3id.org/GDPRov",
  6263. "range" : "126",
  6264. "label" : {
  6265. "IRI-based" : "usesTermsAndConditions",
  6266. "undefined" : "usesTermsAndConditions"
  6267. },
  6268. "superproperty" : [ "66" ],
  6269. "domain" : "64",
  6270. "comment" : {
  6271. "undefined" : "Links a Consent Acquisition Step with the Terms and Conditions presented to the user when acquiring Consent"
  6272. },
  6273. "attributes" : [ "object" ],
  6274. "id" : "78"
  6275. }, {
  6276. "range" : "83",
  6277. "domain" : "128",
  6278. "attributes" : [ "anonymous", "object" ],
  6279. "id" : "129"
  6280. }, {
  6281. "range" : "83",
  6282. "domain" : "82",
  6283. "attributes" : [ "anonymous", "object" ],
  6284. "id" : "130"
  6285. }, {
  6286. "range" : "107",
  6287. "domain" : "132",
  6288. "attributes" : [ "anonymous", "object" ],
  6289. "id" : "131"
  6290. }, {
  6291. "range" : "12",
  6292. "domain" : "134",
  6293. "attributes" : [ "anonymous", "object" ],
  6294. "id" : "133"
  6295. }, {
  6296. "range" : "12",
  6297. "domain" : "11",
  6298. "attributes" : [ "anonymous", "object" ],
  6299. "id" : "135"
  6300. }, {
  6301. "range" : "12",
  6302. "domain" : "137",
  6303. "attributes" : [ "anonymous", "object" ],
  6304. "id" : "136"
  6305. }, {
  6306. "range" : "87",
  6307. "domain" : "116",
  6308. "attributes" : [ "anonymous", "object" ],
  6309. "id" : "141"
  6310. }, {
  6311. "range" : "83",
  6312. "domain" : "101",
  6313. "attributes" : [ "anonymous", "object" ],
  6314. "id" : "142"
  6315. }, {
  6316. "range" : "83",
  6317. "domain" : "144",
  6318. "attributes" : [ "anonymous", "object" ],
  6319. "id" : "143"
  6320. }, {
  6321. "range" : "83",
  6322. "domain" : "146",
  6323. "attributes" : [ "anonymous", "object" ],
  6324. "id" : "145"
  6325. }, {
  6326. "range" : "83",
  6327. "domain" : "150",
  6328. "attributes" : [ "anonymous", "object" ],
  6329. "id" : "149"
  6330. }, {
  6331. "iri" : "https://w3id.org/GDPRov#isPartOfProcess",
  6332. "baseIri" : "https://w3id.org/GDPRov",
  6333. "range" : "26",
  6334. "label" : {
  6335. "IRI-based" : "isPartOfProcess",
  6336. "undefined" : "isPartOfProcess"
  6337. },
  6338. "superproperty" : [ "153" ],
  6339. "domain" : "26",
  6340. "attributes" : [ "object" ],
  6341. "id" : "152"
  6342. }, {
  6343. "range" : "76",
  6344. "domain" : "155",
  6345. "attributes" : [ "anonymous", "object" ],
  6346. "id" : "154"
  6347. }, {
  6348. "range" : "76",
  6349. "domain" : "65",
  6350. "attributes" : [ "anonymous", "object" ],
  6351. "id" : "157"
  6352. }, {
  6353. "range" : "76",
  6354. "domain" : "31",
  6355. "attributes" : [ "anonymous", "object" ],
  6356. "id" : "163"
  6357. }, {
  6358. "range" : "87",
  6359. "domain" : "86",
  6360. "attributes" : [ "anonymous", "object" ],
  6361. "id" : "164"
  6362. }, {
  6363. "range" : "87",
  6364. "domain" : "105",
  6365. "attributes" : [ "anonymous", "object" ],
  6366. "id" : "165"
  6367. }, {
  6368. "range" : "51",
  6369. "domain" : "167",
  6370. "attributes" : [ "anonymous", "object" ],
  6371. "id" : "166"
  6372. }, {
  6373. "range" : "51",
  6374. "domain" : "169",
  6375. "attributes" : [ "anonymous", "object" ],
  6376. "id" : "168"
  6377. }, {
  6378. "range" : "51",
  6379. "domain" : "171",
  6380. "attributes" : [ "anonymous", "object" ],
  6381. "id" : "170"
  6382. }, {
  6383. "range" : "174",
  6384. "domain" : "173",
  6385. "attributes" : [ "anonymous", "object" ],
  6386. "id" : "172"
  6387. }, {
  6388. "range" : "76",
  6389. "domain" : "176",
  6390. "attributes" : [ "anonymous", "object" ],
  6391. "id" : "175"
  6392. }, {
  6393. "range" : "76",
  6394. "domain" : "126",
  6395. "attributes" : [ "anonymous", "object" ],
  6396. "id" : "177"
  6397. }, {
  6398. "iri" : "https://w3id.org/GDPRov#sharesDataWith",
  6399. "baseIri" : "https://w3id.org/GDPRov",
  6400. "range" : "43",
  6401. "label" : {
  6402. "IRI-based" : "sharesDataWith",
  6403. "undefined" : "sharesDataWith"
  6404. },
  6405. "domain" : "103",
  6406. "attributes" : [ "object" ],
  6407. "id" : "179"
  6408. }, {
  6409. "iri" : "https://w3id.org/GDPRov#anonymityLevel",
  6410. "baseIri" : "https://w3id.org/GDPRov",
  6411. "range" : "102",
  6412. "label" : {
  6413. "IRI-based" : "anonymityLevel",
  6414. "undefined" : "anonymity level"
  6415. },
  6416. "domain" : "146",
  6417. "attributes" : [ "deprecated", "object" ],
  6418. "id" : "180"
  6419. }, {
  6420. "iri" : "http://www.w3.org/ns/prov#qualifiedRevision",
  6421. "baseIri" : "http://www.w3.org/ns/prov",
  6422. "range" : "182",
  6423. "annotations" : {
  6424. "inverse" : [ {
  6425. "identifier" : "inverse",
  6426. "language" : "undefined",
  6427. "value" : "revisedEntity",
  6428. "type" : "label"
  6429. } ],
  6430. "sharesDefinitionWith" : [ {
  6431. "identifier" : "sharesDefinitionWith",
  6432. "language" : "undefined",
  6433. "value" : "http://www.w3.org/ns/prov#Revision",
  6434. "type" : "iri"
  6435. } ],
  6436. "component" : [ {
  6437. "identifier" : "component",
  6438. "language" : "undefined",
  6439. "value" : "derivations",
  6440. "type" : "label"
  6441. } ],
  6442. "isDefinedBy" : [ {
  6443. "identifier" : "isDefinedBy",
  6444. "language" : "undefined",
  6445. "value" : "http://www.w3.org/ns/prov-o#",
  6446. "type" : "iri"
  6447. } ],
  6448. "unqualifiedForm" : [ {
  6449. "identifier" : "unqualifiedForm",
  6450. "language" : "undefined",
  6451. "value" : "http://www.w3.org/ns/prov#wasRevisionOf",
  6452. "type" : "iri"
  6453. } ],
  6454. "category" : [ {
  6455. "identifier" : "category",
  6456. "language" : "undefined",
  6457. "value" : "qualified",
  6458. "type" : "label"
  6459. } ]
  6460. },
  6461. "label" : {
  6462. "IRI-based" : "qualifiedRevision",
  6463. "undefined" : "qualifiedRevision"
  6464. },
  6465. "superproperty" : [ "72" ],
  6466. "domain" : "20",
  6467. "comment" : {
  6468. "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 ]."
  6469. },
  6470. "attributes" : [ "external", "object" ],
  6471. "id" : "181"
  6472. }, {
  6473. "range" : "48",
  6474. "domain" : "186",
  6475. "attributes" : [ "anonymous", "object" ],
  6476. "id" : "185"
  6477. }, {
  6478. "range" : "48",
  6479. "domain" : "99",
  6480. "attributes" : [ "anonymous", "object" ],
  6481. "id" : "187"
  6482. }, {
  6483. "range" : "146",
  6484. "domain" : "190",
  6485. "attributes" : [ "anonymous", "object" ],
  6486. "id" : "189"
  6487. }, {
  6488. "range" : "51",
  6489. "domain" : "192",
  6490. "attributes" : [ "anonymous", "object" ],
  6491. "id" : "191"
  6492. }, {
  6493. "range" : "2",
  6494. "domain" : "183",
  6495. "attributes" : [ "anonymous", "object" ],
  6496. "id" : "194"
  6497. }, {
  6498. "range" : "2",
  6499. "domain" : "196",
  6500. "attributes" : [ "anonymous", "object" ],
  6501. "id" : "195"
  6502. }, {
  6503. "range" : "2",
  6504. "domain" : "188",
  6505. "attributes" : [ "anonymous", "object" ],
  6506. "id" : "197"
  6507. }, {
  6508. "range" : "45",
  6509. "domain" : "94",
  6510. "attributes" : [ "anonymous", "object" ],
  6511. "id" : "198"
  6512. }, {
  6513. "range" : "45",
  6514. "domain" : "151",
  6515. "attributes" : [ "anonymous", "object" ],
  6516. "id" : "199"
  6517. }, {
  6518. "range" : "45",
  6519. "domain" : "201",
  6520. "attributes" : [ "anonymous", "object" ],
  6521. "id" : "200"
  6522. }, {
  6523. "range" : "48",
  6524. "domain" : "203",
  6525. "attributes" : [ "anonymous", "object" ],
  6526. "id" : "202"
  6527. }, {
  6528. "iri" : "http://www.w3.org/ns/prov#qualifiedInvalidation",
  6529. "baseIri" : "http://www.w3.org/ns/prov",
  6530. "range" : "210",
  6531. "annotations" : {
  6532. "inverse" : [ {
  6533. "identifier" : "inverse",
  6534. "language" : "undefined",
  6535. "value" : "qualifiedInvalidationOf",
  6536. "type" : "label"
  6537. } ],
  6538. "sharesDefinitionWith" : [ {
  6539. "identifier" : "sharesDefinitionWith",
  6540. "language" : "undefined",
  6541. "value" : "http://www.w3.org/ns/prov#Invalidation",
  6542. "type" : "iri"
  6543. } ],
  6544. "component" : [ {
  6545. "identifier" : "component",
  6546. "language" : "undefined",
  6547. "value" : "entities-activities",
  6548. "type" : "label"
  6549. } ],
  6550. "isDefinedBy" : [ {
  6551. "identifier" : "isDefinedBy",
  6552. "language" : "undefined",
  6553. "value" : "http://www.w3.org/ns/prov-o#",
  6554. "type" : "iri"
  6555. } ],
  6556. "unqualifiedForm" : [ {
  6557. "identifier" : "unqualifiedForm",
  6558. "language" : "undefined",
  6559. "value" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  6560. "type" : "iri"
  6561. } ],
  6562. "category" : [ {
  6563. "identifier" : "category",
  6564. "language" : "undefined",
  6565. "value" : "qualified",
  6566. "type" : "label"
  6567. } ]
  6568. },
  6569. "label" : {
  6570. "IRI-based" : "qualifiedInvalidation",
  6571. "undefined" : "qualifiedInvalidation"
  6572. },
  6573. "superproperty" : [ "72" ],
  6574. "domain" : "20",
  6575. "comment" : {
  6576. "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 ]."
  6577. },
  6578. "attributes" : [ "external", "object" ],
  6579. "id" : "209"
  6580. }, {
  6581. "iri" : "https://w3id.org/GDPRov#wasSharedWithThirdParty",
  6582. "baseIri" : "https://w3id.org/GDPRov",
  6583. "range" : "139",
  6584. "label" : {
  6585. "IRI-based" : "wasSharedWithThirdParty"
  6586. },
  6587. "superproperty" : [ "213" ],
  6588. "domain" : "31",
  6589. "attributes" : [ "object" ],
  6590. "id" : "212"
  6591. }, {
  6592. "range" : "2",
  6593. "domain" : "215",
  6594. "attributes" : [ "anonymous", "object" ],
  6595. "id" : "214"
  6596. }, {
  6597. "iri" : "https://w3id.org/GDPRov#collectsDataFromAgent",
  6598. "baseIri" : "https://w3id.org/GDPRov",
  6599. "range" : "43",
  6600. "label" : {
  6601. "IRI-based" : "collectsDataFromAgent"
  6602. },
  6603. "superproperty" : [ "217" ],
  6604. "domain" : "208",
  6605. "attributes" : [ "object" ],
  6606. "id" : "216"
  6607. }, {
  6608. "range" : "2",
  6609. "domain" : "219",
  6610. "attributes" : [ "anonymous", "object" ],
  6611. "id" : "218"
  6612. }, {
  6613. "range" : "2",
  6614. "domain" : "93",
  6615. "attributes" : [ "anonymous", "object" ],
  6616. "id" : "220"
  6617. }, {
  6618. "iri" : "http://www.w3.org/ns/prov#qualifiedDerivation",
  6619. "baseIri" : "http://www.w3.org/ns/prov",
  6620. "range" : "167",
  6621. "annotations" : {
  6622. "sharesDefinitionWith" : [ {
  6623. "identifier" : "sharesDefinitionWith",
  6624. "language" : "undefined",
  6625. "value" : "http://www.w3.org/ns/prov#Derivation",
  6626. "type" : "iri"
  6627. } ],
  6628. "inverse" : [ {
  6629. "identifier" : "inverse",
  6630. "language" : "undefined",
  6631. "value" : "qualifiedDerivationOf",
  6632. "type" : "label"
  6633. } ],
  6634. "component" : [ {
  6635. "identifier" : "component",
  6636. "language" : "undefined",
  6637. "value" : "derivations",
  6638. "type" : "label"
  6639. } ],
  6640. "isDefinedBy" : [ {
  6641. "identifier" : "isDefinedBy",
  6642. "language" : "undefined",
  6643. "value" : "http://www.w3.org/ns/prov-o#",
  6644. "type" : "iri"
  6645. } ],
  6646. "unqualifiedForm" : [ {
  6647. "identifier" : "unqualifiedForm",
  6648. "language" : "undefined",
  6649. "value" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  6650. "type" : "iri"
  6651. } ],
  6652. "category" : [ {
  6653. "identifier" : "category",
  6654. "language" : "undefined",
  6655. "value" : "qualified",
  6656. "type" : "label"
  6657. } ]
  6658. },
  6659. "label" : {
  6660. "IRI-based" : "qualifiedDerivation",
  6661. "undefined" : "qualifiedDerivation"
  6662. },
  6663. "superproperty" : [ "72" ],
  6664. "domain" : "20",
  6665. "comment" : {
  6666. "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 ]."
  6667. },
  6668. "attributes" : [ "external", "object" ],
  6669. "id" : "223"
  6670. }, {
  6671. "iri" : "http://www.w3.org/ns/prov#wasStartedBy",
  6672. "baseIri" : "http://www.w3.org/ns/prov",
  6673. "range" : "20",
  6674. "annotations" : {
  6675. "inverse" : [ {
  6676. "identifier" : "inverse",
  6677. "language" : "undefined",
  6678. "value" : "started",
  6679. "type" : "label"
  6680. } ],
  6681. "component" : [ {
  6682. "identifier" : "component",
  6683. "language" : "undefined",
  6684. "value" : "entities-activities",
  6685. "type" : "label"
  6686. } ],
  6687. "isDefinedBy" : [ {
  6688. "identifier" : "isDefinedBy",
  6689. "language" : "undefined",
  6690. "value" : "http://www.w3.org/ns/prov-o#",
  6691. "type" : "iri"
  6692. } ],
  6693. "category" : [ {
  6694. "identifier" : "category",
  6695. "language" : "undefined",
  6696. "value" : "expanded",
  6697. "type" : "label"
  6698. } ],
  6699. "qualifiedForm" : [ {
  6700. "identifier" : "qualifiedForm",
  6701. "language" : "undefined",
  6702. "value" : "http://www.w3.org/ns/prov#Start",
  6703. "type" : "iri"
  6704. }, {
  6705. "identifier" : "qualifiedForm",
  6706. "language" : "undefined",
  6707. "value" : "http://www.w3.org/ns/prov#qualifiedStart",
  6708. "type" : "iri"
  6709. } ]
  6710. },
  6711. "label" : {
  6712. "IRI-based" : "wasStartedBy",
  6713. "undefined" : "wasStartedBy"
  6714. },
  6715. "superproperty" : [ "123" ],
  6716. "domain" : "68",
  6717. "comment" : {
  6718. "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."
  6719. },
  6720. "attributes" : [ "external", "object" ],
  6721. "id" : "224"
  6722. }, {
  6723. "iri" : "http://www.w3.org/ns/prov#qualifiedEnd",
  6724. "baseIri" : "http://www.w3.org/ns/prov",
  6725. "range" : "169",
  6726. "annotations" : {
  6727. "sharesDefinitionWith" : [ {
  6728. "identifier" : "sharesDefinitionWith",
  6729. "language" : "undefined",
  6730. "value" : "http://www.w3.org/ns/prov#End",
  6731. "type" : "iri"
  6732. } ],
  6733. "inverse" : [ {
  6734. "identifier" : "inverse",
  6735. "language" : "undefined",
  6736. "value" : "qualifiedEndOf",
  6737. "type" : "label"
  6738. } ],
  6739. "component" : [ {
  6740. "identifier" : "component",
  6741. "language" : "undefined",
  6742. "value" : "entities-activities",
  6743. "type" : "label"
  6744. } ],
  6745. "isDefinedBy" : [ {
  6746. "identifier" : "isDefinedBy",
  6747. "language" : "undefined",
  6748. "value" : "http://www.w3.org/ns/prov-o#",
  6749. "type" : "iri"
  6750. } ],
  6751. "unqualifiedForm" : [ {
  6752. "identifier" : "unqualifiedForm",
  6753. "language" : "undefined",
  6754. "value" : "http://www.w3.org/ns/prov#wasEndedBy",
  6755. "type" : "iri"
  6756. } ],
  6757. "category" : [ {
  6758. "identifier" : "category",
  6759. "language" : "undefined",
  6760. "value" : "qualified",
  6761. "type" : "label"
  6762. } ]
  6763. },
  6764. "label" : {
  6765. "IRI-based" : "qualifiedEnd",
  6766. "undefined" : "qualifiedEnd"
  6767. },
  6768. "superproperty" : [ "72" ],
  6769. "domain" : "68",
  6770. "comment" : {
  6771. "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 ]."
  6772. },
  6773. "attributes" : [ "external", "object" ],
  6774. "id" : "229"
  6775. }, {
  6776. "iri" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  6777. "baseIri" : "http://www.w3.org/ns/prov",
  6778. "range" : "43",
  6779. "annotations" : {
  6780. "inverse" : [ {
  6781. "identifier" : "inverse",
  6782. "language" : "undefined",
  6783. "value" : "wasAssociateFor",
  6784. "type" : "label"
  6785. } ],
  6786. "component" : [ {
  6787. "identifier" : "component",
  6788. "language" : "undefined",
  6789. "value" : "agents-responsibility",
  6790. "type" : "label"
  6791. } ],
  6792. "isDefinedBy" : [ {
  6793. "identifier" : "isDefinedBy",
  6794. "language" : "undefined",
  6795. "value" : "http://www.w3.org/ns/prov-o#",
  6796. "type" : "iri"
  6797. } ],
  6798. "category" : [ {
  6799. "identifier" : "category",
  6800. "language" : "undefined",
  6801. "value" : "starting-point",
  6802. "type" : "label"
  6803. } ],
  6804. "qualifiedForm" : [ {
  6805. "identifier" : "qualifiedForm",
  6806. "language" : "undefined",
  6807. "value" : "http://www.w3.org/ns/prov#Association",
  6808. "type" : "iri"
  6809. }, {
  6810. "identifier" : "qualifiedForm",
  6811. "language" : "undefined",
  6812. "value" : "http://www.w3.org/ns/prov#qualifiedAssociation",
  6813. "type" : "iri"
  6814. } ]
  6815. },
  6816. "label" : {
  6817. "IRI-based" : "wasAssociatedWith",
  6818. "undefined" : "wasAssociatedWith"
  6819. },
  6820. "superproperty" : [ "123" ],
  6821. "domain" : "68",
  6822. "comment" : {
  6823. "en" : "An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity."
  6824. },
  6825. "attributes" : [ "external", "object" ],
  6826. "id" : "231"
  6827. }, {
  6828. "iri" : "http://www.w3.org/ns/prov#wasRevisionOf",
  6829. "baseIri" : "http://www.w3.org/ns/prov",
  6830. "range" : "21",
  6831. "annotations" : {
  6832. "inverse" : [ {
  6833. "identifier" : "inverse",
  6834. "language" : "undefined",
  6835. "value" : "hadRevision",
  6836. "type" : "label"
  6837. } ],
  6838. "component" : [ {
  6839. "identifier" : "component",
  6840. "language" : "undefined",
  6841. "value" : "derivations",
  6842. "type" : "label"
  6843. } ],
  6844. "isDefinedBy" : [ {
  6845. "identifier" : "isDefinedBy",
  6846. "language" : "undefined",
  6847. "value" : "http://www.w3.org/ns/prov-o#",
  6848. "type" : "iri"
  6849. } ],
  6850. "category" : [ {
  6851. "identifier" : "category",
  6852. "language" : "undefined",
  6853. "value" : "expanded",
  6854. "type" : "label"
  6855. } ],
  6856. "qualifiedForm" : [ {
  6857. "identifier" : "qualifiedForm",
  6858. "language" : "undefined",
  6859. "value" : "http://www.w3.org/ns/prov#Revision",
  6860. "type" : "iri"
  6861. }, {
  6862. "identifier" : "qualifiedForm",
  6863. "language" : "undefined",
  6864. "value" : "http://www.w3.org/ns/prov#qualifiedRevision",
  6865. "type" : "iri"
  6866. } ]
  6867. },
  6868. "label" : {
  6869. "IRI-based" : "wasRevisionOf",
  6870. "undefined" : "wasRevisionOf"
  6871. },
  6872. "superproperty" : [ "238" ],
  6873. "domain" : "20",
  6874. "comment" : {
  6875. "en" : "A revision is a derivation that revises an entity into a revised version."
  6876. },
  6877. "attributes" : [ "external", "object" ],
  6878. "id" : "237"
  6879. }, {
  6880. "iri" : "https://w3id.org/GDPRov#isUsedByStep",
  6881. "inverse" : "77",
  6882. "baseIri" : "https://w3id.org/GDPRov",
  6883. "range" : "85",
  6884. "label" : {
  6885. "IRI-based" : "isUsedByStep",
  6886. "undefined" : "isUsedByStep"
  6887. },
  6888. "superproperty" : [ "213" ],
  6889. "domain" : "31",
  6890. "attributes" : [ "object" ],
  6891. "id" : "239"
  6892. }, {
  6893. "iri" : "https://w3id.org/GDPRov#isGeneratedByStep",
  6894. "baseIri" : "https://w3id.org/GDPRov",
  6895. "range" : "26",
  6896. "label" : {
  6897. "IRI-based" : "isGeneratedByStep",
  6898. "undefined" : "isGeneratedByStep"
  6899. },
  6900. "superproperty" : [ "97" ],
  6901. "domain" : "26",
  6902. "attributes" : [ "object" ],
  6903. "id" : "124"
  6904. }, {
  6905. "range" : "126",
  6906. "domain" : "31",
  6907. "attributes" : [ "anonymous", "object" ],
  6908. "id" : "245"
  6909. }, {
  6910. "range" : "139",
  6911. "domain" : "138",
  6912. "attributes" : [ "anonymous", "object" ],
  6913. "id" : "247"
  6914. }, {
  6915. "range" : "86",
  6916. "domain" : "88",
  6917. "attributes" : [ "anonymous", "object" ],
  6918. "id" : "249"
  6919. }, {
  6920. "range" : "139",
  6921. "domain" : "158",
  6922. "attributes" : [ "anonymous", "object" ],
  6923. "id" : "250"
  6924. }, {
  6925. "iri" : "http://purl.org/net/p-plan#isStepOfPlan",
  6926. "baseIri" : "http://purl.org/net/p-plan",
  6927. "range" : "128",
  6928. "annotations" : {
  6929. "isDefinedBy" : [ {
  6930. "identifier" : "isDefinedBy",
  6931. "language" : "undefined",
  6932. "value" : "http://purl.org/net/p-plan#",
  6933. "type" : "iri"
  6934. } ],
  6935. "definition" : [ {
  6936. "identifier" : "definition",
  6937. "language" : "en",
  6938. "value" : "p-plan:isStepOfPlan links a p-plan:Step to the p-plan:Plan which it corresponds to.",
  6939. "type" : "label"
  6940. } ]
  6941. },
  6942. "label" : {
  6943. "IRI-based" : "isStepOfPlan",
  6944. "en" : "isStepOfPlan"
  6945. },
  6946. "domain" : "75",
  6947. "subproperty" : [ "152" ],
  6948. "attributes" : [ "external", "object" ],
  6949. "id" : "153"
  6950. }, {
  6951. "iri" : "http://www.w3.org/ns/prov#qualifiedAttribution",
  6952. "baseIri" : "http://www.w3.org/ns/prov",
  6953. "range" : "203",
  6954. "annotations" : {
  6955. "inverse" : [ {
  6956. "identifier" : "inverse",
  6957. "language" : "undefined",
  6958. "value" : "qualifiedAttributionOf",
  6959. "type" : "label"
  6960. } ],
  6961. "sharesDefinitionWith" : [ {
  6962. "identifier" : "sharesDefinitionWith",
  6963. "language" : "undefined",
  6964. "value" : "http://www.w3.org/ns/prov#Attribution",
  6965. "type" : "iri"
  6966. } ],
  6967. "component" : [ {
  6968. "identifier" : "component",
  6969. "language" : "undefined",
  6970. "value" : "agents-responsibility",
  6971. "type" : "label"
  6972. } ],
  6973. "isDefinedBy" : [ {
  6974. "identifier" : "isDefinedBy",
  6975. "language" : "undefined",
  6976. "value" : "http://www.w3.org/ns/prov-o#",
  6977. "type" : "iri"
  6978. } ],
  6979. "unqualifiedForm" : [ {
  6980. "identifier" : "unqualifiedForm",
  6981. "language" : "undefined",
  6982. "value" : "http://www.w3.org/ns/prov#wasAttributedTo",
  6983. "type" : "iri"
  6984. } ],
  6985. "category" : [ {
  6986. "identifier" : "category",
  6987. "language" : "undefined",
  6988. "value" : "qualified",
  6989. "type" : "label"
  6990. } ]
  6991. },
  6992. "label" : {
  6993. "IRI-based" : "qualifiedAttribution",
  6994. "undefined" : "qualifiedAttribution"
  6995. },
  6996. "superproperty" : [ "72" ],
  6997. "domain" : "20",
  6998. "comment" : {
  6999. "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 ]."
  7000. },
  7001. "attributes" : [ "external", "object" ],
  7002. "id" : "252"
  7003. }, {
  7004. "iri" : "https://w3id.org/GDPRov#sharesData",
  7005. "inverse" : "253",
  7006. "baseIri" : "https://w3id.org/GDPRov",
  7007. "range" : "31",
  7008. "label" : {
  7009. "IRI-based" : "sharesData",
  7010. "undefined" : "sharesData"
  7011. },
  7012. "superproperty" : [ "66" ],
  7013. "domain" : "103",
  7014. "comment" : {
  7015. "undefined" : "Indicates sharing of Data through a DataStep"
  7016. },
  7017. "attributes" : [ "object" ],
  7018. "id" : "79"
  7019. }, {
  7020. "range" : "43",
  7021. "domain" : "121",
  7022. "attributes" : [ "anonymous", "object" ],
  7023. "id" : "254"
  7024. }, {
  7025. "range" : "43",
  7026. "domain" : "211",
  7027. "attributes" : [ "anonymous", "object" ],
  7028. "id" : "255"
  7029. }, {
  7030. "range" : "43",
  7031. "domain" : "257",
  7032. "attributes" : [ "anonymous", "object" ],
  7033. "id" : "256"
  7034. }, {
  7035. "range" : "43",
  7036. "domain" : "104",
  7037. "attributes" : [ "anonymous", "object" ],
  7038. "id" : "258"
  7039. }, {
  7040. "range" : "43",
  7041. "domain" : "260",
  7042. "attributes" : [ "anonymous", "object" ],
  7043. "id" : "259"
  7044. }, {
  7045. "range" : "43",
  7046. "domain" : "42",
  7047. "attributes" : [ "anonymous", "object" ],
  7048. "id" : "261"
  7049. }, {
  7050. "range" : "43",
  7051. "domain" : "263",
  7052. "attributes" : [ "anonymous", "object" ],
  7053. "id" : "262"
  7054. }, {
  7055. "range" : "43",
  7056. "domain" : "139",
  7057. "attributes" : [ "anonymous", "object" ],
  7058. "id" : "264"
  7059. }, {
  7060. "range" : "53",
  7061. "domain" : "210",
  7062. "attributes" : [ "anonymous", "object" ],
  7063. "id" : "265"
  7064. }, {
  7065. "range" : "53",
  7066. "domain" : "267",
  7067. "attributes" : [ "anonymous", "object" ],
  7068. "id" : "266"
  7069. }, {
  7070. "iri" : "http://purl.org/net/p-plan#hasOutputVar",
  7071. "inverse" : "97",
  7072. "baseIri" : "http://purl.org/net/p-plan",
  7073. "range" : "76",
  7074. "annotations" : {
  7075. "isDefinedBy" : [ {
  7076. "identifier" : "isDefinedBy",
  7077. "language" : "undefined",
  7078. "value" : "http://purl.org/net/p-plan#",
  7079. "type" : "iri"
  7080. } ],
  7081. "definition" : [ {
  7082. "identifier" : "definition",
  7083. "language" : "en",
  7084. "value" : "p-plan:hasOutputVar binds a p-plan:Step to the p-plan:Variable that will be produced as output in the planned execution",
  7085. "type" : "label"
  7086. } ]
  7087. },
  7088. "label" : {
  7089. "IRI-based" : "hasOutputVar",
  7090. "en" : "hasOutputVar"
  7091. },
  7092. "domain" : "75",
  7093. "subproperty" : [ "269", "270", "271", "272" ],
  7094. "attributes" : [ "external", "object" ],
  7095. "id" : "268"
  7096. }, {
  7097. "iri" : "https://w3id.org/GDPRov#usesData",
  7098. "baseIri" : "https://w3id.org/GDPRov",
  7099. "range" : "31",
  7100. "label" : {
  7101. "IRI-based" : "usesData",
  7102. "undefined" : "usesData"
  7103. },
  7104. "superproperty" : [ "66" ],
  7105. "domain" : "85",
  7106. "comment" : {
  7107. "undefined" : "links step with data used"
  7108. },
  7109. "attributes" : [ "object" ],
  7110. "id" : "77"
  7111. }, {
  7112. "iri" : "https://w3id.org/GDPRov#collectsData",
  7113. "inverse" : "96",
  7114. "baseIri" : "https://w3id.org/GDPRov",
  7115. "range" : "31",
  7116. "label" : {
  7117. "IRI-based" : "collectsData",
  7118. "undefined" : "collectsData"
  7119. },
  7120. "superproperty" : [ "268" ],
  7121. "domain" : "85",
  7122. "comment" : {
  7123. "undefined" : "Links data obtained (collected) by the step/activity that acquired it"
  7124. },
  7125. "attributes" : [ "object" ],
  7126. "id" : "269"
  7127. }, {
  7128. "range" : "53",
  7129. "domain" : "71",
  7130. "attributes" : [ "anonymous", "object" ],
  7131. "id" : "274"
  7132. }, {
  7133. "range" : "119",
  7134. "domain" : "210",
  7135. "attributes" : [ "anonymous", "object" ],
  7136. "id" : "275"
  7137. }, {
  7138. "range" : "119",
  7139. "domain" : "267",
  7140. "attributes" : [ "anonymous", "object" ],
  7141. "id" : "276"
  7142. }, {
  7143. "range" : "119",
  7144. "domain" : "171",
  7145. "attributes" : [ "anonymous", "object" ],
  7146. "id" : "277"
  7147. }, {
  7148. "range" : "119",
  7149. "domain" : "169",
  7150. "attributes" : [ "anonymous", "object" ],
  7151. "id" : "278"
  7152. }, {
  7153. "iri" : "http://www.w3.org/ns/prov#hadGeneration",
  7154. "baseIri" : "http://www.w3.org/ns/prov",
  7155. "range" : "267",
  7156. "annotations" : {
  7157. "sharesDefinitionWith" : [ {
  7158. "identifier" : "sharesDefinitionWith",
  7159. "language" : "undefined",
  7160. "value" : "http://www.w3.org/ns/prov#Generation",
  7161. "type" : "iri"
  7162. } ],
  7163. "inverse" : [ {
  7164. "identifier" : "inverse",
  7165. "language" : "undefined",
  7166. "value" : "generatedAsDerivation",
  7167. "type" : "label"
  7168. } ],
  7169. "component" : [ {
  7170. "identifier" : "component",
  7171. "language" : "undefined",
  7172. "value" : "derivations",
  7173. "type" : "label"
  7174. } ],
  7175. "isDefinedBy" : [ {
  7176. "identifier" : "isDefinedBy",
  7177. "language" : "undefined",
  7178. "value" : "http://www.w3.org/ns/prov-o#",
  7179. "type" : "iri"
  7180. } ],
  7181. "category" : [ {
  7182. "identifier" : "category",
  7183. "language" : "undefined",
  7184. "value" : "qualified",
  7185. "type" : "label"
  7186. } ]
  7187. },
  7188. "label" : {
  7189. "IRI-based" : "hadGeneration",
  7190. "undefined" : "hadGeneration"
  7191. },
  7192. "domain" : "167",
  7193. "comment" : {
  7194. "en" : "The _optional_ Generation involved in an Entity's Derivation."
  7195. },
  7196. "attributes" : [ "external", "object" ],
  7197. "id" : "279"
  7198. }, {
  7199. "range" : "119",
  7200. "domain" : "192",
  7201. "attributes" : [ "anonymous", "object" ],
  7202. "id" : "282"
  7203. }, {
  7204. "range" : "161",
  7205. "domain" : "160",
  7206. "attributes" : [ "anonymous", "object" ],
  7207. "id" : "283"
  7208. }, {
  7209. "iri" : "http://www.w3.org/ns/prov#startedAtTime",
  7210. "baseIri" : "http://www.w3.org/ns/prov",
  7211. "range" : "234",
  7212. "annotations" : {
  7213. "editorialNote" : [ {
  7214. "identifier" : "editorialNote",
  7215. "language" : "en",
  7216. "value" : "It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime.",
  7217. "type" : "label"
  7218. } ],
  7219. "component" : [ {
  7220. "identifier" : "component",
  7221. "language" : "undefined",
  7222. "value" : "entities-activities",
  7223. "type" : "label"
  7224. } ],
  7225. "isDefinedBy" : [ {
  7226. "identifier" : "isDefinedBy",
  7227. "language" : "undefined",
  7228. "value" : "http://www.w3.org/ns/prov-o#",
  7229. "type" : "iri"
  7230. } ],
  7231. "category" : [ {
  7232. "identifier" : "category",
  7233. "language" : "undefined",
  7234. "value" : "starting-point",
  7235. "type" : "label"
  7236. } ],
  7237. "qualifiedForm" : [ {
  7238. "identifier" : "qualifiedForm",
  7239. "language" : "undefined",
  7240. "value" : "http://www.w3.org/ns/prov#Start",
  7241. "type" : "iri"
  7242. }, {
  7243. "identifier" : "qualifiedForm",
  7244. "language" : "undefined",
  7245. "value" : "http://www.w3.org/ns/prov#atTime",
  7246. "type" : "iri"
  7247. } ]
  7248. },
  7249. "label" : {
  7250. "IRI-based" : "startedAtTime",
  7251. "undefined" : "startedAtTime"
  7252. },
  7253. "domain" : "68",
  7254. "comment" : {
  7255. "en" : "The time at which an activity started. See also prov:endedAtTime."
  7256. },
  7257. "attributes" : [ "datatype", "external" ],
  7258. "id" : "284"
  7259. }, {
  7260. "range" : "138",
  7261. "domain" : "140",
  7262. "attributes" : [ "anonymous", "object" ],
  7263. "id" : "285"
  7264. }, {
  7265. "range" : "105",
  7266. "domain" : "108",
  7267. "attributes" : [ "anonymous", "object" ],
  7268. "id" : "286"
  7269. }, {
  7270. "range" : "33",
  7271. "domain" : "32",
  7272. "attributes" : [ "anonymous", "object" ],
  7273. "id" : "287"
  7274. }, {
  7275. "range" : "158",
  7276. "domain" : "159",
  7277. "attributes" : [ "anonymous", "object" ],
  7278. "id" : "288"
  7279. }, {
  7280. "iri" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  7281. "baseIri" : "http://www.w3.org/ns/prov",
  7282. "range" : "20",
  7283. "annotations" : {
  7284. "inverse" : [ {
  7285. "identifier" : "inverse",
  7286. "language" : "undefined",
  7287. "value" : "quotedAs",
  7288. "type" : "label"
  7289. } ],
  7290. "component" : [ {
  7291. "identifier" : "component",
  7292. "language" : "undefined",
  7293. "value" : "derivations",
  7294. "type" : "label"
  7295. } ],
  7296. "isDefinedBy" : [ {
  7297. "identifier" : "isDefinedBy",
  7298. "language" : "undefined",
  7299. "value" : "http://www.w3.org/ns/prov-o#",
  7300. "type" : "iri"
  7301. } ],
  7302. "category" : [ {
  7303. "identifier" : "category",
  7304. "language" : "undefined",
  7305. "value" : "expanded",
  7306. "type" : "label"
  7307. } ],
  7308. "qualifiedForm" : [ {
  7309. "identifier" : "qualifiedForm",
  7310. "language" : "undefined",
  7311. "value" : "http://www.w3.org/ns/prov#Quotation",
  7312. "type" : "iri"
  7313. }, {
  7314. "identifier" : "qualifiedForm",
  7315. "language" : "undefined",
  7316. "value" : "http://www.w3.org/ns/prov#qualifiedQuotation",
  7317. "type" : "iri"
  7318. } ]
  7319. },
  7320. "label" : {
  7321. "IRI-based" : "wasQuotedFrom",
  7322. "undefined" : "wasQuotedFrom"
  7323. },
  7324. "superproperty" : [ "238" ],
  7325. "domain" : "20",
  7326. "comment" : {
  7327. "en" : "An entity is derived from an original entity by copying, or 'quoting', some or all of it."
  7328. },
  7329. "attributes" : [ "external", "object" ],
  7330. "id" : "290"
  7331. }, {
  7332. "range" : "105",
  7333. "domain" : "107",
  7334. "attributes" : [ "anonymous", "object" ],
  7335. "id" : "291"
  7336. }, {
  7337. "iri" : "http://www.w3.org/ns/prov#used",
  7338. "baseIri" : "http://www.w3.org/ns/prov",
  7339. "range" : "20",
  7340. "annotations" : {
  7341. "inverse" : [ {
  7342. "identifier" : "inverse",
  7343. "language" : "undefined",
  7344. "value" : "wasUsedBy",
  7345. "type" : "label"
  7346. } ],
  7347. "component" : [ {
  7348. "identifier" : "component",
  7349. "language" : "undefined",
  7350. "value" : "entities-activities",
  7351. "type" : "label"
  7352. } ],
  7353. "isDefinedBy" : [ {
  7354. "identifier" : "isDefinedBy",
  7355. "language" : "undefined",
  7356. "value" : "http://www.w3.org/ns/prov-o#",
  7357. "type" : "iri"
  7358. }, {
  7359. "identifier" : "isDefinedBy",
  7360. "language" : "undefined",
  7361. "value" : "http://www.w3.org/ns/prov#",
  7362. "type" : "iri"
  7363. } ],
  7364. "category" : [ {
  7365. "identifier" : "category",
  7366. "language" : "undefined",
  7367. "value" : "starting-point",
  7368. "type" : "label"
  7369. } ],
  7370. "qualifiedForm" : [ {
  7371. "identifier" : "qualifiedForm",
  7372. "language" : "undefined",
  7373. "value" : "http://www.w3.org/ns/prov#qualifiedUsage",
  7374. "type" : "iri"
  7375. }, {
  7376. "identifier" : "qualifiedForm",
  7377. "language" : "undefined",
  7378. "value" : "http://www.w3.org/ns/prov#Usage",
  7379. "type" : "iri"
  7380. } ]
  7381. },
  7382. "label" : {
  7383. "IRI-based" : "used",
  7384. "undefined" : "used"
  7385. },
  7386. "superproperty" : [ "123" ],
  7387. "domain" : "68",
  7388. "comment" : {
  7389. "en" : "A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven ."
  7390. },
  7391. "attributes" : [ "external", "object" ],
  7392. "id" : "292"
  7393. }, {
  7394. "iri" : "https://w3id.org/GDPRov#isTermsAndConditionsForStep",
  7395. "inverse" : "78",
  7396. "baseIri" : "https://w3id.org/GDPRov",
  7397. "range" : "64",
  7398. "label" : {
  7399. "IRI-based" : "isTermsAndConditionsForStep",
  7400. "undefined" : "isTermsAndConditionsForStep"
  7401. },
  7402. "superproperty" : [ "213" ],
  7403. "domain" : "126",
  7404. "attributes" : [ "object" ],
  7405. "id" : "293"
  7406. }, {
  7407. "iri" : "http://www.w3.org/ns/prov#hadUsage",
  7408. "baseIri" : "http://www.w3.org/ns/prov",
  7409. "range" : "192",
  7410. "annotations" : {
  7411. "sharesDefinitionWith" : [ {
  7412. "identifier" : "sharesDefinitionWith",
  7413. "language" : "undefined",
  7414. "value" : "http://www.w3.org/ns/prov#Usage",
  7415. "type" : "iri"
  7416. } ],
  7417. "inverse" : [ {
  7418. "identifier" : "inverse",
  7419. "language" : "undefined",
  7420. "value" : "wasUsedInDerivation",
  7421. "type" : "label"
  7422. } ],
  7423. "component" : [ {
  7424. "identifier" : "component",
  7425. "language" : "undefined",
  7426. "value" : "derivations",
  7427. "type" : "label"
  7428. } ],
  7429. "isDefinedBy" : [ {
  7430. "identifier" : "isDefinedBy",
  7431. "language" : "undefined",
  7432. "value" : "http://www.w3.org/ns/prov-o#",
  7433. "type" : "iri"
  7434. } ],
  7435. "category" : [ {
  7436. "identifier" : "category",
  7437. "language" : "undefined",
  7438. "value" : "qualified",
  7439. "type" : "label"
  7440. } ]
  7441. },
  7442. "label" : {
  7443. "IRI-based" : "hadUsage",
  7444. "undefined" : "hadUsage"
  7445. },
  7446. "domain" : "167",
  7447. "comment" : {
  7448. "en" : "The _optional_ Usage involved in an Entity's Derivation."
  7449. },
  7450. "attributes" : [ "external", "object" ],
  7451. "id" : "294"
  7452. }, {
  7453. "iri" : "http://www.w3.org/ns/prov#agent",
  7454. "baseIri" : "http://www.w3.org/ns/prov",
  7455. "range" : "43",
  7456. "annotations" : {
  7457. "editorialNote" : [ {
  7458. "identifier" : "editorialNote",
  7459. "language" : "en",
  7460. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  7461. "type" : "label"
  7462. } ],
  7463. "inverse" : [ {
  7464. "identifier" : "inverse",
  7465. "language" : "undefined",
  7466. "value" : "agentOfInfluence",
  7467. "type" : "label"
  7468. } ],
  7469. "isDefinedBy" : [ {
  7470. "identifier" : "isDefinedBy",
  7471. "language" : "undefined",
  7472. "value" : "http://www.w3.org/ns/prov-o#",
  7473. "type" : "iri"
  7474. } ],
  7475. "editorsDefinition" : [ {
  7476. "identifier" : "editorsDefinition",
  7477. "language" : "en",
  7478. "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.",
  7479. "type" : "label"
  7480. } ],
  7481. "category" : [ {
  7482. "identifier" : "category",
  7483. "language" : "undefined",
  7484. "value" : "qualified",
  7485. "type" : "label"
  7486. } ]
  7487. },
  7488. "label" : {
  7489. "IRI-based" : "agent",
  7490. "undefined" : "agent"
  7491. },
  7492. "superproperty" : [ "297" ],
  7493. "domain" : "48",
  7494. "attributes" : [ "external", "object" ],
  7495. "id" : "296"
  7496. }, {
  7497. "range" : "105",
  7498. "domain" : "106",
  7499. "attributes" : [ "anonymous", "object" ],
  7500. "id" : "298"
  7501. }, {
  7502. "range" : "100",
  7503. "domain" : "101",
  7504. "attributes" : [ "anonymous", "object" ],
  7505. "id" : "300"
  7506. }, {
  7507. "iri" : "http://purl.org/net/p-plan#isInputVarOf",
  7508. "inverse" : "66",
  7509. "baseIri" : "http://purl.org/net/p-plan",
  7510. "range" : "75",
  7511. "annotations" : {
  7512. "isDefinedBy" : [ {
  7513. "identifier" : "isDefinedBy",
  7514. "language" : "undefined",
  7515. "value" : "http://purl.org/net/p-plan#",
  7516. "type" : "iri"
  7517. } ],
  7518. "definition" : [ {
  7519. "identifier" : "definition",
  7520. "language" : "en",
  7521. "value" : "p-plan:isInputVarOf links an input variable of a step to the step.",
  7522. "type" : "label"
  7523. } ]
  7524. },
  7525. "label" : {
  7526. "IRI-based" : "isInputVarOf",
  7527. "en" : "isInputVarOf"
  7528. },
  7529. "domain" : "76",
  7530. "subproperty" : [ "301", "302", "293", "212", "253", "239" ],
  7531. "attributes" : [ "external", "object" ],
  7532. "id" : "213"
  7533. }, {
  7534. "range" : "190",
  7535. "domain" : "248",
  7536. "attributes" : [ "anonymous", "object" ],
  7537. "id" : "303"
  7538. }, {
  7539. "range" : "167",
  7540. "domain" : "182",
  7541. "attributes" : [ "anonymous", "object" ],
  7542. "id" : "304"
  7543. }, {
  7544. "iri" : "https://w3id.org/GDPRov#isDataGeneratedBy",
  7545. "baseIri" : "https://w3id.org/GDPRov",
  7546. "range" : "26",
  7547. "label" : {
  7548. "IRI-based" : "isDataGeneratedBy",
  7549. "undefined" : "isDataGeneratedByStep"
  7550. },
  7551. "superproperty" : [ "97" ],
  7552. "domain" : "26",
  7553. "subproperty" : [ "305" ],
  7554. "attributes" : [ "object" ],
  7555. "id" : "125"
  7556. }, {
  7557. "range" : "190",
  7558. "domain" : "307",
  7559. "attributes" : [ "anonymous", "object" ],
  7560. "id" : "306"
  7561. }, {
  7562. "range" : "190",
  7563. "domain" : "251",
  7564. "attributes" : [ "anonymous", "object" ],
  7565. "id" : "308"
  7566. }, {
  7567. "range" : "1",
  7568. "domain" : "95",
  7569. "attributes" : [ "anonymous", "object" ],
  7570. "id" : "309"
  7571. }, {
  7572. "range" : "75",
  7573. "domain" : "12",
  7574. "attributes" : [ "anonymous", "object" ],
  7575. "id" : "310"
  7576. }, {
  7577. "iri" : "https://w3id.org/GDPRov#isAnonymisedByStep",
  7578. "baseIri" : "https://w3id.org/GDPRov",
  7579. "range" : "26",
  7580. "label" : {
  7581. "IRI-based" : "isAnonymisedByStep",
  7582. "undefined" : "isAnonymisedByStep"
  7583. },
  7584. "superproperty" : [ "125" ],
  7585. "domain" : "26",
  7586. "attributes" : [ "object" ],
  7587. "id" : "305"
  7588. }, {
  7589. "range" : "167",
  7590. "domain" : "295",
  7591. "attributes" : [ "anonymous", "object" ],
  7592. "id" : "312"
  7593. }, {
  7594. "iri" : "http://www.w3.org/ns/prov#alternateOf",
  7595. "baseIri" : "http://www.w3.org/ns/prov",
  7596. "range" : "20",
  7597. "annotations" : {
  7598. "inverse" : [ {
  7599. "identifier" : "inverse",
  7600. "language" : "undefined",
  7601. "value" : "alternateOf",
  7602. "type" : "label"
  7603. } ],
  7604. "component" : [ {
  7605. "identifier" : "component",
  7606. "language" : "undefined",
  7607. "value" : "alternate",
  7608. "type" : "label"
  7609. } ],
  7610. "isDefinedBy" : [ {
  7611. "identifier" : "isDefinedBy",
  7612. "language" : "undefined",
  7613. "value" : "http://www.w3.org/ns/prov-o#",
  7614. "type" : "iri"
  7615. } ],
  7616. "dm" : [ {
  7617. "identifier" : "dm",
  7618. "language" : "undefined",
  7619. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate",
  7620. "type" : "label"
  7621. } ],
  7622. "definition" : [ {
  7623. "identifier" : "definition",
  7624. "language" : "en",
  7625. "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.",
  7626. "type" : "label"
  7627. } ],
  7628. "category" : [ {
  7629. "identifier" : "category",
  7630. "language" : "undefined",
  7631. "value" : "expanded",
  7632. "type" : "label"
  7633. } ],
  7634. "constraints" : [ {
  7635. "identifier" : "constraints",
  7636. "language" : "undefined",
  7637. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  7638. "type" : "label"
  7639. } ],
  7640. "seeAlso" : [ {
  7641. "identifier" : "seeAlso",
  7642. "language" : "undefined",
  7643. "value" : "http://www.w3.org/ns/prov#specializationOf",
  7644. "type" : "iri"
  7645. } ],
  7646. "n" : [ {
  7647. "identifier" : "n",
  7648. "language" : "undefined",
  7649. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate",
  7650. "type" : "label"
  7651. } ]
  7652. },
  7653. "label" : {
  7654. "IRI-based" : "alternateOf",
  7655. "undefined" : "alternateOf"
  7656. },
  7657. "domain" : "20",
  7658. "subproperty" : [ "19" ],
  7659. "attributes" : [ "external", "object" ],
  7660. "id" : "22"
  7661. }, {
  7662. "range" : "167",
  7663. "domain" : "289",
  7664. "attributes" : [ "anonymous", "object" ],
  7665. "id" : "313"
  7666. }, {
  7667. "iri" : "http://www.w3.org/ns/prov#qualifiedGeneration",
  7668. "baseIri" : "http://www.w3.org/ns/prov",
  7669. "range" : "267",
  7670. "annotations" : {
  7671. "sharesDefinitionWith" : [ {
  7672. "identifier" : "sharesDefinitionWith",
  7673. "language" : "undefined",
  7674. "value" : "http://www.w3.org/ns/prov#Generation",
  7675. "type" : "iri"
  7676. } ],
  7677. "inverse" : [ {
  7678. "identifier" : "inverse",
  7679. "language" : "undefined",
  7680. "value" : "qualifiedGenerationOf",
  7681. "type" : "label"
  7682. } ],
  7683. "component" : [ {
  7684. "identifier" : "component",
  7685. "language" : "undefined",
  7686. "value" : "entities-activities",
  7687. "type" : "label"
  7688. } ],
  7689. "isDefinedBy" : [ {
  7690. "identifier" : "isDefinedBy",
  7691. "language" : "undefined",
  7692. "value" : "http://www.w3.org/ns/prov-o#",
  7693. "type" : "iri"
  7694. } ],
  7695. "unqualifiedForm" : [ {
  7696. "identifier" : "unqualifiedForm",
  7697. "language" : "undefined",
  7698. "value" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  7699. "type" : "iri"
  7700. } ],
  7701. "category" : [ {
  7702. "identifier" : "category",
  7703. "language" : "undefined",
  7704. "value" : "qualified",
  7705. "type" : "label"
  7706. } ]
  7707. },
  7708. "label" : {
  7709. "IRI-based" : "qualifiedGeneration",
  7710. "undefined" : "qualifiedGeneration"
  7711. },
  7712. "superproperty" : [ "72" ],
  7713. "domain" : "20",
  7714. "comment" : {
  7715. "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 ]."
  7716. },
  7717. "attributes" : [ "external", "object" ],
  7718. "id" : "315"
  7719. }, {
  7720. "range" : "75",
  7721. "domain" : "85",
  7722. "attributes" : [ "anonymous", "object" ],
  7723. "id" : "316"
  7724. }, {
  7725. "iri" : "https://w3id.org/GDPRov#usesConsentAgreement",
  7726. "baseIri" : "https://w3id.org/GDPRov",
  7727. "range" : "155",
  7728. "label" : {
  7729. "IRI-based" : "usesConsentAgreement",
  7730. "undefined" : "uses Consent Agreement"
  7731. },
  7732. "superproperty" : [ "66" ],
  7733. "domain" : "317",
  7734. "comment" : {
  7735. "undefined" : "uses Consent Agreement entity"
  7736. },
  7737. "attributes" : [ "object" ],
  7738. "id" : "80"
  7739. }, {
  7740. "range" : "75",
  7741. "domain" : "111",
  7742. "attributes" : [ "anonymous", "object" ],
  7743. "id" : "318"
  7744. }, {
  7745. "iri" : "https://w3id.org/GDPRov#collectsConsentFromAgent",
  7746. "baseIri" : "https://w3id.org/GDPRov",
  7747. "range" : "43",
  7748. "label" : {
  7749. "IRI-based" : "collectsConsentFromAgent"
  7750. },
  7751. "superproperty" : [ "217" ],
  7752. "domain" : "64",
  7753. "attributes" : [ "object" ],
  7754. "id" : "319"
  7755. }, {
  7756. "range" : "75",
  7757. "domain" : "127",
  7758. "attributes" : [ "anonymous", "object" ],
  7759. "id" : "320"
  7760. }, {
  7761. "range" : "86",
  7762. "domain" : "90",
  7763. "attributes" : [ "anonymous", "object" ],
  7764. "id" : "321"
  7765. }, {
  7766. "range" : "86",
  7767. "domain" : "89",
  7768. "attributes" : [ "anonymous", "object" ],
  7769. "id" : "322"
  7770. }, {
  7771. "range" : "75",
  7772. "domain" : "324",
  7773. "attributes" : [ "anonymous", "object" ],
  7774. "id" : "323"
  7775. }, {
  7776. "range" : "75",
  7777. "domain" : "317",
  7778. "attributes" : [ "anonymous", "object" ],
  7779. "id" : "325"
  7780. }, {
  7781. "range" : "34",
  7782. "domain" : "222",
  7783. "attributes" : [ "anonymous", "object" ],
  7784. "id" : "326"
  7785. }, {
  7786. "iri" : "http://purl.org/net/p-plan#correspondsToVariable",
  7787. "baseIri" : "http://purl.org/net/p-plan",
  7788. "range" : "76",
  7789. "annotations" : {
  7790. "isDefinedBy" : [ {
  7791. "identifier" : "isDefinedBy",
  7792. "language" : "undefined",
  7793. "value" : "http://purl.org/net/p-plan#",
  7794. "type" : "iri"
  7795. } ],
  7796. "definition" : [ {
  7797. "identifier" : "definition",
  7798. "language" : "en",
  7799. "value" : "p-plan:correspondsToVariable binds a p-plan:Entity (used by a p-plan:Activity in the execution of a plan) to the p-plan:Variable it represented it in the p-plan:Plan.",
  7800. "type" : "label"
  7801. } ]
  7802. },
  7803. "label" : {
  7804. "IRI-based" : "correspondsToVariable",
  7805. "en" : "correspondsToVariable"
  7806. },
  7807. "domain" : "83",
  7808. "attributes" : [ "external", "object", "functional" ],
  7809. "id" : "327"
  7810. }, {
  7811. "range" : "68",
  7812. "domain" : "87",
  7813. "attributes" : [ "anonymous", "object" ],
  7814. "id" : "328"
  7815. }, {
  7816. "range" : "34",
  7817. "domain" : "32",
  7818. "attributes" : [ "anonymous", "object" ],
  7819. "id" : "329"
  7820. }, {
  7821. "range" : "34",
  7822. "domain" : "156",
  7823. "attributes" : [ "anonymous", "object" ],
  7824. "id" : "330"
  7825. }, {
  7826. "range" : "128",
  7827. "domain" : "2",
  7828. "attributes" : [ "anonymous", "object" ],
  7829. "id" : "331"
  7830. }, {
  7831. "range" : "74",
  7832. "domain" : "128",
  7833. "attributes" : [ "anonymous", "object" ],
  7834. "id" : "332"
  7835. }, {
  7836. "range" : "128",
  7837. "domain" : "127",
  7838. "attributes" : [ "anonymous", "object" ],
  7839. "id" : "333"
  7840. }, {
  7841. "iri" : "http://www.w3.org/ns/prov#activity",
  7842. "baseIri" : "http://www.w3.org/ns/prov",
  7843. "range" : "68",
  7844. "annotations" : {
  7845. "inverse" : [ {
  7846. "identifier" : "inverse",
  7847. "language" : "undefined",
  7848. "value" : "activityOfInfluence",
  7849. "type" : "label"
  7850. } ],
  7851. "editorialNote" : [ {
  7852. "identifier" : "editorialNote",
  7853. "language" : "en",
  7854. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  7855. "type" : "label"
  7856. } ],
  7857. "isDefinedBy" : [ {
  7858. "identifier" : "isDefinedBy",
  7859. "language" : "undefined",
  7860. "value" : "http://www.w3.org/ns/prov-o#",
  7861. "type" : "iri"
  7862. } ],
  7863. "editorsDefinition" : [ {
  7864. "identifier" : "editorsDefinition",
  7865. "language" : "undefined",
  7866. "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.",
  7867. "type" : "label"
  7868. } ],
  7869. "category" : [ {
  7870. "identifier" : "category",
  7871. "language" : "undefined",
  7872. "value" : "qualified",
  7873. "type" : "label"
  7874. } ]
  7875. },
  7876. "label" : {
  7877. "IRI-based" : "activity",
  7878. "undefined" : "activity"
  7879. },
  7880. "superproperty" : [ "297" ],
  7881. "domain" : "53",
  7882. "attributes" : [ "external", "object" ],
  7883. "id" : "334"
  7884. }, {
  7885. "iri" : "http://www.w3.org/ns/prov#hadMember",
  7886. "baseIri" : "http://www.w3.org/ns/prov",
  7887. "range" : "20",
  7888. "annotations" : {
  7889. "inverse" : [ {
  7890. "identifier" : "inverse",
  7891. "language" : "undefined",
  7892. "value" : "wasMemberOf",
  7893. "type" : "label"
  7894. } ],
  7895. "sharesDefinitionWith" : [ {
  7896. "identifier" : "sharesDefinitionWith",
  7897. "language" : "undefined",
  7898. "value" : "http://www.w3.org/ns/prov#Collection",
  7899. "type" : "iri"
  7900. } ],
  7901. "component" : [ {
  7902. "identifier" : "component",
  7903. "language" : "undefined",
  7904. "value" : "expanded",
  7905. "type" : "label"
  7906. } ],
  7907. "isDefinedBy" : [ {
  7908. "identifier" : "isDefinedBy",
  7909. "language" : "undefined",
  7910. "value" : "http://www.w3.org/ns/prov-o#",
  7911. "type" : "iri"
  7912. } ],
  7913. "category" : [ {
  7914. "identifier" : "category",
  7915. "language" : "undefined",
  7916. "value" : "expanded",
  7917. "type" : "label"
  7918. } ]
  7919. },
  7920. "label" : {
  7921. "IRI-based" : "hadMember",
  7922. "undefined" : "hadMember"
  7923. },
  7924. "superproperty" : [ "123" ],
  7925. "domain" : "174",
  7926. "attributes" : [ "external", "object" ],
  7927. "id" : "335"
  7928. }, {
  7929. "range" : "317",
  7930. "domain" : "64",
  7931. "attributes" : [ "anonymous", "object" ],
  7932. "id" : "336"
  7933. }, {
  7934. "range" : "85",
  7935. "domain" : "162",
  7936. "attributes" : [ "anonymous", "object" ],
  7937. "id" : "337"
  7938. }, {
  7939. "range" : "317",
  7940. "domain" : "148",
  7941. "attributes" : [ "anonymous", "object" ],
  7942. "id" : "338"
  7943. }, {
  7944. "range" : "317",
  7945. "domain" : "340",
  7946. "attributes" : [ "anonymous", "object" ],
  7947. "id" : "339"
  7948. }, {
  7949. "range" : "85",
  7950. "domain" : "103",
  7951. "attributes" : [ "anonymous", "object" ],
  7952. "id" : "341"
  7953. }, {
  7954. "range" : "85",
  7955. "domain" : "206",
  7956. "attributes" : [ "anonymous", "object" ],
  7957. "id" : "342"
  7958. }, {
  7959. "range" : "85",
  7960. "domain" : "208",
  7961. "attributes" : [ "anonymous", "object" ],
  7962. "id" : "343"
  7963. }, {
  7964. "range" : "85",
  7965. "domain" : "207",
  7966. "attributes" : [ "anonymous", "object" ],
  7967. "id" : "344"
  7968. }, {
  7969. "range" : "85",
  7970. "domain" : "161",
  7971. "attributes" : [ "anonymous", "object" ],
  7972. "id" : "345"
  7973. }, {
  7974. "range" : "85",
  7975. "domain" : "84",
  7976. "attributes" : [ "anonymous", "object" ],
  7977. "id" : "346"
  7978. }, {
  7979. "iri" : "http://www.w3.org/ns/prov#qualifiedInfluence",
  7980. "baseIri" : "http://www.w3.org/ns/prov",
  7981. "range" : "49",
  7982. "annotations" : {
  7983. "sharesDefinitionWith" : [ {
  7984. "identifier" : "sharesDefinitionWith",
  7985. "language" : "undefined",
  7986. "value" : "http://www.w3.org/ns/prov#Influence",
  7987. "type" : "iri"
  7988. } ],
  7989. "inverse" : [ {
  7990. "identifier" : "inverse",
  7991. "language" : "undefined",
  7992. "value" : "qualifiedInfluenceOf",
  7993. "type" : "label"
  7994. } ],
  7995. "component" : [ {
  7996. "identifier" : "component",
  7997. "language" : "undefined",
  7998. "value" : "derivations",
  7999. "type" : "label"
  8000. } ],
  8001. "isDefinedBy" : [ {
  8002. "identifier" : "isDefinedBy",
  8003. "language" : "undefined",
  8004. "value" : "http://www.w3.org/ns/prov-o#",
  8005. "type" : "iri"
  8006. } ],
  8007. "unqualifiedForm" : [ {
  8008. "identifier" : "unqualifiedForm",
  8009. "language" : "undefined",
  8010. "value" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  8011. "type" : "iri"
  8012. } ],
  8013. "category" : [ {
  8014. "identifier" : "category",
  8015. "language" : "undefined",
  8016. "value" : "qualified",
  8017. "type" : "label"
  8018. } ]
  8019. },
  8020. "label" : {
  8021. "IRI-based" : "qualifiedInfluence",
  8022. "undefined" : "qualifiedInfluence"
  8023. },
  8024. "domain" : "241",
  8025. "subproperty" : [ "252", "223", "347", "209", "98", "348", "349", "315", "70", "229", "350", "181", "351" ],
  8026. "comment" : {
  8027. "en" : "Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable."
  8028. },
  8029. "attributes" : [ "external", "object" ],
  8030. "id" : "72"
  8031. }, {
  8032. "iri" : "https://w3id.org/GDPRov#hasLegalBasis",
  8033. "baseIri" : "https://w3id.org/GDPRov",
  8034. "range" : "314",
  8035. "label" : {
  8036. "IRI-based" : "hasLegalBasis",
  8037. "undefined" : "hasLegalBasis"
  8038. },
  8039. "domain" : "221",
  8040. "attributes" : [ "object" ],
  8041. "id" : "352"
  8042. }, {
  8043. "range" : "85",
  8044. "domain" : "205",
  8045. "attributes" : [ "anonymous", "object" ],
  8046. "id" : "353"
  8047. }, {
  8048. "range" : "85",
  8049. "domain" : "204",
  8050. "attributes" : [ "anonymous", "object" ],
  8051. "id" : "354"
  8052. }, {
  8053. "range" : "183",
  8054. "domain" : "184",
  8055. "attributes" : [ "anonymous", "object" ],
  8056. "id" : "355"
  8057. }, {
  8058. "range" : "85",
  8059. "domain" : "112",
  8060. "attributes" : [ "anonymous", "object" ],
  8061. "id" : "356"
  8062. }, {
  8063. "range" : "85",
  8064. "domain" : "193",
  8065. "attributes" : [ "anonymous", "object" ],
  8066. "id" : "357"
  8067. }, {
  8068. "iri" : "https://w3id.org/GDPRov#generatesAnonymisedData",
  8069. "inverse" : "305",
  8070. "baseIri" : "https://w3id.org/GDPRov",
  8071. "range" : "151",
  8072. "label" : {
  8073. "IRI-based" : "generatesAnonymisedData",
  8074. "undefined" : "generatesAnonymisedData"
  8075. },
  8076. "superproperty" : [ "270" ],
  8077. "domain" : "359",
  8078. "comment" : {
  8079. "undefined" : "Indicates that an DataAnonymisationStep transforms a Data object into AnonymisedData"
  8080. },
  8081. "attributes" : [ "object" ],
  8082. "id" : "358"
  8083. }, {
  8084. "iri" : "http://purl.org/net/p-plan#isPrecededBy",
  8085. "baseIri" : "http://purl.org/net/p-plan",
  8086. "range" : "75",
  8087. "annotations" : {
  8088. "isDefinedBy" : [ {
  8089. "identifier" : "isDefinedBy",
  8090. "language" : "undefined",
  8091. "value" : "http://purl.org/net/p-plan#",
  8092. "type" : "iri"
  8093. } ]
  8094. },
  8095. "label" : {
  8096. "IRI-based" : "isPrecededBy",
  8097. "en" : "isPrecededBy"
  8098. },
  8099. "domain" : "75",
  8100. "comment" : {
  8101. "en" : "Property that asserts which Step preceeds the current one. "
  8102. },
  8103. "attributes" : [ "transitive", "external", "object" ],
  8104. "id" : "360"
  8105. }, {
  8106. "iri" : "http://www.w3.org/ns/prov#generatedAtTime",
  8107. "baseIri" : "http://www.w3.org/ns/prov",
  8108. "range" : "240",
  8109. "annotations" : {
  8110. "editorialNote" : [ {
  8111. "identifier" : "editorialNote",
  8112. "language" : "en",
  8113. "value" : "It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime.",
  8114. "type" : "label"
  8115. } ],
  8116. "component" : [ {
  8117. "identifier" : "component",
  8118. "language" : "undefined",
  8119. "value" : "entities-activities",
  8120. "type" : "label"
  8121. } ],
  8122. "isDefinedBy" : [ {
  8123. "identifier" : "isDefinedBy",
  8124. "language" : "undefined",
  8125. "value" : "http://www.w3.org/ns/prov-o#",
  8126. "type" : "iri"
  8127. } ],
  8128. "category" : [ {
  8129. "identifier" : "category",
  8130. "language" : "undefined",
  8131. "value" : "expanded",
  8132. "type" : "label"
  8133. } ],
  8134. "qualifiedForm" : [ {
  8135. "identifier" : "qualifiedForm",
  8136. "language" : "undefined",
  8137. "value" : "http://www.w3.org/ns/prov#atTime",
  8138. "type" : "iri"
  8139. }, {
  8140. "identifier" : "qualifiedForm",
  8141. "language" : "undefined",
  8142. "value" : "http://www.w3.org/ns/prov#Generation",
  8143. "type" : "iri"
  8144. } ]
  8145. },
  8146. "label" : {
  8147. "IRI-based" : "generatedAtTime",
  8148. "undefined" : "generatedAtTime"
  8149. },
  8150. "domain" : "20",
  8151. "comment" : {
  8152. "en" : "The time at which an entity was completely created and is available for use."
  8153. },
  8154. "attributes" : [ "datatype", "external" ],
  8155. "id" : "361"
  8156. }, {
  8157. "range" : "20",
  8158. "domain" : "83",
  8159. "attributes" : [ "anonymous", "object" ],
  8160. "id" : "362"
  8161. }, {
  8162. "range" : "20",
  8163. "domain" : "100",
  8164. "attributes" : [ "anonymous", "object" ],
  8165. "id" : "363"
  8166. }, {
  8167. "range" : "20",
  8168. "domain" : "174",
  8169. "attributes" : [ "anonymous", "object" ],
  8170. "id" : "364"
  8171. }, {
  8172. "iri" : "http://www.w3.org/ns/prov#value",
  8173. "baseIri" : "http://www.w3.org/ns/prov",
  8174. "range" : "230",
  8175. "annotations" : {
  8176. "editorialNote" : [ {
  8177. "identifier" : "editorialNote",
  8178. "language" : "en",
  8179. "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').",
  8180. "type" : "label"
  8181. }, {
  8182. "identifier" : "editorialNote",
  8183. "language" : "undefined",
  8184. "value" : "The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue",
  8185. "type" : "label"
  8186. } ],
  8187. "component" : [ {
  8188. "identifier" : "component",
  8189. "language" : "undefined",
  8190. "value" : "entities-activities",
  8191. "type" : "label"
  8192. } ],
  8193. "isDefinedBy" : [ {
  8194. "identifier" : "isDefinedBy",
  8195. "language" : "undefined",
  8196. "value" : "http://www.w3.org/ns/prov-o#",
  8197. "type" : "iri"
  8198. } ],
  8199. "dm" : [ {
  8200. "identifier" : "dm",
  8201. "language" : "undefined",
  8202. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value",
  8203. "type" : "label"
  8204. } ],
  8205. "definition" : [ {
  8206. "identifier" : "definition",
  8207. "language" : "en",
  8208. "value" : "Provides a value that is a direct representation of an entity.",
  8209. "type" : "label"
  8210. } ],
  8211. "category" : [ {
  8212. "identifier" : "category",
  8213. "language" : "undefined",
  8214. "value" : "expanded",
  8215. "type" : "label"
  8216. } ]
  8217. },
  8218. "label" : {
  8219. "IRI-based" : "value",
  8220. "undefined" : "value"
  8221. },
  8222. "domain" : "20",
  8223. "attributes" : [ "datatype", "external" ],
  8224. "id" : "365"
  8225. }, {
  8226. "iri" : "http://www.w3.org/ns/prov#invalidated",
  8227. "inverse" : "122",
  8228. "baseIri" : "http://www.w3.org/ns/prov",
  8229. "range" : "20",
  8230. "annotations" : {
  8231. "sharesDefinitionWith" : [ {
  8232. "identifier" : "sharesDefinitionWith",
  8233. "language" : "undefined",
  8234. "value" : "http://www.w3.org/ns/prov#Invalidation",
  8235. "type" : "iri"
  8236. } ],
  8237. "inverse" : [ {
  8238. "identifier" : "inverse",
  8239. "language" : "undefined",
  8240. "value" : "wasInvalidatedBy",
  8241. "type" : "label"
  8242. } ],
  8243. "editorialNote" : [ {
  8244. "identifier" : "editorialNote",
  8245. "language" : "en",
  8246. "value" : "prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.",
  8247. "type" : "label"
  8248. } ],
  8249. "component" : [ {
  8250. "identifier" : "component",
  8251. "language" : "undefined",
  8252. "value" : "entities-activities",
  8253. "type" : "label"
  8254. } ],
  8255. "isDefinedBy" : [ {
  8256. "identifier" : "isDefinedBy",
  8257. "language" : "undefined",
  8258. "value" : "http://www.w3.org/ns/prov-o#",
  8259. "type" : "iri"
  8260. } ],
  8261. "category" : [ {
  8262. "identifier" : "category",
  8263. "language" : "undefined",
  8264. "value" : "expanded",
  8265. "type" : "label"
  8266. } ]
  8267. },
  8268. "label" : {
  8269. "IRI-based" : "invalidated",
  8270. "undefined" : "invalidated"
  8271. },
  8272. "superproperty" : [ "367" ],
  8273. "domain" : "68",
  8274. "attributes" : [ "external", "object" ],
  8275. "id" : "366"
  8276. }, {
  8277. "iri" : "https://w3id.org/GDPRov#hasAnonymityLevel",
  8278. "baseIri" : "https://w3id.org/GDPRov",
  8279. "range" : "102",
  8280. "label" : {
  8281. "IRI-based" : "hasAnonymityLevel",
  8282. "undefined" : "hasAnonymityLevel"
  8283. },
  8284. "domain" : "45",
  8285. "comment" : {
  8286. "undefined" : "Indicates the anonymity level of an AnonymisedData object using instances of the AnonymityLevel class"
  8287. },
  8288. "attributes" : [ "object" ],
  8289. "id" : "368"
  8290. }, {
  8291. "iri" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  8292. "baseIri" : "http://www.w3.org/ns/prov",
  8293. "range" : "20",
  8294. "annotations" : {
  8295. "inverse" : [ {
  8296. "identifier" : "inverse",
  8297. "language" : "undefined",
  8298. "value" : "hadDerivation",
  8299. "type" : "label"
  8300. } ],
  8301. "component" : [ {
  8302. "identifier" : "component",
  8303. "language" : "undefined",
  8304. "value" : "derivations",
  8305. "type" : "label"
  8306. } ],
  8307. "isDefinedBy" : [ {
  8308. "identifier" : "isDefinedBy",
  8309. "language" : "undefined",
  8310. "value" : "http://www.w3.org/ns/prov-o#",
  8311. "type" : "iri"
  8312. }, {
  8313. "identifier" : "isDefinedBy",
  8314. "language" : "undefined",
  8315. "value" : "http://www.w3.org/ns/prov#",
  8316. "type" : "iri"
  8317. } ],
  8318. "definition" : [ {
  8319. "identifier" : "definition",
  8320. "language" : "en",
  8321. "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.",
  8322. "type" : "label"
  8323. } ],
  8324. "category" : [ {
  8325. "identifier" : "category",
  8326. "language" : "undefined",
  8327. "value" : "starting-point",
  8328. "type" : "label"
  8329. } ],
  8330. "qualifiedForm" : [ {
  8331. "identifier" : "qualifiedForm",
  8332. "language" : "undefined",
  8333. "value" : "http://www.w3.org/ns/prov#Derivation",
  8334. "type" : "iri"
  8335. }, {
  8336. "identifier" : "qualifiedForm",
  8337. "language" : "undefined",
  8338. "value" : "http://www.w3.org/ns/prov#qualifiedDerivation",
  8339. "type" : "iri"
  8340. } ]
  8341. },
  8342. "label" : {
  8343. "IRI-based" : "wasDerivedFrom",
  8344. "undefined" : "wasDerivedFrom"
  8345. },
  8346. "superproperty" : [ "123" ],
  8347. "domain" : "20",
  8348. "subproperty" : [ "369", "237", "290" ],
  8349. "comment" : {
  8350. "en" : "The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable."
  8351. },
  8352. "attributes" : [ "external", "object" ],
  8353. "id" : "238"
  8354. }, {
  8355. "iri" : "http://purl.org/net/p-plan#isSubPlanOfPlan",
  8356. "baseIri" : "http://purl.org/net/p-plan",
  8357. "range" : "128",
  8358. "annotations" : {
  8359. "isDefinedBy" : [ {
  8360. "identifier" : "isDefinedBy",
  8361. "language" : "undefined",
  8362. "value" : "http://purl.org/net/p-plan#",
  8363. "type" : "iri"
  8364. } ],
  8365. "definition" : [ {
  8366. "identifier" : "definition",
  8367. "language" : "en",
  8368. "value" : "A p-plan:Plan may be a subplan of another bigger p-plan:Plan. p-plan:isSubPlanOfPlan is used to state the link among the two different plans. Note that if p1 is a p-plan:subPlan of p2, p1will not necessarily be a step of p2. A multistep will represent p1 in p2, and link to p1 with the p-plan.hasStepDecomposition relationship.",
  8369. "type" : "label"
  8370. } ]
  8371. },
  8372. "label" : {
  8373. "IRI-based" : "isSubPlanOfPlan",
  8374. "en" : "isSubPlanOfPlan"
  8375. },
  8376. "superproperty" : [ "25" ],
  8377. "domain" : "128",
  8378. "attributes" : [ "external", "object" ],
  8379. "id" : "28"
  8380. }, {
  8381. "iri" : "http://www.w3.org/ns/prov#qualifiedStart",
  8382. "baseIri" : "http://www.w3.org/ns/prov",
  8383. "range" : "171",
  8384. "annotations" : {
  8385. "sharesDefinitionWith" : [ {
  8386. "identifier" : "sharesDefinitionWith",
  8387. "language" : "undefined",
  8388. "value" : "http://www.w3.org/ns/prov#Start",
  8389. "type" : "iri"
  8390. } ],
  8391. "inverse" : [ {
  8392. "identifier" : "inverse",
  8393. "language" : "undefined",
  8394. "value" : "qualifiedStartOf",
  8395. "type" : "label"
  8396. } ],
  8397. "component" : [ {
  8398. "identifier" : "component",
  8399. "language" : "undefined",
  8400. "value" : "entities-activities",
  8401. "type" : "label"
  8402. } ],
  8403. "isDefinedBy" : [ {
  8404. "identifier" : "isDefinedBy",
  8405. "language" : "undefined",
  8406. "value" : "http://www.w3.org/ns/prov-o#",
  8407. "type" : "iri"
  8408. } ],
  8409. "unqualifiedForm" : [ {
  8410. "identifier" : "unqualifiedForm",
  8411. "language" : "undefined",
  8412. "value" : "http://www.w3.org/ns/prov#wasStartedBy",
  8413. "type" : "iri"
  8414. } ],
  8415. "category" : [ {
  8416. "identifier" : "category",
  8417. "language" : "undefined",
  8418. "value" : "qualified",
  8419. "type" : "label"
  8420. } ]
  8421. },
  8422. "label" : {
  8423. "IRI-based" : "qualifiedStart",
  8424. "undefined" : "qualifiedStart"
  8425. },
  8426. "superproperty" : [ "72" ],
  8427. "domain" : "68",
  8428. "comment" : {
  8429. "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 ]."
  8430. },
  8431. "attributes" : [ "external", "object" ],
  8432. "id" : "348"
  8433. }, {
  8434. "iri" : "http://www.w3.org/ns/prov#qualifiedQuotation",
  8435. "baseIri" : "http://www.w3.org/ns/prov",
  8436. "range" : "289",
  8437. "annotations" : {
  8438. "sharesDefinitionWith" : [ {
  8439. "identifier" : "sharesDefinitionWith",
  8440. "language" : "undefined",
  8441. "value" : "http://www.w3.org/ns/prov#Quotation",
  8442. "type" : "iri"
  8443. } ],
  8444. "inverse" : [ {
  8445. "identifier" : "inverse",
  8446. "language" : "undefined",
  8447. "value" : "qualifiedQuotationOf",
  8448. "type" : "label"
  8449. } ],
  8450. "component" : [ {
  8451. "identifier" : "component",
  8452. "language" : "undefined",
  8453. "value" : "derivations",
  8454. "type" : "label"
  8455. } ],
  8456. "isDefinedBy" : [ {
  8457. "identifier" : "isDefinedBy",
  8458. "language" : "undefined",
  8459. "value" : "http://www.w3.org/ns/prov-o#",
  8460. "type" : "iri"
  8461. } ],
  8462. "unqualifiedForm" : [ {
  8463. "identifier" : "unqualifiedForm",
  8464. "language" : "undefined",
  8465. "value" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  8466. "type" : "iri"
  8467. } ],
  8468. "category" : [ {
  8469. "identifier" : "category",
  8470. "language" : "undefined",
  8471. "value" : "qualified",
  8472. "type" : "label"
  8473. } ]
  8474. },
  8475. "label" : {
  8476. "IRI-based" : "qualifiedQuotation",
  8477. "undefined" : "qualifiedQuotation"
  8478. },
  8479. "superproperty" : [ "72" ],
  8480. "domain" : "20",
  8481. "comment" : {
  8482. "en" : "If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ]."
  8483. },
  8484. "attributes" : [ "external", "object" ],
  8485. "id" : "349"
  8486. }, {
  8487. "iri" : "http://www.w3.org/ns/prov#hadPlan",
  8488. "baseIri" : "http://www.w3.org/ns/prov",
  8489. "range" : "74",
  8490. "annotations" : {
  8491. "sharesDefinitionWith" : [ {
  8492. "identifier" : "sharesDefinitionWith",
  8493. "language" : "undefined",
  8494. "value" : "http://www.w3.org/ns/prov#Plan",
  8495. "type" : "iri"
  8496. } ],
  8497. "inverse" : [ {
  8498. "identifier" : "inverse",
  8499. "language" : "undefined",
  8500. "value" : "wasPlanOf",
  8501. "type" : "label"
  8502. } ],
  8503. "component" : [ {
  8504. "identifier" : "component",
  8505. "language" : "undefined",
  8506. "value" : "agents-responsibility",
  8507. "type" : "label"
  8508. } ],
  8509. "isDefinedBy" : [ {
  8510. "identifier" : "isDefinedBy",
  8511. "language" : "undefined",
  8512. "value" : "http://www.w3.org/ns/prov-o#",
  8513. "type" : "iri"
  8514. } ],
  8515. "category" : [ {
  8516. "identifier" : "category",
  8517. "language" : "undefined",
  8518. "value" : "qualified",
  8519. "type" : "label"
  8520. } ]
  8521. },
  8522. "label" : {
  8523. "IRI-based" : "hadPlan",
  8524. "undefined" : "hadPlan"
  8525. },
  8526. "domain" : "186",
  8527. "comment" : {
  8528. "en" : "The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification."
  8529. },
  8530. "attributes" : [ "external", "object" ],
  8531. "id" : "370"
  8532. }, {
  8533. "iri" : "https://w3id.org/GDPRov#transferredDataToRegion",
  8534. "baseIri" : "https://w3id.org/GDPRov",
  8535. "range" : "228",
  8536. "label" : {
  8537. "IRI-based" : "transferredDataToRegion",
  8538. "undefined" : "transferredDataToRegion"
  8539. },
  8540. "domain" : "225",
  8541. "attributes" : [ "object" ],
  8542. "id" : "371"
  8543. }, {
  8544. "iri" : "http://www.w3.org/ns/prov#qualifiedUsage",
  8545. "baseIri" : "http://www.w3.org/ns/prov",
  8546. "range" : "192",
  8547. "annotations" : {
  8548. "sharesDefinitionWith" : [ {
  8549. "identifier" : "sharesDefinitionWith",
  8550. "language" : "undefined",
  8551. "value" : "http://www.w3.org/ns/prov#Usage",
  8552. "type" : "iri"
  8553. } ],
  8554. "inverse" : [ {
  8555. "identifier" : "inverse",
  8556. "language" : "undefined",
  8557. "value" : "qualifiedUsingActivity",
  8558. "type" : "label"
  8559. } ],
  8560. "component" : [ {
  8561. "identifier" : "component",
  8562. "language" : "undefined",
  8563. "value" : "entities-activities",
  8564. "type" : "label"
  8565. } ],
  8566. "isDefinedBy" : [ {
  8567. "identifier" : "isDefinedBy",
  8568. "language" : "undefined",
  8569. "value" : "http://www.w3.org/ns/prov-o#",
  8570. "type" : "iri"
  8571. } ],
  8572. "unqualifiedForm" : [ {
  8573. "identifier" : "unqualifiedForm",
  8574. "language" : "undefined",
  8575. "value" : "http://www.w3.org/ns/prov#used",
  8576. "type" : "iri"
  8577. } ],
  8578. "category" : [ {
  8579. "identifier" : "category",
  8580. "language" : "undefined",
  8581. "value" : "qualified",
  8582. "type" : "label"
  8583. } ]
  8584. },
  8585. "label" : {
  8586. "IRI-based" : "qualifiedUsage",
  8587. "undefined" : "qualifiedUsage"
  8588. },
  8589. "superproperty" : [ "72" ],
  8590. "domain" : "68",
  8591. "comment" : {
  8592. "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 ]."
  8593. },
  8594. "attributes" : [ "external", "object" ],
  8595. "id" : "347"
  8596. }, {
  8597. "iri" : "https://w3id.org/GDPRov#isJustifiedUsingConsentAgreement",
  8598. "baseIri" : "https://w3id.org/GDPRov",
  8599. "range" : "155",
  8600. "label" : {
  8601. "IRI-based" : "isJustifiedUsingConsentAgreement",
  8602. "undefined" : "isJustifiedUsingConsentAgreement"
  8603. },
  8604. "superproperty" : [ "66" ],
  8605. "domain" : "85",
  8606. "comment" : {
  8607. "undefined" : "justifies use of data by step through specified consent agreement"
  8608. },
  8609. "attributes" : [ "object" ],
  8610. "id" : "81"
  8611. }, {
  8612. "iri" : "https://w3id.org/GDPRov#wasSharedBy",
  8613. "baseIri" : "https://w3id.org/GDPRov",
  8614. "range" : "26",
  8615. "label" : {
  8616. "IRI-based" : "wasSharedBy"
  8617. },
  8618. "superproperty" : [ "213" ],
  8619. "domain" : "26",
  8620. "attributes" : [ "object" ],
  8621. "id" : "253"
  8622. }, {
  8623. "iri" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  8624. "baseIri" : "http://www.w3.org/ns/prov",
  8625. "range" : "243",
  8626. "annotations" : {
  8627. "editorialNote" : [ {
  8628. "identifier" : "editorialNote",
  8629. "language" : "en",
  8630. "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",
  8631. "type" : "label"
  8632. } ],
  8633. "inverse" : [ {
  8634. "identifier" : "inverse",
  8635. "language" : "undefined",
  8636. "value" : "influenced",
  8637. "type" : "label"
  8638. } ],
  8639. "sharesDefinitionWith" : [ {
  8640. "identifier" : "sharesDefinitionWith",
  8641. "language" : "undefined",
  8642. "value" : "http://www.w3.org/ns/prov#Influence",
  8643. "type" : "iri"
  8644. } ],
  8645. "component" : [ {
  8646. "identifier" : "component",
  8647. "language" : "undefined",
  8648. "value" : "agents-responsibility",
  8649. "type" : "label"
  8650. } ],
  8651. "isDefinedBy" : [ {
  8652. "identifier" : "isDefinedBy",
  8653. "language" : "undefined",
  8654. "value" : "http://www.w3.org/ns/prov-o#",
  8655. "type" : "iri"
  8656. } ],
  8657. "category" : [ {
  8658. "identifier" : "category",
  8659. "language" : "undefined",
  8660. "value" : "qualified",
  8661. "type" : "label"
  8662. } ],
  8663. "qualifiedForm" : [ {
  8664. "identifier" : "qualifiedForm",
  8665. "language" : "undefined",
  8666. "value" : "http://www.w3.org/ns/prov#Influence",
  8667. "type" : "iri"
  8668. }, {
  8669. "identifier" : "qualifiedForm",
  8670. "language" : "undefined",
  8671. "value" : "http://www.w3.org/ns/prov#qualifiedInfluence",
  8672. "type" : "iri"
  8673. } ]
  8674. },
  8675. "label" : {
  8676. "IRI-based" : "wasInfluencedBy",
  8677. "undefined" : "wasInfluencedBy"
  8678. },
  8679. "domain" : "244",
  8680. "subproperty" : [ "372", "373", "238", "374", "292", "231", "224", "375", "376", "122", "335" ],
  8681. "comment" : {
  8682. "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.",
  8683. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  8684. },
  8685. "attributes" : [ "external", "object" ],
  8686. "id" : "123"
  8687. }, {
  8688. "iri" : "http://www.w3.org/ns/prov#wasAttributedTo",
  8689. "baseIri" : "http://www.w3.org/ns/prov",
  8690. "range" : "43",
  8691. "annotations" : {
  8692. "inverse" : [ {
  8693. "identifier" : "inverse",
  8694. "language" : "undefined",
  8695. "value" : "contributed",
  8696. "type" : "label"
  8697. } ],
  8698. "component" : [ {
  8699. "identifier" : "component",
  8700. "language" : "undefined",
  8701. "value" : "agents-responsibility",
  8702. "type" : "label"
  8703. } ],
  8704. "isDefinedBy" : [ {
  8705. "identifier" : "isDefinedBy",
  8706. "language" : "undefined",
  8707. "value" : "http://www.w3.org/ns/prov-o#",
  8708. "type" : "iri"
  8709. } ],
  8710. "definition" : [ {
  8711. "identifier" : "definition",
  8712. "language" : "en",
  8713. "value" : "Attribution is the ascribing of an entity to an agent.",
  8714. "type" : "label"
  8715. } ],
  8716. "category" : [ {
  8717. "identifier" : "category",
  8718. "language" : "undefined",
  8719. "value" : "starting-point",
  8720. "type" : "label"
  8721. } ],
  8722. "qualifiedForm" : [ {
  8723. "identifier" : "qualifiedForm",
  8724. "language" : "undefined",
  8725. "value" : "http://www.w3.org/ns/prov#Attribution",
  8726. "type" : "iri"
  8727. }, {
  8728. "identifier" : "qualifiedForm",
  8729. "language" : "undefined",
  8730. "value" : "http://www.w3.org/ns/prov#qualifiedAttribution",
  8731. "type" : "iri"
  8732. } ]
  8733. },
  8734. "label" : {
  8735. "IRI-based" : "wasAttributedTo",
  8736. "undefined" : "wasAttributedTo"
  8737. },
  8738. "superproperty" : [ "123" ],
  8739. "domain" : "20",
  8740. "comment" : {
  8741. "en" : "Attribution is the ascribing of an entity to an agent."
  8742. },
  8743. "attributes" : [ "external", "object" ],
  8744. "id" : "374"
  8745. }, {
  8746. "iri" : "https://w3id.org/GDPRov#involvesAgent",
  8747. "baseIri" : "https://w3id.org/GDPRov",
  8748. "range" : "43",
  8749. "label" : {
  8750. "IRI-based" : "involvesAgent"
  8751. },
  8752. "domain" : "227",
  8753. "subproperty" : [ "319", "377", "378", "216" ],
  8754. "attributes" : [ "object" ],
  8755. "id" : "217"
  8756. }, {
  8757. "iri" : "https://w3id.org/GDPRov#generatesConsentAgreement",
  8758. "inverse" : "124",
  8759. "baseIri" : "https://w3id.org/GDPRov",
  8760. "range" : "155",
  8761. "label" : {
  8762. "IRI-based" : "generatesConsentAgreement",
  8763. "undefined" : "generatesConsentAgreement"
  8764. },
  8765. "superproperty" : [ "268" ],
  8766. "domain" : "317",
  8767. "comment" : {
  8768. "undefined" : "Generates ConsentAgreement which is a the consent granted by the user based on the ConsentAgreementTemplate through a ConsentAcquisitionStep"
  8769. },
  8770. "attributes" : [ "object" ],
  8771. "id" : "272"
  8772. }, {
  8773. "iri" : "http://www.w3.org/ns/prov#qualifiedPrimarySource",
  8774. "baseIri" : "http://www.w3.org/ns/prov",
  8775. "range" : "295",
  8776. "annotations" : {
  8777. "inverse" : [ {
  8778. "identifier" : "inverse",
  8779. "language" : "undefined",
  8780. "value" : "qualifiedSourceOf",
  8781. "type" : "label"
  8782. } ],
  8783. "sharesDefinitionWith" : [ {
  8784. "identifier" : "sharesDefinitionWith",
  8785. "language" : "undefined",
  8786. "value" : "http://www.w3.org/ns/prov#PrimarySource",
  8787. "type" : "iri"
  8788. } ],
  8789. "component" : [ {
  8790. "identifier" : "component",
  8791. "language" : "undefined",
  8792. "value" : "derivations",
  8793. "type" : "label"
  8794. } ],
  8795. "isDefinedBy" : [ {
  8796. "identifier" : "isDefinedBy",
  8797. "language" : "undefined",
  8798. "value" : "http://www.w3.org/ns/prov-o#",
  8799. "type" : "iri"
  8800. } ],
  8801. "unqualifiedForm" : [ {
  8802. "identifier" : "unqualifiedForm",
  8803. "language" : "undefined",
  8804. "value" : "http://www.w3.org/ns/prov#hadPrimarySource",
  8805. "type" : "iri"
  8806. } ],
  8807. "category" : [ {
  8808. "identifier" : "category",
  8809. "language" : "undefined",
  8810. "value" : "qualified",
  8811. "type" : "label"
  8812. } ]
  8813. },
  8814. "label" : {
  8815. "IRI-based" : "qualifiedPrimarySource",
  8816. "undefined" : "qualifiedPrimarySource"
  8817. },
  8818. "superproperty" : [ "72" ],
  8819. "domain" : "20",
  8820. "comment" : {
  8821. "en" : "If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ]."
  8822. },
  8823. "attributes" : [ "external", "object" ],
  8824. "id" : "351"
  8825. }, {
  8826. "iri" : "https://w3id.org/GDPRov#collectedConsentFromAgent",
  8827. "baseIri" : "https://w3id.org/GDPRov",
  8828. "range" : "43",
  8829. "label" : {
  8830. "IRI-based" : "collectedConsentFromAgent"
  8831. },
  8832. "superproperty" : [ "217" ],
  8833. "domain" : "106",
  8834. "attributes" : [ "object" ],
  8835. "id" : "378"
  8836. }, {
  8837. "iri" : "https://w3id.org/GDPRov#isConsentAgreementTemplateForStep",
  8838. "inverse" : "63",
  8839. "baseIri" : "https://w3id.org/GDPRov",
  8840. "range" : "64",
  8841. "label" : {
  8842. "IRI-based" : "isConsentAgreementTemplateForStep",
  8843. "undefined" : "isConsentAgreementTemplateForStep"
  8844. },
  8845. "superproperty" : [ "213" ],
  8846. "domain" : "65",
  8847. "attributes" : [ "object" ],
  8848. "id" : "302"
  8849. }, {
  8850. "iri" : "http://www.w3.org/ns/prov#hadActivity",
  8851. "baseIri" : "http://www.w3.org/ns/prov",
  8852. "range" : "68",
  8853. "annotations" : {
  8854. "inverse" : [ {
  8855. "identifier" : "inverse",
  8856. "language" : "undefined",
  8857. "value" : "wasActivityOfInfluence",
  8858. "type" : "label"
  8859. } ],
  8860. "sharesDefinitionWith" : [ {
  8861. "identifier" : "sharesDefinitionWith",
  8862. "language" : "undefined",
  8863. "value" : "http://www.w3.org/ns/prov#Activity",
  8864. "type" : "iri"
  8865. } ],
  8866. "editorialNote" : [ {
  8867. "identifier" : "editorialNote",
  8868. "language" : "en",
  8869. "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.",
  8870. "type" : "label"
  8871. } ],
  8872. "component" : [ {
  8873. "identifier" : "component",
  8874. "language" : "undefined",
  8875. "value" : "derivations",
  8876. "type" : "label"
  8877. } ],
  8878. "isDefinedBy" : [ {
  8879. "identifier" : "isDefinedBy",
  8880. "language" : "undefined",
  8881. "value" : "http://www.w3.org/ns/prov-o#",
  8882. "type" : "iri"
  8883. } ],
  8884. "category" : [ {
  8885. "identifier" : "category",
  8886. "language" : "undefined",
  8887. "value" : "qualified",
  8888. "type" : "label"
  8889. } ]
  8890. },
  8891. "label" : {
  8892. "IRI-based" : "hadActivity",
  8893. "undefined" : "hadActivity"
  8894. },
  8895. "domain" : "281",
  8896. "comment" : {
  8897. "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).",
  8898. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  8899. },
  8900. "attributes" : [ "external", "object" ],
  8901. "id" : "379"
  8902. }, {
  8903. "iri" : "http://www.w3.org/ns/prov#wasEndedBy",
  8904. "baseIri" : "http://www.w3.org/ns/prov",
  8905. "range" : "20",
  8906. "annotations" : {
  8907. "inverse" : [ {
  8908. "identifier" : "inverse",
  8909. "language" : "undefined",
  8910. "value" : "ended",
  8911. "type" : "label"
  8912. } ],
  8913. "component" : [ {
  8914. "identifier" : "component",
  8915. "language" : "undefined",
  8916. "value" : "entities-activities",
  8917. "type" : "label"
  8918. } ],
  8919. "isDefinedBy" : [ {
  8920. "identifier" : "isDefinedBy",
  8921. "language" : "undefined",
  8922. "value" : "http://www.w3.org/ns/prov-o#",
  8923. "type" : "iri"
  8924. } ],
  8925. "category" : [ {
  8926. "identifier" : "category",
  8927. "language" : "undefined",
  8928. "value" : "expanded",
  8929. "type" : "label"
  8930. } ],
  8931. "qualifiedForm" : [ {
  8932. "identifier" : "qualifiedForm",
  8933. "language" : "undefined",
  8934. "value" : "http://www.w3.org/ns/prov#End",
  8935. "type" : "iri"
  8936. }, {
  8937. "identifier" : "qualifiedForm",
  8938. "language" : "undefined",
  8939. "value" : "http://www.w3.org/ns/prov#qualifiedEnd",
  8940. "type" : "iri"
  8941. } ]
  8942. },
  8943. "label" : {
  8944. "IRI-based" : "wasEndedBy",
  8945. "undefined" : "wasEndedBy"
  8946. },
  8947. "superproperty" : [ "123" ],
  8948. "domain" : "68",
  8949. "comment" : {
  8950. "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."
  8951. },
  8952. "attributes" : [ "external", "object" ],
  8953. "id" : "372"
  8954. }, {
  8955. "iri" : "http://purl.org/net/p-plan#isDecomposedAsPlan",
  8956. "baseIri" : "http://purl.org/net/p-plan",
  8957. "range" : "128",
  8958. "annotations" : {
  8959. "isDefinedBy" : [ {
  8960. "identifier" : "isDefinedBy",
  8961. "language" : "undefined",
  8962. "value" : "http://purl.org/net/p-plan#",
  8963. "type" : "iri"
  8964. } ],
  8965. "definition" : [ {
  8966. "identifier" : "definition",
  8967. "language" : "en",
  8968. "value" : "The p-plan:isDecomposedAsPlan relationship binds a p-plan:MultiStep to the p-plan:Plan holding the definition of that step. That is, p-plan:isDecomposedAsPlan links the MultiStep to the Plan sptecification where it is decomposed.",
  8969. "type" : "label"
  8970. } ]
  8971. },
  8972. "label" : {
  8973. "IRI-based" : "isDecomposedAsPlan",
  8974. "en" : "isDecomposedAsPlan"
  8975. },
  8976. "domain" : "127",
  8977. "attributes" : [ "external", "object" ],
  8978. "id" : "380"
  8979. }, {
  8980. "iri" : "http://www.w3.org/ns/prov#hadPrimarySource",
  8981. "baseIri" : "http://www.w3.org/ns/prov",
  8982. "range" : "20",
  8983. "annotations" : {
  8984. "inverse" : [ {
  8985. "identifier" : "inverse",
  8986. "language" : "undefined",
  8987. "value" : "wasPrimarySourceOf",
  8988. "type" : "label"
  8989. } ],
  8990. "component" : [ {
  8991. "identifier" : "component",
  8992. "language" : "undefined",
  8993. "value" : "derivations",
  8994. "type" : "label"
  8995. } ],
  8996. "isDefinedBy" : [ {
  8997. "identifier" : "isDefinedBy",
  8998. "language" : "undefined",
  8999. "value" : "http://www.w3.org/ns/prov-o#",
  9000. "type" : "iri"
  9001. } ],
  9002. "category" : [ {
  9003. "identifier" : "category",
  9004. "language" : "undefined",
  9005. "value" : "expanded",
  9006. "type" : "label"
  9007. } ],
  9008. "qualifiedForm" : [ {
  9009. "identifier" : "qualifiedForm",
  9010. "language" : "undefined",
  9011. "value" : "http://www.w3.org/ns/prov#PrimarySource",
  9012. "type" : "iri"
  9013. }, {
  9014. "identifier" : "qualifiedForm",
  9015. "language" : "undefined",
  9016. "value" : "http://www.w3.org/ns/prov#qualifiedPrimarySource",
  9017. "type" : "iri"
  9018. } ]
  9019. },
  9020. "label" : {
  9021. "IRI-based" : "hadPrimarySource",
  9022. "undefined" : "hadPrimarySource"
  9023. },
  9024. "superproperty" : [ "238" ],
  9025. "domain" : "20",
  9026. "attributes" : [ "external", "object" ],
  9027. "id" : "369"
  9028. }, {
  9029. "iri" : "https://w3id.org/GDPRov#archivesConsentAs",
  9030. "baseIri" : "https://w3id.org/GDPRov",
  9031. "range" : "155",
  9032. "label" : {
  9033. "IRI-based" : "archivesConsentAs",
  9034. "undefined" : "archives consent as"
  9035. },
  9036. "superproperty" : [ "268" ],
  9037. "domain" : "340",
  9038. "comment" : {
  9039. "undefined" : "Archives the consent into some entity"
  9040. },
  9041. "attributes" : [ "object" ],
  9042. "id" : "271"
  9043. }, {
  9044. "iri" : "http://www.w3.org/ns/prov#influenced",
  9045. "inverse" : "123",
  9046. "baseIri" : "http://www.w3.org/ns/prov",
  9047. "range" : "244",
  9048. "annotations" : {
  9049. "inverse" : [ {
  9050. "identifier" : "inverse",
  9051. "language" : "undefined",
  9052. "value" : "wasInfluencedBy",
  9053. "type" : "label"
  9054. } ],
  9055. "sharesDefinitionWith" : [ {
  9056. "identifier" : "sharesDefinitionWith",
  9057. "language" : "undefined",
  9058. "value" : "http://www.w3.org/ns/prov#Influence",
  9059. "type" : "iri"
  9060. } ],
  9061. "component" : [ {
  9062. "identifier" : "component",
  9063. "language" : "undefined",
  9064. "value" : "agents-responsibility",
  9065. "type" : "label"
  9066. } ],
  9067. "isDefinedBy" : [ {
  9068. "identifier" : "isDefinedBy",
  9069. "language" : "undefined",
  9070. "value" : "http://www.w3.org/ns/prov-o#",
  9071. "type" : "iri"
  9072. } ],
  9073. "category" : [ {
  9074. "identifier" : "category",
  9075. "language" : "undefined",
  9076. "value" : "expanded",
  9077. "type" : "label"
  9078. } ]
  9079. },
  9080. "label" : {
  9081. "IRI-based" : "influenced",
  9082. "undefined" : "influenced"
  9083. },
  9084. "domain" : "243",
  9085. "subproperty" : [ "381", "366" ],
  9086. "attributes" : [ "external", "object" ],
  9087. "id" : "367"
  9088. }, {
  9089. "range" : "148",
  9090. "domain" : "147",
  9091. "attributes" : [ "anonymous", "object" ],
  9092. "id" : "382"
  9093. }, {
  9094. "range" : "162",
  9095. "domain" : "178",
  9096. "attributes" : [ "anonymous", "object" ],
  9097. "id" : "383"
  9098. }, {
  9099. "range" : "162",
  9100. "domain" : "160",
  9101. "attributes" : [ "anonymous", "object" ],
  9102. "id" : "384"
  9103. }, {
  9104. "range" : "162",
  9105. "domain" : "359",
  9106. "attributes" : [ "anonymous", "object" ],
  9107. "id" : "385"
  9108. }, {
  9109. "iri" : "https://w3id.org/GDPRov#isJustificationForDataStep",
  9110. "inverse" : "81",
  9111. "baseIri" : "https://w3id.org/GDPRov",
  9112. "range" : "85",
  9113. "label" : {
  9114. "IRI-based" : "isJustificationForDataStep",
  9115. "undefined" : "isJustificationForDataStep"
  9116. },
  9117. "superproperty" : [ "213" ],
  9118. "domain" : "155",
  9119. "attributes" : [ "object" ],
  9120. "id" : "301"
  9121. }, {
  9122. "iri" : "https://w3id.org/GDPRov#transfersDataToRegion",
  9123. "baseIri" : "https://w3id.org/GDPRov",
  9124. "range" : "233",
  9125. "label" : {
  9126. "IRI-based" : "transfersDataToRegion",
  9127. "undefined" : "transfersDataToRegion"
  9128. },
  9129. "domain" : "112",
  9130. "attributes" : [ "object" ],
  9131. "id" : "386"
  9132. }, {
  9133. "range" : "116",
  9134. "domain" : "30",
  9135. "attributes" : [ "anonymous", "object" ],
  9136. "id" : "387"
  9137. }, {
  9138. "range" : "116",
  9139. "domain" : "225",
  9140. "attributes" : [ "anonymous", "object" ],
  9141. "id" : "388"
  9142. }, {
  9143. "iri" : "http://purl.org/net/p-plan#isVariableOfPlan",
  9144. "baseIri" : "http://purl.org/net/p-plan",
  9145. "range" : "128",
  9146. "annotations" : {
  9147. "isDefinedBy" : [ {
  9148. "identifier" : "isDefinedBy",
  9149. "language" : "undefined",
  9150. "value" : "http://purl.org/net/p-plan#",
  9151. "type" : "iri"
  9152. } ],
  9153. "definition" : [ {
  9154. "identifier" : "definition",
  9155. "language" : "en",
  9156. "value" : "p-plan:IsVariableOfPlan binds a p-plan:Variable to the p-plan:Plan it corresponds to.",
  9157. "type" : "label"
  9158. } ]
  9159. },
  9160. "label" : {
  9161. "IRI-based" : "isVariableOfPlan",
  9162. "en" : "isVariableofPlan"
  9163. },
  9164. "domain" : "76",
  9165. "attributes" : [ "external", "object" ],
  9166. "id" : "389"
  9167. }, {
  9168. "iri" : "http://www.w3.org/ns/prov#influencer",
  9169. "baseIri" : "http://www.w3.org/ns/prov",
  9170. "range" : "232",
  9171. "annotations" : {
  9172. "inverse" : [ {
  9173. "identifier" : "inverse",
  9174. "language" : "undefined",
  9175. "value" : "hadInfluence",
  9176. "type" : "label"
  9177. } ],
  9178. "editorialNote" : [ {
  9179. "identifier" : "editorialNote",
  9180. "language" : "en",
  9181. "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.",
  9182. "type" : "label"
  9183. } ],
  9184. "isDefinedBy" : [ {
  9185. "identifier" : "isDefinedBy",
  9186. "language" : "undefined",
  9187. "value" : "http://www.w3.org/ns/prov-o#",
  9188. "type" : "iri"
  9189. } ],
  9190. "dm" : [ {
  9191. "identifier" : "dm",
  9192. "language" : "undefined",
  9193. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence",
  9194. "type" : "label"
  9195. } ],
  9196. "editorsDefinition" : [ {
  9197. "identifier" : "editorsDefinition",
  9198. "language" : "en",
  9199. "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.",
  9200. "type" : "label"
  9201. } ],
  9202. "category" : [ {
  9203. "identifier" : "category",
  9204. "language" : "undefined",
  9205. "value" : "qualified",
  9206. "type" : "label"
  9207. } ]
  9208. },
  9209. "label" : {
  9210. "IRI-based" : "influencer",
  9211. "undefined" : "influencer"
  9212. },
  9213. "domain" : "49",
  9214. "subproperty" : [ "296", "390", "334" ],
  9215. "comment" : {
  9216. "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."
  9217. },
  9218. "attributes" : [ "external", "object" ],
  9219. "id" : "297"
  9220. }, {
  9221. "range" : "116",
  9222. "domain" : "226",
  9223. "attributes" : [ "anonymous", "object" ],
  9224. "id" : "391"
  9225. }, {
  9226. "range" : "116",
  9227. "domain" : "34",
  9228. "attributes" : [ "anonymous", "object" ],
  9229. "id" : "392"
  9230. }, {
  9231. "range" : "116",
  9232. "domain" : "299",
  9233. "attributes" : [ "anonymous", "object" ],
  9234. "id" : "393"
  9235. }, {
  9236. "range" : "116",
  9237. "domain" : "235",
  9238. "attributes" : [ "anonymous", "object" ],
  9239. "id" : "394"
  9240. }, {
  9241. "range" : "116",
  9242. "domain" : "273",
  9243. "attributes" : [ "anonymous", "object" ],
  9244. "id" : "395"
  9245. }, {
  9246. "iri" : "http://www.w3.org/ns/prov#qualifiedAssociation",
  9247. "baseIri" : "http://www.w3.org/ns/prov",
  9248. "range" : "186",
  9249. "annotations" : {
  9250. "inverse" : [ {
  9251. "identifier" : "inverse",
  9252. "language" : "undefined",
  9253. "value" : "qualifiedAssociationOf",
  9254. "type" : "label"
  9255. } ],
  9256. "sharesDefinitionWith" : [ {
  9257. "identifier" : "sharesDefinitionWith",
  9258. "language" : "undefined",
  9259. "value" : "http://www.w3.org/ns/prov#Association",
  9260. "type" : "iri"
  9261. } ],
  9262. "component" : [ {
  9263. "identifier" : "component",
  9264. "language" : "undefined",
  9265. "value" : "agents-responsibility",
  9266. "type" : "label"
  9267. } ],
  9268. "isDefinedBy" : [ {
  9269. "identifier" : "isDefinedBy",
  9270. "language" : "undefined",
  9271. "value" : "http://www.w3.org/ns/prov-o#",
  9272. "type" : "iri"
  9273. } ],
  9274. "unqualifiedForm" : [ {
  9275. "identifier" : "unqualifiedForm",
  9276. "language" : "undefined",
  9277. "value" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  9278. "type" : "iri"
  9279. } ],
  9280. "category" : [ {
  9281. "identifier" : "category",
  9282. "language" : "undefined",
  9283. "value" : "qualified",
  9284. "type" : "label"
  9285. } ]
  9286. },
  9287. "label" : {
  9288. "IRI-based" : "qualifiedAssociation",
  9289. "undefined" : "qualifiedAssociation"
  9290. },
  9291. "superproperty" : [ "72" ],
  9292. "domain" : "68",
  9293. "comment" : {
  9294. "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 ]."
  9295. },
  9296. "attributes" : [ "external", "object" ],
  9297. "id" : "350"
  9298. }, {
  9299. "iri" : "https://w3id.org/GDPRov#sharesDataWithThirdParty",
  9300. "baseIri" : "https://w3id.org/GDPRov",
  9301. "range" : "139",
  9302. "label" : {
  9303. "IRI-based" : "sharesDataWithThirdParty",
  9304. "undefined" : "sharesDataWithThirdParty"
  9305. },
  9306. "superproperty" : [ "25" ],
  9307. "domain" : "103",
  9308. "comment" : {
  9309. "undefined" : "Shares data with a third party"
  9310. },
  9311. "attributes" : [ "deprecated", "object" ],
  9312. "id" : "27"
  9313. }, {
  9314. "iri" : "http://www.w3.org/ns/prov#invalidatedAtTime",
  9315. "baseIri" : "http://www.w3.org/ns/prov",
  9316. "range" : "236",
  9317. "annotations" : {
  9318. "editorialNote" : [ {
  9319. "identifier" : "editorialNote",
  9320. "language" : "en",
  9321. "value" : "It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime.",
  9322. "type" : "label"
  9323. } ],
  9324. "component" : [ {
  9325. "identifier" : "component",
  9326. "language" : "undefined",
  9327. "value" : "entities-activities",
  9328. "type" : "label"
  9329. } ],
  9330. "isDefinedBy" : [ {
  9331. "identifier" : "isDefinedBy",
  9332. "language" : "undefined",
  9333. "value" : "http://www.w3.org/ns/prov-o#",
  9334. "type" : "iri"
  9335. } ],
  9336. "category" : [ {
  9337. "identifier" : "category",
  9338. "language" : "undefined",
  9339. "value" : "expanded",
  9340. "type" : "label"
  9341. } ],
  9342. "qualifiedForm" : [ {
  9343. "identifier" : "qualifiedForm",
  9344. "language" : "undefined",
  9345. "value" : "http://www.w3.org/ns/prov#atTime",
  9346. "type" : "iri"
  9347. }, {
  9348. "identifier" : "qualifiedForm",
  9349. "language" : "undefined",
  9350. "value" : "http://www.w3.org/ns/prov#Invalidation",
  9351. "type" : "iri"
  9352. } ]
  9353. },
  9354. "label" : {
  9355. "IRI-based" : "invalidatedAtTime",
  9356. "undefined" : "invalidatedAtTime"
  9357. },
  9358. "domain" : "20",
  9359. "comment" : {
  9360. "en" : "The time at which an entity was invalidated (i.e., no longer usable)."
  9361. },
  9362. "attributes" : [ "datatype", "external" ],
  9363. "id" : "396"
  9364. }, {
  9365. "iri" : "http://www.w3.org/ns/prov#wasInformedBy",
  9366. "baseIri" : "http://www.w3.org/ns/prov",
  9367. "range" : "68",
  9368. "annotations" : {
  9369. "inverse" : [ {
  9370. "identifier" : "inverse",
  9371. "language" : "undefined",
  9372. "value" : "informed",
  9373. "type" : "label"
  9374. } ],
  9375. "component" : [ {
  9376. "identifier" : "component",
  9377. "language" : "undefined",
  9378. "value" : "entities-activities",
  9379. "type" : "label"
  9380. } ],
  9381. "isDefinedBy" : [ {
  9382. "identifier" : "isDefinedBy",
  9383. "language" : "undefined",
  9384. "value" : "http://www.w3.org/ns/prov-o#",
  9385. "type" : "iri"
  9386. } ],
  9387. "category" : [ {
  9388. "identifier" : "category",
  9389. "language" : "undefined",
  9390. "value" : "starting-point",
  9391. "type" : "label"
  9392. } ],
  9393. "qualifiedForm" : [ {
  9394. "identifier" : "qualifiedForm",
  9395. "language" : "undefined",
  9396. "value" : "http://www.w3.org/ns/prov#qualifiedCommunication",
  9397. "type" : "iri"
  9398. }, {
  9399. "identifier" : "qualifiedForm",
  9400. "language" : "undefined",
  9401. "value" : "http://www.w3.org/ns/prov#Communication",
  9402. "type" : "iri"
  9403. } ]
  9404. },
  9405. "label" : {
  9406. "IRI-based" : "wasInformedBy",
  9407. "undefined" : "wasInformedBy"
  9408. },
  9409. "superproperty" : [ "123" ],
  9410. "domain" : "68",
  9411. "comment" : {
  9412. "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."
  9413. },
  9414. "attributes" : [ "external", "object" ],
  9415. "id" : "376"
  9416. }, {
  9417. "iri" : "http://www.w3.org/ns/prov#generated",
  9418. "inverse" : "373",
  9419. "baseIri" : "http://www.w3.org/ns/prov",
  9420. "range" : "20",
  9421. "annotations" : {
  9422. "sharesDefinitionWith" : [ {
  9423. "identifier" : "sharesDefinitionWith",
  9424. "language" : "undefined",
  9425. "value" : "http://www.w3.org/ns/prov#Generation",
  9426. "type" : "iri"
  9427. } ],
  9428. "inverse" : [ {
  9429. "identifier" : "inverse",
  9430. "language" : "undefined",
  9431. "value" : "wasGeneratedBy",
  9432. "type" : "label"
  9433. } ],
  9434. "editorialNote" : [ {
  9435. "identifier" : "editorialNote",
  9436. "language" : "en",
  9437. "value" : "prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.",
  9438. "type" : "label"
  9439. } ],
  9440. "component" : [ {
  9441. "identifier" : "component",
  9442. "language" : "undefined",
  9443. "value" : "entities-activities",
  9444. "type" : "label"
  9445. } ],
  9446. "isDefinedBy" : [ {
  9447. "identifier" : "isDefinedBy",
  9448. "language" : "undefined",
  9449. "value" : "http://www.w3.org/ns/prov-o#",
  9450. "type" : "iri"
  9451. } ],
  9452. "category" : [ {
  9453. "identifier" : "category",
  9454. "language" : "undefined",
  9455. "value" : "expanded",
  9456. "type" : "label"
  9457. } ]
  9458. },
  9459. "label" : {
  9460. "IRI-based" : "generated",
  9461. "undefined" : "generated"
  9462. },
  9463. "superproperty" : [ "367" ],
  9464. "domain" : "68",
  9465. "attributes" : [ "external", "object" ],
  9466. "id" : "381"
  9467. }, {
  9468. "iri" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  9469. "baseIri" : "http://www.w3.org/ns/prov",
  9470. "range" : "43",
  9471. "annotations" : {
  9472. "inverse" : [ {
  9473. "identifier" : "inverse",
  9474. "language" : "undefined",
  9475. "value" : "hadDelegate",
  9476. "type" : "label"
  9477. } ],
  9478. "component" : [ {
  9479. "identifier" : "component",
  9480. "language" : "undefined",
  9481. "value" : "agents-responsibility",
  9482. "type" : "label"
  9483. } ],
  9484. "isDefinedBy" : [ {
  9485. "identifier" : "isDefinedBy",
  9486. "language" : "undefined",
  9487. "value" : "http://www.w3.org/ns/prov-o#",
  9488. "type" : "iri"
  9489. } ],
  9490. "category" : [ {
  9491. "identifier" : "category",
  9492. "language" : "undefined",
  9493. "value" : "starting-point",
  9494. "type" : "label"
  9495. } ],
  9496. "qualifiedForm" : [ {
  9497. "identifier" : "qualifiedForm",
  9498. "language" : "undefined",
  9499. "value" : "http://www.w3.org/ns/prov#Delegation",
  9500. "type" : "iri"
  9501. }, {
  9502. "identifier" : "qualifiedForm",
  9503. "language" : "undefined",
  9504. "value" : "http://www.w3.org/ns/prov#qualifiedDelegation",
  9505. "type" : "iri"
  9506. } ]
  9507. },
  9508. "label" : {
  9509. "IRI-based" : "actedOnBehalfOf",
  9510. "undefined" : "actedOnBehalfOf"
  9511. },
  9512. "superproperty" : [ "123" ],
  9513. "domain" : "43",
  9514. "comment" : {
  9515. "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. "
  9516. },
  9517. "attributes" : [ "external", "object" ],
  9518. "id" : "375"
  9519. }, {
  9520. "iri" : "https://w3id.org/GDPRov#collectedDataFromAgent",
  9521. "baseIri" : "https://w3id.org/GDPRov",
  9522. "range" : "43",
  9523. "label" : {
  9524. "IRI-based" : "collectedDataFromAgent"
  9525. },
  9526. "superproperty" : [ "217" ],
  9527. "domain" : "299",
  9528. "attributes" : [ "object" ],
  9529. "id" : "377"
  9530. }, {
  9531. "iri" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  9532. "baseIri" : "http://www.w3.org/ns/prov",
  9533. "range" : "68",
  9534. "annotations" : {
  9535. "inverse" : [ {
  9536. "identifier" : "inverse",
  9537. "language" : "undefined",
  9538. "value" : "generated",
  9539. "type" : "label"
  9540. } ],
  9541. "component" : [ {
  9542. "identifier" : "component",
  9543. "language" : "undefined",
  9544. "value" : "entities-activities",
  9545. "type" : "label"
  9546. } ],
  9547. "isDefinedBy" : [ {
  9548. "identifier" : "isDefinedBy",
  9549. "language" : "undefined",
  9550. "value" : "http://www.w3.org/ns/prov-o#",
  9551. "type" : "iri"
  9552. }, {
  9553. "identifier" : "isDefinedBy",
  9554. "language" : "undefined",
  9555. "value" : "http://www.w3.org/ns/prov#",
  9556. "type" : "iri"
  9557. } ],
  9558. "category" : [ {
  9559. "identifier" : "category",
  9560. "language" : "undefined",
  9561. "value" : "starting-point",
  9562. "type" : "label"
  9563. } ],
  9564. "qualifiedForm" : [ {
  9565. "identifier" : "qualifiedForm",
  9566. "language" : "undefined",
  9567. "value" : "http://www.w3.org/ns/prov#Generation",
  9568. "type" : "iri"
  9569. }, {
  9570. "identifier" : "qualifiedForm",
  9571. "language" : "undefined",
  9572. "value" : "http://www.w3.org/ns/prov#qualifiedGeneration",
  9573. "type" : "iri"
  9574. } ]
  9575. },
  9576. "label" : {
  9577. "IRI-based" : "wasGeneratedBy",
  9578. "undefined" : "wasGeneratedBy"
  9579. },
  9580. "superproperty" : [ "123" ],
  9581. "domain" : "20",
  9582. "attributes" : [ "external", "object" ],
  9583. "id" : "373"
  9584. }, {
  9585. "iri" : "http://www.w3.org/ns/prov#entity",
  9586. "baseIri" : "http://www.w3.org/ns/prov",
  9587. "range" : "20",
  9588. "annotations" : {
  9589. "editorialNote" : [ {
  9590. "identifier" : "editorialNote",
  9591. "language" : "en",
  9592. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  9593. "type" : "label"
  9594. } ],
  9595. "inverse" : [ {
  9596. "identifier" : "inverse",
  9597. "language" : "undefined",
  9598. "value" : "entityOfInfluence",
  9599. "type" : "label"
  9600. } ],
  9601. "isDefinedBy" : [ {
  9602. "identifier" : "isDefinedBy",
  9603. "language" : "undefined",
  9604. "value" : "http://www.w3.org/ns/prov-o#",
  9605. "type" : "iri"
  9606. } ],
  9607. "editorsDefinition" : [ {
  9608. "identifier" : "editorsDefinition",
  9609. "language" : "undefined",
  9610. "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.",
  9611. "type" : "label"
  9612. } ],
  9613. "category" : [ {
  9614. "identifier" : "category",
  9615. "language" : "undefined",
  9616. "value" : "qualified",
  9617. "type" : "label"
  9618. } ]
  9619. },
  9620. "label" : {
  9621. "IRI-based" : "entity",
  9622. "undefined" : "entity"
  9623. },
  9624. "superproperty" : [ "297" ],
  9625. "domain" : "51",
  9626. "attributes" : [ "external", "object" ],
  9627. "id" : "390"
  9628. }, {
  9629. "range" : "119",
  9630. "domain" : "43",
  9631. "attributes" : [ "anonymous", "object" ],
  9632. "id" : "397"
  9633. }, {
  9634. "range" : "119",
  9635. "domain" : "20",
  9636. "attributes" : [ "anonymous", "object" ],
  9637. "id" : "398"
  9638. }, {
  9639. "iri" : "https://w3id.org/GDPRov#hasAnonymityLevel",
  9640. "baseIri" : "https://w3id.org/GDPRov",
  9641. "range" : "102",
  9642. "label" : {
  9643. "IRI-based" : "hasAnonymityLevel",
  9644. "undefined" : "hasAnonymityLevel"
  9645. },
  9646. "domain" : "151",
  9647. "comment" : {
  9648. "undefined" : "Indicates the anonymity level of an AnonymisedData object using instances of the AnonymityLevel class"
  9649. },
  9650. "attributes" : [ "object", "someValues" ],
  9651. "id" : "399"
  9652. }, {
  9653. "range" : "31",
  9654. "domain" : "155",
  9655. "attributes" : [ "anonymous", "object" ],
  9656. "id" : "400"
  9657. }, {
  9658. "range" : "126",
  9659. "domain" : "155",
  9660. "attributes" : [ "anonymous", "object" ],
  9661. "id" : "401"
  9662. }, {
  9663. "iri" : "http://purl.org/net/p-plan#correspondsToStep",
  9664. "baseIri" : "http://purl.org/net/p-plan",
  9665. "range" : "75",
  9666. "annotations" : {
  9667. "isDefinedBy" : [ {
  9668. "identifier" : "isDefinedBy",
  9669. "language" : "undefined",
  9670. "value" : "http://purl.org/net/p-plan#",
  9671. "type" : "iri"
  9672. } ],
  9673. "definition" : [ {
  9674. "identifier" : "definition",
  9675. "language" : "en",
  9676. "value" : "p-plan:correspondsToStep links a p-plan:Activity to its planned p-plan:Step",
  9677. "type" : "label"
  9678. } ]
  9679. },
  9680. "label" : {
  9681. "IRI-based" : "correspondsToStep",
  9682. "en" : "correspondsToStep"
  9683. },
  9684. "domain" : "87",
  9685. "attributes" : [ "external", "object", "functional" ],
  9686. "id" : "402"
  9687. }, {
  9688. "range" : "65",
  9689. "domain" : "155",
  9690. "attributes" : [ "anonymous", "object" ],
  9691. "id" : "403"
  9692. }, {
  9693. "range" : "126",
  9694. "domain" : "65",
  9695. "attributes" : [ "anonymous", "object" ],
  9696. "id" : "404"
  9697. }, {
  9698. "range" : "31",
  9699. "domain" : "65",
  9700. "attributes" : [ "anonymous", "object" ],
  9701. "id" : "405"
  9702. }, {
  9703. "iri" : "https://w3id.org/GDPRov#hasLegalJustification",
  9704. "baseIri" : "https://w3id.org/GDPRov",
  9705. "range" : "314",
  9706. "label" : {
  9707. "IRI-based" : "hasLegalJustification",
  9708. "undefined" : "has legal justification"
  9709. },
  9710. "domain" : "87",
  9711. "attributes" : [ "deprecated", "object" ],
  9712. "id" : "406"
  9713. }, {
  9714. "iri" : "https://w3id.org/GDPRov#generatesData",
  9715. "inverse" : "125",
  9716. "baseIri" : "https://w3id.org/GDPRov",
  9717. "range" : "31",
  9718. "label" : {
  9719. "IRI-based" : "generatesData",
  9720. "undefined" : "generatesData"
  9721. },
  9722. "superproperty" : [ "268" ],
  9723. "domain" : "85",
  9724. "subproperty" : [ "358" ],
  9725. "comment" : {
  9726. "undefined" : "produces data"
  9727. },
  9728. "attributes" : [ "object" ],
  9729. "id" : "270"
  9730. }, {
  9731. "range" : "20",
  9732. "domain" : "68",
  9733. "attributes" : [ "anonymous", "object" ],
  9734. "id" : "407"
  9735. }, {
  9736. "range" : "51",
  9737. "domain" : "53",
  9738. "attributes" : [ "anonymous", "object" ],
  9739. "id" : "408"
  9740. }, {
  9741. "iri" : "http://www.w3.org/ns/prov#hadRole",
  9742. "baseIri" : "http://www.w3.org/ns/prov",
  9743. "range" : "311",
  9744. "annotations" : {
  9745. "sharesDefinitionWith" : [ {
  9746. "identifier" : "sharesDefinitionWith",
  9747. "language" : "undefined",
  9748. "value" : "http://www.w3.org/ns/prov#Role",
  9749. "type" : "iri"
  9750. } ],
  9751. "inverse" : [ {
  9752. "identifier" : "inverse",
  9753. "language" : "undefined",
  9754. "value" : "wasRoleIn",
  9755. "type" : "label"
  9756. } ],
  9757. "component" : [ {
  9758. "identifier" : "component",
  9759. "language" : "undefined",
  9760. "value" : "agents-responsibility",
  9761. "type" : "label"
  9762. } ],
  9763. "isDefinedBy" : [ {
  9764. "identifier" : "isDefinedBy",
  9765. "language" : "undefined",
  9766. "value" : "http://www.w3.org/ns/prov-o#",
  9767. "type" : "iri"
  9768. } ],
  9769. "editorsDefinition" : [ {
  9770. "identifier" : "editorsDefinition",
  9771. "language" : "en",
  9772. "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.",
  9773. "type" : "label"
  9774. } ],
  9775. "category" : [ {
  9776. "identifier" : "category",
  9777. "language" : "undefined",
  9778. "value" : "qualified",
  9779. "type" : "label"
  9780. } ]
  9781. },
  9782. "label" : {
  9783. "IRI-based" : "hadRole",
  9784. "undefined" : "hadRole"
  9785. },
  9786. "domain" : "280",
  9787. "comment" : {
  9788. "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 ].",
  9789. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  9790. },
  9791. "attributes" : [ "external", "object" ],
  9792. "id" : "409"
  9793. } ]
  9794. }