ontology.json 277 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650
  1. {
  2. "_comment" : "Created with OWL2VOWL (version 0.3.5), http://vowl.visualdataweb.org",
  3. "header" : {
  4. "languages" : [ "en", "undefined" ],
  5. "baseIris" : [ "http://www.w3.org/1999/02/22-rdf-syntax-ns", "http://data.europa.eu/eli/ontology", "http://www.w3.org/2000/01/rdf-schema", "http://www.w3.org/2001/XMLSchema", "https://w3id.org/GDPRtEXT", "http://www.w3.org/2004/02/skos/core" ],
  6. "title" : {
  7. "undefined" : "GDPRtEXT"
  8. },
  9. "iri" : "https://w3id.org/GDPRtEXT",
  10. "version" : "0.7",
  11. "author" : [ "Harshvardhan J. Pandit", "http://purl.org/adaptcentre/people/HJP" ],
  12. "description" : {
  13. "undefined" : "The General Data Protection Regulation (GDPR) is comprised of several articles, each with points that refer to specific concepts. The general convention of referring to these points and concepts is to quote the specific article or point using a human-readable reference. This ontology provides a way to refer to the points within the GDPR using the EurLex ontology published by the European Publication Office. It also defines the concepts defined, mentioned, and requried by the GDPR using the Simple Knowledge Organization System (SKOS) ontology."
  14. },
  15. "labels" : {
  16. "undefined" : "GDPR text EXTensions"
  17. },
  18. "comments" : {
  19. "undefined" : "GDPRtEXT provides a SKOS glossary of terms associated with GDPR and an ontology to represent the GDPR text as a set of RDF resources"
  20. },
  21. "other" : {
  22. "priorVersion" : [ {
  23. "identifier" : "priorVersion",
  24. "language" : "undefined",
  25. "value" : "https://w3id.org/GDPRtEXT/v/0.6",
  26. "type" : "iri"
  27. } ],
  28. "creator" : [ {
  29. "identifier" : "creator",
  30. "language" : "undefined",
  31. "value" : "http://purl.org/adaptcentre/people/HJP",
  32. "type" : "label"
  33. }, {
  34. "identifier" : "creator",
  35. "language" : "undefined",
  36. "value" : "Harshvardhan J. Pandit",
  37. "type" : "label"
  38. } ],
  39. "created" : [ {
  40. "identifier" : "created",
  41. "language" : "undefined",
  42. "value" : "2017-08-15",
  43. "type" : "label"
  44. } ],
  45. "abstract" : [ {
  46. "identifier" : "abstract",
  47. "language" : "undefined",
  48. "value" : "The General Data Protection Regulation (GDPR) defines legal obligations over the use of personal data by organisations. This ontology aims to identify and model such terms and obligations as an OWL vocabulary and to directly link the terms to their occurence, usage, and influence in the GDPR text.",
  49. "type" : "label"
  50. } ],
  51. "source" : [ {
  52. "identifier" : "source",
  53. "language" : "undefined",
  54. "value" : "http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679",
  55. "type" : "iri"
  56. } ],
  57. "versionInfo" : [ {
  58. "identifier" : "versionInfo",
  59. "language" : "undefined",
  60. "value" : "0.7",
  61. "type" : "label"
  62. } ],
  63. "title" : [ {
  64. "identifier" : "title",
  65. "language" : "undefined",
  66. "value" : "GDPRtEXT",
  67. "type" : "label"
  68. } ],
  69. "seeAlso" : [ {
  70. "identifier" : "seeAlso",
  71. "language" : "undefined",
  72. "value" : "\"GDPRtEXT - GDPR as a Linked Data Resource\" by Harshvardhan J. Pandit*, Kaniz Fatema, Declan O'Sullivan, Dave Lewis. Published in Proceedigns of 15th European Semantic Web Conference (ESWC), Resource Track. Crete, Heraklion, Greece. 2018. https://doi.org/10.1007/978-3-319-93417-4_31",
  73. "type" : "label"
  74. }, {
  75. "identifier" : "seeAlso",
  76. "language" : "undefined",
  77. "value" : "https://w3id.org/GDPRov",
  78. "type" : "iri"
  79. }, {
  80. "identifier" : "seeAlso",
  81. "language" : "undefined",
  82. "value" : "https://w3id.org/GConsent",
  83. "type" : "iri"
  84. } ],
  85. "preferredNamespacePrefix" : [ {
  86. "identifier" : "preferredNamespacePrefix",
  87. "language" : "undefined",
  88. "value" : "gdprtext",
  89. "type" : "label"
  90. } ],
  91. "publisher" : [ {
  92. "identifier" : "publisher",
  93. "language" : "undefined",
  94. "value" : "http://purl.org/adaptcentre/people/ADAPT",
  95. "type" : "iri"
  96. } ],
  97. "modified" : [ {
  98. "identifier" : "modified",
  99. "language" : "undefined",
  100. "value" : "2020-03-31",
  101. "type" : "label"
  102. } ],
  103. "preferredNamespaceUri" : [ {
  104. "identifier" : "preferredNamespaceUri",
  105. "language" : "undefined",
  106. "value" : "https://w3id.org/GDPRtEXT",
  107. "type" : "label"
  108. } ],
  109. "status" : [ {
  110. "identifier" : "status",
  111. "language" : "undefined",
  112. "value" : "http://purl.org/ontology/bibo/status/draft",
  113. "type" : "iri"
  114. } ],
  115. "homepage" : [ {
  116. "identifier" : "homepage",
  117. "language" : "undefined",
  118. "value" : "https://openscience.adaptcentre.ie/projects/GDPRtEXT/",
  119. "type" : "label"
  120. } ]
  121. }
  122. },
  123. "namespace" : [ ],
  124. "class" : [ {
  125. "id" : "10",
  126. "type" : "owl:Class"
  127. }, {
  128. "id" : "29",
  129. "type" : "owl:Class"
  130. }, {
  131. "id" : "38",
  132. "type" : "owl:Class"
  133. }, {
  134. "id" : "58",
  135. "type" : "owl:Class"
  136. }, {
  137. "id" : "60",
  138. "type" : "owl:Class"
  139. }, {
  140. "id" : "62",
  141. "type" : "owl:Class"
  142. }, {
  143. "id" : "64",
  144. "type" : "owl:Class"
  145. }, {
  146. "id" : "65",
  147. "type" : "owl:Class"
  148. }, {
  149. "id" : "20",
  150. "type" : "owl:Class"
  151. }, {
  152. "id" : "70",
  153. "type" : "owl:Class"
  154. }, {
  155. "id" : "88",
  156. "type" : "owl:Class"
  157. }, {
  158. "id" : "93",
  159. "type" : "owl:Class"
  160. }, {
  161. "id" : "102",
  162. "type" : "owl:Class"
  163. }, {
  164. "id" : "110",
  165. "type" : "owl:Class"
  166. }, {
  167. "id" : "119",
  168. "type" : "owl:Class"
  169. }, {
  170. "id" : "121",
  171. "type" : "owl:Class"
  172. }, {
  173. "id" : "123",
  174. "type" : "owl:Class"
  175. }, {
  176. "id" : "125",
  177. "type" : "owl:Class"
  178. }, {
  179. "id" : "127",
  180. "type" : "owl:Class"
  181. }, {
  182. "id" : "142",
  183. "type" : "owl:Class"
  184. }, {
  185. "id" : "144",
  186. "type" : "owl:Class"
  187. }, {
  188. "id" : "13",
  189. "type" : "owl:Class"
  190. }, {
  191. "id" : "24",
  192. "type" : "owl:Class"
  193. }, {
  194. "id" : "138",
  195. "type" : "owl:Class"
  196. }, {
  197. "id" : "54",
  198. "type" : "owl:Class"
  199. }, {
  200. "id" : "94",
  201. "type" : "owl:Class"
  202. }, {
  203. "id" : "52",
  204. "type" : "owl:Class"
  205. }, {
  206. "id" : "182",
  207. "type" : "owl:Class"
  208. }, {
  209. "id" : "191",
  210. "type" : "owl:Class"
  211. }, {
  212. "id" : "69",
  213. "type" : "owl:Class"
  214. }, {
  215. "id" : "207",
  216. "type" : "owl:Class"
  217. }, {
  218. "id" : "213",
  219. "type" : "owl:Class"
  220. }, {
  221. "id" : "214",
  222. "type" : "owl:Class"
  223. }, {
  224. "id" : "215",
  225. "type" : "owl:Class"
  226. }, {
  227. "id" : "12",
  228. "type" : "owl:Class"
  229. }, {
  230. "id" : "115",
  231. "type" : "owl:Class"
  232. }, {
  233. "id" : "216",
  234. "type" : "owl:Class"
  235. }, {
  236. "id" : "67",
  237. "type" : "owl:equivalentClass"
  238. }, {
  239. "id" : "113",
  240. "type" : "owl:Class"
  241. }, {
  242. "id" : "230",
  243. "type" : "owl:Class"
  244. }, {
  245. "id" : "237",
  246. "type" : "owl:Class"
  247. }, {
  248. "id" : "16",
  249. "type" : "owl:Class"
  250. }, {
  251. "id" : "241",
  252. "type" : "owl:Class"
  253. }, {
  254. "id" : "118",
  255. "type" : "owl:Class"
  256. }, {
  257. "id" : "247",
  258. "type" : "owl:Class"
  259. }, {
  260. "id" : "249",
  261. "type" : "owl:Class"
  262. }, {
  263. "id" : "117",
  264. "type" : "owl:Class"
  265. }, {
  266. "id" : "43",
  267. "type" : "owl:Class"
  268. }, {
  269. "id" : "96",
  270. "type" : "owl:Class"
  271. }, {
  272. "id" : "263",
  273. "type" : "owl:Class"
  274. }, {
  275. "id" : "264",
  276. "type" : "owl:Class"
  277. }, {
  278. "id" : "265",
  279. "type" : "owl:Class"
  280. }, {
  281. "id" : "266",
  282. "type" : "owl:Class"
  283. }, {
  284. "id" : "267",
  285. "type" : "owl:Class"
  286. }, {
  287. "id" : "268",
  288. "type" : "owl:Class"
  289. }, {
  290. "id" : "163",
  291. "type" : "owl:Class"
  292. }, {
  293. "id" : "269",
  294. "type" : "owl:Class"
  295. }, {
  296. "id" : "270",
  297. "type" : "owl:Class"
  298. }, {
  299. "id" : "283",
  300. "type" : "owl:Class"
  301. }, {
  302. "id" : "284",
  303. "type" : "owl:Class"
  304. }, {
  305. "id" : "285",
  306. "type" : "owl:Class"
  307. }, {
  308. "id" : "152",
  309. "type" : "owl:Class"
  310. }, {
  311. "id" : "300",
  312. "type" : "owl:Class"
  313. }, {
  314. "id" : "131",
  315. "type" : "owl:Class"
  316. }, {
  317. "id" : "240",
  318. "type" : "owl:Class"
  319. }, {
  320. "id" : "301",
  321. "type" : "owl:Class"
  322. }, {
  323. "id" : "203",
  324. "type" : "owl:Class"
  325. }, {
  326. "id" : "66",
  327. "type" : "owl:Class"
  328. }, {
  329. "id" : "71",
  330. "type" : "owl:Class"
  331. }, {
  332. "id" : "178",
  333. "type" : "owl:Class"
  334. }, {
  335. "id" : "51",
  336. "type" : "owl:Class"
  337. }, {
  338. "id" : "126",
  339. "type" : "owl:Class"
  340. }, {
  341. "id" : "42",
  342. "type" : "owl:Class"
  343. }, {
  344. "id" : "323",
  345. "type" : "owl:Class"
  346. }, {
  347. "id" : "189",
  348. "type" : "owl:Class"
  349. }, {
  350. "id" : "256",
  351. "type" : "owl:Class"
  352. }, {
  353. "id" : "342",
  354. "type" : "owl:Class"
  355. }, {
  356. "id" : "259",
  357. "type" : "owl:Class"
  358. }, {
  359. "id" : "345",
  360. "type" : "owl:Class"
  361. }, {
  362. "id" : "55",
  363. "type" : "owl:Class"
  364. }, {
  365. "id" : "347",
  366. "type" : "owl:Class"
  367. }, {
  368. "id" : "287",
  369. "type" : "owl:Class"
  370. }, {
  371. "id" : "276",
  372. "type" : "owl:Class"
  373. }, {
  374. "id" : "56",
  375. "type" : "owl:Class"
  376. }, {
  377. "id" : "341",
  378. "type" : "owl:Class"
  379. }, {
  380. "id" : "322",
  381. "type" : "owl:Class"
  382. }, {
  383. "id" : "77",
  384. "type" : "owl:Class"
  385. }, {
  386. "id" : "210",
  387. "type" : "owl:equivalentClass"
  388. }, {
  389. "id" : "193",
  390. "type" : "owl:Class"
  391. }, {
  392. "id" : "14",
  393. "type" : "owl:Class"
  394. }, {
  395. "id" : "217",
  396. "type" : "owl:Class"
  397. }, {
  398. "id" : "183",
  399. "type" : "owl:Class"
  400. }, {
  401. "id" : "379",
  402. "type" : "owl:Class"
  403. }, {
  404. "id" : "244",
  405. "type" : "owl:Class"
  406. }, {
  407. "id" : "105",
  408. "type" : "owl:Class"
  409. }, {
  410. "id" : "81",
  411. "type" : "owl:Class"
  412. }, {
  413. "id" : "170",
  414. "type" : "owl:Class"
  415. }, {
  416. "id" : "295",
  417. "type" : "owl:Class"
  418. }, {
  419. "id" : "109",
  420. "type" : "owl:Class"
  421. }, {
  422. "id" : "136",
  423. "type" : "owl:Class"
  424. }, {
  425. "id" : "377",
  426. "type" : "owl:Class"
  427. }, {
  428. "id" : "84",
  429. "type" : "owl:Class"
  430. }, {
  431. "id" : "106",
  432. "type" : "owl:Class"
  433. }, {
  434. "id" : "147",
  435. "type" : "owl:Class"
  436. }, {
  437. "id" : "150",
  438. "type" : "owl:Class"
  439. }, {
  440. "id" : "154",
  441. "type" : "owl:Class"
  442. }, {
  443. "id" : "289",
  444. "type" : "owl:Class"
  445. }, {
  446. "id" : "167",
  447. "type" : "owl:Class"
  448. }, {
  449. "id" : "31",
  450. "type" : "owl:Class"
  451. }, {
  452. "id" : "5",
  453. "type" : "owl:Class"
  454. }, {
  455. "id" : "36",
  456. "type" : "owl:Class"
  457. }, {
  458. "id" : "385",
  459. "type" : "owl:Class"
  460. }, {
  461. "id" : "234",
  462. "type" : "owl:Class"
  463. }, {
  464. "id" : "30",
  465. "type" : "owl:Class"
  466. }, {
  467. "id" : "145",
  468. "type" : "owl:Class"
  469. }, {
  470. "id" : "61",
  471. "type" : "owl:Class"
  472. }, {
  473. "id" : "63",
  474. "type" : "owl:Class"
  475. }, {
  476. "id" : "75",
  477. "type" : "owl:Class"
  478. }, {
  479. "id" : "229",
  480. "type" : "owl:Class"
  481. }, {
  482. "id" : "317",
  483. "type" : "owl:Class"
  484. }, {
  485. "id" : "15",
  486. "type" : "owl:Class"
  487. }, {
  488. "id" : "176",
  489. "type" : "owl:Class"
  490. }, {
  491. "id" : "17",
  492. "type" : "owl:Class"
  493. }, {
  494. "id" : "124",
  495. "type" : "owl:Class"
  496. }, {
  497. "id" : "33",
  498. "type" : "owl:Class"
  499. }, {
  500. "id" : "59",
  501. "type" : "owl:Class"
  502. }, {
  503. "id" : "382",
  504. "type" : "owl:Class"
  505. }, {
  506. "id" : "351",
  507. "type" : "owl:Class"
  508. }, {
  509. "id" : "172",
  510. "type" : "owl:Class"
  511. }, {
  512. "id" : "208",
  513. "type" : "owl:Class"
  514. }, {
  515. "id" : "222",
  516. "type" : "owl:Class"
  517. }, {
  518. "id" : "262",
  519. "type" : "owl:Class"
  520. }, {
  521. "id" : "79",
  522. "type" : "owl:Class"
  523. }, {
  524. "id" : "387",
  525. "type" : "owl:Class"
  526. }, {
  527. "id" : "375",
  528. "type" : "owl:Class"
  529. }, {
  530. "id" : "326",
  531. "type" : "owl:Class"
  532. }, {
  533. "id" : "92",
  534. "type" : "owl:Class"
  535. }, {
  536. "id" : "292",
  537. "type" : "owl:Class"
  538. }, {
  539. "id" : "272",
  540. "type" : "owl:Class"
  541. }, {
  542. "id" : "39",
  543. "type" : "owl:Class"
  544. }, {
  545. "id" : "112",
  546. "type" : "owl:Class"
  547. }, {
  548. "id" : "321",
  549. "type" : "owl:Class"
  550. }, {
  551. "id" : "362",
  552. "type" : "owl:Class"
  553. }, {
  554. "id" : "226",
  555. "type" : "owl:Class"
  556. }, {
  557. "id" : "19",
  558. "type" : "owl:Class"
  559. }, {
  560. "id" : "181",
  561. "type" : "owl:Class"
  562. }, {
  563. "id" : "83",
  564. "type" : "owl:Class"
  565. }, {
  566. "id" : "425",
  567. "type" : "owl:Class"
  568. }, {
  569. "id" : "26",
  570. "type" : "owl:Class"
  571. }, {
  572. "id" : "4",
  573. "type" : "owl:Class"
  574. }, {
  575. "id" : "133",
  576. "type" : "owl:Class"
  577. }, {
  578. "id" : "22",
  579. "type" : "owl:Class"
  580. }, {
  581. "id" : "18",
  582. "type" : "owl:Class"
  583. }, {
  584. "id" : "239",
  585. "type" : "owl:Class"
  586. }, {
  587. "id" : "346",
  588. "type" : "owl:Class"
  589. }, {
  590. "id" : "212",
  591. "type" : "owl:Class"
  592. }, {
  593. "id" : "87",
  594. "type" : "owl:Class"
  595. }, {
  596. "id" : "143",
  597. "type" : "owl:Class"
  598. }, {
  599. "id" : "129",
  600. "type" : "owl:Class"
  601. }, {
  602. "id" : "417",
  603. "type" : "owl:Class"
  604. }, {
  605. "id" : "200",
  606. "type" : "owl:Class"
  607. }, {
  608. "id" : "325",
  609. "type" : "owl:Class"
  610. }, {
  611. "id" : "28",
  612. "type" : "owl:Class"
  613. }, {
  614. "id" : "2",
  615. "type" : "owl:Class"
  616. }, {
  617. "id" : "53",
  618. "type" : "owl:Class"
  619. }, {
  620. "id" : "224",
  621. "type" : "owl:Class"
  622. }, {
  623. "id" : "339",
  624. "type" : "owl:Class"
  625. }, {
  626. "id" : "360",
  627. "type" : "owl:Class"
  628. }, {
  629. "id" : "246",
  630. "type" : "owl:Class"
  631. }, {
  632. "id" : "174",
  633. "type" : "owl:Class"
  634. }, {
  635. "id" : "318",
  636. "type" : "owl:Class"
  637. }, {
  638. "id" : "386",
  639. "type" : "owl:Class"
  640. }, {
  641. "id" : "316",
  642. "type" : "owl:Class"
  643. }, {
  644. "id" : "49",
  645. "type" : "owl:Class"
  646. }, {
  647. "id" : "7",
  648. "type" : "owl:Class"
  649. }, {
  650. "id" : "11",
  651. "type" : "owl:Class"
  652. }, {
  653. "id" : "429",
  654. "type" : "owl:Class"
  655. }, {
  656. "id" : "187",
  657. "type" : "owl:Class"
  658. }, {
  659. "id" : "169",
  660. "type" : "owl:Class"
  661. }, {
  662. "id" : "47",
  663. "type" : "owl:Class"
  664. }, {
  665. "id" : "57",
  666. "type" : "owl:Class"
  667. }, {
  668. "id" : "165",
  669. "type" : "owl:Class"
  670. }, {
  671. "id" : "310",
  672. "type" : "owl:Class"
  673. }, {
  674. "id" : "45",
  675. "type" : "owl:Class"
  676. }, {
  677. "id" : "122",
  678. "type" : "owl:Class"
  679. }, {
  680. "id" : "140",
  681. "type" : "owl:Class"
  682. }, {
  683. "id" : "232",
  684. "type" : "owl:Class"
  685. }, {
  686. "id" : "384",
  687. "type" : "owl:Class"
  688. }, {
  689. "id" : "35",
  690. "type" : "owl:Class"
  691. }, {
  692. "id" : "455",
  693. "type" : "owl:Class"
  694. }, {
  695. "id" : "184",
  696. "type" : "owl:Class"
  697. }, {
  698. "id" : "356",
  699. "type" : "owl:Class"
  700. }, {
  701. "id" : "315",
  702. "type" : "owl:Class"
  703. }, {
  704. "id" : "358",
  705. "type" : "owl:Class"
  706. }, {
  707. "id" : "279",
  708. "type" : "owl:Class"
  709. }, {
  710. "id" : "73",
  711. "type" : "owl:Class"
  712. }, {
  713. "id" : "135",
  714. "type" : "owl:Class"
  715. }, {
  716. "id" : "435",
  717. "type" : "owl:Class"
  718. }, {
  719. "id" : "180",
  720. "type" : "owl:Class"
  721. }, {
  722. "id" : "306",
  723. "type" : "owl:Class"
  724. }, {
  725. "id" : "9",
  726. "type" : "owl:Class"
  727. }, {
  728. "id" : "343",
  729. "type" : "owl:Class"
  730. }, {
  731. "id" : "383",
  732. "type" : "owl:Class"
  733. }, {
  734. "id" : "388",
  735. "type" : "owl:Class"
  736. }, {
  737. "id" : "186",
  738. "type" : "owl:Class"
  739. }, {
  740. "id" : "101",
  741. "type" : "owl:Class"
  742. }, {
  743. "id" : "335",
  744. "type" : "owl:Class"
  745. }, {
  746. "id" : "120",
  747. "type" : "owl:Class"
  748. }, {
  749. "id" : "159",
  750. "type" : "owl:Class"
  751. }, {
  752. "id" : "324",
  753. "type" : "owl:Class"
  754. }, {
  755. "id" : "220",
  756. "type" : "owl:Class"
  757. }, {
  758. "id" : "205",
  759. "type" : "owl:Class"
  760. }, {
  761. "id" : "89",
  762. "type" : "owl:Class"
  763. }, {
  764. "id" : "380",
  765. "type" : "owl:Class"
  766. }, {
  767. "id" : "196",
  768. "type" : "owl:Class"
  769. }, {
  770. "id" : "98",
  771. "type" : "owl:Class"
  772. }, {
  773. "id" : "430",
  774. "type" : "owl:Thing"
  775. }, {
  776. "id" : "185",
  777. "type" : "owl:Class"
  778. }, {
  779. "id" : "337",
  780. "type" : "owl:Class"
  781. }, {
  782. "id" : "202",
  783. "type" : "owl:Class"
  784. }, {
  785. "id" : "328",
  786. "type" : "owl:Class"
  787. }, {
  788. "id" : "331",
  789. "type" : "owl:Class"
  790. }, {
  791. "id" : "381",
  792. "type" : "owl:Class"
  793. }, {
  794. "id" : "1",
  795. "type" : "owl:Class"
  796. }, {
  797. "id" : "274",
  798. "type" : "owl:Class"
  799. } ],
  800. "classAttribute" : [ {
  801. "iri" : "https://w3id.org/GDPRtEXT#FactorsForImpactAssessment",
  802. "baseIri" : "https://w3id.org/GDPRtEXT",
  803. "instances" : 0,
  804. "annotations" : {
  805. "isDefinedBy" : [ {
  806. "identifier" : "isDefinedBy",
  807. "language" : "undefined",
  808. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital93",
  809. "type" : "iri"
  810. }, {
  811. "identifier" : "isDefinedBy",
  812. "language" : "undefined",
  813. "value" : "https://w3id.org/GDPRtEXT/gdpr#article35",
  814. "type" : "iri"
  815. }, {
  816. "identifier" : "isDefinedBy",
  817. "language" : "undefined",
  818. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital92",
  819. "type" : "iri"
  820. }, {
  821. "identifier" : "isDefinedBy",
  822. "language" : "undefined",
  823. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital94",
  824. "type" : "iri"
  825. }, {
  826. "identifier" : "isDefinedBy",
  827. "language" : "undefined",
  828. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital91",
  829. "type" : "iri"
  830. }, {
  831. "identifier" : "isDefinedBy",
  832. "language" : "undefined",
  833. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital84",
  834. "type" : "iri"
  835. }, {
  836. "identifier" : "isDefinedBy",
  837. "language" : "undefined",
  838. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital90",
  839. "type" : "iri"
  840. } ],
  841. "involves" : [ {
  842. "identifier" : "involves",
  843. "language" : "undefined",
  844. "value" : "https://w3id.org/GDPRtEXT#ImpactAssessment",
  845. "type" : "iri"
  846. } ]
  847. },
  848. "label" : {
  849. "IRI-based" : "FactorsForImpactAssessment",
  850. "undefined" : "Factors for Impact Assessment"
  851. },
  852. "subClasses" : [ "12", "13", "14", "15", "16", "17", "18", "19", "20" ],
  853. "comment" : {
  854. "en" : "These are the factors stated by the GDPR for Impact Assessment."
  855. },
  856. "id" : "10",
  857. "superClasses" : [ "11" ]
  858. }, {
  859. "iri" : "https://w3id.org/GDPRtEXT#PersonalData",
  860. "baseIri" : "https://w3id.org/GDPRtEXT",
  861. "instances" : 0,
  862. "annotations" : {
  863. "isDefinedBy" : [ {
  864. "identifier" : "isDefinedBy",
  865. "language" : "undefined",
  866. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-1",
  867. "type" : "iri"
  868. }, {
  869. "identifier" : "isDefinedBy",
  870. "language" : "undefined",
  871. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital26",
  872. "type" : "iri"
  873. } ],
  874. "involves" : [ {
  875. "identifier" : "involves",
  876. "language" : "undefined",
  877. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  878. "type" : "iri"
  879. } ]
  880. },
  881. "label" : {
  882. "IRI-based" : "PersonalData",
  883. "undefined" : "Personal Data"
  884. },
  885. "subClasses" : [ "31" ],
  886. "comment" : {
  887. "en" : "Personal data means any information relating to an identified or identifiable natural person (‘data subject’); an identifiable natural person is one who can be identified, directly or indirectly, in particular by reference to an identifier such as a name, an identification number, location data, an online identifier or to one or more factors specific to the physical, physiological, genetic, mental, economic, cultural or social identity of that natural person."
  888. },
  889. "id" : "29",
  890. "superClasses" : [ "30" ]
  891. }, {
  892. "iri" : "http://data.europa.eu/eli/ontology#LegalResourceSubdivision",
  893. "baseIri" : "http://data.europa.eu/eli/ontology",
  894. "instances" : 0,
  895. "label" : {
  896. "IRI-based" : "LegalResourceSubdivision"
  897. },
  898. "subClasses" : [ "39", "52", "53", "54", "55", "56", "57" ],
  899. "attributes" : [ "external" ],
  900. "id" : "38"
  901. }, {
  902. "iri" : "https://w3id.org/GDPRtEXT#ControllerAccountability",
  903. "baseIri" : "https://w3id.org/GDPRtEXT",
  904. "instances" : 0,
  905. "annotations" : {
  906. "isDefinedBy" : [ {
  907. "identifier" : "isDefinedBy",
  908. "language" : "undefined",
  909. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital85",
  910. "type" : "iri"
  911. }, {
  912. "identifier" : "isDefinedBy",
  913. "language" : "undefined",
  914. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-2",
  915. "type" : "iri"
  916. } ],
  917. "involves" : [ {
  918. "identifier" : "involves",
  919. "language" : "undefined",
  920. "value" : "https://w3id.org/GDPRtEXT#Controller",
  921. "type" : "iri"
  922. } ]
  923. },
  924. "label" : {
  925. "IRI-based" : "ControllerAccountability",
  926. "undefined" : "Controller Accountability"
  927. },
  928. "comment" : {
  929. "en" : "These obligations specify the accountability of the Controller."
  930. },
  931. "id" : "58",
  932. "superClasses" : [ "59" ]
  933. }, {
  934. "iri" : "https://w3id.org/GDPRtEXT#RestrictionsOnCrossBorderTransfers",
  935. "baseIri" : "https://w3id.org/GDPRtEXT",
  936. "instances" : 0,
  937. "annotations" : {
  938. "isDefinedBy" : [ {
  939. "identifier" : "isDefinedBy",
  940. "language" : "undefined",
  941. "value" : "https://w3id.org/GDPRtEXT/gdpr#article44",
  942. "type" : "iri"
  943. } ],
  944. "involves" : [ {
  945. "identifier" : "involves",
  946. "language" : "undefined",
  947. "value" : "https://w3id.org/GDPRtEXT#CrossBorderTransfer",
  948. "type" : "iri"
  949. }, {
  950. "identifier" : "involves",
  951. "language" : "undefined",
  952. "value" : "https://w3id.org/GDPRtEXT#Processor",
  953. "type" : "iri"
  954. } ]
  955. },
  956. "label" : {
  957. "IRI-based" : "RestrictionsOnCrossBorderTransfers",
  958. "undefined" : "Restrictions on cross-border transfers"
  959. },
  960. "comment" : {
  961. "en" : "These provide restrictions on cross-border transfers for Processors"
  962. },
  963. "id" : "60",
  964. "superClasses" : [ "61" ]
  965. }, {
  966. "iri" : "https://w3id.org/GDPRtEXT#DataWasInferredOrDerived",
  967. "baseIri" : "https://w3id.org/GDPRtEXT",
  968. "instances" : 0,
  969. "annotations" : {
  970. "involves" : [ {
  971. "identifier" : "involves",
  972. "language" : "undefined",
  973. "value" : "https://w3id.org/GDPRtEXT#Data",
  974. "type" : "iri"
  975. } ]
  976. },
  977. "label" : {
  978. "IRI-based" : "DataWasInferredOrDerived",
  979. "undefined" : "Data inferred or derived"
  980. },
  981. "comment" : {
  982. "en" : "The obligation or activity coult not be completed because the data was inferred or derived, and therefore did not come from the data subject or other sources."
  983. },
  984. "id" : "62",
  985. "superClasses" : [ "63" ]
  986. }, {
  987. "iri" : "https://w3id.org/GDPRtEXT#FreedomsProtection",
  988. "baseIri" : "https://w3id.org/GDPRtEXT",
  989. "instances" : 0,
  990. "annotations" : {
  991. "isDefinedBy" : [ {
  992. "identifier" : "isDefinedBy",
  993. "language" : "undefined",
  994. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital16",
  995. "type" : "iri"
  996. } ]
  997. },
  998. "label" : {
  999. "IRI-based" : "FreedomsProtection",
  1000. "undefined" : "Rights protection"
  1001. },
  1002. "comment" : {
  1003. "en" : "The stated obligation could not be completed as it concerns rights protection."
  1004. },
  1005. "id" : "64",
  1006. "superClasses" : [ "63" ]
  1007. }, {
  1008. "iri" : "https://w3id.org/GDPRtEXT#StoreData",
  1009. "baseIri" : "https://w3id.org/GDPRtEXT",
  1010. "instances" : 0,
  1011. "annotations" : {
  1012. "involves" : [ {
  1013. "identifier" : "involves",
  1014. "language" : "undefined",
  1015. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1016. "type" : "iri"
  1017. } ]
  1018. },
  1019. "label" : {
  1020. "IRI-based" : "StoreData",
  1021. "undefined" : "Store Data"
  1022. },
  1023. "comment" : {
  1024. "undefined" : "An activity where personal data is being stored"
  1025. },
  1026. "id" : "65",
  1027. "superClasses" : [ "66" ]
  1028. }, {
  1029. "iri" : "https://w3id.org/GDPRtEXT#ProcessingAffectedVulnerableIndividuals",
  1030. "baseIri" : "https://w3id.org/GDPRtEXT",
  1031. "instances" : 0,
  1032. "annotations" : {
  1033. "involves" : [ {
  1034. "identifier" : "involves",
  1035. "language" : "undefined",
  1036. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1037. "type" : "iri"
  1038. }, {
  1039. "identifier" : "involves",
  1040. "language" : "undefined",
  1041. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1042. "type" : "iri"
  1043. } ]
  1044. },
  1045. "label" : {
  1046. "IRI-based" : "ProcessingAffectedVulnerableIndividuals",
  1047. "undefined" : "Processing affected or vulnerable individuals"
  1048. },
  1049. "comment" : {
  1050. "en" : "This type of processing involves data subjects that are vulnerable, such as children, or people with disabilities."
  1051. },
  1052. "id" : "20",
  1053. "superClasses" : [ "10", "67" ]
  1054. }, {
  1055. "iri" : "https://w3id.org/GDPRtEXT#SpecifiedPurpose",
  1056. "baseIri" : "https://w3id.org/GDPRtEXT",
  1057. "instances" : 0,
  1058. "annotations" : {
  1059. "involves" : [ {
  1060. "identifier" : "involves",
  1061. "language" : "undefined",
  1062. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  1063. "type" : "iri"
  1064. }, {
  1065. "identifier" : "involves",
  1066. "language" : "undefined",
  1067. "value" : "https://w3id.org/GDPRtEXT#Processing",
  1068. "type" : "iri"
  1069. } ]
  1070. },
  1071. "label" : {
  1072. "IRI-based" : "SpecifiedPurpose",
  1073. "undefined" : "Specified purpose"
  1074. },
  1075. "comment" : {
  1076. "en" : "This obligation states that the collection of personal data should happen only for the specified purposes (for which the data subject has consented)."
  1077. },
  1078. "id" : "70",
  1079. "superClasses" : [ "71" ]
  1080. }, {
  1081. "iri" : "https://w3id.org/GDPRtEXT#ShouldBeCommonlyUsedFormat",
  1082. "baseIri" : "https://w3id.org/GDPRtEXT",
  1083. "instances" : 0,
  1084. "label" : {
  1085. "IRI-based" : "ShouldBeCommonlyUsedFormat",
  1086. "undefined" : "Copy should be in a commonly used format"
  1087. },
  1088. "comment" : {
  1089. "en" : "The provided copy of personal data should be in a commonly used format"
  1090. },
  1091. "id" : "88",
  1092. "superClasses" : [ "89" ]
  1093. }, {
  1094. "iri" : "https://w3id.org/GDPRtEXT#InfoAboutCategoriesOfRecipientsDataSharedWith",
  1095. "baseIri" : "https://w3id.org/GDPRtEXT",
  1096. "instances" : 0,
  1097. "annotations" : {
  1098. "involves" : [ {
  1099. "identifier" : "involves",
  1100. "language" : "undefined",
  1101. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1102. "type" : "iri"
  1103. }, {
  1104. "identifier" : "involves",
  1105. "language" : "undefined",
  1106. "value" : "https://w3id.org/GDPRtEXT#ShareDataWithThirdParty",
  1107. "type" : "iri"
  1108. }, {
  1109. "identifier" : "involves",
  1110. "language" : "undefined",
  1111. "value" : "https://w3id.org/GDPRtEXT#RecordCategoriesOfRecipientsWhereDataShared",
  1112. "type" : "iri"
  1113. } ]
  1114. },
  1115. "label" : {
  1116. "IRI-based" : "InfoAboutCategoriesOfRecipientsDataSharedWith",
  1117. "undefined" : "Information about categories of recipients"
  1118. },
  1119. "comment" : {
  1120. "en" : "The right to access personal data also includes information about the categories of recipients the data is shared with."
  1121. },
  1122. "id" : "93",
  1123. "superClasses" : [ "94" ]
  1124. }, {
  1125. "iri" : "https://w3id.org/GDPRtEXT#DataSecurity",
  1126. "baseIri" : "https://w3id.org/GDPRtEXT",
  1127. "instances" : 0,
  1128. "annotations" : {
  1129. "isDefinedBy" : [ {
  1130. "identifier" : "isDefinedBy",
  1131. "language" : "undefined",
  1132. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-3-e",
  1133. "type" : "iri"
  1134. }, {
  1135. "identifier" : "isDefinedBy",
  1136. "language" : "undefined",
  1137. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital83",
  1138. "type" : "iri"
  1139. }, {
  1140. "identifier" : "isDefinedBy",
  1141. "language" : "undefined",
  1142. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-1",
  1143. "type" : "iri"
  1144. }, {
  1145. "identifier" : "isDefinedBy",
  1146. "language" : "undefined",
  1147. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-4",
  1148. "type" : "iri"
  1149. }, {
  1150. "identifier" : "isDefinedBy",
  1151. "language" : "undefined",
  1152. "value" : "https://w3id.org/GDPRtEXT/gdpr#article32",
  1153. "type" : "iri"
  1154. } ],
  1155. "involves" : [ {
  1156. "identifier" : "involves",
  1157. "language" : "undefined",
  1158. "value" : "https://w3id.org/GDPRtEXT#SecurityOfPersonalData",
  1159. "type" : "iri"
  1160. }, {
  1161. "identifier" : "involves",
  1162. "language" : "undefined",
  1163. "value" : "https://w3id.org/GDPRtEXT#Controller",
  1164. "type" : "iri"
  1165. }, {
  1166. "identifier" : "involves",
  1167. "language" : "undefined",
  1168. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1169. "type" : "iri"
  1170. } ]
  1171. },
  1172. "label" : {
  1173. "IRI-based" : "DataSecurity",
  1174. "undefined" : "Data Security"
  1175. },
  1176. "comment" : {
  1177. "en" : "These are obligations regarding security of data managed by the Controllers."
  1178. },
  1179. "id" : "102",
  1180. "superClasses" : [ "59", "61" ]
  1181. }, {
  1182. "iri" : "https://w3id.org/GDPRtEXT#IsImpossible",
  1183. "baseIri" : "https://w3id.org/GDPRtEXT",
  1184. "instances" : 0,
  1185. "label" : {
  1186. "IRI-based" : "IsImpossible",
  1187. "undefined" : "Is impossible"
  1188. },
  1189. "comment" : {
  1190. "en" : "The obligation or activity could not be completed as it was deemed to be impossible."
  1191. },
  1192. "id" : "110",
  1193. "superClasses" : [ "63" ]
  1194. }, {
  1195. "iri" : "https://w3id.org/GDPRtEXT#ReportDataBreachToDPAWithin72Hours",
  1196. "baseIri" : "https://w3id.org/GDPRtEXT",
  1197. "instances" : 0,
  1198. "annotations" : {
  1199. "involves" : [ {
  1200. "identifier" : "involves",
  1201. "language" : "undefined",
  1202. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  1203. "type" : "iri"
  1204. }, {
  1205. "identifier" : "involves",
  1206. "language" : "undefined",
  1207. "value" : "https://w3id.org/GDPRtEXT#DPA",
  1208. "type" : "iri"
  1209. } ]
  1210. },
  1211. "label" : {
  1212. "IRI-based" : "ReportDataBreachToDPAWithin72Hours",
  1213. "undefined" : "Report breach to DPA within 72 hours"
  1214. },
  1215. "comment" : {
  1216. "en" : "The occurence of a data breach must be reported to the Data Protection Authority (DPA) within 72 hours"
  1217. },
  1218. "id" : "119",
  1219. "superClasses" : [ "120" ]
  1220. }, {
  1221. "iri" : "https://w3id.org/GDPRtEXT#PossibleConsequenceForDataSubject",
  1222. "baseIri" : "https://w3id.org/GDPRtEXT",
  1223. "instances" : 0,
  1224. "annotations" : {
  1225. "involves" : [ {
  1226. "identifier" : "involves",
  1227. "language" : "undefined",
  1228. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1229. "type" : "iri"
  1230. } ]
  1231. },
  1232. "label" : {
  1233. "IRI-based" : "PossibleConsequenceForDataSubject",
  1234. "undefined" : "Consequences for data subjects"
  1235. },
  1236. "comment" : {
  1237. "en" : "The possible consequences of the change in processing for the data subject"
  1238. },
  1239. "id" : "121",
  1240. "superClasses" : [ "122" ]
  1241. }, {
  1242. "iri" : "https://w3id.org/GDPRtEXT#AccuracyIsContested",
  1243. "baseIri" : "https://w3id.org/GDPRtEXT",
  1244. "instances" : 0,
  1245. "annotations" : {
  1246. "involves" : [ {
  1247. "identifier" : "involves",
  1248. "language" : "undefined",
  1249. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1250. "type" : "iri"
  1251. } ]
  1252. },
  1253. "label" : {
  1254. "IRI-based" : "AccuracyIsContested",
  1255. "undefined" : "Accuracy is contested"
  1256. },
  1257. "comment" : {
  1258. "en" : "The data subject can exercise the right to restrict processing of their personal data when the accuracy of personal data is contested"
  1259. },
  1260. "id" : "123",
  1261. "superClasses" : [ "124" ]
  1262. }, {
  1263. "iri" : "https://w3id.org/GDPRtEXT#NotifyDataSubjectAboutConsequencesOfDataBreach",
  1264. "baseIri" : "https://w3id.org/GDPRtEXT",
  1265. "instances" : 0,
  1266. "annotations" : {
  1267. "involves" : [ {
  1268. "identifier" : "involves",
  1269. "language" : "undefined",
  1270. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  1271. "type" : "iri"
  1272. } ]
  1273. },
  1274. "label" : {
  1275. "IRI-based" : "NotifyDataSubjectAboutConsequencesOfDataBreach",
  1276. "undefined" : "Notify consequences of breach"
  1277. },
  1278. "comment" : {
  1279. "en" : "Affected data subject's must be notified about the consequences of the data breach."
  1280. },
  1281. "id" : "125",
  1282. "superClasses" : [ "126" ]
  1283. }, {
  1284. "iri" : "https://w3id.org/GDPRtEXT#InfoAboutCatgegoriesOfDataBeingProcessed",
  1285. "baseIri" : "https://w3id.org/GDPRtEXT",
  1286. "instances" : 0,
  1287. "annotations" : {
  1288. "involves" : [ {
  1289. "identifier" : "involves",
  1290. "language" : "undefined",
  1291. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1292. "type" : "iri"
  1293. }, {
  1294. "identifier" : "involves",
  1295. "language" : "undefined",
  1296. "value" : "https://w3id.org/GDPRtEXT#Processing",
  1297. "type" : "iri"
  1298. } ]
  1299. },
  1300. "label" : {
  1301. "IRI-based" : "InfoAboutCatgegoriesOfDataBeingProcessed",
  1302. "undefined" : "Information about categories of data being processed"
  1303. },
  1304. "comment" : {
  1305. "en" : "The right to access personal data also includes information about categories of data being processed"
  1306. },
  1307. "id" : "127",
  1308. "superClasses" : [ "94" ]
  1309. }, {
  1310. "iri" : "https://w3id.org/GDPRtEXT#ProtectionAgainstDamage",
  1311. "baseIri" : "https://w3id.org/GDPRtEXT",
  1312. "instances" : 0,
  1313. "annotations" : {
  1314. "involves" : [ {
  1315. "identifier" : "involves",
  1316. "language" : "undefined",
  1317. "value" : "https://w3id.org/GDPRtEXT#DataSecurity",
  1318. "type" : "iri"
  1319. }, {
  1320. "identifier" : "involves",
  1321. "language" : "undefined",
  1322. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1323. "type" : "iri"
  1324. } ]
  1325. },
  1326. "label" : {
  1327. "IRI-based" : "ProtectionAgainstDamage",
  1328. "undefined" : "Protection against damage"
  1329. },
  1330. "comment" : {
  1331. "en" : "Protection of data subject's personal data against damage to the data."
  1332. },
  1333. "id" : "142",
  1334. "superClasses" : [ "143" ]
  1335. }, {
  1336. "iri" : "https://w3id.org/GDPRtEXT#IdentifiableForRequiredProcessing",
  1337. "baseIri" : "https://w3id.org/GDPRtEXT",
  1338. "instances" : 0,
  1339. "annotations" : {
  1340. "involves" : [ {
  1341. "identifier" : "involves",
  1342. "language" : "undefined",
  1343. "value" : "https://w3id.org/GDPRtEXT#IdentificationOfDataSubject",
  1344. "type" : "iri"
  1345. }, {
  1346. "identifier" : "involves",
  1347. "language" : "undefined",
  1348. "value" : "https://w3id.org/GDPRtEXT#StoreData",
  1349. "type" : "iri"
  1350. } ]
  1351. },
  1352. "label" : {
  1353. "IRI-based" : "IdentifiableForRequiredProcessing",
  1354. "undefined" : "Identifiable for required processing"
  1355. },
  1356. "comment" : {
  1357. "en" : "Retention of personal data should be identifiable for the requried processing"
  1358. },
  1359. "id" : "144",
  1360. "superClasses" : [ "145" ]
  1361. }, {
  1362. "iri" : "https://w3id.org/GDPRtEXT#EvaluationOfDataSubject",
  1363. "baseIri" : "https://w3id.org/GDPRtEXT",
  1364. "instances" : 0,
  1365. "annotations" : {
  1366. "involves" : [ {
  1367. "identifier" : "involves",
  1368. "language" : "undefined",
  1369. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1370. "type" : "iri"
  1371. } ]
  1372. },
  1373. "label" : {
  1374. "IRI-based" : "EvaluationOfDataSubject",
  1375. "undefined" : "Evaluation of data subjects"
  1376. },
  1377. "comment" : {
  1378. "en" : "Whether the proposed activity involves the evaluation of the data subject."
  1379. },
  1380. "id" : "13",
  1381. "superClasses" : [ "10" ]
  1382. }, {
  1383. "iri" : "https://w3id.org/GDPRtEXT#InformedConsentObligation",
  1384. "baseIri" : "https://w3id.org/GDPRtEXT",
  1385. "instances" : 0,
  1386. "annotations" : {
  1387. "isDefinedBy" : [ {
  1388. "identifier" : "isDefinedBy",
  1389. "language" : "undefined",
  1390. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-11",
  1391. "type" : "iri"
  1392. }, {
  1393. "identifier" : "isDefinedBy",
  1394. "language" : "undefined",
  1395. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital42",
  1396. "type" : "iri"
  1397. }, {
  1398. "identifier" : "isDefinedBy",
  1399. "language" : "undefined",
  1400. "value" : "https://w3id.org/GDPRtEXT/gdpr#article7-1",
  1401. "type" : "iri"
  1402. }, {
  1403. "identifier" : "isDefinedBy",
  1404. "language" : "undefined",
  1405. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  1406. "type" : "iri"
  1407. } ],
  1408. "involves" : [ {
  1409. "identifier" : "involves",
  1410. "language" : "undefined",
  1411. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1412. "type" : "iri"
  1413. }, {
  1414. "identifier" : "involves",
  1415. "language" : "undefined",
  1416. "value" : "https://w3id.org/GDPRtEXT#ObtainingConsent",
  1417. "type" : "iri"
  1418. }, {
  1419. "identifier" : "involves",
  1420. "language" : "undefined",
  1421. "value" : "https://w3id.org/GDPRtEXT#DataActivity",
  1422. "type" : "iri"
  1423. }, {
  1424. "identifier" : "involves",
  1425. "language" : "undefined",
  1426. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  1427. "type" : "iri"
  1428. } ]
  1429. },
  1430. "label" : {
  1431. "IRI-based" : "InformedConsentObligation",
  1432. "undefined" : "Informed"
  1433. },
  1434. "comment" : {
  1435. "en" : "GDPR obligation that specifies consent must be informed for it be valid."
  1436. },
  1437. "id" : "24",
  1438. "superClasses" : [ "5" ]
  1439. }, {
  1440. "iri" : "https://w3id.org/GDPRtEXT#RightToObjectForDirectMarketting",
  1441. "baseIri" : "https://w3id.org/GDPRtEXT",
  1442. "instances" : 0,
  1443. "annotations" : {
  1444. "isDefinedBy" : [ {
  1445. "identifier" : "isDefinedBy",
  1446. "language" : "undefined",
  1447. "value" : "https://w3id.org/GDPRtEXT/gdpr#article21-2-3",
  1448. "type" : "iri"
  1449. }, {
  1450. "identifier" : "isDefinedBy",
  1451. "language" : "undefined",
  1452. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital70",
  1453. "type" : "iri"
  1454. } ],
  1455. "involves" : [ {
  1456. "identifier" : "involves",
  1457. "language" : "undefined",
  1458. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1459. "type" : "iri"
  1460. }, {
  1461. "identifier" : "involves",
  1462. "language" : "undefined",
  1463. "value" : "https://w3id.org/GDPRtEXT#DirectMarketing",
  1464. "type" : "iri"
  1465. } ]
  1466. },
  1467. "label" : {
  1468. "IRI-based" : "RightToObjectForDirectMarketting",
  1469. "undefined" : "Right to object direct marketting"
  1470. },
  1471. "comment" : {
  1472. "en" : "The data subject has a right to object to direct marketting based on their personal data"
  1473. },
  1474. "id" : "138",
  1475. "superClasses" : [ "136" ]
  1476. }, {
  1477. "iri" : "https://w3id.org/GDPRtEXT#SubPoint",
  1478. "baseIri" : "https://w3id.org/GDPRtEXT",
  1479. "instances" : 0,
  1480. "annotations" : {
  1481. "isDefinedBy" : [ {
  1482. "identifier" : "isDefinedBy",
  1483. "language" : "undefined",
  1484. "value" : "http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679",
  1485. "type" : "iri"
  1486. } ],
  1487. "example" : [ {
  1488. "identifier" : "example",
  1489. "language" : "undefined",
  1490. "value" : "gdpr:article12-5-b a eli:LegalResourceSubdivision,\n GDPRtEXT:SubPoint ;\n eli:description \"refuse to act on the request.\"^^xsd:string ;\n eli:is_part_of gdpr:GDPR,\n gdpr:article12,\n gdpr:article12-5,\n gdpr:chapterIII,\n gdpr:chapterIII-1 ;\n eli:number \"b\"^^xsd:string ;\n eli:title_alternative \"Article12(5)(b)\"^^xsd:string ;\n GDPRtEXT:isPartOfArticle gdpr:article12 ;\n GDPRtEXT:isPartOfChapter gdpr:chapterIII ;\n GDPRtEXT:isPartOfPoint gdpr:article12-5 ;\n GDPRtEXT:isPartOfSection gdpr:chapterIII-1 .",
  1491. "type" : "label"
  1492. } ]
  1493. },
  1494. "label" : {
  1495. "IRI-based" : "SubPoint",
  1496. "undefined" : "SubPoint"
  1497. },
  1498. "comment" : {
  1499. "undefined" : "SubPoint in GDPR text"
  1500. },
  1501. "id" : "54",
  1502. "superClasses" : [ "38" ]
  1503. }, {
  1504. "iri" : "https://w3id.org/GDPRtEXT#RightToAccessPersonalData",
  1505. "baseIri" : "https://w3id.org/GDPRtEXT",
  1506. "instances" : 0,
  1507. "annotations" : {
  1508. "isDefinedBy" : [ {
  1509. "identifier" : "isDefinedBy",
  1510. "language" : "undefined",
  1511. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital63",
  1512. "type" : "iri"
  1513. }, {
  1514. "identifier" : "isDefinedBy",
  1515. "language" : "undefined",
  1516. "value" : "https://w3id.org/GDPRtEXT/gdpr#article15",
  1517. "type" : "iri"
  1518. } ],
  1519. "involves" : [ {
  1520. "identifier" : "involves",
  1521. "language" : "undefined",
  1522. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1523. "type" : "iri"
  1524. }, {
  1525. "identifier" : "involves",
  1526. "language" : "undefined",
  1527. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1528. "type" : "iri"
  1529. }, {
  1530. "identifier" : "involves",
  1531. "language" : "undefined",
  1532. "value" : "https://w3id.org/GDPRtEXT#Processing",
  1533. "type" : "iri"
  1534. }, {
  1535. "identifier" : "involves",
  1536. "language" : "undefined",
  1537. "value" : "https://w3id.org/GDPRtEXT#ProvideCopyOfPersonalData",
  1538. "type" : "iri"
  1539. } ]
  1540. },
  1541. "label" : {
  1542. "IRI-based" : "RightToAccessPersonalData",
  1543. "undefined" : "Right to Access Personal Data"
  1544. },
  1545. "subClasses" : [ "93", "181", "182", "183", "184", "185", "127", "186", "187" ],
  1546. "comment" : {
  1547. "en" : "The data subject shall have the right to obtain from the controller confirmation as to whether or not personal data concerning him or her are being processed, and, where that is the case, access to the personal data along with additional information about it."
  1548. },
  1549. "id" : "94",
  1550. "superClasses" : [ "136" ]
  1551. }, {
  1552. "iri" : "https://w3id.org/GDPRtEXT#Recital",
  1553. "baseIri" : "https://w3id.org/GDPRtEXT",
  1554. "instances" : 0,
  1555. "annotations" : {
  1556. "isDefinedBy" : [ {
  1557. "identifier" : "isDefinedBy",
  1558. "language" : "undefined",
  1559. "value" : "http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679",
  1560. "type" : "iri"
  1561. } ],
  1562. "example" : [ {
  1563. "identifier" : "example",
  1564. "language" : "undefined",
  1565. "value" : "gdpr:recital1 a eli:LegalResourceSubdivision,\n GDPRtEXT:Recital ;\n eli:description \"The protection of natural persons in relation to the processing of personal data is a fundamental right. Article 8(1) of the Charter of Fundamental Rights of the European Union (the ‘Charter’) and Article 16(1) of the Treaty on the Functioning of the European Union (TFEU) provide that everyone has the right to the protection of personal data concerning him or her.\"^^xsd:string ;\n eli:is_part_of gdpr:GDPR ;\n eli:number \"1\"^^xsd:string .",
  1566. "type" : "label"
  1567. } ]
  1568. },
  1569. "label" : {
  1570. "IRI-based" : "Recital",
  1571. "undefined" : "Regulation"
  1572. },
  1573. "comment" : {
  1574. "undefined" : "Regulation in GDPR text"
  1575. },
  1576. "id" : "52",
  1577. "superClasses" : [ "38" ]
  1578. }, {
  1579. "iri" : "https://w3id.org/GDPRtEXT#InfoAboutAutomatedProcessingWithSignificantEffectsOnDataSubject",
  1580. "baseIri" : "https://w3id.org/GDPRtEXT",
  1581. "instances" : 0,
  1582. "annotations" : {
  1583. "involves" : [ {
  1584. "identifier" : "involves",
  1585. "language" : "undefined",
  1586. "value" : "https://w3id.org/GDPRtEXT#AutomatedProcessing",
  1587. "type" : "iri"
  1588. }, {
  1589. "identifier" : "involves",
  1590. "language" : "undefined",
  1591. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1592. "type" : "iri"
  1593. } ]
  1594. },
  1595. "label" : {
  1596. "IRI-based" : "InfoAboutAutomatedProcessingWithSignificantEffectsOnDataSubject",
  1597. "undefined" : "Information about automated processing with significant effects"
  1598. },
  1599. "comment" : {
  1600. "en" : "The right to access personal data also includes information about automated processing that has significant effects on the data subject."
  1601. },
  1602. "id" : "182",
  1603. "superClasses" : [ "94" ]
  1604. }, {
  1605. "iri" : "https://w3id.org/GDPRtEXT#ProtectionAgainstDestruction",
  1606. "baseIri" : "https://w3id.org/GDPRtEXT",
  1607. "instances" : 0,
  1608. "annotations" : {
  1609. "involves" : [ {
  1610. "identifier" : "involves",
  1611. "language" : "undefined",
  1612. "value" : "https://w3id.org/GDPRtEXT#DataSecurity",
  1613. "type" : "iri"
  1614. }, {
  1615. "identifier" : "involves",
  1616. "language" : "undefined",
  1617. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1618. "type" : "iri"
  1619. } ]
  1620. },
  1621. "label" : {
  1622. "IRI-based" : "ProtectionAgainstDestruction",
  1623. "undefined" : "Protection against destruction"
  1624. },
  1625. "comment" : {
  1626. "en" : "Protection of data subject's personal data against destruction of data."
  1627. },
  1628. "id" : "191",
  1629. "superClasses" : [ "143" ]
  1630. }, {
  1631. "iri" : "https://w3id.org/GDPRtEXT#CriminalData",
  1632. "baseIri" : "https://w3id.org/GDPRtEXT",
  1633. "instances" : 0,
  1634. "annotations" : {
  1635. "isDefinedBy" : [ {
  1636. "identifier" : "isDefinedBy",
  1637. "language" : "undefined",
  1638. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital97",
  1639. "type" : "iri"
  1640. }, {
  1641. "identifier" : "isDefinedBy",
  1642. "language" : "undefined",
  1643. "value" : "https://w3id.org/GDPRtEXT/gdpr#article10",
  1644. "type" : "iri"
  1645. }, {
  1646. "identifier" : "isDefinedBy",
  1647. "language" : "undefined",
  1648. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital19",
  1649. "type" : "iri"
  1650. }, {
  1651. "identifier" : "isDefinedBy",
  1652. "language" : "undefined",
  1653. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital50",
  1654. "type" : "iri"
  1655. }, {
  1656. "identifier" : "isDefinedBy",
  1657. "language" : "undefined",
  1658. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital73",
  1659. "type" : "iri"
  1660. }, {
  1661. "identifier" : "isDefinedBy",
  1662. "language" : "undefined",
  1663. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital91",
  1664. "type" : "iri"
  1665. }, {
  1666. "identifier" : "isDefinedBy",
  1667. "language" : "undefined",
  1668. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital80",
  1669. "type" : "iri"
  1670. } ],
  1671. "involves" : [ {
  1672. "identifier" : "involves",
  1673. "language" : "undefined",
  1674. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1675. "type" : "iri"
  1676. } ]
  1677. },
  1678. "label" : {
  1679. "IRI-based" : "CriminalData",
  1680. "undefined" : "Crime data"
  1681. },
  1682. "comment" : {
  1683. "en" : "Personal data related to criminal convictions and offences."
  1684. },
  1685. "id" : "69",
  1686. "superClasses" : [ "31" ]
  1687. }, {
  1688. "iri" : "https://w3id.org/GDPRtEXT#PropogateRightsToThirdParties",
  1689. "baseIri" : "https://w3id.org/GDPRtEXT",
  1690. "instances" : 0,
  1691. "annotations" : {
  1692. "involves" : [ {
  1693. "identifier" : "involves",
  1694. "language" : "undefined",
  1695. "value" : "https://w3id.org/GDPRtEXT#Rights",
  1696. "type" : "iri"
  1697. }, {
  1698. "identifier" : "involves",
  1699. "language" : "undefined",
  1700. "value" : "https://w3id.org/GDPRtEXT#Controller",
  1701. "type" : "iri"
  1702. }, {
  1703. "identifier" : "involves",
  1704. "language" : "undefined",
  1705. "value" : "https://w3id.org/GDPRtEXT#Processor",
  1706. "type" : "iri"
  1707. } ]
  1708. },
  1709. "label" : {
  1710. "IRI-based" : "PropogateRightsToThirdParties",
  1711. "undefined" : "Propogate rights to Third Parties"
  1712. },
  1713. "comment" : {
  1714. "en" : "To propogate a data subject's right once they have been exercised to other third parties that are involved through the data subject's personal data."
  1715. },
  1716. "id" : "207",
  1717. "superClasses" : [ "59", "208", "61" ]
  1718. }, {
  1719. "iri" : "https://w3id.org/GDPRtEXT#DataProtectionByDesignAndByDefault",
  1720. "baseIri" : "https://w3id.org/GDPRtEXT",
  1721. "instances" : 0,
  1722. "annotations" : {
  1723. "isDefinedBy" : [ {
  1724. "identifier" : "isDefinedBy",
  1725. "language" : "undefined",
  1726. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital78",
  1727. "type" : "iri"
  1728. }, {
  1729. "identifier" : "isDefinedBy",
  1730. "language" : "undefined",
  1731. "value" : "https://w3id.org/GDPRtEXT/gdpr#article25",
  1732. "type" : "iri"
  1733. } ],
  1734. "involves" : [ {
  1735. "identifier" : "involves",
  1736. "language" : "undefined",
  1737. "value" : "https://w3id.org/GDPRtEXT#Controller",
  1738. "type" : "iri"
  1739. } ]
  1740. },
  1741. "label" : {
  1742. "IRI-based" : "DataProtectionByDesignAndByDefault",
  1743. "undefined" : "Data protection by design and default"
  1744. },
  1745. "comment" : {
  1746. "en" : "This obligation requires Controllers to follow data protection by design and by default."
  1747. },
  1748. "id" : "213",
  1749. "superClasses" : [ "59" ]
  1750. }, {
  1751. "iri" : "https://w3id.org/GDPRtEXT#DataNoLongerNeededForOriginalPurpose",
  1752. "baseIri" : "https://w3id.org/GDPRtEXT",
  1753. "instances" : 0,
  1754. "annotations" : {
  1755. "involves" : [ {
  1756. "identifier" : "involves",
  1757. "language" : "undefined",
  1758. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  1759. "type" : "iri"
  1760. }, {
  1761. "identifier" : "involves",
  1762. "language" : "undefined",
  1763. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1764. "type" : "iri"
  1765. } ]
  1766. },
  1767. "label" : {
  1768. "IRI-based" : "DataNoLongerNeededForOriginalPurpose",
  1769. "undefined" : "Data no longer needed for original purpose"
  1770. },
  1771. "comment" : {
  1772. "en" : "The data subject can exercise the right to restrict processing of their personal data when the personal data is no longer required for the original purpose it was collected under"
  1773. },
  1774. "id" : "214",
  1775. "superClasses" : [ "124" ]
  1776. }, {
  1777. "iri" : "https://w3id.org/GDPRtEXT#InformationShouldBeIntelligible",
  1778. "baseIri" : "https://w3id.org/GDPRtEXT",
  1779. "instances" : 0,
  1780. "annotations" : {
  1781. "involves" : [ {
  1782. "identifier" : "involves",
  1783. "language" : "undefined",
  1784. "value" : "https://w3id.org/GDPRtEXT#RightToTransparency",
  1785. "type" : "iri"
  1786. } ]
  1787. },
  1788. "label" : {
  1789. "IRI-based" : "InformationShouldBeIntelligible",
  1790. "undefined" : "Intelligible"
  1791. },
  1792. "comment" : {
  1793. "en" : "The information provided under the right to transparency should be intelligible"
  1794. },
  1795. "id" : "215",
  1796. "superClasses" : [ "135" ]
  1797. }, {
  1798. "iri" : "https://w3id.org/GDPRtEXT#SystematicMonitoring",
  1799. "baseIri" : "https://w3id.org/GDPRtEXT",
  1800. "instances" : 0,
  1801. "annotations" : {
  1802. "involves" : [ {
  1803. "identifier" : "involves",
  1804. "language" : "undefined",
  1805. "value" : "https://w3id.org/GDPRtEXT#Processing",
  1806. "type" : "iri"
  1807. } ]
  1808. },
  1809. "label" : {
  1810. "IRI-based" : "SystematicMonitoring",
  1811. "undefined" : "Systematic Monitoring"
  1812. },
  1813. "comment" : {
  1814. "en" : "This activity provides a systematic monitoring or overview of processes/activities taking place within the context of the organisation."
  1815. },
  1816. "id" : "12",
  1817. "superClasses" : [ "10", "208" ]
  1818. }, {
  1819. "iri" : "https://w3id.org/GDPRtEXT#HealthData",
  1820. "baseIri" : "https://w3id.org/GDPRtEXT",
  1821. "instances" : 0,
  1822. "annotations" : {
  1823. "isDefinedBy" : [ {
  1824. "identifier" : "isDefinedBy",
  1825. "language" : "undefined",
  1826. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital35",
  1827. "type" : "iri"
  1828. }, {
  1829. "identifier" : "isDefinedBy",
  1830. "language" : "undefined",
  1831. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital53",
  1832. "type" : "iri"
  1833. }, {
  1834. "identifier" : "isDefinedBy",
  1835. "language" : "undefined",
  1836. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital54",
  1837. "type" : "iri"
  1838. }, {
  1839. "identifier" : "isDefinedBy",
  1840. "language" : "undefined",
  1841. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-15",
  1842. "type" : "iri"
  1843. } ],
  1844. "involves" : [ {
  1845. "identifier" : "involves",
  1846. "language" : "undefined",
  1847. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1848. "type" : "iri"
  1849. } ]
  1850. },
  1851. "label" : {
  1852. "IRI-based" : "HealthData",
  1853. "undefined" : "Health data"
  1854. },
  1855. "comment" : {
  1856. "en" : "Personal data related to the physical or mental health of a natural person, including the provision of health care services, which reveal information about his or her health status."
  1857. },
  1858. "id" : "115",
  1859. "superClasses" : [ "31" ]
  1860. }, {
  1861. "iri" : "https://w3id.org/GDPRtEXT#EmploymentLaw",
  1862. "baseIri" : "https://w3id.org/GDPRtEXT",
  1863. "instances" : 0,
  1864. "annotations" : {
  1865. "isDefinedBy" : [ {
  1866. "identifier" : "isDefinedBy",
  1867. "language" : "undefined",
  1868. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-b",
  1869. "type" : "iri"
  1870. } ]
  1871. },
  1872. "label" : {
  1873. "IRI-based" : "EmploymentLaw",
  1874. "undefined" : "Employment Law"
  1875. },
  1876. "comment" : {
  1877. "en" : "Lawful basis for processing is provided by Employment Law"
  1878. },
  1879. "id" : "216",
  1880. "superClasses" : [ "217" ]
  1881. }, {
  1882. "iri" : "https://w3id.org/GDPRtEXT#Processing",
  1883. "equivalent" : [ "210" ],
  1884. "baseIri" : "https://w3id.org/GDPRtEXT",
  1885. "instances" : 0,
  1886. "annotations" : {
  1887. "isDefinedBy" : [ {
  1888. "identifier" : "isDefinedBy",
  1889. "language" : "undefined",
  1890. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-2",
  1891. "type" : "iri"
  1892. } ],
  1893. "involves" : [ {
  1894. "identifier" : "involves",
  1895. "language" : "undefined",
  1896. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  1897. "type" : "iri"
  1898. } ]
  1899. },
  1900. "label" : {
  1901. "IRI-based" : "Processing",
  1902. "undefined" : "Processing"
  1903. },
  1904. "subClasses" : [ "81", "14", "17", "96", "18", "19", "20" ],
  1905. "comment" : {
  1906. "en" : "Processing here refers to an Activity that acts on the Data Subject's personal information."
  1907. },
  1908. "attributes" : [ "equivalent" ],
  1909. "id" : "67",
  1910. "superClasses" : [ "208" ]
  1911. }, {
  1912. "iri" : "https://w3id.org/GDPRtEXT#RightToBasicInformationAboutProcessing",
  1913. "baseIri" : "https://w3id.org/GDPRtEXT",
  1914. "instances" : 0,
  1915. "annotations" : {
  1916. "isDefinedBy" : [ {
  1917. "identifier" : "isDefinedBy",
  1918. "language" : "undefined",
  1919. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital58",
  1920. "type" : "iri"
  1921. }, {
  1922. "identifier" : "isDefinedBy",
  1923. "language" : "undefined",
  1924. "value" : "https://w3id.org/GDPRtEXT/gdpr#article13",
  1925. "type" : "iri"
  1926. }, {
  1927. "identifier" : "isDefinedBy",
  1928. "language" : "undefined",
  1929. "value" : "https://w3id.org/GDPRtEXT/gdpr#article14",
  1930. "type" : "iri"
  1931. }, {
  1932. "identifier" : "isDefinedBy",
  1933. "language" : "undefined",
  1934. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital60",
  1935. "type" : "iri"
  1936. } ],
  1937. "involves" : [ {
  1938. "identifier" : "involves",
  1939. "language" : "undefined",
  1940. "value" : "https://w3id.org/GDPRtEXT#Processing",
  1941. "type" : "iri"
  1942. }, {
  1943. "identifier" : "involves",
  1944. "language" : "undefined",
  1945. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  1946. "type" : "iri"
  1947. } ]
  1948. },
  1949. "label" : {
  1950. "IRI-based" : "RightToBasicInformationAboutProcessing",
  1951. "undefined" : "Right to basic information about processing of personal data"
  1952. },
  1953. "subClasses" : [ "112" ],
  1954. "comment" : {
  1955. "en" : "The right to basic information about processing provides data subjects with information about the processing activities involving their personal data"
  1956. },
  1957. "id" : "113",
  1958. "superClasses" : [ "136" ]
  1959. }, {
  1960. "iri" : "https://w3id.org/GDPRtEXT#EraseWhenConsentWasWithdrawn",
  1961. "baseIri" : "https://w3id.org/GDPRtEXT",
  1962. "instances" : 0,
  1963. "annotations" : {
  1964. "involves" : [ {
  1965. "identifier" : "involves",
  1966. "language" : "undefined",
  1967. "value" : "https://w3id.org/GDPRtEXT#EraseData",
  1968. "type" : "iri"
  1969. }, {
  1970. "identifier" : "involves",
  1971. "language" : "undefined",
  1972. "value" : "https://w3id.org/GDPRtEXT#WithdrawingConsent",
  1973. "type" : "iri"
  1974. }, {
  1975. "identifier" : "involves",
  1976. "language" : "undefined",
  1977. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  1978. "type" : "iri"
  1979. } ]
  1980. },
  1981. "label" : {
  1982. "IRI-based" : "EraseWhenConsentWasWithdrawn",
  1983. "undefined" : "Erase if conesnt was withdrawn"
  1984. },
  1985. "comment" : {
  1986. "en" : "The right of erasure applies when the data subject withdraws given consent"
  1987. },
  1988. "id" : "230",
  1989. "superClasses" : [ "140" ]
  1990. }, {
  1991. "iri" : "https://w3id.org/GDPRtEXT#JointController",
  1992. "baseIri" : "https://w3id.org/GDPRtEXT",
  1993. "instances" : 0,
  1994. "annotations" : {
  1995. "isDefinedBy" : [ {
  1996. "identifier" : "isDefinedBy",
  1997. "language" : "undefined",
  1998. "value" : "https://w3id.org/GDPRtEXT/gdpr#article26",
  1999. "type" : "iri"
  2000. }, {
  2001. "identifier" : "isDefinedBy",
  2002. "language" : "undefined",
  2003. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-7",
  2004. "type" : "iri"
  2005. }, {
  2006. "identifier" : "isDefinedBy",
  2007. "language" : "undefined",
  2008. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital79",
  2009. "type" : "iri"
  2010. } ],
  2011. "involves" : [ {
  2012. "identifier" : "involves",
  2013. "language" : "undefined",
  2014. "value" : "https://w3id.org/GDPRtEXT#Controller",
  2015. "type" : "iri"
  2016. } ]
  2017. },
  2018. "label" : {
  2019. "IRI-based" : "JointController",
  2020. "undefined" : "Joint Controller"
  2021. },
  2022. "comment" : {
  2023. "en" : "A joint controller is two or more controllers jointly determine the purposes and means of processing."
  2024. },
  2025. "id" : "237",
  2026. "superClasses" : [ "152" ]
  2027. }, {
  2028. "iri" : "https://w3id.org/GDPRtEXT#CrossBorderTransfer",
  2029. "baseIri" : "https://w3id.org/GDPRtEXT",
  2030. "instances" : 0,
  2031. "annotations" : {
  2032. "involves" : [ {
  2033. "identifier" : "involves",
  2034. "language" : "undefined",
  2035. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2036. "type" : "iri"
  2037. } ]
  2038. },
  2039. "label" : {
  2040. "IRI-based" : "CrossBorderTransfer",
  2041. "undefined" : "Cross-border Transfer"
  2042. },
  2043. "comment" : {
  2044. "en" : "Cross-border data transfer refers to data transfer crossing the boundaries of EU (legislative) region."
  2045. },
  2046. "id" : "16",
  2047. "superClasses" : [ "10", "66" ]
  2048. }, {
  2049. "iri" : "https://w3id.org/GDPRtEXT#AnonymousData",
  2050. "baseIri" : "https://w3id.org/GDPRtEXT",
  2051. "instances" : 0,
  2052. "annotations" : {
  2053. "isDefinedBy" : [ {
  2054. "identifier" : "isDefinedBy",
  2055. "language" : "undefined",
  2056. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital26",
  2057. "type" : "iri"
  2058. } ],
  2059. "involves" : [ {
  2060. "identifier" : "involves",
  2061. "language" : "undefined",
  2062. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2063. "type" : "iri"
  2064. } ]
  2065. },
  2066. "label" : {
  2067. "IRI-based" : "AnonymousData",
  2068. "undefined" : "Anonymous Data"
  2069. },
  2070. "comment" : {
  2071. "en" : "Data is termed to be anonymous if it cannot be connected or associated with individual person or persons that have provided or are associated with it."
  2072. },
  2073. "id" : "241",
  2074. "superClasses" : [ "30" ]
  2075. }, {
  2076. "iri" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  2077. "baseIri" : "https://w3id.org/GDPRtEXT",
  2078. "instances" : 0,
  2079. "annotations" : {
  2080. "involves" : [ {
  2081. "identifier" : "involves",
  2082. "language" : "undefined",
  2083. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2084. "type" : "iri"
  2085. } ]
  2086. },
  2087. "label" : {
  2088. "IRI-based" : "CollectionOfPersonalData",
  2089. "en" : "Collection of Personal Data"
  2090. },
  2091. "subClasses" : [ "117" ],
  2092. "comment" : {
  2093. "en" : "Collection of Personal Data is an Activity that deals with acquiring data subject's personal data through some model of interaction."
  2094. },
  2095. "id" : "118",
  2096. "superClasses" : [ "66" ]
  2097. }, {
  2098. "iri" : "https://w3id.org/GDPRtEXT#ExemptedWithoutProofOfDataSubjectIdentity",
  2099. "baseIri" : "https://w3id.org/GDPRtEXT",
  2100. "instances" : 0,
  2101. "annotations" : {
  2102. "involves" : [ {
  2103. "identifier" : "involves",
  2104. "language" : "undefined",
  2105. "value" : "https://w3id.org/GDPRtEXT#IdentificationOfDataSubject",
  2106. "type" : "iri"
  2107. } ]
  2108. },
  2109. "label" : {
  2110. "IRI-based" : "ExemptedWithoutProofOfDataSubjectIdentity",
  2111. "undefined" : "Exempted without identity"
  2112. },
  2113. "comment" : {
  2114. "en" : "The request or activity could not or was not completed because there was no sufficient proof of the data subject's identity."
  2115. },
  2116. "id" : "247",
  2117. "superClasses" : [ "63" ]
  2118. }, {
  2119. "iri" : "https://w3id.org/GDPRtEXT#NotForProfitOrg",
  2120. "baseIri" : "https://w3id.org/GDPRtEXT",
  2121. "instances" : 0,
  2122. "annotations" : {
  2123. "isDefinedBy" : [ {
  2124. "identifier" : "isDefinedBy",
  2125. "language" : "undefined",
  2126. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-d",
  2127. "type" : "iri"
  2128. } ]
  2129. },
  2130. "label" : {
  2131. "IRI-based" : "NotForProfitOrg",
  2132. "undefined" : "Not-for-profit organisation"
  2133. },
  2134. "comment" : {
  2135. "en" : "Lawful basis is provided by the GDPR for activities of/for not-for-profit organisations"
  2136. },
  2137. "id" : "249",
  2138. "superClasses" : [ "217" ]
  2139. }, {
  2140. "iri" : "https://w3id.org/GDPRtEXT#CollectionMechanism",
  2141. "baseIri" : "https://w3id.org/GDPRtEXT",
  2142. "instances" : 0,
  2143. "label" : {
  2144. "IRI-based" : "CollectionMechanism",
  2145. "undefined" : "Collection Mechanism"
  2146. },
  2147. "comment" : {
  2148. "undefined" : "Specifies collection mechanism used to collect personal data"
  2149. },
  2150. "id" : "117",
  2151. "superClasses" : [ "118" ]
  2152. }, {
  2153. "iri" : "https://w3id.org/GDPRtEXT#ExceptionsOnReportingDataSubjectsOfBreach",
  2154. "baseIri" : "https://w3id.org/GDPRtEXT",
  2155. "instances" : 0,
  2156. "annotations" : {
  2157. "involves" : [ {
  2158. "identifier" : "involves",
  2159. "language" : "undefined",
  2160. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreach",
  2161. "type" : "iri"
  2162. } ]
  2163. },
  2164. "label" : {
  2165. "IRI-based" : "ExceptionsOnReportingDataSubjectsOfBreach",
  2166. "undefined" : "Exceptions on reporting data breach"
  2167. },
  2168. "subClasses" : [ "42", "47", "51" ],
  2169. "comment" : {
  2170. "en" : "Exceptions associated with compliance for reporting data breach to the affected data subjects."
  2171. },
  2172. "id" : "43",
  2173. "superClasses" : [ "63" ]
  2174. }, {
  2175. "iri" : "https://w3id.org/GDPRtEXT#UnlawfulProcessing",
  2176. "baseIri" : "https://w3id.org/GDPRtEXT",
  2177. "instances" : 0,
  2178. "label" : {
  2179. "IRI-based" : "UnlawfulProcessing",
  2180. "undefined" : "Unlawful Processing"
  2181. },
  2182. "comment" : {
  2183. "undefined" : "Processing of personal data that is termed to be unlawful in the context of the GDPR or other relevant laws and regulations"
  2184. },
  2185. "id" : "96",
  2186. "superClasses" : [ "67" ]
  2187. }, {
  2188. "iri" : "https://w3id.org/GDPRtEXT#KeptUpToDate",
  2189. "baseIri" : "https://w3id.org/GDPRtEXT",
  2190. "instances" : 0,
  2191. "annotations" : {
  2192. "involves" : [ {
  2193. "identifier" : "involves",
  2194. "language" : "undefined",
  2195. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2196. "type" : "iri"
  2197. } ]
  2198. },
  2199. "label" : {
  2200. "IRI-based" : "KeptUpToDate",
  2201. "undefined" : "Kept up to date"
  2202. },
  2203. "comment" : {
  2204. "en" : "Retained personal data must be kept up-to-date"
  2205. },
  2206. "id" : "263",
  2207. "superClasses" : [ "145" ]
  2208. }, {
  2209. "iri" : "https://w3id.org/GDPRtEXT#InformationShouldBeTransparent",
  2210. "baseIri" : "https://w3id.org/GDPRtEXT",
  2211. "instances" : 0,
  2212. "annotations" : {
  2213. "involves" : [ {
  2214. "identifier" : "involves",
  2215. "language" : "undefined",
  2216. "value" : "https://w3id.org/GDPRtEXT#RightToTransparency",
  2217. "type" : "iri"
  2218. }, {
  2219. "identifier" : "involves",
  2220. "language" : "undefined",
  2221. "value" : "https://w3id.org/GDPRtEXT#LawfulnessFairnessAndTransparency",
  2222. "type" : "iri"
  2223. } ]
  2224. },
  2225. "label" : {
  2226. "IRI-based" : "InformationShouldBeTransparent",
  2227. "undefined" : "Transparent"
  2228. },
  2229. "comment" : {
  2230. "en" : "The information provided under the right to transparency should be transparent and clear (i.e. not umambigious or vague)"
  2231. },
  2232. "id" : "264",
  2233. "superClasses" : [ "135" ]
  2234. }, {
  2235. "iri" : "https://w3id.org/GDPRtEXT#ImpactAssessment",
  2236. "baseIri" : "https://w3id.org/GDPRtEXT",
  2237. "instances" : 0,
  2238. "annotations" : {
  2239. "isDefinedBy" : [ {
  2240. "identifier" : "isDefinedBy",
  2241. "language" : "undefined",
  2242. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital90",
  2243. "type" : "iri"
  2244. } ],
  2245. "involves" : [ {
  2246. "identifier" : "involves",
  2247. "language" : "undefined",
  2248. "value" : "https://w3id.org/GDPRtEXT#FactorsForImpactAssessment",
  2249. "type" : "iri"
  2250. }, {
  2251. "identifier" : "involves",
  2252. "language" : "undefined",
  2253. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2254. "type" : "iri"
  2255. }, {
  2256. "identifier" : "involves",
  2257. "language" : "undefined",
  2258. "value" : "https://w3id.org/GDPRtEXT#Processing",
  2259. "type" : "iri"
  2260. } ]
  2261. },
  2262. "label" : {
  2263. "IRI-based" : "ImpactAssessment",
  2264. "undefined" : "Impact Assessment"
  2265. },
  2266. "comment" : {
  2267. "en" : "The activity wherein the controller carries out an assessment of the impact of the envisaged processing operations on the protection of personal data."
  2268. },
  2269. "id" : "265",
  2270. "superClasses" : [ "208" ]
  2271. }, {
  2272. "iri" : "https://w3id.org/GDPRtEXT#RectifyInaccuracy",
  2273. "baseIri" : "https://w3id.org/GDPRtEXT",
  2274. "instances" : 0,
  2275. "annotations" : {
  2276. "involves" : [ {
  2277. "identifier" : "involves",
  2278. "language" : "undefined",
  2279. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2280. "type" : "iri"
  2281. } ]
  2282. },
  2283. "label" : {
  2284. "IRI-based" : "RectifyInaccuracy",
  2285. "undefined" : "Rectify Inaccuracies"
  2286. },
  2287. "comment" : {
  2288. "en" : "Any inaccuracies or discrepancies in the retained data must be rectified"
  2289. },
  2290. "id" : "266",
  2291. "superClasses" : [ "145" ]
  2292. }, {
  2293. "iri" : "https://w3id.org/GDPRtEXT#NotifyDataSubjectOfMeasuresTakenForDataBreach",
  2294. "baseIri" : "https://w3id.org/GDPRtEXT",
  2295. "instances" : 0,
  2296. "annotations" : {
  2297. "involves" : [ {
  2298. "identifier" : "involves",
  2299. "language" : "undefined",
  2300. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  2301. "type" : "iri"
  2302. }, {
  2303. "identifier" : "involves",
  2304. "language" : "undefined",
  2305. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  2306. "type" : "iri"
  2307. } ]
  2308. },
  2309. "label" : {
  2310. "IRI-based" : "NotifyDataSubjectOfMeasuresTakenForDataBreach",
  2311. "undefined" : "Notify measures taken"
  2312. },
  2313. "comment" : {
  2314. "en" : "Affect data subjets must be notified of the measures taken against the data breach."
  2315. },
  2316. "id" : "267",
  2317. "superClasses" : [ "126" ]
  2318. }, {
  2319. "iri" : "https://w3id.org/GDPRtEXT#PublicInterest",
  2320. "baseIri" : "https://w3id.org/GDPRtEXT",
  2321. "instances" : 0,
  2322. "annotations" : {
  2323. "isDefinedBy" : [ {
  2324. "identifier" : "isDefinedBy",
  2325. "language" : "undefined",
  2326. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-i",
  2327. "type" : "iri"
  2328. }, {
  2329. "identifier" : "isDefinedBy",
  2330. "language" : "undefined",
  2331. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1-e",
  2332. "type" : "iri"
  2333. }, {
  2334. "identifier" : "isDefinedBy",
  2335. "language" : "undefined",
  2336. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital45",
  2337. "type" : "iri"
  2338. }, {
  2339. "identifier" : "isDefinedBy",
  2340. "language" : "undefined",
  2341. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-g",
  2342. "type" : "iri"
  2343. } ]
  2344. },
  2345. "label" : {
  2346. "IRI-based" : "PublicInterest",
  2347. "undefined" : "Public Interest"
  2348. },
  2349. "comment" : {
  2350. "en" : "Lawful basis is provided by the GDPR as being in the interest of the public"
  2351. },
  2352. "id" : "268",
  2353. "superClasses" : [ "217" ]
  2354. }, {
  2355. "iri" : "https://w3id.org/GDPRtEXT#ShouldSupportReuse",
  2356. "baseIri" : "https://w3id.org/GDPRtEXT",
  2357. "instances" : 0,
  2358. "label" : {
  2359. "IRI-based" : "ShouldSupportReuse",
  2360. "undefined" : "Shoud support reuse"
  2361. },
  2362. "comment" : {
  2363. "en" : "The provided copy of personal data should support reuse"
  2364. },
  2365. "id" : "163",
  2366. "superClasses" : [ "89" ]
  2367. }, {
  2368. "iri" : "https://w3id.org/GDPRtEXT#ProtectionAgainstUnlawfulProcessing",
  2369. "baseIri" : "https://w3id.org/GDPRtEXT",
  2370. "instances" : 0,
  2371. "annotations" : {
  2372. "involves" : [ {
  2373. "identifier" : "involves",
  2374. "language" : "undefined",
  2375. "value" : "https://w3id.org/GDPRtEXT#DataSecurity",
  2376. "type" : "iri"
  2377. }, {
  2378. "identifier" : "involves",
  2379. "language" : "undefined",
  2380. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2381. "type" : "iri"
  2382. }, {
  2383. "identifier" : "involves",
  2384. "language" : "undefined",
  2385. "value" : "https://w3id.org/GDPRtEXT#UnlawfulProcessing",
  2386. "type" : "iri"
  2387. } ]
  2388. },
  2389. "label" : {
  2390. "IRI-based" : "ProtectionAgainstUnlawfulProcessing",
  2391. "undefined" : "Protection against unlawful processing"
  2392. },
  2393. "comment" : {
  2394. "en" : "Protection of data subject's personal data against unlawful processing of data."
  2395. },
  2396. "id" : "269",
  2397. "superClasses" : [ "143" ]
  2398. }, {
  2399. "iri" : "https://w3id.org/GDPRtEXT#MadePublicByDataSubject",
  2400. "baseIri" : "https://w3id.org/GDPRtEXT",
  2401. "instances" : 0,
  2402. "annotations" : {
  2403. "isDefinedBy" : [ {
  2404. "identifier" : "isDefinedBy",
  2405. "language" : "undefined",
  2406. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-e",
  2407. "type" : "iri"
  2408. } ],
  2409. "involves" : [ {
  2410. "identifier" : "involves",
  2411. "language" : "undefined",
  2412. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  2413. "type" : "iri"
  2414. } ]
  2415. },
  2416. "label" : {
  2417. "IRI-based" : "MadePublicByDataSubject",
  2418. "undefined" : "Made Public"
  2419. },
  2420. "comment" : {
  2421. "en" : "Lawful basis is provided through the data being publicly made available by the data subject"
  2422. },
  2423. "id" : "270",
  2424. "superClasses" : [ "217" ]
  2425. }, {
  2426. "iri" : "https://w3id.org/GDPRtEXT#EraseWhenDataIsNoLongerNeededForOriginalPurpose",
  2427. "baseIri" : "https://w3id.org/GDPRtEXT",
  2428. "instances" : 0,
  2429. "annotations" : {
  2430. "involves" : [ {
  2431. "identifier" : "involves",
  2432. "language" : "undefined",
  2433. "value" : "https://w3id.org/GDPRtEXT#ExplicitPurpose",
  2434. "type" : "iri"
  2435. }, {
  2436. "identifier" : "involves",
  2437. "language" : "undefined",
  2438. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  2439. "type" : "iri"
  2440. }, {
  2441. "identifier" : "involves",
  2442. "language" : "undefined",
  2443. "value" : "https://w3id.org/GDPRtEXT#EraseData",
  2444. "type" : "iri"
  2445. } ]
  2446. },
  2447. "label" : {
  2448. "IRI-based" : "EraseWhenDataIsNoLongerNeededForOriginalPurpose",
  2449. "undefined" : "Erase if no longer needed for original purpose"
  2450. },
  2451. "comment" : {
  2452. "en" : "The right to erasure applies where data is no longer needed for original purposes for which it was collected"
  2453. },
  2454. "id" : "283",
  2455. "superClasses" : [ "140" ]
  2456. }, {
  2457. "iri" : "https://w3id.org/GDPRtEXT#ProtectionAgainstAccidentalLoss",
  2458. "baseIri" : "https://w3id.org/GDPRtEXT",
  2459. "instances" : 0,
  2460. "annotations" : {
  2461. "involves" : [ {
  2462. "identifier" : "involves",
  2463. "language" : "undefined",
  2464. "value" : "https://w3id.org/GDPRtEXT#DataSecurity",
  2465. "type" : "iri"
  2466. }, {
  2467. "identifier" : "involves",
  2468. "language" : "undefined",
  2469. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2470. "type" : "iri"
  2471. } ]
  2472. },
  2473. "label" : {
  2474. "IRI-based" : "ProtectionAgainstAccidentalLoss",
  2475. "undefined" : "Protection against accidental loss"
  2476. },
  2477. "comment" : {
  2478. "en" : "Protection of data subject's personal data against accidental loss."
  2479. },
  2480. "id" : "284",
  2481. "superClasses" : [ "143" ]
  2482. }, {
  2483. "iri" : "https://w3id.org/GDPRtEXT#ProcessingIsUnlawful",
  2484. "baseIri" : "https://w3id.org/GDPRtEXT",
  2485. "instances" : 0,
  2486. "annotations" : {
  2487. "involves" : [ {
  2488. "identifier" : "involves",
  2489. "language" : "undefined",
  2490. "value" : "https://w3id.org/GDPRtEXT#UnlawfulProcessing",
  2491. "type" : "iri"
  2492. }, {
  2493. "identifier" : "involves",
  2494. "language" : "undefined",
  2495. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2496. "type" : "iri"
  2497. } ]
  2498. },
  2499. "label" : {
  2500. "IRI-based" : "ProcessingIsUnlawful",
  2501. "undefined" : "Processing is unlawful"
  2502. },
  2503. "comment" : {
  2504. "en" : "The data subject can exercise the right to restrict processing of their personal data when the processing is unlawful"
  2505. },
  2506. "id" : "285",
  2507. "superClasses" : [ "124" ]
  2508. }, {
  2509. "iri" : "https://w3id.org/GDPRtEXT#Controller",
  2510. "baseIri" : "https://w3id.org/GDPRtEXT",
  2511. "instances" : 0,
  2512. "annotations" : {
  2513. "isDefinedBy" : [ {
  2514. "identifier" : "isDefinedBy",
  2515. "language" : "undefined",
  2516. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-5",
  2517. "type" : "iri"
  2518. }, {
  2519. "identifier" : "isDefinedBy",
  2520. "language" : "undefined",
  2521. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-7",
  2522. "type" : "iri"
  2523. }, {
  2524. "identifier" : "isDefinedBy",
  2525. "language" : "undefined",
  2526. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-10",
  2527. "type" : "iri"
  2528. } ]
  2529. },
  2530. "label" : {
  2531. "IRI-based" : "Controller",
  2532. "undefined" : "Controller"
  2533. },
  2534. "subClasses" : [ "237" ],
  2535. "comment" : {
  2536. "en" : "The natural or legal person, public authority, agency or other body which, alone or jointly with others, determines the purposes and means of the processing of personal data."
  2537. },
  2538. "id" : "152",
  2539. "superClasses" : [ "84" ]
  2540. }, {
  2541. "iri" : "https://w3id.org/GDPRtEXT#LimitedForProcessing",
  2542. "baseIri" : "https://w3id.org/GDPRtEXT",
  2543. "instances" : 0,
  2544. "annotations" : {
  2545. "involves" : [ {
  2546. "identifier" : "involves",
  2547. "language" : "undefined",
  2548. "value" : "https://w3id.org/GDPRtEXT#Processing",
  2549. "type" : "iri"
  2550. }, {
  2551. "identifier" : "involves",
  2552. "language" : "undefined",
  2553. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2554. "type" : "iri"
  2555. } ]
  2556. },
  2557. "label" : {
  2558. "IRI-based" : "LimitedForProcessing",
  2559. "undefined" : "Limited for processing"
  2560. },
  2561. "comment" : {
  2562. "en" : "Personal data retained should be limited in its use only for the requried processing"
  2563. },
  2564. "id" : "300",
  2565. "superClasses" : [ "145" ]
  2566. }, {
  2567. "iri" : "https://w3id.org/GDPRtEXT#SubProcessor",
  2568. "baseIri" : "https://w3id.org/GDPRtEXT",
  2569. "instances" : 0,
  2570. "annotations" : {
  2571. "involves" : [ {
  2572. "identifier" : "involves",
  2573. "language" : "undefined",
  2574. "value" : "https://w3id.org/GDPRtEXT#Controller",
  2575. "type" : "iri"
  2576. }, {
  2577. "identifier" : "involves",
  2578. "language" : "undefined",
  2579. "value" : "https://w3id.org/GDPRtEXT#Processor",
  2580. "type" : "iri"
  2581. } ]
  2582. },
  2583. "label" : {
  2584. "IRI-based" : "SubProcessor",
  2585. "undefined" : "Sub-Processor"
  2586. },
  2587. "comment" : {
  2588. "en" : "A sub-processor is a processor acting under another processor."
  2589. },
  2590. "id" : "131",
  2591. "superClasses" : [ "129" ]
  2592. }, {
  2593. "iri" : "https://w3id.org/GDPRtEXT#DPOObligation",
  2594. "baseIri" : "https://w3id.org/GDPRtEXT",
  2595. "instances" : 0,
  2596. "annotations" : {
  2597. "involves" : [ {
  2598. "identifier" : "involves",
  2599. "language" : "undefined",
  2600. "value" : "https://w3id.org/GDPRtEXT#DPO",
  2601. "type" : "iri"
  2602. } ]
  2603. },
  2604. "label" : {
  2605. "IRI-based" : "DPOObligation",
  2606. "undefined" : "DPO Obligation"
  2607. },
  2608. "subClasses" : [ "239" ],
  2609. "comment" : {
  2610. "en" : "These are the obligations specified for the Data Protection Office (DPO) within the GDPR"
  2611. },
  2612. "id" : "240",
  2613. "superClasses" : [ "262" ]
  2614. }, {
  2615. "iri" : "https://w3id.org/GDPRtEXT#ImposeConfidentialityObligationOnPersonnel",
  2616. "baseIri" : "https://w3id.org/GDPRtEXT",
  2617. "instances" : 0,
  2618. "annotations" : {
  2619. "isDefinedBy" : [ {
  2620. "identifier" : "isDefinedBy",
  2621. "language" : "undefined",
  2622. "value" : "https://w3id.org/GDPRtEXT/gdpr#article29",
  2623. "type" : "iri"
  2624. }, {
  2625. "identifier" : "isDefinedBy",
  2626. "language" : "undefined",
  2627. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-3-b",
  2628. "type" : "iri"
  2629. } ],
  2630. "involves" : [ {
  2631. "identifier" : "involves",
  2632. "language" : "undefined",
  2633. "value" : "https://w3id.org/GDPRtEXT#Processor",
  2634. "type" : "iri"
  2635. } ]
  2636. },
  2637. "label" : {
  2638. "IRI-based" : "ImposeConfidentialityObligationOnPersonnel",
  2639. "undefined" : "Impose confidentiality obligations on personnel"
  2640. },
  2641. "comment" : {
  2642. "en" : "The processor must impose confidentiality agreements on its personnel in relation to handling of personal data"
  2643. },
  2644. "id" : "301",
  2645. "superClasses" : [ "61" ]
  2646. }, {
  2647. "iri" : "https://w3id.org/GDPRtEXT#ObligationForObtainingConsent",
  2648. "baseIri" : "https://w3id.org/GDPRtEXT",
  2649. "instances" : 0,
  2650. "annotations" : {
  2651. "isDefinedBy" : [ {
  2652. "identifier" : "isDefinedBy",
  2653. "language" : "undefined",
  2654. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  2655. "type" : "iri"
  2656. } ],
  2657. "involves" : [ {
  2658. "identifier" : "involves",
  2659. "language" : "undefined",
  2660. "value" : "https://w3id.org/GDPRtEXT#ObtainingConsent",
  2661. "type" : "iri"
  2662. } ]
  2663. },
  2664. "label" : {
  2665. "IRI-based" : "ObligationForObtainingConsent",
  2666. "undefined" : "Obligation for obtaining consent"
  2667. },
  2668. "subClasses" : [ "220", "222", "224", "226", "5", "202" ],
  2669. "comment" : {
  2670. "en" : "These are the obligations specified by the GDPR for obtaining consent"
  2671. },
  2672. "id" : "203",
  2673. "superClasses" : [ "262" ]
  2674. }, {
  2675. "iri" : "https://w3id.org/GDPRtEXT#DataActivity",
  2676. "baseIri" : "https://w3id.org/GDPRtEXT",
  2677. "instances" : 0,
  2678. "annotations" : {
  2679. "involves" : [ {
  2680. "identifier" : "involves",
  2681. "language" : "undefined",
  2682. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2683. "type" : "iri"
  2684. } ]
  2685. },
  2686. "label" : {
  2687. "IRI-based" : "DataActivity",
  2688. "undefined" : "Data Activity"
  2689. },
  2690. "subClasses" : [ "205", "118", "210", "212", "193", "16", "196", "65", "89" ],
  2691. "comment" : {
  2692. "undefined" : "An activity involving personal data of data subject(s)."
  2693. },
  2694. "id" : "66",
  2695. "superClasses" : [ "208" ]
  2696. }, {
  2697. "iri" : "https://w3id.org/GDPRtEXT#ObligationForCollectionOfPersonalData",
  2698. "baseIri" : "https://w3id.org/GDPRtEXT",
  2699. "instances" : 0,
  2700. "annotations" : {
  2701. "involves" : [ {
  2702. "identifier" : "involves",
  2703. "language" : "undefined",
  2704. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  2705. "type" : "iri"
  2706. } ]
  2707. },
  2708. "label" : {
  2709. "IRI-based" : "ObligationForCollectionOfPersonalData",
  2710. "undefined" : "Obligation for data collection"
  2711. },
  2712. "subClasses" : [ "315", "316", "317", "318", "70" ],
  2713. "comment" : {
  2714. "en" : "Collection of Personal Data is an Activity that deals with acquiring data subject's personal data through some model of interaction."
  2715. },
  2716. "id" : "71",
  2717. "superClasses" : [ "262" ]
  2718. }, {
  2719. "iri" : "https://w3id.org/GDPRtEXT#LinkBetweenNewAndOldPurpose",
  2720. "baseIri" : "https://w3id.org/GDPRtEXT",
  2721. "instances" : 0,
  2722. "annotations" : {
  2723. "involves" : [ {
  2724. "identifier" : "involves",
  2725. "language" : "undefined",
  2726. "value" : "https://w3id.org/GDPRtEXT#Processing",
  2727. "type" : "iri"
  2728. }, {
  2729. "identifier" : "involves",
  2730. "language" : "undefined",
  2731. "value" : "https://w3id.org/GDPRtEXT#PurposeOfNewProcessing",
  2732. "type" : "iri"
  2733. } ]
  2734. },
  2735. "label" : {
  2736. "IRI-based" : "LinkBetweenNewAndOldPurpose",
  2737. "undefined" : "Lnk between new and old processing"
  2738. },
  2739. "comment" : {
  2740. "en" : "Whether there is a link between the new and old purposes of processing"
  2741. },
  2742. "id" : "178",
  2743. "superClasses" : [ "122" ]
  2744. }, {
  2745. "iri" : "https://w3id.org/GDPRtEXT#ControllerHasTakenAction",
  2746. "baseIri" : "https://w3id.org/GDPRtEXT",
  2747. "instances" : 0,
  2748. "annotations" : {
  2749. "involves" : [ {
  2750. "identifier" : "involves",
  2751. "language" : "undefined",
  2752. "value" : "https://w3id.org/GDPRtEXT#Controller",
  2753. "type" : "iri"
  2754. }, {
  2755. "identifier" : "involves",
  2756. "language" : "undefined",
  2757. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  2758. "type" : "iri"
  2759. } ]
  2760. },
  2761. "label" : {
  2762. "IRI-based" : "ControllerHasTakenAction",
  2763. "undefined" : "Controller has taken action"
  2764. },
  2765. "comment" : {
  2766. "en" : "The data subjects were not notified about the data breach because the controller had already taken action regarding the data breach."
  2767. },
  2768. "id" : "51",
  2769. "superClasses" : [ "43" ]
  2770. }, {
  2771. "iri" : "https://w3id.org/GDPRtEXT#NotifyDataSubjectOfBreach",
  2772. "baseIri" : "https://w3id.org/GDPRtEXT",
  2773. "instances" : 0,
  2774. "annotations" : {
  2775. "isDefinedBy" : [ {
  2776. "identifier" : "isDefinedBy",
  2777. "language" : "undefined",
  2778. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital86",
  2779. "type" : "iri"
  2780. }, {
  2781. "identifier" : "isDefinedBy",
  2782. "language" : "undefined",
  2783. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital88",
  2784. "type" : "iri"
  2785. }, {
  2786. "identifier" : "isDefinedBy",
  2787. "language" : "undefined",
  2788. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital73",
  2789. "type" : "iri"
  2790. }, {
  2791. "identifier" : "isDefinedBy",
  2792. "language" : "undefined",
  2793. "value" : "https://w3id.org/GDPRtEXT/gdpr#article34",
  2794. "type" : "iri"
  2795. }, {
  2796. "identifier" : "isDefinedBy",
  2797. "language" : "undefined",
  2798. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital87",
  2799. "type" : "iri"
  2800. } ],
  2801. "involves" : [ {
  2802. "identifier" : "involves",
  2803. "language" : "undefined",
  2804. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  2805. "type" : "iri"
  2806. }, {
  2807. "identifier" : "involves",
  2808. "language" : "undefined",
  2809. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  2810. "type" : "iri"
  2811. } ]
  2812. },
  2813. "label" : {
  2814. "IRI-based" : "NotifyDataSubjectOfBreach",
  2815. "undefined" : "Notify Data Subject of Breach"
  2816. },
  2817. "subClasses" : [ "321", "267", "125" ],
  2818. "comment" : {
  2819. "en" : "Affected data subjects must be notified of the data breach and its effects."
  2820. },
  2821. "id" : "126",
  2822. "superClasses" : [ "120" ]
  2823. }, {
  2824. "iri" : "https://w3id.org/GDPRtEXT#NotificationRequiresDisproportionateEfforts",
  2825. "baseIri" : "https://w3id.org/GDPRtEXT",
  2826. "instances" : 0,
  2827. "annotations" : {
  2828. "involves" : [ {
  2829. "identifier" : "involves",
  2830. "language" : "undefined",
  2831. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreach",
  2832. "type" : "iri"
  2833. } ]
  2834. },
  2835. "label" : {
  2836. "IRI-based" : "NotificationRequiresDisproportionateEfforts",
  2837. "undefined" : "Notification requires disproportionate efforts"
  2838. },
  2839. "comment" : {
  2840. "en" : "The data subjects were not notified about the data breach because it required disproportionate efforts."
  2841. },
  2842. "id" : "42",
  2843. "superClasses" : [ "43", "322" ]
  2844. }, {
  2845. "iri" : "https://w3id.org/GDPRtEXT#ConditionsForSealsAndCertifications",
  2846. "baseIri" : "https://w3id.org/GDPRtEXT",
  2847. "instances" : 0,
  2848. "annotations" : {
  2849. "isDefinedBy" : [ {
  2850. "identifier" : "isDefinedBy",
  2851. "language" : "undefined",
  2852. "value" : "https://w3id.org/GDPRtEXT/gdpr#article42",
  2853. "type" : "iri"
  2854. }, {
  2855. "identifier" : "isDefinedBy",
  2856. "language" : "undefined",
  2857. "value" : "https://w3id.org/GDPRtEXT/gdpr#article43",
  2858. "type" : "iri"
  2859. } ],
  2860. "involves" : [ {
  2861. "identifier" : "involves",
  2862. "language" : "undefined",
  2863. "value" : "https://w3id.org/GDPRtEXT#MaximumValidity3Years",
  2864. "type" : "iri"
  2865. }, {
  2866. "identifier" : "involves",
  2867. "language" : "undefined",
  2868. "value" : "https://w3id.org/GDPRtEXT#VoluntarySystemOfAccredition",
  2869. "type" : "iri"
  2870. }, {
  2871. "identifier" : "involves",
  2872. "language" : "undefined",
  2873. "value" : "https://w3id.org/GDPRtEXT#AdherenceToSealCertification",
  2874. "type" : "iri"
  2875. } ]
  2876. },
  2877. "label" : {
  2878. "IRI-based" : "ConditionsForSealsAndCertifications",
  2879. "undefined" : "Awarding Seals and Certifications"
  2880. },
  2881. "subClasses" : [ "324", "325", "326" ],
  2882. "comment" : {
  2883. "en" : "GDPR mentions some conditions or criterion for the creation and issuing of seals and certifications pertaining to GDPR compliance"
  2884. },
  2885. "id" : "323",
  2886. "superClasses" : [ "244" ]
  2887. }, {
  2888. "iri" : "https://w3id.org/GDPRtEXT#NatureOfPersonalData",
  2889. "baseIri" : "https://w3id.org/GDPRtEXT",
  2890. "instances" : 0,
  2891. "annotations" : {
  2892. "involves" : [ {
  2893. "identifier" : "involves",
  2894. "language" : "undefined",
  2895. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  2896. "type" : "iri"
  2897. } ]
  2898. },
  2899. "label" : {
  2900. "IRI-based" : "NatureOfPersonalData",
  2901. "undefined" : "Nature of data involved"
  2902. },
  2903. "comment" : {
  2904. "en" : "The nature of the personal data involved, whether it is sensitive or confidential."
  2905. },
  2906. "id" : "189",
  2907. "superClasses" : [ "122" ]
  2908. }, {
  2909. "iri" : "https://w3id.org/GDPRtEXT#PseudoAnonymousData",
  2910. "baseIri" : "https://w3id.org/GDPRtEXT",
  2911. "instances" : 0,
  2912. "annotations" : {
  2913. "isDefinedBy" : [ {
  2914. "identifier" : "isDefinedBy",
  2915. "language" : "undefined",
  2916. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital78",
  2917. "type" : "iri"
  2918. }, {
  2919. "identifier" : "isDefinedBy",
  2920. "language" : "undefined",
  2921. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital28",
  2922. "type" : "iri"
  2923. }, {
  2924. "identifier" : "isDefinedBy",
  2925. "language" : "undefined",
  2926. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital29",
  2927. "type" : "iri"
  2928. }, {
  2929. "identifier" : "isDefinedBy",
  2930. "language" : "undefined",
  2931. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-4-e",
  2932. "type" : "iri"
  2933. }, {
  2934. "identifier" : "isDefinedBy",
  2935. "language" : "undefined",
  2936. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital75",
  2937. "type" : "iri"
  2938. }, {
  2939. "identifier" : "isDefinedBy",
  2940. "language" : "undefined",
  2941. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32-1-a",
  2942. "type" : "iri"
  2943. }, {
  2944. "identifier" : "isDefinedBy",
  2945. "language" : "undefined",
  2946. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital156",
  2947. "type" : "iri"
  2948. }, {
  2949. "identifier" : "isDefinedBy",
  2950. "language" : "undefined",
  2951. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital26",
  2952. "type" : "iri"
  2953. }, {
  2954. "identifier" : "isDefinedBy",
  2955. "language" : "undefined",
  2956. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-5",
  2957. "type" : "iri"
  2958. }, {
  2959. "identifier" : "isDefinedBy",
  2960. "language" : "undefined",
  2961. "value" : "https://w3id.org/GDPRtEXT/gdpr#article40-2-d",
  2962. "type" : "iri"
  2963. }, {
  2964. "identifier" : "isDefinedBy",
  2965. "language" : "undefined",
  2966. "value" : "https://w3id.org/GDPRtEXT/gdpr#article25-1",
  2967. "type" : "iri"
  2968. }, {
  2969. "identifier" : "isDefinedBy",
  2970. "language" : "undefined",
  2971. "value" : "https://w3id.org/GDPRtEXT/gdpr#article89-1",
  2972. "type" : "iri"
  2973. } ],
  2974. "involves" : [ {
  2975. "identifier" : "involves",
  2976. "language" : "undefined",
  2977. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  2978. "type" : "iri"
  2979. } ]
  2980. },
  2981. "label" : {
  2982. "IRI-based" : "PseudoAnonymousData",
  2983. "undefined" : "Pseudo-anonymous data"
  2984. },
  2985. "comment" : {
  2986. "en" : "Personal data that can no longer be attributed to a specific data subject without the use of additional information."
  2987. },
  2988. "id" : "256",
  2989. "superClasses" : [ "30" ]
  2990. }, {
  2991. "iri" : "https://w3id.org/GDPRtEXT#DirectMarketing",
  2992. "baseIri" : "https://w3id.org/GDPRtEXT",
  2993. "instances" : 0,
  2994. "annotations" : {
  2995. "involves" : [ {
  2996. "identifier" : "involves",
  2997. "language" : "undefined",
  2998. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  2999. "type" : "iri"
  3000. } ]
  3001. },
  3002. "label" : {
  3003. "IRI-based" : "DirectMarketing",
  3004. "undefined" : "Direct Marketing"
  3005. },
  3006. "comment" : {
  3007. "undefined" : "Type of Marketing that reaches data subjects directly by communications directly addressed to the data subject."
  3008. },
  3009. "id" : "342",
  3010. "superClasses" : [ "343" ]
  3011. }, {
  3012. "iri" : "https://w3id.org/GDPRtEXT#DataBreach",
  3013. "baseIri" : "https://w3id.org/GDPRtEXT",
  3014. "instances" : 0,
  3015. "annotations" : {
  3016. "isDefinedBy" : [ {
  3017. "identifier" : "isDefinedBy",
  3018. "language" : "undefined",
  3019. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-12",
  3020. "type" : "iri"
  3021. } ],
  3022. "involves" : [ {
  3023. "identifier" : "involves",
  3024. "language" : "undefined",
  3025. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  3026. "type" : "iri"
  3027. } ]
  3028. },
  3029. "label" : {
  3030. "IRI-based" : "DataBreach",
  3031. "undefined" : "Data Breach"
  3032. },
  3033. "comment" : {
  3034. "en" : "A data breach is the intentional or unintentional release of secure or private/confidential information to an untrusted environment."
  3035. },
  3036. "id" : "259",
  3037. "superClasses" : [ "11" ]
  3038. }, {
  3039. "iri" : "https://w3id.org/GDPRtEXT#ImplementTechnicalMeasuresForCompliance",
  3040. "baseIri" : "https://w3id.org/GDPRtEXT",
  3041. "instances" : 0,
  3042. "annotations" : {
  3043. "involves" : [ {
  3044. "identifier" : "involves",
  3045. "language" : "undefined",
  3046. "value" : "https://w3id.org/GDPRtEXT#Controller",
  3047. "type" : "iri"
  3048. }, {
  3049. "identifier" : "involves",
  3050. "language" : "undefined",
  3051. "value" : "https://w3id.org/GDPRtEXT#Compliance",
  3052. "type" : "iri"
  3053. } ]
  3054. },
  3055. "label" : {
  3056. "IRI-based" : "ImplementTechnicalMeasuresForCompliance",
  3057. "undefined" : "Implement technical measures"
  3058. },
  3059. "comment" : {
  3060. "en" : "This obligation requires Controllers to implement the required technical measures necessary for compliance of the GDPR"
  3061. },
  3062. "id" : "345",
  3063. "superClasses" : [ "346" ]
  3064. }, {
  3065. "iri" : "https://w3id.org/GDPRtEXT#Chapter",
  3066. "baseIri" : "https://w3id.org/GDPRtEXT",
  3067. "instances" : 0,
  3068. "annotations" : {
  3069. "isDefinedBy" : [ {
  3070. "identifier" : "isDefinedBy",
  3071. "language" : "undefined",
  3072. "value" : "http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679",
  3073. "type" : "iri"
  3074. } ],
  3075. "example" : [ {
  3076. "identifier" : "example",
  3077. "language" : "undefined",
  3078. "value" : "gdpr:chapterI a eli:LegalResourceSubdivision,\n GDPRtEXT:Chapter ;\n eli:is_part_of gdpr:GDPR ;\n eli:number \"I\"^^xsd:string ;\n eli:title \"General provisions\"^^xsd:string ;\n eli:title_alternative \"Chapter I\"^^xsd:string ;\n GDPRtEXT:hasArticle gdpr:article1,\n gdpr:article2,\n gdpr:article3,\n gdpr:article4 .",
  3079. "type" : "label"
  3080. } ]
  3081. },
  3082. "label" : {
  3083. "IRI-based" : "Chapter",
  3084. "undefined" : "Chapter"
  3085. },
  3086. "comment" : {
  3087. "undefined" : "Chapter in GDPR text"
  3088. },
  3089. "id" : "55",
  3090. "superClasses" : [ "38" ]
  3091. }, {
  3092. "iri" : "https://w3id.org/GDPRtEXT#AppointmentOfProcessors",
  3093. "baseIri" : "https://w3id.org/GDPRtEXT",
  3094. "instances" : 0,
  3095. "annotations" : {
  3096. "isDefinedBy" : [ {
  3097. "identifier" : "isDefinedBy",
  3098. "language" : "undefined",
  3099. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-1",
  3100. "type" : "iri"
  3101. }, {
  3102. "identifier" : "isDefinedBy",
  3103. "language" : "undefined",
  3104. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-2",
  3105. "type" : "iri"
  3106. }, {
  3107. "identifier" : "isDefinedBy",
  3108. "language" : "undefined",
  3109. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital81",
  3110. "type" : "iri"
  3111. }, {
  3112. "identifier" : "isDefinedBy",
  3113. "language" : "undefined",
  3114. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-3",
  3115. "type" : "iri"
  3116. } ],
  3117. "involves" : [ {
  3118. "identifier" : "involves",
  3119. "language" : "undefined",
  3120. "value" : "https://w3id.org/GDPRtEXT#Controller",
  3121. "type" : "iri"
  3122. }, {
  3123. "identifier" : "involves",
  3124. "language" : "undefined",
  3125. "value" : "https://w3id.org/GDPRtEXT#Processor",
  3126. "type" : "iri"
  3127. } ]
  3128. },
  3129. "label" : {
  3130. "IRI-based" : "AppointmentOfProcessors",
  3131. "undefined" : "Appointment of Processors"
  3132. },
  3133. "comment" : {
  3134. "en" : "These are the obligations specified by the GDPR for the appointment of Processors by Controllers."
  3135. },
  3136. "id" : "347",
  3137. "superClasses" : [ "59", "208" ]
  3138. }, {
  3139. "iri" : "https://w3id.org/GDPRtEXT#ComplianceWithControllersInstructions",
  3140. "baseIri" : "https://w3id.org/GDPRtEXT",
  3141. "instances" : 0,
  3142. "annotations" : {
  3143. "isDefinedBy" : [ {
  3144. "identifier" : "isDefinedBy",
  3145. "language" : "undefined",
  3146. "value" : "https://w3id.org/GDPRtEXT/gdpr#article29",
  3147. "type" : "iri"
  3148. } ],
  3149. "involves" : [ {
  3150. "identifier" : "involves",
  3151. "language" : "undefined",
  3152. "value" : "https://w3id.org/GDPRtEXT#Controller",
  3153. "type" : "iri"
  3154. }, {
  3155. "identifier" : "involves",
  3156. "language" : "undefined",
  3157. "value" : "https://w3id.org/GDPRtEXT#Processor",
  3158. "type" : "iri"
  3159. } ]
  3160. },
  3161. "label" : {
  3162. "IRI-based" : "ComplianceWithControllersInstructions",
  3163. "undefined" : "Compliance with Controller's instructions"
  3164. },
  3165. "comment" : {
  3166. "en" : "The processor has an obligation to comply with the controller's instructions"
  3167. },
  3168. "id" : "287",
  3169. "superClasses" : [ "61" ]
  3170. }, {
  3171. "iri" : "https://w3id.org/GDPRtEXT#RecordCategoriesOfRecipientsWhereDataShared",
  3172. "baseIri" : "https://w3id.org/GDPRtEXT",
  3173. "instances" : 0,
  3174. "annotations" : {
  3175. "involves" : [ {
  3176. "identifier" : "involves",
  3177. "language" : "undefined",
  3178. "value" : "https://w3id.org/GDPRtEXT#ShareDataWithThirdParty",
  3179. "type" : "iri"
  3180. } ]
  3181. },
  3182. "label" : {
  3183. "IRI-based" : "RecordCategoriesOfRecipientsWhereDataShared",
  3184. "undefined" : "Record categories of recipients"
  3185. },
  3186. "comment" : {
  3187. "en" : "This obligation requires Controllers to record the categories of recipients the personal data was shared with."
  3188. },
  3189. "id" : "276",
  3190. "superClasses" : [ "36" ]
  3191. }, {
  3192. "iri" : "https://w3id.org/GDPRtEXT#Article",
  3193. "baseIri" : "https://w3id.org/GDPRtEXT",
  3194. "instances" : 0,
  3195. "annotations" : {
  3196. "isDefinedBy" : [ {
  3197. "identifier" : "isDefinedBy",
  3198. "language" : "undefined",
  3199. "value" : "http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679",
  3200. "type" : "iri"
  3201. } ],
  3202. "example" : [ {
  3203. "identifier" : "example",
  3204. "language" : "undefined",
  3205. "value" : "gdpr:article10 a eli:LegalResourceSubdivision,\n GDPRtEXT:Article ;\n eli:is_part_of gdpr:GDPR,\n gdpr:chapterII ;\n eli:number \"10\"^^xsd:string ;\n eli:title_alternative \"Article 10\"^^xsd:string ;\n GDPRtEXT:hasPoint gdpr:article10-1 ;\n GDPRtEXT:isPartOfChapter gdpr:chapterII .",
  3206. "type" : "label"
  3207. } ]
  3208. },
  3209. "label" : {
  3210. "IRI-based" : "Article",
  3211. "undefined" : "Article"
  3212. },
  3213. "comment" : {
  3214. "undefined" : "Article in GDPR text"
  3215. },
  3216. "id" : "56",
  3217. "superClasses" : [ "38" ]
  3218. }, {
  3219. "iri" : "https://w3id.org/GDPRtEXT#NationalSecurity",
  3220. "baseIri" : "https://w3id.org/GDPRtEXT",
  3221. "instances" : 0,
  3222. "annotations" : {
  3223. "isDefinedBy" : [ {
  3224. "identifier" : "isDefinedBy",
  3225. "language" : "undefined",
  3226. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital16",
  3227. "type" : "iri"
  3228. } ]
  3229. },
  3230. "label" : {
  3231. "IRI-based" : "NationalSecurity",
  3232. "undefined" : "National Security"
  3233. },
  3234. "comment" : {
  3235. "en" : "The stated obligation could not be completed as it concerns national security."
  3236. },
  3237. "id" : "341",
  3238. "superClasses" : [ "63" ]
  3239. }, {
  3240. "iri" : "https://w3id.org/GDPRtEXT#RequiresDisproportionateEfforts",
  3241. "baseIri" : "https://w3id.org/GDPRtEXT",
  3242. "instances" : 0,
  3243. "label" : {
  3244. "IRI-based" : "RequiresDisproportionateEfforts",
  3245. "undefined" : "Requires disproportionate efforts"
  3246. },
  3247. "subClasses" : [ "42" ],
  3248. "comment" : {
  3249. "en" : "The stated obligation or activity could not be completed as it requires disproportionate efforts to complete."
  3250. },
  3251. "id" : "322",
  3252. "superClasses" : [ "63" ]
  3253. }, {
  3254. "iri" : "https://w3id.org/GDPRtEXT#IntegrityAndConfidentiality",
  3255. "baseIri" : "https://w3id.org/GDPRtEXT",
  3256. "instances" : 0,
  3257. "annotations" : {
  3258. "isDefinedBy" : [ {
  3259. "identifier" : "isDefinedBy",
  3260. "language" : "undefined",
  3261. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital156",
  3262. "type" : "iri"
  3263. }, {
  3264. "identifier" : "isDefinedBy",
  3265. "language" : "undefined",
  3266. "value" : "https://w3id.org/GDPRtEXT/gdpr#article39",
  3267. "type" : "iri"
  3268. }, {
  3269. "identifier" : "isDefinedBy",
  3270. "language" : "undefined",
  3271. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital71",
  3272. "type" : "iri"
  3273. }, {
  3274. "identifier" : "isDefinedBy",
  3275. "language" : "undefined",
  3276. "value" : "https://w3id.org/GDPRtEXT/gdpr#article24-1",
  3277. "type" : "iri"
  3278. }, {
  3279. "identifier" : "isDefinedBy",
  3280. "language" : "undefined",
  3281. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital29",
  3282. "type" : "iri"
  3283. }, {
  3284. "identifier" : "isDefinedBy",
  3285. "language" : "undefined",
  3286. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28",
  3287. "type" : "iri"
  3288. }, {
  3289. "identifier" : "isDefinedBy",
  3290. "language" : "undefined",
  3291. "value" : "https://w3id.org/GDPRtEXT/gdpr#article32",
  3292. "type" : "iri"
  3293. }, {
  3294. "identifier" : "isDefinedBy",
  3295. "language" : "undefined",
  3296. "value" : "https://w3id.org/GDPRtEXT/gdpr#article25-2",
  3297. "type" : "iri"
  3298. }, {
  3299. "identifier" : "isDefinedBy",
  3300. "language" : "undefined",
  3301. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-1-f",
  3302. "type" : "iri"
  3303. }, {
  3304. "identifier" : "isDefinedBy",
  3305. "language" : "undefined",
  3306. "value" : "https://w3id.org/GDPRtEXT/gdpr#article25-1",
  3307. "type" : "iri"
  3308. } ],
  3309. "involves" : [ {
  3310. "identifier" : "involves",
  3311. "language" : "undefined",
  3312. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  3313. "type" : "iri"
  3314. }, {
  3315. "identifier" : "involves",
  3316. "language" : "undefined",
  3317. "value" : "https://w3id.org/GDPRtEXT#Processing",
  3318. "type" : "iri"
  3319. }, {
  3320. "identifier" : "involves",
  3321. "language" : "undefined",
  3322. "value" : "https://w3id.org/GDPRtEXT#DataSecurity",
  3323. "type" : "iri"
  3324. }, {
  3325. "identifier" : "involves",
  3326. "language" : "undefined",
  3327. "value" : "https://w3id.org/GDPRtEXT#ProtectionAgainstDestruction",
  3328. "type" : "iri"
  3329. }, {
  3330. "identifier" : "involves",
  3331. "language" : "undefined",
  3332. "value" : "https://w3id.org/GDPRtEXT#ProtectionAgainstDamage",
  3333. "type" : "iri"
  3334. }, {
  3335. "identifier" : "involves",
  3336. "language" : "undefined",
  3337. "value" : "https://w3id.org/GDPRtEXT#ProtectionAgainstAccidentalLoss",
  3338. "type" : "iri"
  3339. } ]
  3340. },
  3341. "label" : {
  3342. "IRI-based" : "IntegrityAndConfidentiality",
  3343. "undefined" : "Principle of Integrity and Confidentiality"
  3344. },
  3345. "comment" : {
  3346. "en" : "The principle of integrity and confidentiality states that personal data must be processed in a manner that ensures appropriate security of the personal data, including protection against unauthorised or unlawful processing and against accidental loss, destruction or damage, using appropriate technical or organisational measures."
  3347. },
  3348. "id" : "77",
  3349. "superClasses" : [ "2" ]
  3350. }, {
  3351. "iri" : "https://w3id.org/GDPRtEXT#UseData",
  3352. "equivalent" : [ "67" ],
  3353. "baseIri" : "https://w3id.org/GDPRtEXT",
  3354. "instances" : 0,
  3355. "annotations" : {
  3356. "involves" : [ {
  3357. "identifier" : "involves",
  3358. "language" : "undefined",
  3359. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  3360. "type" : "iri"
  3361. } ]
  3362. },
  3363. "label" : {
  3364. "IRI-based" : "UseData",
  3365. "undefined" : "Use Data"
  3366. },
  3367. "comment" : {
  3368. "undefined" : "An activity that uses personal data"
  3369. },
  3370. "attributes" : [ "equivalent" ],
  3371. "id" : "210",
  3372. "superClasses" : [ "66" ]
  3373. }, {
  3374. "iri" : "https://w3id.org/GDPRtEXT#RectifyData",
  3375. "baseIri" : "https://w3id.org/GDPRtEXT",
  3376. "instances" : 0,
  3377. "annotations" : {
  3378. "involves" : [ {
  3379. "identifier" : "involves",
  3380. "language" : "undefined",
  3381. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  3382. "type" : "iri"
  3383. } ]
  3384. },
  3385. "label" : {
  3386. "IRI-based" : "RectifyData",
  3387. "undefined" : "Rectify Data"
  3388. },
  3389. "comment" : {
  3390. "undefined" : "An activity that rectifies data"
  3391. },
  3392. "id" : "193",
  3393. "superClasses" : [ "66" ]
  3394. }, {
  3395. "iri" : "https://w3id.org/GDPRtEXT#ProcessingSensitiveData",
  3396. "baseIri" : "https://w3id.org/GDPRtEXT",
  3397. "instances" : 0,
  3398. "annotations" : {
  3399. "involves" : [ {
  3400. "identifier" : "involves",
  3401. "language" : "undefined",
  3402. "value" : "https://w3id.org/GDPRtEXT#SensitivePersonalData",
  3403. "type" : "iri"
  3404. } ]
  3405. },
  3406. "label" : {
  3407. "IRI-based" : "ProcessingSensitiveData",
  3408. "undefined" : "Processing sensitive data"
  3409. },
  3410. "comment" : {
  3411. "en" : "This involves processing involving sensitive personal data."
  3412. },
  3413. "id" : "14",
  3414. "superClasses" : [ "10", "67" ]
  3415. }, {
  3416. "iri" : "https://w3id.org/GDPRtEXT#LawfulBasisForProcessing",
  3417. "baseIri" : "https://w3id.org/GDPRtEXT",
  3418. "instances" : 0,
  3419. "annotations" : {
  3420. "isDefinedBy" : [ {
  3421. "identifier" : "isDefinedBy",
  3422. "language" : "undefined",
  3423. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital40",
  3424. "type" : "iri"
  3425. }, {
  3426. "identifier" : "isDefinedBy",
  3427. "language" : "undefined",
  3428. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital39",
  3429. "type" : "iri"
  3430. }, {
  3431. "identifier" : "isDefinedBy",
  3432. "language" : "undefined",
  3433. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital41",
  3434. "type" : "iri"
  3435. }, {
  3436. "identifier" : "isDefinedBy",
  3437. "language" : "undefined",
  3438. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1",
  3439. "type" : "iri"
  3440. } ],
  3441. "involves" : [ {
  3442. "identifier" : "involves",
  3443. "language" : "undefined",
  3444. "value" : "https://w3id.org/GDPRtEXT#Processing",
  3445. "type" : "iri"
  3446. } ]
  3447. },
  3448. "label" : {
  3449. "IRI-based" : "LawfulBasisForProcessing",
  3450. "undefined" : "Lawful Basis"
  3451. },
  3452. "subClasses" : [ "249", "379", "380", "159", "381", "382", "216", "383", "268", "384", "270", "385", "386", "122" ],
  3453. "comment" : {
  3454. "en" : "This provides the basis for lawful processing of personal data."
  3455. },
  3456. "id" : "217",
  3457. "superClasses" : [ "262" ]
  3458. }, {
  3459. "iri" : "https://w3id.org/GDPRtEXT#InfoAboutProcessing",
  3460. "baseIri" : "https://w3id.org/GDPRtEXT",
  3461. "instances" : 0,
  3462. "annotations" : {
  3463. "involves" : [ {
  3464. "identifier" : "involves",
  3465. "language" : "undefined",
  3466. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  3467. "type" : "iri"
  3468. }, {
  3469. "identifier" : "involves",
  3470. "language" : "undefined",
  3471. "value" : "https://w3id.org/GDPRtEXT#Processing",
  3472. "type" : "iri"
  3473. } ]
  3474. },
  3475. "label" : {
  3476. "IRI-based" : "InfoAboutProcessing",
  3477. "undefined" : "Information about processing"
  3478. },
  3479. "comment" : {
  3480. "en" : "The right to access personal data also includes information about the processing of personal data of the data subject"
  3481. },
  3482. "id" : "183",
  3483. "superClasses" : [ "94" ]
  3484. }, {
  3485. "iri" : "https://w3id.org/GDPRtEXT#LegalObligation",
  3486. "baseIri" : "https://w3id.org/GDPRtEXT",
  3487. "instances" : 0,
  3488. "annotations" : {
  3489. "isDefinedBy" : [ {
  3490. "identifier" : "isDefinedBy",
  3491. "language" : "undefined",
  3492. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1-c",
  3493. "type" : "iri"
  3494. }, {
  3495. "identifier" : "isDefinedBy",
  3496. "language" : "undefined",
  3497. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-3",
  3498. "type" : "iri"
  3499. }, {
  3500. "identifier" : "isDefinedBy",
  3501. "language" : "undefined",
  3502. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital45",
  3503. "type" : "iri"
  3504. } ]
  3505. },
  3506. "label" : {
  3507. "IRI-based" : "LegalObligation",
  3508. "undefined" : "Legal Obligations"
  3509. },
  3510. "comment" : {
  3511. "en" : "Lawful basis for processing is covered by legal obligation(s)."
  3512. },
  3513. "id" : "379",
  3514. "superClasses" : [ "217" ]
  3515. }, {
  3516. "iri" : "https://w3id.org/GDPRtEXT#SealsAndCertification",
  3517. "baseIri" : "https://w3id.org/GDPRtEXT",
  3518. "instances" : 0,
  3519. "annotations" : {
  3520. "isDefinedBy" : [ {
  3521. "identifier" : "isDefinedBy",
  3522. "language" : "undefined",
  3523. "value" : "https://w3id.org/GDPRtEXT/gdpr#article42",
  3524. "type" : "iri"
  3525. }, {
  3526. "identifier" : "isDefinedBy",
  3527. "language" : "undefined",
  3528. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital77",
  3529. "type" : "iri"
  3530. }, {
  3531. "identifier" : "isDefinedBy",
  3532. "language" : "undefined",
  3533. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital81",
  3534. "type" : "iri"
  3535. } ],
  3536. "involves" : [ {
  3537. "identifier" : "involves",
  3538. "language" : "undefined",
  3539. "value" : "https://w3id.org/GDPRtEXT#ConditionsForSealsAndCertifications",
  3540. "type" : "iri"
  3541. } ]
  3542. },
  3543. "label" : {
  3544. "IRI-based" : "SealsAndCertification",
  3545. "undefined" : "Seals and Certifications"
  3546. },
  3547. "subClasses" : [ "323", "387", "388" ],
  3548. "comment" : {
  3549. "en" : "GDPR provides for the creation and provision of seals and certificates pertaining to compliance or related activities"
  3550. },
  3551. "id" : "244",
  3552. "superClasses" : [ "11" ]
  3553. }, {
  3554. "iri" : "https://w3id.org/GDPRtEXT#WithdrawingConsent",
  3555. "baseIri" : "https://w3id.org/GDPRtEXT",
  3556. "instances" : 0,
  3557. "annotations" : {
  3558. "involves" : [ {
  3559. "identifier" : "involves",
  3560. "language" : "undefined",
  3561. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  3562. "type" : "iri"
  3563. }, {
  3564. "identifier" : "involves",
  3565. "language" : "undefined",
  3566. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  3567. "type" : "iri"
  3568. } ]
  3569. },
  3570. "label" : {
  3571. "IRI-based" : "WithdrawingConsent",
  3572. "undefined" : "Withdrawing Given Consent"
  3573. },
  3574. "comment" : {
  3575. "en" : "This activity represents the data subject withdrawing given consent."
  3576. },
  3577. "id" : "105",
  3578. "superClasses" : [ "106" ]
  3579. }, {
  3580. "iri" : "https://w3id.org/GDPRtEXT#AutomatedProcessing",
  3581. "baseIri" : "https://w3id.org/GDPRtEXT",
  3582. "instances" : 0,
  3583. "annotations" : {
  3584. "involves" : [ {
  3585. "identifier" : "involves",
  3586. "language" : "undefined",
  3587. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  3588. "type" : "iri"
  3589. } ]
  3590. },
  3591. "label" : {
  3592. "IRI-based" : "AutomatedProcessing",
  3593. "undefined" : "Automated Processing"
  3594. },
  3595. "subClasses" : [ "15" ],
  3596. "comment" : {
  3597. "en" : "This is automated processing of data subject's personal data."
  3598. },
  3599. "id" : "81",
  3600. "superClasses" : [ "67" ]
  3601. }, {
  3602. "iri" : "https://w3id.org/GDPRtEXT#AppointingSubProcessors",
  3603. "baseIri" : "https://w3id.org/GDPRtEXT",
  3604. "instances" : 0,
  3605. "annotations" : {
  3606. "isDefinedBy" : [ {
  3607. "identifier" : "isDefinedBy",
  3608. "language" : "undefined",
  3609. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-2",
  3610. "type" : "iri"
  3611. }, {
  3612. "identifier" : "isDefinedBy",
  3613. "language" : "undefined",
  3614. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-4",
  3615. "type" : "iri"
  3616. } ],
  3617. "involves" : [ {
  3618. "identifier" : "involves",
  3619. "language" : "undefined",
  3620. "value" : "https://w3id.org/GDPRtEXT#SubProcessor",
  3621. "type" : "iri"
  3622. }, {
  3623. "identifier" : "involves",
  3624. "language" : "undefined",
  3625. "value" : "https://w3id.org/GDPRtEXT#Processor",
  3626. "type" : "iri"
  3627. } ]
  3628. },
  3629. "label" : {
  3630. "IRI-based" : "AppointingSubProcessors",
  3631. "undefined" : "Appointing Sub-Processors"
  3632. },
  3633. "subClasses" : [ "169", "172" ],
  3634. "comment" : {
  3635. "en" : "These are the obligations for Processors over appointing sub-processors"
  3636. },
  3637. "id" : "170",
  3638. "superClasses" : [ "61" ]
  3639. }, {
  3640. "iri" : "https://w3id.org/GDPRtEXT#ProvideControllerWithInfoForCompliance",
  3641. "baseIri" : "https://w3id.org/GDPRtEXT",
  3642. "instances" : 0,
  3643. "annotations" : {
  3644. "involves" : [ {
  3645. "identifier" : "involves",
  3646. "language" : "undefined",
  3647. "value" : "https://w3id.org/GDPRtEXT#Controller",
  3648. "type" : "iri"
  3649. }, {
  3650. "identifier" : "involves",
  3651. "language" : "undefined",
  3652. "value" : "https://w3id.org/GDPRtEXT#Compliance",
  3653. "type" : "iri"
  3654. } ]
  3655. },
  3656. "label" : {
  3657. "IRI-based" : "ProvideControllerWithInfoForCompliance",
  3658. "undefined" : "Provide information for compliance"
  3659. },
  3660. "comment" : {
  3661. "en" : "The processor must provide the controller with the information necessary to demonstrate compliance"
  3662. },
  3663. "id" : "295",
  3664. "superClasses" : [ "61" ]
  3665. }, {
  3666. "iri" : "https://w3id.org/GDPRtEXT#ObtainingConsent",
  3667. "baseIri" : "https://w3id.org/GDPRtEXT",
  3668. "instances" : 0,
  3669. "annotations" : {
  3670. "isDefinedBy" : [ {
  3671. "identifier" : "isDefinedBy",
  3672. "language" : "undefined",
  3673. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  3674. "type" : "iri"
  3675. } ],
  3676. "involves" : [ {
  3677. "identifier" : "involves",
  3678. "language" : "undefined",
  3679. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  3680. "type" : "iri"
  3681. }, {
  3682. "identifier" : "involves",
  3683. "language" : "undefined",
  3684. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  3685. "type" : "iri"
  3686. } ]
  3687. },
  3688. "label" : {
  3689. "IRI-based" : "ObtainingConsent",
  3690. "undefined" : "Obtaining Consent from Data Subject"
  3691. },
  3692. "comment" : {
  3693. "en" : "The act of getting a data subject's consent."
  3694. },
  3695. "id" : "109",
  3696. "superClasses" : [ "106" ]
  3697. }, {
  3698. "iri" : "https://w3id.org/GDPRtEXT#Rights",
  3699. "baseIri" : "https://w3id.org/GDPRtEXT",
  3700. "instances" : 0,
  3701. "annotations" : {
  3702. "isDefinedBy" : [ {
  3703. "identifier" : "isDefinedBy",
  3704. "language" : "undefined",
  3705. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital59",
  3706. "type" : "iri"
  3707. }, {
  3708. "identifier" : "isDefinedBy",
  3709. "language" : "undefined",
  3710. "value" : "https://w3id.org/GDPRtEXT/gdpr#article12-2",
  3711. "type" : "iri"
  3712. } ]
  3713. },
  3714. "label" : {
  3715. "IRI-based" : "Rights",
  3716. "undefined" : "Data Subject's Rights"
  3717. },
  3718. "subClasses" : [ "174", "176", "94", "135", "138", "140", "124", "147", "113", "150" ],
  3719. "comment" : {
  3720. "en" : "The GDPR provides several rights to the data subjects which may be exercised at any time by the data subject and which are mandatory for the organisation to provide, comply with, and inform the data subject about."
  3721. },
  3722. "id" : "136",
  3723. "superClasses" : [ "11" ]
  3724. }, {
  3725. "iri" : "https://w3id.org/GDPRtEXT#LiabilityOfJointController",
  3726. "baseIri" : "https://w3id.org/GDPRtEXT",
  3727. "instances" : 0,
  3728. "annotations" : {
  3729. "isDefinedBy" : [ {
  3730. "identifier" : "isDefinedBy",
  3731. "language" : "undefined",
  3732. "value" : "https://w3id.org/GDPRtEXT/gdpr#article82-5",
  3733. "type" : "iri"
  3734. }, {
  3735. "identifier" : "isDefinedBy",
  3736. "language" : "undefined",
  3737. "value" : "https://w3id.org/GDPRtEXT/gdpr#article26-3",
  3738. "type" : "iri"
  3739. }, {
  3740. "identifier" : "isDefinedBy",
  3741. "language" : "undefined",
  3742. "value" : "https://w3id.org/GDPRtEXT/gdpr#article82-3",
  3743. "type" : "iri"
  3744. }, {
  3745. "identifier" : "isDefinedBy",
  3746. "language" : "undefined",
  3747. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital79",
  3748. "type" : "iri"
  3749. }, {
  3750. "identifier" : "isDefinedBy",
  3751. "language" : "undefined",
  3752. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital146",
  3753. "type" : "iri"
  3754. } ],
  3755. "involves" : [ {
  3756. "identifier" : "involves",
  3757. "language" : "undefined",
  3758. "value" : "https://w3id.org/GDPRtEXT#JointController",
  3759. "type" : "iri"
  3760. } ]
  3761. },
  3762. "label" : {
  3763. "IRI-based" : "LiabilityOfJointController",
  3764. "undefined" : "Liability of Joint-Controllers"
  3765. },
  3766. "comment" : {
  3767. "en" : "These specify the liability of Joint Controllers, i.e. cases where more than one Controller share the responsiblity."
  3768. },
  3769. "id" : "377",
  3770. "superClasses" : [ "59" ]
  3771. }, {
  3772. "iri" : "https://w3id.org/GDPRtEXT#Entity",
  3773. "baseIri" : "https://w3id.org/GDPRtEXT",
  3774. "instances" : 0,
  3775. "label" : {
  3776. "IRI-based" : "Entity",
  3777. "undefined" : "Entity"
  3778. },
  3779. "subClasses" : [ "152", "154", "129", "133", "83", "87", "92", "98", "101" ],
  3780. "comment" : {
  3781. "en" : "A general term for any institution, company, corporation, partnership, government agency, university, or any other organization including individuals."
  3782. },
  3783. "id" : "84",
  3784. "superClasses" : [ "11" ]
  3785. }, {
  3786. "iri" : "https://w3id.org/GDPRtEXT#ConsentActivity",
  3787. "baseIri" : "https://w3id.org/GDPRtEXT",
  3788. "instances" : 0,
  3789. "annotations" : {
  3790. "involves" : [ {
  3791. "identifier" : "involves",
  3792. "language" : "undefined",
  3793. "value" : "https://w3id.org/GDPRtEXT#Consent",
  3794. "type" : "iri"
  3795. } ]
  3796. },
  3797. "label" : {
  3798. "IRI-based" : "ConsentActivity",
  3799. "undefined" : "Consent Activity"
  3800. },
  3801. "subClasses" : [ "105", "109" ],
  3802. "comment" : {
  3803. "undefined" : "An activity involving data subject's consent."
  3804. },
  3805. "id" : "106",
  3806. "superClasses" : [ "208" ]
  3807. }, {
  3808. "iri" : "https://w3id.org/GDPRtEXT#RightToRectification",
  3809. "baseIri" : "https://w3id.org/GDPRtEXT",
  3810. "instances" : 0,
  3811. "annotations" : {
  3812. "isDefinedBy" : [ {
  3813. "identifier" : "isDefinedBy",
  3814. "language" : "undefined",
  3815. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital59",
  3816. "type" : "iri"
  3817. }, {
  3818. "identifier" : "isDefinedBy",
  3819. "language" : "undefined",
  3820. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital39",
  3821. "type" : "iri"
  3822. }, {
  3823. "identifier" : "isDefinedBy",
  3824. "language" : "undefined",
  3825. "value" : "https://w3id.org/GDPRtEXT/gdpr#article16",
  3826. "type" : "iri"
  3827. }, {
  3828. "identifier" : "isDefinedBy",
  3829. "language" : "undefined",
  3830. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital65",
  3831. "type" : "iri"
  3832. }, {
  3833. "identifier" : "isDefinedBy",
  3834. "language" : "undefined",
  3835. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-1-d",
  3836. "type" : "iri"
  3837. }, {
  3838. "identifier" : "isDefinedBy",
  3839. "language" : "undefined",
  3840. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital73",
  3841. "type" : "iri"
  3842. } ],
  3843. "involves" : [ {
  3844. "identifier" : "involves",
  3845. "language" : "undefined",
  3846. "value" : "https://w3id.org/GDPRtEXT#RectifyData",
  3847. "type" : "iri"
  3848. }, {
  3849. "identifier" : "involves",
  3850. "language" : "undefined",
  3851. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  3852. "type" : "iri"
  3853. } ]
  3854. },
  3855. "label" : {
  3856. "IRI-based" : "RightToRectification",
  3857. "undefined" : "Right to rectify"
  3858. },
  3859. "comment" : {
  3860. "en" : "The data subject has a right to recitify their personal data"
  3861. },
  3862. "id" : "147",
  3863. "superClasses" : [ "136" ]
  3864. }, {
  3865. "iri" : "https://w3id.org/GDPRtEXT#RightToObjectToProcessing",
  3866. "baseIri" : "https://w3id.org/GDPRtEXT",
  3867. "instances" : 0,
  3868. "annotations" : {
  3869. "isDefinedBy" : [ {
  3870. "identifier" : "isDefinedBy",
  3871. "language" : "undefined",
  3872. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital59",
  3873. "type" : "iri"
  3874. }, {
  3875. "identifier" : "isDefinedBy",
  3876. "language" : "undefined",
  3877. "value" : "https://w3id.org/GDPRtEXT/gdpr#article21",
  3878. "type" : "iri"
  3879. }, {
  3880. "identifier" : "isDefinedBy",
  3881. "language" : "undefined",
  3882. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital69",
  3883. "type" : "iri"
  3884. }, {
  3885. "identifier" : "isDefinedBy",
  3886. "language" : "undefined",
  3887. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital73",
  3888. "type" : "iri"
  3889. }, {
  3890. "identifier" : "isDefinedBy",
  3891. "language" : "undefined",
  3892. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital70",
  3893. "type" : "iri"
  3894. }, {
  3895. "identifier" : "isDefinedBy",
  3896. "language" : "undefined",
  3897. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital50",
  3898. "type" : "iri"
  3899. } ],
  3900. "involves" : [ {
  3901. "identifier" : "involves",
  3902. "language" : "undefined",
  3903. "value" : "https://w3id.org/GDPRtEXT#Processing",
  3904. "type" : "iri"
  3905. }, {
  3906. "identifier" : "involves",
  3907. "language" : "undefined",
  3908. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  3909. "type" : "iri"
  3910. }, {
  3911. "identifier" : "involves",
  3912. "language" : "undefined",
  3913. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  3914. "type" : "iri"
  3915. } ]
  3916. },
  3917. "label" : {
  3918. "IRI-based" : "RightToObjectToProcessing",
  3919. "undefined" : "Right to object processing"
  3920. },
  3921. "comment" : {
  3922. "en" : "The data subject has the right to object to processing of their personal data"
  3923. },
  3924. "id" : "150",
  3925. "superClasses" : [ "136" ]
  3926. }, {
  3927. "iri" : "https://w3id.org/GDPRtEXT#ProcessorRepresentative",
  3928. "baseIri" : "https://w3id.org/GDPRtEXT",
  3929. "instances" : 0,
  3930. "annotations" : {
  3931. "involves" : [ {
  3932. "identifier" : "involves",
  3933. "language" : "undefined",
  3934. "value" : "https://w3id.org/GDPRtEXT#Processor",
  3935. "type" : "iri"
  3936. } ]
  3937. },
  3938. "label" : {
  3939. "IRI-based" : "ProcessorRepresentative",
  3940. "undefined" : "Processor Representative"
  3941. },
  3942. "comment" : {
  3943. "en" : "A natural or legal person established in the Union who, designated by the processor in writing, represents the processor with regard to their respective obligations under the GDPR."
  3944. },
  3945. "id" : "154",
  3946. "superClasses" : [ "84" ]
  3947. }, {
  3948. "iri" : "https://w3id.org/GDPRtEXT#OnlyActOnDocumentedInstructionFromController",
  3949. "baseIri" : "https://w3id.org/GDPRtEXT",
  3950. "instances" : 0,
  3951. "annotations" : {
  3952. "involves" : [ {
  3953. "identifier" : "involves",
  3954. "language" : "undefined",
  3955. "value" : "https://w3id.org/GDPRtEXT#Controller",
  3956. "type" : "iri"
  3957. } ]
  3958. },
  3959. "label" : {
  3960. "IRI-based" : "OnlyActOnDocumentedInstructionFromController",
  3961. "undefined" : "Only act on Controller instructions"
  3962. },
  3963. "comment" : {
  3964. "en" : "The processor must only act on the intructions provided and documented by the controller"
  3965. },
  3966. "id" : "289",
  3967. "superClasses" : [ "61" ]
  3968. }, {
  3969. "iri" : "https://w3id.org/GDPRtEXT#ShouldBeStructured",
  3970. "baseIri" : "https://w3id.org/GDPRtEXT",
  3971. "instances" : 0,
  3972. "label" : {
  3973. "IRI-based" : "ShouldBeStructured",
  3974. "undefined" : "Should be structured"
  3975. },
  3976. "comment" : {
  3977. "en" : "The provided copy of personal data should be structured"
  3978. },
  3979. "id" : "167",
  3980. "superClasses" : [ "89" ]
  3981. }, {
  3982. "iri" : "https://w3id.org/GDPRtEXT#SensitivePersonalData",
  3983. "baseIri" : "https://w3id.org/GDPRtEXT",
  3984. "instances" : 0,
  3985. "annotations" : {
  3986. "isDefinedBy" : [ {
  3987. "identifier" : "isDefinedBy",
  3988. "language" : "undefined",
  3989. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-1",
  3990. "type" : "iri"
  3991. }, {
  3992. "identifier" : "isDefinedBy",
  3993. "language" : "undefined",
  3994. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital51",
  3995. "type" : "iri"
  3996. }, {
  3997. "identifier" : "isDefinedBy",
  3998. "language" : "undefined",
  3999. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital10",
  4000. "type" : "iri"
  4001. }, {
  4002. "identifier" : "isDefinedBy",
  4003. "language" : "undefined",
  4004. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital35",
  4005. "type" : "iri"
  4006. }, {
  4007. "identifier" : "isDefinedBy",
  4008. "language" : "undefined",
  4009. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital34",
  4010. "type" : "iri"
  4011. } ],
  4012. "involves" : [ {
  4013. "identifier" : "involves",
  4014. "language" : "undefined",
  4015. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  4016. "type" : "iri"
  4017. } ]
  4018. },
  4019. "label" : {
  4020. "IRI-based" : "SensitivePersonalData",
  4021. "undefined" : "Sensitive Personal Data"
  4022. },
  4023. "subClasses" : [ "115", "69", "75", "79" ],
  4024. "comment" : {
  4025. "en" : "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."
  4026. },
  4027. "id" : "31",
  4028. "superClasses" : [ "29" ]
  4029. }, {
  4030. "iri" : "https://w3id.org/GDPRtEXT#ValidConsent",
  4031. "baseIri" : "https://w3id.org/GDPRtEXT",
  4032. "instances" : 0,
  4033. "annotations" : {
  4034. "isDefinedBy" : [ {
  4035. "identifier" : "isDefinedBy",
  4036. "language" : "undefined",
  4037. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-11",
  4038. "type" : "iri"
  4039. }, {
  4040. "identifier" : "isDefinedBy",
  4041. "language" : "undefined",
  4042. "value" : "https://w3id.org/GDPRtEXT/gdpr#article7",
  4043. "type" : "iri"
  4044. }, {
  4045. "identifier" : "isDefinedBy",
  4046. "language" : "undefined",
  4047. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  4048. "type" : "iri"
  4049. }, {
  4050. "identifier" : "isDefinedBy",
  4051. "language" : "undefined",
  4052. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1-a",
  4053. "type" : "iri"
  4054. } ],
  4055. "involves" : [ {
  4056. "identifier" : "involves",
  4057. "language" : "undefined",
  4058. "value" : "https://w3id.org/GDPRtEXT#FreelyGivenConsentObligation",
  4059. "type" : "iri"
  4060. }, {
  4061. "identifier" : "involves",
  4062. "language" : "undefined",
  4063. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  4064. "type" : "iri"
  4065. }, {
  4066. "identifier" : "involves",
  4067. "language" : "undefined",
  4068. "value" : "https://w3id.org/GDPRtEXT#SpecificConsentObligation",
  4069. "type" : "iri"
  4070. }, {
  4071. "identifier" : "involves",
  4072. "language" : "undefined",
  4073. "value" : "https://w3id.org/GDPRtEXT#InformedConsentObligation",
  4074. "type" : "iri"
  4075. } ]
  4076. },
  4077. "label" : {
  4078. "IRI-based" : "ValidConsent",
  4079. "undefined" : "Valid Consent"
  4080. },
  4081. "subClasses" : [ "4", "9", "24", "28" ],
  4082. "comment" : {
  4083. "en" : "Consent is termed to be valid if it passes all the criteria or obligations laid down by the GDPR."
  4084. },
  4085. "id" : "5",
  4086. "superClasses" : [ "203", "159" ]
  4087. }, {
  4088. "iri" : "https://w3id.org/GDPRtEXT#MaintainRecordsOfProcessingActivities",
  4089. "baseIri" : "https://w3id.org/GDPRtEXT",
  4090. "instances" : 0,
  4091. "annotations" : {
  4092. "isDefinedBy" : [ {
  4093. "identifier" : "isDefinedBy",
  4094. "language" : "undefined",
  4095. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital82",
  4096. "type" : "iri"
  4097. }, {
  4098. "identifier" : "isDefinedBy",
  4099. "language" : "undefined",
  4100. "value" : "https://w3id.org/GDPRtEXT/gdpr#article30",
  4101. "type" : "iri"
  4102. }, {
  4103. "identifier" : "isDefinedBy",
  4104. "language" : "undefined",
  4105. "value" : "https://w3id.org/GDPRtEXT/gdpr#article30-2",
  4106. "type" : "iri"
  4107. }, {
  4108. "identifier" : "isDefinedBy",
  4109. "language" : "undefined",
  4110. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital89",
  4111. "type" : "iri"
  4112. } ],
  4113. "involves" : [ {
  4114. "identifier" : "involves",
  4115. "language" : "undefined",
  4116. "value" : "https://w3id.org/GDPRtEXT#Processing",
  4117. "type" : "iri"
  4118. } ]
  4119. },
  4120. "label" : {
  4121. "IRI-based" : "MaintainRecordsOfProcessingActivities",
  4122. "undefined" : "Maintain records for processing"
  4123. },
  4124. "subClasses" : [ "35", "45", "49", "272", "276", "279" ],
  4125. "comment" : {
  4126. "en" : "This obligation requires the Controller/Processor to maintain adequate records about their processing activities."
  4127. },
  4128. "id" : "36",
  4129. "superClasses" : [ "59", "61" ]
  4130. }, {
  4131. "iri" : "https://w3id.org/GDPRtEXT#LegitimateInterest",
  4132. "baseIri" : "https://w3id.org/GDPRtEXT",
  4133. "instances" : 0,
  4134. "annotations" : {
  4135. "isDefinedBy" : [ {
  4136. "identifier" : "isDefinedBy",
  4137. "language" : "undefined",
  4138. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1-f",
  4139. "type" : "iri"
  4140. }, {
  4141. "identifier" : "isDefinedBy",
  4142. "language" : "undefined",
  4143. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital48",
  4144. "type" : "iri"
  4145. }, {
  4146. "identifier" : "isDefinedBy",
  4147. "language" : "undefined",
  4148. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital47",
  4149. "type" : "iri"
  4150. } ],
  4151. "involves" : [ {
  4152. "identifier" : "involves",
  4153. "language" : "undefined",
  4154. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  4155. "type" : "iri"
  4156. } ]
  4157. },
  4158. "label" : {
  4159. "IRI-based" : "LegitimateInterest",
  4160. "undefined" : "Legitimate Interests"
  4161. },
  4162. "comment" : {
  4163. "en" : "Lawful basis for processing is provided through the legitimate interests pursued by the Controller or by a third party"
  4164. },
  4165. "id" : "385",
  4166. "superClasses" : [ "217" ]
  4167. }, {
  4168. "iri" : "https://w3id.org/GDPRtEXT#Consent",
  4169. "baseIri" : "https://w3id.org/GDPRtEXT",
  4170. "instances" : 0,
  4171. "annotations" : {
  4172. "isDefinedBy" : [ {
  4173. "identifier" : "isDefinedBy",
  4174. "language" : "undefined",
  4175. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1",
  4176. "type" : "iri"
  4177. }, {
  4178. "identifier" : "isDefinedBy",
  4179. "language" : "undefined",
  4180. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital40",
  4181. "type" : "iri"
  4182. }, {
  4183. "identifier" : "isDefinedBy",
  4184. "language" : "undefined",
  4185. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-11",
  4186. "type" : "iri"
  4187. }, {
  4188. "identifier" : "isDefinedBy",
  4189. "language" : "undefined",
  4190. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  4191. "type" : "iri"
  4192. } ]
  4193. },
  4194. "label" : {
  4195. "IRI-based" : "Consent",
  4196. "undefined" : "Consent"
  4197. },
  4198. "subClasses" : [ "159" ],
  4199. "comment" : {
  4200. "en" : "Consent in the context of the GDPR refers to the assent or agreement by the data subject in relation to their personal data for the proposed processing activities associated with one or more organisations."
  4201. },
  4202. "id" : "234",
  4203. "superClasses" : [ "11" ]
  4204. }, {
  4205. "iri" : "https://w3id.org/GDPRtEXT#Data",
  4206. "baseIri" : "https://w3id.org/GDPRtEXT",
  4207. "instances" : 0,
  4208. "label" : {
  4209. "IRI-based" : "Data",
  4210. "undefined" : "Data"
  4211. },
  4212. "subClasses" : [ "241", "29", "256" ],
  4213. "comment" : {
  4214. "en" : "A generic term to refer to Data."
  4215. },
  4216. "id" : "30",
  4217. "superClasses" : [ "11" ]
  4218. }, {
  4219. "iri" : "https://w3id.org/GDPRtEXT#RetentionOfPersonalData",
  4220. "baseIri" : "https://w3id.org/GDPRtEXT",
  4221. "instances" : 0,
  4222. "annotations" : {
  4223. "involves" : [ {
  4224. "identifier" : "involves",
  4225. "language" : "undefined",
  4226. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  4227. "type" : "iri"
  4228. }, {
  4229. "identifier" : "involves",
  4230. "language" : "undefined",
  4231. "value" : "https://w3id.org/GDPRtEXT#StoreData",
  4232. "type" : "iri"
  4233. } ]
  4234. },
  4235. "label" : {
  4236. "IRI-based" : "RetentionOfPersonalData",
  4237. "undefined" : "Data Retention"
  4238. },
  4239. "subClasses" : [ "266", "144", "300", "263", "306", "310" ],
  4240. "comment" : {
  4241. "en" : "These are the obligations specified by the GDPR on the retention of personal data"
  4242. },
  4243. "id" : "145",
  4244. "superClasses" : [ "262" ]
  4245. }, {
  4246. "iri" : "https://w3id.org/GDPRtEXT#ProcessorObligation",
  4247. "baseIri" : "https://w3id.org/GDPRtEXT",
  4248. "instances" : 0,
  4249. "annotations" : {
  4250. "involves" : [ {
  4251. "identifier" : "involves",
  4252. "language" : "undefined",
  4253. "value" : "https://w3id.org/GDPRtEXT#Processor",
  4254. "type" : "iri"
  4255. } ]
  4256. },
  4257. "label" : {
  4258. "IRI-based" : "ProcessorObligation",
  4259. "undefined" : "Processor Obligations"
  4260. },
  4261. "subClasses" : [ "292", "207", "295", "102", "289", "287", "60", "356", "301", "360", "358", "351", "36", "170" ],
  4262. "comment" : {
  4263. "en" : "These are the obligations specified by the GDPR in the context of Processors"
  4264. },
  4265. "id" : "61",
  4266. "superClasses" : [ "262" ]
  4267. }, {
  4268. "iri" : "https://w3id.org/GDPRtEXT#ExclusionException",
  4269. "baseIri" : "https://w3id.org/GDPRtEXT",
  4270. "instances" : 0,
  4271. "label" : {
  4272. "IRI-based" : "ExclusionException",
  4273. "undefined" : "Exlcusions and Exceptions"
  4274. },
  4275. "subClasses" : [ "43", "64", "110", "341", "335", "322", "339", "337", "62", "328", "247", "331" ],
  4276. "comment" : {
  4277. "en" : "Exclusions and Exemptions provided by the GDPR for not complying with the specified obligations."
  4278. },
  4279. "id" : "63",
  4280. "superClasses" : [ "11" ]
  4281. }, {
  4282. "iri" : "https://w3id.org/GDPRtEXT#GeneticData",
  4283. "baseIri" : "https://w3id.org/GDPRtEXT",
  4284. "instances" : 0,
  4285. "annotations" : {
  4286. "isDefinedBy" : [ {
  4287. "identifier" : "isDefinedBy",
  4288. "language" : "undefined",
  4289. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital34",
  4290. "type" : "iri"
  4291. } ],
  4292. "involves" : [ {
  4293. "identifier" : "involves",
  4294. "language" : "undefined",
  4295. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  4296. "type" : "iri"
  4297. } ]
  4298. },
  4299. "label" : {
  4300. "IRI-based" : "GeneticData",
  4301. "undefined" : "Genetic Data"
  4302. },
  4303. "comment" : {
  4304. "en" : "Personal data relating to the inherited or acquired genetic characteristics of a natural person which result from the analysis of a biological sample from the natural person in question, in particular chromosomal, deoxyribonucleic acid (DNA) or ribonucleic acid (RNA) analysis, or from the analysis of another element enabling equivalent information to be obtained."
  4305. },
  4306. "id" : "75",
  4307. "superClasses" : [ "31" ]
  4308. }, {
  4309. "iri" : "https://w3id.org/GDPRtEXT#ProcessorControllerAgreement",
  4310. "baseIri" : "https://w3id.org/GDPRtEXT",
  4311. "instances" : 0,
  4312. "annotations" : {
  4313. "involves" : [ {
  4314. "identifier" : "involves",
  4315. "language" : "undefined",
  4316. "value" : "https://w3id.org/GDPRtEXT#Controller",
  4317. "type" : "iri"
  4318. }, {
  4319. "identifier" : "involves",
  4320. "language" : "undefined",
  4321. "value" : "https://w3id.org/GDPRtEXT#Processor",
  4322. "type" : "iri"
  4323. }, {
  4324. "identifier" : "involves",
  4325. "language" : "undefined",
  4326. "value" : "https://w3id.org/GDPRtEXT#AppointmentOfProcessors",
  4327. "type" : "iri"
  4328. } ]
  4329. },
  4330. "label" : {
  4331. "IRI-based" : "ProcessorControllerAgreement",
  4332. "undefined" : "Agreement between Processor and Controller"
  4333. },
  4334. "comment" : {
  4335. "undefined" : "Signifies the agreement between Controller and Processors for processing of personal data"
  4336. },
  4337. "id" : "229",
  4338. "superClasses" : [ "11" ]
  4339. }, {
  4340. "iri" : "https://w3id.org/GDPRtEXT#NotFurtherProcessedThanOriginalPurpose",
  4341. "baseIri" : "https://w3id.org/GDPRtEXT",
  4342. "instances" : 0,
  4343. "annotations" : {
  4344. "involves" : [ {
  4345. "identifier" : "involves",
  4346. "language" : "undefined",
  4347. "value" : "https://w3id.org/GDPRtEXT#Processing",
  4348. "type" : "iri"
  4349. } ]
  4350. },
  4351. "label" : {
  4352. "IRI-based" : "NotFurtherProcessedThanOriginalPurpose",
  4353. "undefined" : "Not further processed"
  4354. },
  4355. "comment" : {
  4356. "en" : "This obligation specifies that the collected personal data should not be processed beyond the purpose for which it was originally collected without an updated consent for the proposed purposes."
  4357. },
  4358. "id" : "317",
  4359. "superClasses" : [ "71" ]
  4360. }, {
  4361. "iri" : "https://w3id.org/GDPRtEXT#AutomatedDecisionMakingWithSignificantEffect",
  4362. "baseIri" : "https://w3id.org/GDPRtEXT",
  4363. "instances" : 0,
  4364. "annotations" : {
  4365. "involves" : [ {
  4366. "identifier" : "involves",
  4367. "language" : "undefined",
  4368. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  4369. "type" : "iri"
  4370. }, {
  4371. "identifier" : "involves",
  4372. "language" : "undefined",
  4373. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  4374. "type" : "iri"
  4375. } ]
  4376. },
  4377. "label" : {
  4378. "IRI-based" : "AutomatedDecisionMakingWithSignificantEffect",
  4379. "undefined" : "Automatic decision making with significant effect"
  4380. },
  4381. "comment" : {
  4382. "en" : "This type of processing involves automated processing that does decision making having significant effects on the data subject.",
  4383. "undefined" : "Automated decision making with significant effect"
  4384. },
  4385. "id" : "15",
  4386. "superClasses" : [ "81", "10" ]
  4387. }, {
  4388. "iri" : "https://w3id.org/GDPRtEXT#RightToNotBeEvaluatedThroughAutomatedProcessing",
  4389. "baseIri" : "https://w3id.org/GDPRtEXT",
  4390. "instances" : 0,
  4391. "annotations" : {
  4392. "isDefinedBy" : [ {
  4393. "identifier" : "isDefinedBy",
  4394. "language" : "undefined",
  4395. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital71",
  4396. "type" : "iri"
  4397. }, {
  4398. "identifier" : "isDefinedBy",
  4399. "language" : "undefined",
  4400. "value" : "https://w3id.org/GDPRtEXT/gdpr#article22",
  4401. "type" : "iri"
  4402. }, {
  4403. "identifier" : "isDefinedBy",
  4404. "language" : "undefined",
  4405. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital75",
  4406. "type" : "iri"
  4407. } ],
  4408. "involves" : [ {
  4409. "identifier" : "involves",
  4410. "language" : "undefined",
  4411. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  4412. "type" : "iri"
  4413. }, {
  4414. "identifier" : "involves",
  4415. "language" : "undefined",
  4416. "value" : "https://w3id.org/GDPRtEXT#AutomatedProcessing",
  4417. "type" : "iri"
  4418. } ]
  4419. },
  4420. "label" : {
  4421. "IRI-based" : "RightToNotBeEvaluatedThroughAutomatedProcessing",
  4422. "undefined" : "Right to not be evaluated through automated processing"
  4423. },
  4424. "comment" : {
  4425. "en" : "The data subject has a right to not be evaluated through automated processing"
  4426. },
  4427. "id" : "176",
  4428. "superClasses" : [ "136" ]
  4429. }, {
  4430. "iri" : "https://w3id.org/GDPRtEXT#ProcessingUsingUntestedTechnologies",
  4431. "baseIri" : "https://w3id.org/GDPRtEXT",
  4432. "instances" : 0,
  4433. "annotations" : {
  4434. "involves" : [ {
  4435. "identifier" : "involves",
  4436. "language" : "undefined",
  4437. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  4438. "type" : "iri"
  4439. } ]
  4440. },
  4441. "label" : {
  4442. "IRI-based" : "ProcessingUsingUntestedTechnologies",
  4443. "undefined" : "Processing using untested technologies"
  4444. },
  4445. "comment" : {
  4446. "en" : "This type of processing uses technologies that are new or have not yet been deemed to be fit or stable for usage."
  4447. },
  4448. "id" : "17",
  4449. "superClasses" : [ "10", "67" ]
  4450. }, {
  4451. "iri" : "https://w3id.org/GDPRtEXT#RightToRestrictProcessing",
  4452. "baseIri" : "https://w3id.org/GDPRtEXT",
  4453. "instances" : 0,
  4454. "annotations" : {
  4455. "isDefinedBy" : [ {
  4456. "identifier" : "isDefinedBy",
  4457. "language" : "undefined",
  4458. "value" : "https://w3id.org/GDPRtEXT/gdpr#article18",
  4459. "type" : "iri"
  4460. }, {
  4461. "identifier" : "isDefinedBy",
  4462. "language" : "undefined",
  4463. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital67",
  4464. "type" : "iri"
  4465. } ],
  4466. "involves" : [ {
  4467. "identifier" : "involves",
  4468. "language" : "undefined",
  4469. "value" : "https://w3id.org/GDPRtEXT#Processing",
  4470. "type" : "iri"
  4471. }, {
  4472. "identifier" : "involves",
  4473. "language" : "undefined",
  4474. "value" : "https://w3id.org/GDPRtEXT#ProcessingIsUnlawful",
  4475. "type" : "iri"
  4476. }, {
  4477. "identifier" : "involves",
  4478. "language" : "undefined",
  4479. "value" : "https://w3id.org/GDPRtEXT#DataNoLongerNeededForOriginalPurpose",
  4480. "type" : "iri"
  4481. }, {
  4482. "identifier" : "involves",
  4483. "language" : "undefined",
  4484. "value" : "https://w3id.org/GDPRtEXT#AccuracyIsContested",
  4485. "type" : "iri"
  4486. }, {
  4487. "identifier" : "involves",
  4488. "language" : "undefined",
  4489. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  4490. "type" : "iri"
  4491. } ]
  4492. },
  4493. "label" : {
  4494. "IRI-based" : "RightToRestrictProcessing",
  4495. "undefined" : "Right to restrict processing"
  4496. },
  4497. "subClasses" : [ "285", "123", "214" ],
  4498. "comment" : {
  4499. "en" : "The data subject has the rights to restrict the processing of their personal data"
  4500. },
  4501. "id" : "124",
  4502. "superClasses" : [ "136" ]
  4503. }, {
  4504. "iri" : "https://w3id.org/GDPRtEXT#PurposeLimitation",
  4505. "baseIri" : "https://w3id.org/GDPRtEXT",
  4506. "instances" : 0,
  4507. "annotations" : {
  4508. "isDefinedBy" : [ {
  4509. "identifier" : "isDefinedBy",
  4510. "language" : "undefined",
  4511. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-1-b",
  4512. "type" : "iri"
  4513. }, {
  4514. "identifier" : "isDefinedBy",
  4515. "language" : "undefined",
  4516. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital50",
  4517. "type" : "iri"
  4518. } ],
  4519. "involves" : [ {
  4520. "identifier" : "involves",
  4521. "language" : "undefined",
  4522. "value" : "https://w3id.org/GDPRtEXT#LegitimatePurpose",
  4523. "type" : "iri"
  4524. }, {
  4525. "identifier" : "involves",
  4526. "language" : "undefined",
  4527. "value" : "https://w3id.org/GDPRtEXT#ArchiveData",
  4528. "type" : "iri"
  4529. }, {
  4530. "identifier" : "involves",
  4531. "language" : "undefined",
  4532. "value" : "https://w3id.org/GDPRtEXT#SpecifiedPurpose",
  4533. "type" : "iri"
  4534. }, {
  4535. "identifier" : "involves",
  4536. "language" : "undefined",
  4537. "value" : "https://w3id.org/GDPRtEXT#NotFurtherProcessedThanOriginalPurpose",
  4538. "type" : "iri"
  4539. }, {
  4540. "identifier" : "involves",
  4541. "language" : "undefined",
  4542. "value" : "https://w3id.org/GDPRtEXT#ExplicitPurpose",
  4543. "type" : "iri"
  4544. }, {
  4545. "identifier" : "involves",
  4546. "language" : "undefined",
  4547. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  4548. "type" : "iri"
  4549. }, {
  4550. "identifier" : "involves",
  4551. "language" : "undefined",
  4552. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  4553. "type" : "iri"
  4554. }, {
  4555. "identifier" : "involves",
  4556. "language" : "undefined",
  4557. "value" : "https://w3id.org/GDPRtEXT#HistoricStatisticScientificPurposes",
  4558. "type" : "iri"
  4559. } ]
  4560. },
  4561. "label" : {
  4562. "IRI-based" : "PurposeLimitation",
  4563. "undefined" : "Principle of Purpose Limitation"
  4564. },
  4565. "comment" : {
  4566. "en" : "The principle of purpose limitation states that personal data must be collected for specified, explicit and legitimate purposes and not further processed in a manner that is incompatible with those purposes; further processing for archiving purposes in the public interest, scientific or historical research purposes or statistical purposes shall, in accordance with Article 89(1) of the GDPR, not be considered to be incompatible with the initial purposes."
  4567. },
  4568. "id" : "33",
  4569. "superClasses" : [ "2" ]
  4570. }, {
  4571. "iri" : "https://w3id.org/GDPRtEXT#ControllerObligation",
  4572. "baseIri" : "https://w3id.org/GDPRtEXT",
  4573. "instances" : 0,
  4574. "annotations" : {
  4575. "involves" : [ {
  4576. "identifier" : "involves",
  4577. "language" : "undefined",
  4578. "value" : "https://w3id.org/GDPRtEXT#Controller",
  4579. "type" : "iri"
  4580. } ]
  4581. },
  4582. "label" : {
  4583. "IRI-based" : "ControllerObligation",
  4584. "undefined" : "Controller Obligation"
  4585. },
  4586. "subClasses" : [ "207", "346", "102", "213", "58", "120", "347", "375", "36", "356", "377" ],
  4587. "comment" : {
  4588. "en" : "These are the obligations specified by the GDPR as being specifically the responsbility of the Controller."
  4589. },
  4590. "id" : "59",
  4591. "superClasses" : [ "262" ]
  4592. }, {
  4593. "iri" : "https://w3id.org/GDPRtEXT#ExemptedByNationalLaw",
  4594. "baseIri" : "https://w3id.org/GDPRtEXT",
  4595. "instances" : 0,
  4596. "annotations" : {
  4597. "isDefinedBy" : [ {
  4598. "identifier" : "isDefinedBy",
  4599. "language" : "undefined",
  4600. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-4",
  4601. "type" : "iri"
  4602. } ]
  4603. },
  4604. "label" : {
  4605. "IRI-based" : "ExemptedByNationalLaw",
  4606. "undefined" : "Exempted by National Law"
  4607. },
  4608. "comment" : {
  4609. "en" : "Lawful basis for processing is provided by National Law"
  4610. },
  4611. "id" : "382",
  4612. "superClasses" : [ "217" ]
  4613. }, {
  4614. "iri" : "https://w3id.org/GDPRtEXT#InformControllerOfConflictWithLaw",
  4615. "baseIri" : "https://w3id.org/GDPRtEXT",
  4616. "instances" : 0,
  4617. "annotations" : {
  4618. "isDefinedBy" : [ {
  4619. "identifier" : "isDefinedBy",
  4620. "language" : "undefined",
  4621. "value" : "https://w3id.org/GDPRtEXT/gdpr#article28-3-4",
  4622. "type" : "iri"
  4623. } ],
  4624. "involves" : [ {
  4625. "identifier" : "involves",
  4626. "language" : "undefined",
  4627. "value" : "https://w3id.org/GDPRtEXT#Controller",
  4628. "type" : "iri"
  4629. } ]
  4630. },
  4631. "label" : {
  4632. "IRI-based" : "InformControllerOfConflictWithLaw",
  4633. "undefined" : "Inform Controller of conflict with law"
  4634. },
  4635. "comment" : {
  4636. "en" : "In case of conflict with the controller's intructions and the law, the processor must immediately inform the controller of this conflict"
  4637. },
  4638. "id" : "351",
  4639. "superClasses" : [ "61" ]
  4640. }, {
  4641. "iri" : "https://w3id.org/GDPRtEXT#SubProcessorMustFollowSameTermsAsProcessorControllerAgreement",
  4642. "baseIri" : "https://w3id.org/GDPRtEXT",
  4643. "instances" : 0,
  4644. "annotations" : {
  4645. "involves" : [ {
  4646. "identifier" : "involves",
  4647. "language" : "undefined",
  4648. "value" : "https://w3id.org/GDPRtEXT#SubProcessor",
  4649. "type" : "iri"
  4650. }, {
  4651. "identifier" : "involves",
  4652. "language" : "undefined",
  4653. "value" : "https://w3id.org/GDPRtEXT#ProcessorControllerAgreement",
  4654. "type" : "iri"
  4655. } ]
  4656. },
  4657. "label" : {
  4658. "IRI-based" : "SubProcessorMustFollowSameTermsAsProcessorControllerAgreement",
  4659. "undefined" : "Follow same terms"
  4660. },
  4661. "comment" : {
  4662. "en" : "Sub-processors must follow the same rules and obligations (or terms) as the agreement between processor and controller."
  4663. },
  4664. "id" : "172",
  4665. "superClasses" : [ "170" ]
  4666. }, {
  4667. "iri" : "https://w3id.org/GDPRtEXT#Activity",
  4668. "baseIri" : "https://w3id.org/GDPRtEXT",
  4669. "instances" : 0,
  4670. "label" : {
  4671. "IRI-based" : "Activity",
  4672. "undefined" : "Activity"
  4673. },
  4674. "subClasses" : [ "207", "120", "347", "143", "265", "12", "343", "274", "362", "106", "66", "417", "67", "239" ],
  4675. "comment" : {
  4676. "en" : "An Activity signifies some process(es) or step(s) towards specific deed(s), action(s), function(s), or sphere(s) of action."
  4677. },
  4678. "id" : "208",
  4679. "superClasses" : [ "11" ]
  4680. }, {
  4681. "iri" : "https://w3id.org/GDPRtEXT#NotFromSilenceOrInactivityConsentObligation",
  4682. "baseIri" : "https://w3id.org/GDPRtEXT",
  4683. "instances" : 0,
  4684. "annotations" : {
  4685. "isDefinedBy" : [ {
  4686. "identifier" : "isDefinedBy",
  4687. "language" : "undefined",
  4688. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  4689. "type" : "iri"
  4690. } ],
  4691. "involves" : [ {
  4692. "identifier" : "involves",
  4693. "language" : "undefined",
  4694. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  4695. "type" : "iri"
  4696. } ]
  4697. },
  4698. "label" : {
  4699. "IRI-based" : "NotFromSilenceOrInactivityConsentObligation",
  4700. "undefined" : "Not from silence or inactivity"
  4701. },
  4702. "comment" : {
  4703. "en" : "Consent should not be obtained from silence or inactivity of the data subject"
  4704. },
  4705. "id" : "222",
  4706. "superClasses" : [ "203" ]
  4707. }, {
  4708. "iri" : "https://w3id.org/GDPRtEXT#Obligation",
  4709. "baseIri" : "https://w3id.org/GDPRtEXT",
  4710. "instances" : 0,
  4711. "label" : {
  4712. "IRI-based" : "Obligation",
  4713. "undefined" : "Obligation"
  4714. },
  4715. "subClasses" : [ "59", "71", "203", "145", "217", "61", "240", "143" ],
  4716. "comment" : {
  4717. "en" : "These are the obligations specified by the GDPR. Following the obligations is necessary for compliance."
  4718. },
  4719. "id" : "262",
  4720. "superClasses" : [ "11" ]
  4721. }, {
  4722. "iri" : "https://w3id.org/GDPRtEXT#RacialData",
  4723. "baseIri" : "https://w3id.org/GDPRtEXT",
  4724. "instances" : 0,
  4725. "annotations" : {
  4726. "isDefinedBy" : [ {
  4727. "identifier" : "isDefinedBy",
  4728. "language" : "undefined",
  4729. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital51",
  4730. "type" : "iri"
  4731. } ],
  4732. "involves" : [ {
  4733. "identifier" : "involves",
  4734. "language" : "undefined",
  4735. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  4736. "type" : "iri"
  4737. } ]
  4738. },
  4739. "label" : {
  4740. "IRI-based" : "RacialData",
  4741. "undefined" : "Racial origin data"
  4742. },
  4743. "comment" : {
  4744. "en" : "Personal data revealing racial or ethnic origin."
  4745. },
  4746. "id" : "79",
  4747. "superClasses" : [ "31" ]
  4748. }, {
  4749. "iri" : "https://w3id.org/GDPRtEXT#Seal",
  4750. "baseIri" : "https://w3id.org/GDPRtEXT",
  4751. "instances" : 0,
  4752. "annotations" : {
  4753. "isDefinedBy" : [ {
  4754. "identifier" : "isDefinedBy",
  4755. "language" : "undefined",
  4756. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital81",
  4757. "type" : "iri"
  4758. }, {
  4759. "identifier" : "isDefinedBy",
  4760. "language" : "undefined",
  4761. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital77",
  4762. "type" : "iri"
  4763. } ]
  4764. },
  4765. "label" : {
  4766. "IRI-based" : "Seal",
  4767. "undefined" : "Seal"
  4768. },
  4769. "comment" : {
  4770. "en" : "A seal pertaining to GDPR compliance"
  4771. },
  4772. "id" : "387",
  4773. "superClasses" : [ "244" ]
  4774. }, {
  4775. "iri" : "https://w3id.org/GDPRtEXT#PrivacyByDesign",
  4776. "baseIri" : "https://w3id.org/GDPRtEXT",
  4777. "instances" : 0,
  4778. "annotations" : {
  4779. "isDefinedBy" : [ {
  4780. "identifier" : "isDefinedBy",
  4781. "language" : "undefined",
  4782. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital78",
  4783. "type" : "iri"
  4784. }, {
  4785. "identifier" : "isDefinedBy",
  4786. "language" : "undefined",
  4787. "value" : "https://w3id.org/GDPRtEXT/gdpr#article25",
  4788. "type" : "iri"
  4789. } ]
  4790. },
  4791. "label" : {
  4792. "IRI-based" : "PrivacyByDesign",
  4793. "undefined" : "Privacy by Design"
  4794. },
  4795. "comment" : {
  4796. "en" : "Privacy by Design is the approach of taking privacy into consideration throughout the whole planning and execution processes."
  4797. },
  4798. "id" : "375",
  4799. "superClasses" : [ "59" ]
  4800. }, {
  4801. "iri" : "https://w3id.org/GDPRtEXT#MaximumValidity3Years",
  4802. "baseIri" : "https://w3id.org/GDPRtEXT",
  4803. "instances" : 0,
  4804. "annotations" : {
  4805. "isDefinedBy" : [ {
  4806. "identifier" : "isDefinedBy",
  4807. "language" : "undefined",
  4808. "value" : "https://w3id.org/GDPRtEXT/gdpr#article42-7",
  4809. "type" : "iri"
  4810. } ]
  4811. },
  4812. "label" : {
  4813. "IRI-based" : "MaximumValidity3Years",
  4814. "undefined" : "Maximum validty 3 years"
  4815. },
  4816. "comment" : {
  4817. "en" : "The maximum validity for all seals and certifications should be 3 years from the date of issue."
  4818. },
  4819. "id" : "326",
  4820. "superClasses" : [ "323" ]
  4821. }, {
  4822. "iri" : "https://w3id.org/GDPRtEXT#CertificationBody",
  4823. "baseIri" : "https://w3id.org/GDPRtEXT",
  4824. "instances" : 0,
  4825. "annotations" : {
  4826. "isDefinedBy" : [ {
  4827. "identifier" : "isDefinedBy",
  4828. "language" : "undefined",
  4829. "value" : "https://w3id.org/GDPRtEXT/gdpr#article43",
  4830. "type" : "iri"
  4831. } ],
  4832. "involves" : [ {
  4833. "identifier" : "involves",
  4834. "language" : "undefined",
  4835. "value" : "https://w3id.org/GDPRtEXT#Certification",
  4836. "type" : "iri"
  4837. }, {
  4838. "identifier" : "involves",
  4839. "language" : "undefined",
  4840. "value" : "https://w3id.org/GDPRtEXT#Seal",
  4841. "type" : "iri"
  4842. } ]
  4843. },
  4844. "label" : {
  4845. "IRI-based" : "CertificationBody",
  4846. "undefined" : "Certification Body"
  4847. },
  4848. "comment" : {
  4849. "undefined" : "A Certification Body is an entity that can award/issue/renew a certification pertaining to compliance towards the GDPR."
  4850. },
  4851. "id" : "92",
  4852. "superClasses" : [ "84" ]
  4853. }, {
  4854. "iri" : "https://w3id.org/GDPRtEXT#AssistInComplyingWithRights",
  4855. "baseIri" : "https://w3id.org/GDPRtEXT",
  4856. "instances" : 0,
  4857. "annotations" : {
  4858. "involves" : [ {
  4859. "identifier" : "involves",
  4860. "language" : "undefined",
  4861. "value" : "https://w3id.org/GDPRtEXT#Compliance",
  4862. "type" : "iri"
  4863. }, {
  4864. "identifier" : "involves",
  4865. "language" : "undefined",
  4866. "value" : "https://w3id.org/GDPRtEXT#Controller",
  4867. "type" : "iri"
  4868. }, {
  4869. "identifier" : "involves",
  4870. "language" : "undefined",
  4871. "value" : "https://w3id.org/GDPRtEXT#Processor",
  4872. "type" : "iri"
  4873. }, {
  4874. "identifier" : "involves",
  4875. "language" : "undefined",
  4876. "value" : "https://w3id.org/GDPRtEXT#Rights",
  4877. "type" : "iri"
  4878. } ]
  4879. },
  4880. "label" : {
  4881. "IRI-based" : "AssistInComplyingWithRights",
  4882. "undefined" : "Assist in complying with rights"
  4883. },
  4884. "comment" : {
  4885. "en" : "Processors must assist Controllers in complying with the various rights provided by the GDPR to data subjects which can be exercised at any time."
  4886. },
  4887. "id" : "292",
  4888. "superClasses" : [ "61" ]
  4889. }, {
  4890. "iri" : "https://w3id.org/GDPRtEXT#RecordDataRetentionPeriod",
  4891. "baseIri" : "https://w3id.org/GDPRtEXT",
  4892. "instances" : 0,
  4893. "annotations" : {
  4894. "involves" : [ {
  4895. "identifier" : "involves",
  4896. "language" : "undefined",
  4897. "value" : "https://w3id.org/GDPRtEXT#StoreData",
  4898. "type" : "iri"
  4899. } ]
  4900. },
  4901. "label" : {
  4902. "IRI-based" : "RecordDataRetentionPeriod",
  4903. "undefined" : "Record data retention periods"
  4904. },
  4905. "comment" : {
  4906. "en" : "This obligation requires Controllers to record the data retention period of personal data."
  4907. },
  4908. "id" : "272",
  4909. "superClasses" : [ "36" ]
  4910. }, {
  4911. "iri" : "https://w3id.org/GDPRtEXT#Section",
  4912. "baseIri" : "https://w3id.org/GDPRtEXT",
  4913. "instances" : 0,
  4914. "annotations" : {
  4915. "isDefinedBy" : [ {
  4916. "identifier" : "isDefinedBy",
  4917. "language" : "undefined",
  4918. "value" : "http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679",
  4919. "type" : "iri"
  4920. } ],
  4921. "example" : [ {
  4922. "identifier" : "example",
  4923. "language" : "undefined",
  4924. "value" : "gdpr:chapterIV-5 a eli:LegalResourceSubdivision,\n GDPRtEXT:Section ;\n eli:is_part_of gdpr:GDPR,\n gdpr:chapterIV ;\n eli:number \"5\"^^xsd:string ;\n eli:title \"Codes of conduct and certification\"^^xsd:string ;\n eli:title_alternative \"Section 5\"^^xsd:string ;\n GDPRtEXT:hasArticle gdpr:article40,\n gdpr:article41,\n gdpr:article42,\n gdpr:article43 ;\n GDPRtEXT:isPartOfChapter gdpr:chapterIV .",
  4925. "type" : "label"
  4926. } ]
  4927. },
  4928. "label" : {
  4929. "IRI-based" : "Section",
  4930. "undefined" : "Section"
  4931. },
  4932. "comment" : {
  4933. "undefined" : "Section in GDPR text"
  4934. },
  4935. "id" : "39",
  4936. "superClasses" : [ "38" ]
  4937. }, {
  4938. "iri" : "https://w3id.org/GDPRtEXT#InformationAboutThirdParties",
  4939. "baseIri" : "https://w3id.org/GDPRtEXT",
  4940. "instances" : 0,
  4941. "annotations" : {
  4942. "involves" : [ {
  4943. "identifier" : "involves",
  4944. "language" : "undefined",
  4945. "value" : "https://w3id.org/GDPRtEXT#Processor",
  4946. "type" : "iri"
  4947. }, {
  4948. "identifier" : "involves",
  4949. "language" : "undefined",
  4950. "value" : "https://w3id.org/GDPRtEXT#Controller",
  4951. "type" : "iri"
  4952. }, {
  4953. "identifier" : "involves",
  4954. "language" : "undefined",
  4955. "value" : "https://w3id.org/GDPRtEXT#ShareDataWithThirdParty",
  4956. "type" : "iri"
  4957. } ]
  4958. },
  4959. "label" : {
  4960. "IRI-based" : "InformationAboutThirdParties",
  4961. "undefined" : "Information about third parties"
  4962. },
  4963. "comment" : {
  4964. "en" : "The right to basic information also provides data subject's with information about third parties involved in the processing."
  4965. },
  4966. "id" : "112",
  4967. "superClasses" : [ "113" ]
  4968. }, {
  4969. "iri" : "https://w3id.org/GDPRtEXT#NotifyDataSubjectAboutDPOForDataBreach",
  4970. "baseIri" : "https://w3id.org/GDPRtEXT",
  4971. "instances" : 0,
  4972. "annotations" : {
  4973. "involves" : [ {
  4974. "identifier" : "involves",
  4975. "language" : "undefined",
  4976. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  4977. "type" : "iri"
  4978. }, {
  4979. "identifier" : "involves",
  4980. "language" : "undefined",
  4981. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  4982. "type" : "iri"
  4983. } ]
  4984. },
  4985. "label" : {
  4986. "IRI-based" : "NotifyDataSubjectAboutDPOForDataBreach",
  4987. "undefined" : "Notify about DPO"
  4988. },
  4989. "comment" : {
  4990. "en" : "Affected data subjects must be notified with the name and contact of the DPO responsible/handling for the data breach."
  4991. },
  4992. "id" : "321",
  4993. "superClasses" : [ "126" ]
  4994. }, {
  4995. "iri" : "https://w3id.org/GDPRtEXT#ExerciseRights",
  4996. "baseIri" : "https://w3id.org/GDPRtEXT",
  4997. "instances" : 0,
  4998. "annotations" : {
  4999. "involves" : [ {
  5000. "identifier" : "involves",
  5001. "language" : "undefined",
  5002. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  5003. "type" : "iri"
  5004. }, {
  5005. "identifier" : "involves",
  5006. "language" : "undefined",
  5007. "value" : "https://w3id.org/GDPRtEXT#Rights",
  5008. "type" : "iri"
  5009. } ]
  5010. },
  5011. "label" : {
  5012. "IRI-based" : "ExerciseRights",
  5013. "undefined" : "Exercise Rights"
  5014. },
  5015. "comment" : {
  5016. "en" : "The activity represents exercising of rights provided by GDPR by the data subject."
  5017. },
  5018. "id" : "362",
  5019. "superClasses" : [ "208" ]
  5020. }, {
  5021. "iri" : "https://w3id.org/GDPRtEXT#ClearExplanationOfProcessingConsentObligation",
  5022. "baseIri" : "https://w3id.org/GDPRtEXT",
  5023. "instances" : 0,
  5024. "annotations" : {
  5025. "involves" : [ {
  5026. "identifier" : "involves",
  5027. "language" : "undefined",
  5028. "value" : "https://w3id.org/GDPRtEXT#Processing",
  5029. "type" : "iri"
  5030. } ]
  5031. },
  5032. "label" : {
  5033. "IRI-based" : "ClearExplanationOfProcessingConsentObligation",
  5034. "undefined" : "Clear explanation"
  5035. },
  5036. "comment" : {
  5037. "en" : "Obtaining consent must provide clear explanations of the processing involved over the personal data"
  5038. },
  5039. "id" : "226",
  5040. "superClasses" : [ "203" ]
  5041. }, {
  5042. "iri" : "https://w3id.org/GDPRtEXT#ConfirmingOrMatchingDatasets",
  5043. "baseIri" : "https://w3id.org/GDPRtEXT",
  5044. "instances" : 0,
  5045. "annotations" : {
  5046. "involves" : [ {
  5047. "identifier" : "involves",
  5048. "language" : "undefined",
  5049. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  5050. "type" : "iri"
  5051. } ]
  5052. },
  5053. "label" : {
  5054. "IRI-based" : "ConfirmingOrMatchingDatasets",
  5055. "undefined" : "Confirming or matching datasets"
  5056. },
  5057. "comment" : {
  5058. "en" : "This type of processing involves matching data subject's identity or personal data in different datasets."
  5059. },
  5060. "id" : "19",
  5061. "superClasses" : [ "10", "67" ]
  5062. }, {
  5063. "iri" : "https://w3id.org/GDPRtEXT#IfAndWhereControllerIsProcessingData",
  5064. "baseIri" : "https://w3id.org/GDPRtEXT",
  5065. "instances" : 0,
  5066. "annotations" : {
  5067. "involves" : [ {
  5068. "identifier" : "involves",
  5069. "language" : "undefined",
  5070. "value" : "https://w3id.org/GDPRtEXT#Controller",
  5071. "type" : "iri"
  5072. }, {
  5073. "identifier" : "involves",
  5074. "language" : "undefined",
  5075. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  5076. "type" : "iri"
  5077. }, {
  5078. "identifier" : "involves",
  5079. "language" : "undefined",
  5080. "value" : "https://w3id.org/GDPRtEXT#Processing",
  5081. "type" : "iri"
  5082. } ]
  5083. },
  5084. "label" : {
  5085. "IRI-based" : "IfAndWhereControllerIsProcessingData",
  5086. "undefined" : "If and where Controller is processing"
  5087. },
  5088. "comment" : {
  5089. "en" : "The right to access personal data also includes information about whether and where the controller is processing the data subject's personal data"
  5090. },
  5091. "id" : "181",
  5092. "superClasses" : [ "94" ]
  5093. }, {
  5094. "iri" : "https://w3id.org/GDPRtEXT#RegulatoryAuthority",
  5095. "baseIri" : "https://w3id.org/GDPRtEXT",
  5096. "instances" : 0,
  5097. "label" : {
  5098. "IRI-based" : "RegulatoryAuthority",
  5099. "undefined" : "Regulatory Authority"
  5100. },
  5101. "comment" : {
  5102. "en" : "The authority responsible for regulating data protection laws."
  5103. },
  5104. "id" : "83",
  5105. "superClasses" : [ "84" ]
  5106. }, {
  5107. "iri" : "https://w3id.org/GDPRtEXT#InformationShouldBeEasilyAccessible",
  5108. "baseIri" : "https://w3id.org/GDPRtEXT",
  5109. "instances" : 0,
  5110. "annotations" : {
  5111. "involves" : [ {
  5112. "identifier" : "involves",
  5113. "language" : "undefined",
  5114. "value" : "https://w3id.org/GDPRtEXT#RightToTransparency",
  5115. "type" : "iri"
  5116. } ]
  5117. },
  5118. "label" : {
  5119. "IRI-based" : "InformationShouldBeEasilyAccessible",
  5120. "undefined" : "Easily Accessible"
  5121. },
  5122. "comment" : {
  5123. "en" : "The information provided under the right to transparency should be easily accessible"
  5124. },
  5125. "id" : "425",
  5126. "superClasses" : [ "135" ]
  5127. }, {
  5128. "iri" : "https://w3id.org/GDPRtEXT#DataMinimisation",
  5129. "baseIri" : "https://w3id.org/GDPRtEXT",
  5130. "instances" : 0,
  5131. "annotations" : {
  5132. "isDefinedBy" : [ {
  5133. "identifier" : "isDefinedBy",
  5134. "language" : "undefined",
  5135. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-1-c",
  5136. "type" : "iri"
  5137. }, {
  5138. "identifier" : "isDefinedBy",
  5139. "language" : "undefined",
  5140. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital39",
  5141. "type" : "iri"
  5142. } ],
  5143. "involves" : [ {
  5144. "identifier" : "involves",
  5145. "language" : "undefined",
  5146. "value" : "https://w3id.org/GDPRtEXT#ExplicitPurpose",
  5147. "type" : "iri"
  5148. }, {
  5149. "identifier" : "involves",
  5150. "language" : "undefined",
  5151. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  5152. "type" : "iri"
  5153. }, {
  5154. "identifier" : "involves",
  5155. "language" : "undefined",
  5156. "value" : "https://w3id.org/GDPRtEXT#AccurateCollection",
  5157. "type" : "iri"
  5158. }, {
  5159. "identifier" : "involves",
  5160. "language" : "undefined",
  5161. "value" : "https://w3id.org/GDPRtEXT#Processing",
  5162. "type" : "iri"
  5163. }, {
  5164. "identifier" : "involves",
  5165. "language" : "undefined",
  5166. "value" : "https://w3id.org/GDPRtEXT#SpecifiedPurpose",
  5167. "type" : "iri"
  5168. } ]
  5169. },
  5170. "label" : {
  5171. "IRI-based" : "DataMinimisation",
  5172. "undefined" : "Principle of Data Minimisation"
  5173. },
  5174. "comment" : {
  5175. "en" : "The principle of data minimisation states that personal data must be adequate, relevant and limited to what is necessary in relation to the purposes for which they are processed."
  5176. },
  5177. "id" : "26",
  5178. "superClasses" : [ "2" ]
  5179. }, {
  5180. "iri" : "https://w3id.org/GDPRtEXT#FreelyGivenConsentObligation",
  5181. "baseIri" : "https://w3id.org/GDPRtEXT",
  5182. "instances" : 0,
  5183. "annotations" : {
  5184. "isDefinedBy" : [ {
  5185. "identifier" : "isDefinedBy",
  5186. "language" : "undefined",
  5187. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  5188. "type" : "iri"
  5189. }, {
  5190. "identifier" : "isDefinedBy",
  5191. "language" : "undefined",
  5192. "value" : "https://w3id.org/GDPRtEXT/gdpr#article7-4",
  5193. "type" : "iri"
  5194. } ],
  5195. "involves" : [ {
  5196. "identifier" : "involves",
  5197. "language" : "undefined",
  5198. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  5199. "type" : "iri"
  5200. }, {
  5201. "identifier" : "involves",
  5202. "language" : "undefined",
  5203. "value" : "https://w3id.org/GDPRtEXT#ObtainingConsent",
  5204. "type" : "iri"
  5205. } ]
  5206. },
  5207. "label" : {
  5208. "IRI-based" : "FreelyGivenConsentObligation",
  5209. "undefined" : "Freely given"
  5210. },
  5211. "comment" : {
  5212. "en" : "GDPR obligation that specifies consent must be freely given by the data subject for it to be valid."
  5213. },
  5214. "id" : "4",
  5215. "superClasses" : [ "5" ]
  5216. }, {
  5217. "iri" : "https://w3id.org/GDPRtEXT#DPO",
  5218. "baseIri" : "https://w3id.org/GDPRtEXT",
  5219. "instances" : 0,
  5220. "annotations" : {
  5221. "isDefinedBy" : [ {
  5222. "identifier" : "isDefinedBy",
  5223. "language" : "undefined",
  5224. "value" : "https://w3id.org/GDPRtEXT/gdpr#article38-6",
  5225. "type" : "iri"
  5226. }, {
  5227. "identifier" : "isDefinedBy",
  5228. "language" : "undefined",
  5229. "value" : "https://w3id.org/GDPRtEXT/gdpr#article39",
  5230. "type" : "iri"
  5231. } ],
  5232. "involves" : [ {
  5233. "identifier" : "involves",
  5234. "language" : "undefined",
  5235. "value" : "https://w3id.org/GDPRtEXT#Processor",
  5236. "type" : "iri"
  5237. }, {
  5238. "identifier" : "involves",
  5239. "language" : "undefined",
  5240. "value" : "https://w3id.org/GDPRtEXT#NotifyDataSubjectAboutDPOForDataBreach",
  5241. "type" : "iri"
  5242. }, {
  5243. "identifier" : "involves",
  5244. "language" : "undefined",
  5245. "value" : "https://w3id.org/GDPRtEXT#Controller",
  5246. "type" : "iri"
  5247. }, {
  5248. "identifier" : "involves",
  5249. "language" : "undefined",
  5250. "value" : "https://w3id.org/GDPRtEXT#MonitorCompliance",
  5251. "type" : "iri"
  5252. } ]
  5253. },
  5254. "label" : {
  5255. "IRI-based" : "DPO",
  5256. "undefined" : "DPO"
  5257. },
  5258. "comment" : {
  5259. "en" : "The Data Protection Officer (DPO) is an individual(s) appointed by the organisation to monitor compliance and assist in complying with the GDPR."
  5260. },
  5261. "id" : "133",
  5262. "superClasses" : [ "84" ]
  5263. }, {
  5264. "iri" : "https://w3id.org/GDPRtEXT#Accountability",
  5265. "baseIri" : "https://w3id.org/GDPRtEXT",
  5266. "instances" : 0,
  5267. "annotations" : {
  5268. "isDefinedBy" : [ {
  5269. "identifier" : "isDefinedBy",
  5270. "language" : "undefined",
  5271. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-2",
  5272. "type" : "iri"
  5273. }, {
  5274. "identifier" : "isDefinedBy",
  5275. "language" : "undefined",
  5276. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital85",
  5277. "type" : "iri"
  5278. } ],
  5279. "involves" : [ {
  5280. "identifier" : "involves",
  5281. "language" : "undefined",
  5282. "value" : "https://w3id.org/GDPRtEXT#ControllerResponsibility",
  5283. "type" : "iri"
  5284. }, {
  5285. "identifier" : "involves",
  5286. "language" : "undefined",
  5287. "value" : "https://w3id.org/GDPRtEXT#Compliance",
  5288. "type" : "iri"
  5289. }, {
  5290. "identifier" : "involves",
  5291. "language" : "undefined",
  5292. "value" : "https://w3id.org/GDPRtEXT#Processing",
  5293. "type" : "iri"
  5294. }, {
  5295. "identifier" : "involves",
  5296. "language" : "undefined",
  5297. "value" : "https://w3id.org/GDPRtEXT#LawfulBasisForProcessing",
  5298. "type" : "iri"
  5299. } ]
  5300. },
  5301. "label" : {
  5302. "IRI-based" : "Accountability",
  5303. "undefined" : "Principle of Accountability"
  5304. },
  5305. "comment" : {
  5306. "en" : "The principle of accountability states that the controller shall be responsible for, and be able to demonstrate compliance with the processing of personal data as defined by the justifications permissible under the GDPR"
  5307. },
  5308. "id" : "22",
  5309. "superClasses" : [ "2" ]
  5310. }, {
  5311. "iri" : "https://w3id.org/GDPRtEXT#LargeScaleProcessing",
  5312. "baseIri" : "https://w3id.org/GDPRtEXT",
  5313. "instances" : 0,
  5314. "annotations" : {
  5315. "involves" : [ {
  5316. "identifier" : "involves",
  5317. "language" : "undefined",
  5318. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  5319. "type" : "iri"
  5320. }, {
  5321. "identifier" : "involves",
  5322. "language" : "undefined",
  5323. "value" : "https://w3id.org/GDPRtEXT#Processing",
  5324. "type" : "iri"
  5325. } ]
  5326. },
  5327. "label" : {
  5328. "IRI-based" : "LargeScaleProcessing",
  5329. "undefined" : "Large scale processing"
  5330. },
  5331. "comment" : {
  5332. "en" : "The processing of personal data at a large scale of quantity or significant proportions."
  5333. },
  5334. "id" : "18",
  5335. "superClasses" : [ "10", "67" ]
  5336. }, {
  5337. "iri" : "https://w3id.org/GDPRtEXT#MonitorCompliance",
  5338. "baseIri" : "https://w3id.org/GDPRtEXT",
  5339. "instances" : 0,
  5340. "annotations" : {
  5341. "involves" : [ {
  5342. "identifier" : "involves",
  5343. "language" : "undefined",
  5344. "value" : "https://w3id.org/GDPRtEXT#Principle",
  5345. "type" : "iri"
  5346. }, {
  5347. "identifier" : "involves",
  5348. "language" : "undefined",
  5349. "value" : "https://w3id.org/GDPRtEXT#Obligation",
  5350. "type" : "iri"
  5351. }, {
  5352. "identifier" : "involves",
  5353. "language" : "undefined",
  5354. "value" : "https://w3id.org/GDPRtEXT#Rights",
  5355. "type" : "iri"
  5356. } ]
  5357. },
  5358. "label" : {
  5359. "IRI-based" : "MonitorCompliance",
  5360. "undefined" : "Monitor Compliance"
  5361. },
  5362. "comment" : {
  5363. "en" : "The activity or process of overseeing an organisation's compliance."
  5364. },
  5365. "id" : "239",
  5366. "superClasses" : [ "208", "240", "246" ]
  5367. }, {
  5368. "iri" : "https://w3id.org/GDPRtEXT#ControllerResponsibility",
  5369. "baseIri" : "https://w3id.org/GDPRtEXT",
  5370. "instances" : 0,
  5371. "annotations" : {
  5372. "isDefinedBy" : [ {
  5373. "identifier" : "isDefinedBy",
  5374. "language" : "undefined",
  5375. "value" : "https://w3id.org/GDPRtEXT/gdpr#article24",
  5376. "type" : "iri"
  5377. }, {
  5378. "identifier" : "isDefinedBy",
  5379. "language" : "undefined",
  5380. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital74",
  5381. "type" : "iri"
  5382. } ],
  5383. "involves" : [ {
  5384. "identifier" : "involves",
  5385. "language" : "undefined",
  5386. "value" : "https://w3id.org/GDPRtEXT#Controller",
  5387. "type" : "iri"
  5388. } ]
  5389. },
  5390. "label" : {
  5391. "IRI-based" : "ControllerResponsibility",
  5392. "undefined" : "Controller Responsibility"
  5393. },
  5394. "subClasses" : [ "345" ],
  5395. "comment" : {
  5396. "en" : "These obligations specify the responsiblity of the Controller"
  5397. },
  5398. "id" : "346",
  5399. "superClasses" : [ "59" ]
  5400. }, {
  5401. "iri" : "https://w3id.org/GDPRtEXT#EraseData",
  5402. "baseIri" : "https://w3id.org/GDPRtEXT",
  5403. "instances" : 0,
  5404. "annotations" : {
  5405. "involves" : [ {
  5406. "identifier" : "involves",
  5407. "language" : "undefined",
  5408. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  5409. "type" : "iri"
  5410. } ]
  5411. },
  5412. "label" : {
  5413. "IRI-based" : "EraseData",
  5414. "undefined" : "Erase Data"
  5415. },
  5416. "comment" : {
  5417. "undefined" : "An activity that erases data"
  5418. },
  5419. "id" : "212",
  5420. "superClasses" : [ "66" ]
  5421. }, {
  5422. "iri" : "https://w3id.org/GDPRtEXT#DPA",
  5423. "baseIri" : "https://w3id.org/GDPRtEXT",
  5424. "instances" : 0,
  5425. "label" : {
  5426. "IRI-based" : "DPA",
  5427. "undefined" : "DPA"
  5428. },
  5429. "comment" : {
  5430. "en" : "The Data Protection Authority (DPA) is a public institution responsible for monitoring the application of data protection laws."
  5431. },
  5432. "id" : "87",
  5433. "superClasses" : [ "84" ]
  5434. }, {
  5435. "iri" : "https://w3id.org/GDPRtEXT#SecurityOfPersonalData",
  5436. "baseIri" : "https://w3id.org/GDPRtEXT",
  5437. "instances" : 0,
  5438. "annotations" : {
  5439. "involves" : [ {
  5440. "identifier" : "involves",
  5441. "language" : "undefined",
  5442. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  5443. "type" : "iri"
  5444. }, {
  5445. "identifier" : "involves",
  5446. "language" : "undefined",
  5447. "value" : "https://w3id.org/GDPRtEXT#DataSecurity",
  5448. "type" : "iri"
  5449. } ]
  5450. },
  5451. "label" : {
  5452. "IRI-based" : "SecurityOfPersonalData",
  5453. "undefined" : "Security of Personal Data"
  5454. },
  5455. "subClasses" : [ "284", "142", "269", "191" ],
  5456. "comment" : {
  5457. "en" : "This activity refers to security of data subject's personal data."
  5458. },
  5459. "id" : "143",
  5460. "superClasses" : [ "208", "262" ]
  5461. }, {
  5462. "iri" : "https://w3id.org/GDPRtEXT#Processor",
  5463. "baseIri" : "https://w3id.org/GDPRtEXT",
  5464. "instances" : 0,
  5465. "annotations" : {
  5466. "isDefinedBy" : [ {
  5467. "identifier" : "isDefinedBy",
  5468. "language" : "undefined",
  5469. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-8",
  5470. "type" : "iri"
  5471. } ],
  5472. "involves" : [ {
  5473. "identifier" : "involves",
  5474. "language" : "undefined",
  5475. "value" : "https://w3id.org/GDPRtEXT#Controller",
  5476. "type" : "iri"
  5477. } ]
  5478. },
  5479. "label" : {
  5480. "IRI-based" : "Processor",
  5481. "undefined" : "Processor"
  5482. },
  5483. "subClasses" : [ "131" ],
  5484. "comment" : {
  5485. "en" : "A natural or legal person, public authority, agency or other body which processes personal data on behalf of the controller."
  5486. },
  5487. "id" : "129",
  5488. "superClasses" : [ "84" ]
  5489. }, {
  5490. "iri" : "https://w3id.org/GDPRtEXT#IdentificationOfDataSubject",
  5491. "baseIri" : "https://w3id.org/GDPRtEXT",
  5492. "instances" : 0,
  5493. "annotations" : {
  5494. "involves" : [ {
  5495. "identifier" : "involves",
  5496. "language" : "undefined",
  5497. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  5498. "type" : "iri"
  5499. } ]
  5500. },
  5501. "label" : {
  5502. "IRI-based" : "IdentificationOfDataSubject",
  5503. "undefined" : "Identification of Data Subject"
  5504. },
  5505. "comment" : {
  5506. "undefined" : "Activity where the data subject is explicitly identified through direct or indirect means."
  5507. },
  5508. "id" : "417",
  5509. "superClasses" : [ "208" ]
  5510. }, {
  5511. "iri" : "https://w3id.org/GDPRtEXT#ContextOfDataCollection",
  5512. "baseIri" : "https://w3id.org/GDPRtEXT",
  5513. "instances" : 0,
  5514. "annotations" : {
  5515. "involves" : [ {
  5516. "identifier" : "involves",
  5517. "language" : "undefined",
  5518. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  5519. "type" : "iri"
  5520. } ]
  5521. },
  5522. "label" : {
  5523. "IRI-based" : "ContextOfDataCollection",
  5524. "undefined" : "Context of data collection"
  5525. },
  5526. "comment" : {
  5527. "en" : "The purpose of new processing should take the context of how the original data was collected into consideration"
  5528. },
  5529. "id" : "200",
  5530. "superClasses" : [ "122" ]
  5531. }, {
  5532. "iri" : "https://w3id.org/GDPRtEXT#AdherenceToSealCertification",
  5533. "baseIri" : "https://w3id.org/GDPRtEXT",
  5534. "instances" : 0,
  5535. "annotations" : {
  5536. "isDefinedBy" : [ {
  5537. "identifier" : "isDefinedBy",
  5538. "language" : "undefined",
  5539. "value" : "https://w3id.org/GDPRtEXT/gdpr#article42-6",
  5540. "type" : "iri"
  5541. }, {
  5542. "identifier" : "isDefinedBy",
  5543. "language" : "undefined",
  5544. "value" : "https://w3id.org/GDPRtEXT/gdpr#article42-4",
  5545. "type" : "iri"
  5546. } ]
  5547. },
  5548. "label" : {
  5549. "IRI-based" : "AdherenceToSealCertification",
  5550. "undefined" : "Adherence"
  5551. },
  5552. "comment" : {
  5553. "en" : "The seal or certification does not reduce or impact the responsiblity of the controller or processor for compliance with the GDPR"
  5554. },
  5555. "id" : "325",
  5556. "superClasses" : [ "323" ]
  5557. }, {
  5558. "iri" : "https://w3id.org/GDPRtEXT#SpecificConsentObligation",
  5559. "baseIri" : "https://w3id.org/GDPRtEXT",
  5560. "instances" : 0,
  5561. "annotations" : {
  5562. "isDefinedBy" : [ {
  5563. "identifier" : "isDefinedBy",
  5564. "language" : "undefined",
  5565. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  5566. "type" : "iri"
  5567. }, {
  5568. "identifier" : "isDefinedBy",
  5569. "language" : "undefined",
  5570. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1-a",
  5571. "type" : "iri"
  5572. } ],
  5573. "involves" : [ {
  5574. "identifier" : "involves",
  5575. "language" : "undefined",
  5576. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  5577. "type" : "iri"
  5578. } ]
  5579. },
  5580. "label" : {
  5581. "IRI-based" : "SpecificConsentObligation",
  5582. "undefined" : "Specific"
  5583. },
  5584. "comment" : {
  5585. "en" : "GDPR obligation that specifies consent must be specific for it to be valid."
  5586. },
  5587. "id" : "28",
  5588. "superClasses" : [ "5" ]
  5589. }, {
  5590. "iri" : "https://w3id.org/GDPRtEXT#Principle",
  5591. "baseIri" : "https://w3id.org/GDPRtEXT",
  5592. "instances" : 0,
  5593. "annotations" : {
  5594. "isDefinedBy" : [ {
  5595. "identifier" : "isDefinedBy",
  5596. "language" : "undefined",
  5597. "value" : "https://w3id.org/GDPRtEXT/gdpr#chapter2",
  5598. "type" : "iri"
  5599. } ]
  5600. },
  5601. "label" : {
  5602. "IRI-based" : "Principle",
  5603. "undefined" : "Principle"
  5604. },
  5605. "subClasses" : [ "73", "77", "1", "7", "22", "26", "33" ],
  5606. "comment" : {
  5607. "en" : "A Principle is a rule or standard defined by the GDPR which is essential to be followed for compliance"
  5608. },
  5609. "id" : "2",
  5610. "superClasses" : [ "11" ]
  5611. }, {
  5612. "iri" : "https://w3id.org/GDPRtEXT#Citation",
  5613. "baseIri" : "https://w3id.org/GDPRtEXT",
  5614. "instances" : 0,
  5615. "annotations" : {
  5616. "isDefinedBy" : [ {
  5617. "identifier" : "isDefinedBy",
  5618. "language" : "undefined",
  5619. "value" : "http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679",
  5620. "type" : "iri"
  5621. } ],
  5622. "example" : [ {
  5623. "identifier" : "example",
  5624. "language" : "undefined",
  5625. "value" : "gdpr:citation1 a eli:LegalResourceSubdivision,\n GDPRtEXT:Citation ;\n eli:description \"OJ C 229, 31.7.2012, p. 90.\"^^xsd:string ;\n eli:is_part_of gdpr:GDPR ;\n eli:number \"1\"^^xsd:string .",
  5626. "type" : "label"
  5627. } ]
  5628. },
  5629. "label" : {
  5630. "IRI-based" : "Citation",
  5631. "undefined" : "Citation"
  5632. },
  5633. "comment" : {
  5634. "undefined" : "Citation in GDPR text"
  5635. },
  5636. "id" : "53",
  5637. "superClasses" : [ "38" ]
  5638. }, {
  5639. "iri" : "https://w3id.org/GDPRtEXT#ShouldBeDemonstrable",
  5640. "baseIri" : "https://w3id.org/GDPRtEXT",
  5641. "instances" : 0,
  5642. "annotations" : {
  5643. "isDefinedBy" : [ {
  5644. "identifier" : "isDefinedBy",
  5645. "language" : "undefined",
  5646. "value" : "https://w3id.org/GDPRtEXT/gdpr#article7-1",
  5647. "type" : "iri"
  5648. }, {
  5649. "identifier" : "isDefinedBy",
  5650. "language" : "undefined",
  5651. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital42",
  5652. "type" : "iri"
  5653. } ],
  5654. "involves" : [ {
  5655. "identifier" : "involves",
  5656. "language" : "undefined",
  5657. "value" : "https://w3id.org/GDPRtEXT#DemonstratingConsent",
  5658. "type" : "iri"
  5659. }, {
  5660. "identifier" : "involves",
  5661. "language" : "undefined",
  5662. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  5663. "type" : "iri"
  5664. } ]
  5665. },
  5666. "label" : {
  5667. "IRI-based" : "ShouldBeDemonstrable",
  5668. "undefined" : "Demonstrable"
  5669. },
  5670. "comment" : {
  5671. "en" : "Obtained consent should be in a demonstrable form"
  5672. },
  5673. "id" : "224",
  5674. "superClasses" : [ "203" ]
  5675. }, {
  5676. "iri" : "https://w3id.org/GDPRtEXT#RightsProtection",
  5677. "baseIri" : "https://w3id.org/GDPRtEXT",
  5678. "instances" : 0,
  5679. "annotations" : {
  5680. "isDefinedBy" : [ {
  5681. "identifier" : "isDefinedBy",
  5682. "language" : "undefined",
  5683. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital16",
  5684. "type" : "iri"
  5685. } ]
  5686. },
  5687. "label" : {
  5688. "IRI-based" : "RightsProtection",
  5689. "undefined" : "Freedoms protection"
  5690. },
  5691. "comment" : {
  5692. "en" : "The stated obligation could not be completed as it concerns freedoms protection."
  5693. },
  5694. "id" : "339",
  5695. "superClasses" : [ "63" ]
  5696. }, {
  5697. "iri" : "https://w3id.org/GDPRtEXT#ReportDataBreachToController",
  5698. "baseIri" : "https://w3id.org/GDPRtEXT",
  5699. "instances" : 0,
  5700. "annotations" : {
  5701. "isDefinedBy" : [ {
  5702. "identifier" : "isDefinedBy",
  5703. "language" : "undefined",
  5704. "value" : "https://w3id.org/GDPRtEXT/gdpr#article33-2",
  5705. "type" : "iri"
  5706. } ],
  5707. "involves" : [ {
  5708. "identifier" : "involves",
  5709. "language" : "undefined",
  5710. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  5711. "type" : "iri"
  5712. }, {
  5713. "identifier" : "involves",
  5714. "language" : "undefined",
  5715. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreach",
  5716. "type" : "iri"
  5717. }, {
  5718. "identifier" : "involves",
  5719. "language" : "undefined",
  5720. "value" : "https://w3id.org/GDPRtEXT#Processor",
  5721. "type" : "iri"
  5722. }, {
  5723. "identifier" : "involves",
  5724. "language" : "undefined",
  5725. "value" : "https://w3id.org/GDPRtEXT#Controller",
  5726. "type" : "iri"
  5727. } ]
  5728. },
  5729. "label" : {
  5730. "IRI-based" : "ReportDataBreachToController",
  5731. "undefined" : "Report data breach to Controller"
  5732. },
  5733. "comment" : {
  5734. "en" : "The occurence of a data breach must be reported to the Controller."
  5735. },
  5736. "id" : "360",
  5737. "superClasses" : [ "61", "120" ]
  5738. }, {
  5739. "iri" : "https://w3id.org/GDPRtEXT#Compliance",
  5740. "baseIri" : "https://w3id.org/GDPRtEXT",
  5741. "instances" : 0,
  5742. "label" : {
  5743. "IRI-based" : "Compliance",
  5744. "undefined" : "Compliance"
  5745. },
  5746. "subClasses" : [ "274", "120", "239" ],
  5747. "comment" : {
  5748. "en" : "Represents the act of complying with the obligations and actions specified by the GDPR."
  5749. },
  5750. "id" : "246",
  5751. "superClasses" : [ "11" ]
  5752. }, {
  5753. "iri" : "https://w3id.org/GDPRtEXT#RightOfDataPortability",
  5754. "baseIri" : "https://w3id.org/GDPRtEXT",
  5755. "instances" : 0,
  5756. "annotations" : {
  5757. "isDefinedBy" : [ {
  5758. "identifier" : "isDefinedBy",
  5759. "language" : "undefined",
  5760. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital73",
  5761. "type" : "iri"
  5762. }, {
  5763. "identifier" : "isDefinedBy",
  5764. "language" : "undefined",
  5765. "value" : "https://w3id.org/GDPRtEXT/gdpr#article20",
  5766. "type" : "iri"
  5767. }, {
  5768. "identifier" : "isDefinedBy",
  5769. "language" : "undefined",
  5770. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital68",
  5771. "type" : "iri"
  5772. } ],
  5773. "involves" : [ {
  5774. "identifier" : "involves",
  5775. "language" : "undefined",
  5776. "value" : "https://w3id.org/GDPRtEXT#ShouldSupportReuse",
  5777. "type" : "iri"
  5778. }, {
  5779. "identifier" : "involves",
  5780. "language" : "undefined",
  5781. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  5782. "type" : "iri"
  5783. }, {
  5784. "identifier" : "involves",
  5785. "language" : "undefined",
  5786. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  5787. "type" : "iri"
  5788. }, {
  5789. "identifier" : "involves",
  5790. "language" : "undefined",
  5791. "value" : "https://w3id.org/GDPRtEXT#ProvideCopyOfPersonalData",
  5792. "type" : "iri"
  5793. }, {
  5794. "identifier" : "involves",
  5795. "language" : "undefined",
  5796. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  5797. "type" : "iri"
  5798. }, {
  5799. "identifier" : "involves",
  5800. "language" : "undefined",
  5801. "value" : "https://w3id.org/GDPRtEXT#ShouldBeStructured",
  5802. "type" : "iri"
  5803. }, {
  5804. "identifier" : "involves",
  5805. "language" : "undefined",
  5806. "value" : "https://w3id.org/GDPRtEXT#ShouldBeMachineReadable",
  5807. "type" : "iri"
  5808. }, {
  5809. "identifier" : "involves",
  5810. "language" : "undefined",
  5811. "value" : "https://w3id.org/GDPRtEXT#ShouldBeCommonlyUsedFormat",
  5812. "type" : "iri"
  5813. } ]
  5814. },
  5815. "label" : {
  5816. "IRI-based" : "RightOfDataPortability",
  5817. "undefined" : "Right of Data Portability"
  5818. },
  5819. "subClasses" : [ "89" ],
  5820. "comment" : {
  5821. "en" : "The data subject has the right to receive the personal data concerning him or her, which he or she has provided to a controller, in a structured, commonly used and machine-readable format and has the right to transmit those data to another controller without hindrance from the controller to which the personal data have been provided."
  5822. },
  5823. "id" : "174",
  5824. "superClasses" : [ "136" ]
  5825. }, {
  5826. "iri" : "https://w3id.org/GDPRtEXT#ExplicitPurpose",
  5827. "baseIri" : "https://w3id.org/GDPRtEXT",
  5828. "instances" : 0,
  5829. "annotations" : {
  5830. "involves" : [ {
  5831. "identifier" : "involves",
  5832. "language" : "undefined",
  5833. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  5834. "type" : "iri"
  5835. } ]
  5836. },
  5837. "label" : {
  5838. "IRI-based" : "ExplicitPurpose",
  5839. "undefined" : "Explicit Purpose"
  5840. },
  5841. "comment" : {
  5842. "en" : "This obligation specifies that the collected (or collection) of personal data should be for/with explicit purposes."
  5843. },
  5844. "id" : "318",
  5845. "superClasses" : [ "71" ]
  5846. }, {
  5847. "iri" : "https://w3id.org/GDPRtEXT#MedicalDiagnosisTreatment",
  5848. "baseIri" : "https://w3id.org/GDPRtEXT",
  5849. "instances" : 0,
  5850. "annotations" : {
  5851. "isDefinedBy" : [ {
  5852. "identifier" : "isDefinedBy",
  5853. "language" : "undefined",
  5854. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-3",
  5855. "type" : "iri"
  5856. }, {
  5857. "identifier" : "isDefinedBy",
  5858. "language" : "undefined",
  5859. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-3",
  5860. "type" : "iri"
  5861. } ],
  5862. "involves" : [ {
  5863. "identifier" : "involves",
  5864. "language" : "undefined",
  5865. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  5866. "type" : "iri"
  5867. } ]
  5868. },
  5869. "label" : {
  5870. "IRI-based" : "MedicalDiagnosisTreatment",
  5871. "undefined" : "Medical or Diagnostics"
  5872. },
  5873. "comment" : {
  5874. "en" : "Lawful basis for processing is provided by the GDPR for medical or diagnostics purposes pertaining to the data subject"
  5875. },
  5876. "id" : "386",
  5877. "superClasses" : [ "217" ]
  5878. }, {
  5879. "iri" : "https://w3id.org/GDPRtEXT#LegitimatePurpose",
  5880. "baseIri" : "https://w3id.org/GDPRtEXT",
  5881. "instances" : 0,
  5882. "annotations" : {
  5883. "involves" : [ {
  5884. "identifier" : "involves",
  5885. "language" : "undefined",
  5886. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  5887. "type" : "iri"
  5888. } ]
  5889. },
  5890. "label" : {
  5891. "IRI-based" : "LegitimatePurpose",
  5892. "undefined" : "Legitimate purpose"
  5893. },
  5894. "comment" : {
  5895. "en" : "This specifies that the collection (or collected) personal data should be used/specified to be used for legitimate purposes."
  5896. },
  5897. "id" : "316",
  5898. "superClasses" : [ "71" ]
  5899. }, {
  5900. "iri" : "https://w3id.org/GDPRtEXT#RecordCrossBorderDataTransfer",
  5901. "baseIri" : "https://w3id.org/GDPRtEXT",
  5902. "instances" : 0,
  5903. "annotations" : {
  5904. "involves" : [ {
  5905. "identifier" : "involves",
  5906. "language" : "undefined",
  5907. "value" : "https://w3id.org/GDPRtEXT#CrossBorderTransfer",
  5908. "type" : "iri"
  5909. } ]
  5910. },
  5911. "label" : {
  5912. "IRI-based" : "RecordCrossBorderDataTransfer",
  5913. "undefined" : "Record cross-border transfers"
  5914. },
  5915. "comment" : {
  5916. "en" : "This obligation requires Controllers to record the cross-border data transfers."
  5917. },
  5918. "id" : "49",
  5919. "superClasses" : [ "36" ]
  5920. }, {
  5921. "iri" : "https://w3id.org/GDPRtEXT#LawfulnessFairnessAndTransparency",
  5922. "baseIri" : "https://w3id.org/GDPRtEXT",
  5923. "instances" : 0,
  5924. "annotations" : {
  5925. "isDefinedBy" : [ {
  5926. "identifier" : "isDefinedBy",
  5927. "language" : "undefined",
  5928. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-1-a",
  5929. "type" : "iri"
  5930. }, {
  5931. "identifier" : "isDefinedBy",
  5932. "language" : "undefined",
  5933. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital39",
  5934. "type" : "iri"
  5935. } ],
  5936. "involves" : [ {
  5937. "identifier" : "involves",
  5938. "language" : "undefined",
  5939. "value" : "https://w3id.org/GDPRtEXT#LawfulBasisForProcessing",
  5940. "type" : "iri"
  5941. }, {
  5942. "identifier" : "involves",
  5943. "language" : "undefined",
  5944. "value" : "https://w3id.org/GDPRtEXT#Processing",
  5945. "type" : "iri"
  5946. }, {
  5947. "identifier" : "involves",
  5948. "language" : "undefined",
  5949. "value" : "https://w3id.org/GDPRtEXT#Data",
  5950. "type" : "iri"
  5951. } ]
  5952. },
  5953. "label" : {
  5954. "IRI-based" : "LawfulnessFairnessAndTransparency",
  5955. "undefined" : "Principle of Lawfulness, Fairness, and Transparency"
  5956. },
  5957. "comment" : {
  5958. "en" : "The principle of lawfulness, fairness, and transparency states that personal data must be processed lawfully, fairly and in a transparent manner in relation to the data subject."
  5959. },
  5960. "id" : "7",
  5961. "superClasses" : [ "2" ]
  5962. }, {
  5963. "iri" : "http://www.w3.org/2004/02/skos/core#Concept",
  5964. "baseIri" : "http://www.w3.org/2004/02/skos/core",
  5965. "instances" : 0,
  5966. "label" : {
  5967. "IRI-based" : "Concept"
  5968. },
  5969. "subClasses" : [ "2", "10", "208", "259", "63", "262", "136", "244", "246", "84", "229", "232", "234", "30" ],
  5970. "attributes" : [ "external" ],
  5971. "id" : "11"
  5972. }, {
  5973. "iri" : "https://w3id.org/GDPRtEXT#InformationShouldBeConcise",
  5974. "baseIri" : "https://w3id.org/GDPRtEXT",
  5975. "instances" : 0,
  5976. "annotations" : {
  5977. "involves" : [ {
  5978. "identifier" : "involves",
  5979. "language" : "undefined",
  5980. "value" : "https://w3id.org/GDPRtEXT#RightToTransparency",
  5981. "type" : "iri"
  5982. } ]
  5983. },
  5984. "label" : {
  5985. "IRI-based" : "InformationShouldBeConcise",
  5986. "undefined" : "Concise"
  5987. },
  5988. "comment" : {
  5989. "en" : "The information provided under the right to transparency should be concise"
  5990. },
  5991. "id" : "429",
  5992. "superClasses" : [ "135" ]
  5993. }, {
  5994. "iri" : "https://w3id.org/GDPRtEXT#InfoAboutExistenceOfRights",
  5995. "baseIri" : "https://w3id.org/GDPRtEXT",
  5996. "instances" : 0,
  5997. "annotations" : {
  5998. "involves" : [ {
  5999. "identifier" : "involves",
  6000. "language" : "undefined",
  6001. "value" : "https://w3id.org/GDPRtEXT#Rights",
  6002. "type" : "iri"
  6003. } ]
  6004. },
  6005. "label" : {
  6006. "IRI-based" : "InfoAboutExistenceOfRights",
  6007. "undefined" : "Information about rights"
  6008. },
  6009. "comment" : {
  6010. "en" : "The right to access personal data also includes information about the existence of rights provided by the GDPR to the data subject"
  6011. },
  6012. "id" : "187",
  6013. "superClasses" : [ "94" ]
  6014. }, {
  6015. "iri" : "https://w3id.org/GDPRtEXT#RequiresWrittenConsentOfControllerToAppointSubProcessor",
  6016. "baseIri" : "https://w3id.org/GDPRtEXT",
  6017. "instances" : 0,
  6018. "annotations" : {
  6019. "involves" : [ {
  6020. "identifier" : "involves",
  6021. "language" : "undefined",
  6022. "value" : "https://w3id.org/GDPRtEXT#SubProcessor",
  6023. "type" : "iri"
  6024. }, {
  6025. "identifier" : "involves",
  6026. "language" : "undefined",
  6027. "value" : "https://w3id.org/GDPRtEXT#Controller",
  6028. "type" : "iri"
  6029. }, {
  6030. "identifier" : "involves",
  6031. "language" : "undefined",
  6032. "value" : "https://w3id.org/GDPRtEXT#Consent",
  6033. "type" : "iri"
  6034. } ]
  6035. },
  6036. "label" : {
  6037. "IRI-based" : "RequiresWrittenConsentOfControllerToAppointSubProcessor",
  6038. "undefined" : "Written consent of Controller"
  6039. },
  6040. "comment" : {
  6041. "en" : "Appointing a sub-processor requires the written consent of the controller specifying permission or consent"
  6042. },
  6043. "id" : "169",
  6044. "superClasses" : [ "170" ]
  6045. }, {
  6046. "iri" : "https://w3id.org/GDPRtEXT#HarmWasRemote",
  6047. "baseIri" : "https://w3id.org/GDPRtEXT",
  6048. "instances" : 0,
  6049. "annotations" : {
  6050. "involves" : [ {
  6051. "identifier" : "involves",
  6052. "language" : "undefined",
  6053. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  6054. "type" : "iri"
  6055. } ]
  6056. },
  6057. "label" : {
  6058. "IRI-based" : "HarmWasRemote",
  6059. "undefined" : "Harm was remote"
  6060. },
  6061. "comment" : {
  6062. "en" : "The data subjects were not notified about the data breach because the harm was deemed to be remote."
  6063. },
  6064. "id" : "47",
  6065. "superClasses" : [ "43" ]
  6066. }, {
  6067. "iri" : "https://w3id.org/GDPRtEXT#Point",
  6068. "baseIri" : "https://w3id.org/GDPRtEXT",
  6069. "instances" : 0,
  6070. "annotations" : {
  6071. "isDefinedBy" : [ {
  6072. "identifier" : "isDefinedBy",
  6073. "language" : "undefined",
  6074. "value" : "http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679",
  6075. "type" : "iri"
  6076. } ],
  6077. "example" : [ {
  6078. "identifier" : "example",
  6079. "language" : "undefined",
  6080. "value" : "gdpr:article27-2 a eli:LegalResourceSubdivision,\n GDPRtEXT:Point ;\n eli:description \"The obligation laid down in paragraph 1 of this Article shall not apply to:\"^^xsd:string ;\n eli:is_part_of gdpr:GDPR,\n gdpr:article27,\n gdpr:chapterIV,\n gdpr:chapterIV-1 ;\n eli:number \"2\"^^xsd:string ;\n eli:title_alternative \"Article27(2)\"^^xsd:string ;\n GDPRtEXT:hasSubPoint gdpr:article27-2-a,\n gdpr:article27-2-b ;\n GDPRtEXT:isPartOfArticle gdpr:article27 ;\n GDPRtEXT:isPartOfChapter gdpr:chapterIV ;\n GDPRtEXT:isPartOfSection gdpr:chapterIV-1 .",
  6081. "type" : "label"
  6082. } ]
  6083. },
  6084. "label" : {
  6085. "IRI-based" : "Point",
  6086. "undefined" : "Point"
  6087. },
  6088. "comment" : {
  6089. "undefined" : "Point in GDPR text"
  6090. },
  6091. "id" : "57",
  6092. "superClasses" : [ "38" ]
  6093. }, {
  6094. "iri" : "https://w3id.org/GDPRtEXT#ShouldBeMachineReadable",
  6095. "baseIri" : "https://w3id.org/GDPRtEXT",
  6096. "instances" : 0,
  6097. "label" : {
  6098. "IRI-based" : "ShouldBeMachineReadable",
  6099. "undefined" : "Copy should be in a machine readable format"
  6100. },
  6101. "comment" : {
  6102. "en" : "The provided copy of personal data should be machine readable"
  6103. },
  6104. "id" : "165",
  6105. "superClasses" : [ "89" ]
  6106. }, {
  6107. "iri" : "https://w3id.org/GDPRtEXT#RelevantForProcessing",
  6108. "baseIri" : "https://w3id.org/GDPRtEXT",
  6109. "instances" : 0,
  6110. "annotations" : {
  6111. "involves" : [ {
  6112. "identifier" : "involves",
  6113. "language" : "undefined",
  6114. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6115. "type" : "iri"
  6116. }, {
  6117. "identifier" : "involves",
  6118. "language" : "undefined",
  6119. "value" : "https://w3id.org/GDPRtEXT#Processing",
  6120. "type" : "iri"
  6121. } ]
  6122. },
  6123. "label" : {
  6124. "IRI-based" : "RelevantForProcessing",
  6125. "undefined" : "Relevant for processing"
  6126. },
  6127. "comment" : {
  6128. "en" : "Any retained personal data must be relevant for subsiquent processing"
  6129. },
  6130. "id" : "310",
  6131. "superClasses" : [ "145" ]
  6132. }, {
  6133. "iri" : "https://w3id.org/GDPRtEXT#RecordPurposeOfProcessing",
  6134. "baseIri" : "https://w3id.org/GDPRtEXT",
  6135. "instances" : 0,
  6136. "annotations" : {
  6137. "involves" : [ {
  6138. "identifier" : "involves",
  6139. "language" : "undefined",
  6140. "value" : "https://w3id.org/GDPRtEXT#Processing",
  6141. "type" : "iri"
  6142. } ]
  6143. },
  6144. "label" : {
  6145. "IRI-based" : "RecordPurposeOfProcessing",
  6146. "undefined" : "Record purpose of processing"
  6147. },
  6148. "comment" : {
  6149. "en" : "This obligation requires Controllers to record the purpose of processing associated with personal data and the given consent."
  6150. },
  6151. "id" : "45",
  6152. "superClasses" : [ "36" ]
  6153. }, {
  6154. "iri" : "https://w3id.org/GDPRtEXT#PurposeOfNewProcessing",
  6155. "baseIri" : "https://w3id.org/GDPRtEXT",
  6156. "instances" : 0,
  6157. "annotations" : {
  6158. "isDefinedBy" : [ {
  6159. "identifier" : "isDefinedBy",
  6160. "language" : "undefined",
  6161. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital50",
  6162. "type" : "iri"
  6163. }, {
  6164. "identifier" : "isDefinedBy",
  6165. "language" : "undefined",
  6166. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-4",
  6167. "type" : "iri"
  6168. } ],
  6169. "involves" : [ {
  6170. "identifier" : "involves",
  6171. "language" : "undefined",
  6172. "value" : "https://w3id.org/GDPRtEXT#Processing",
  6173. "type" : "iri"
  6174. } ]
  6175. },
  6176. "label" : {
  6177. "IRI-based" : "PurposeOfNewProcessing",
  6178. "undefined" : "Purpose of new processing"
  6179. },
  6180. "subClasses" : [ "200", "178", "180", "189", "121" ],
  6181. "comment" : {
  6182. "en" : "These are the obligations over determining the new or changed purposes of processing"
  6183. },
  6184. "id" : "122",
  6185. "superClasses" : [ "217" ]
  6186. }, {
  6187. "iri" : "https://w3id.org/GDPRtEXT#RightOfErasure",
  6188. "baseIri" : "https://w3id.org/GDPRtEXT",
  6189. "instances" : 0,
  6190. "annotations" : {
  6191. "isDefinedBy" : [ {
  6192. "identifier" : "isDefinedBy",
  6193. "language" : "undefined",
  6194. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital68",
  6195. "type" : "iri"
  6196. }, {
  6197. "identifier" : "isDefinedBy",
  6198. "language" : "undefined",
  6199. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital66",
  6200. "type" : "iri"
  6201. }, {
  6202. "identifier" : "isDefinedBy",
  6203. "language" : "undefined",
  6204. "value" : "https://w3id.org/GDPRtEXT/gdpr#article17",
  6205. "type" : "iri"
  6206. }, {
  6207. "identifier" : "isDefinedBy",
  6208. "language" : "undefined",
  6209. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital65",
  6210. "type" : "iri"
  6211. } ],
  6212. "involves" : [ {
  6213. "identifier" : "involves",
  6214. "language" : "undefined",
  6215. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  6216. "type" : "iri"
  6217. }, {
  6218. "identifier" : "involves",
  6219. "language" : "undefined",
  6220. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6221. "type" : "iri"
  6222. }, {
  6223. "identifier" : "involves",
  6224. "language" : "undefined",
  6225. "value" : "https://w3id.org/GDPRtEXT#EraseData",
  6226. "type" : "iri"
  6227. } ]
  6228. },
  6229. "label" : {
  6230. "IRI-based" : "RightOfErasure",
  6231. "undefined" : "Right of Erasure"
  6232. },
  6233. "subClasses" : [ "230", "283" ],
  6234. "comment" : {
  6235. "en" : "The data subject has the right to obtain erasure of their personal data"
  6236. },
  6237. "id" : "140",
  6238. "superClasses" : [ "136" ]
  6239. }, {
  6240. "iri" : "https://w3id.org/GDPRtEXT#CodeOfConduct",
  6241. "baseIri" : "https://w3id.org/GDPRtEXT",
  6242. "instances" : 0,
  6243. "annotations" : {
  6244. "isDefinedBy" : [ {
  6245. "identifier" : "isDefinedBy",
  6246. "language" : "undefined",
  6247. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital99",
  6248. "type" : "iri"
  6249. }, {
  6250. "identifier" : "isDefinedBy",
  6251. "language" : "undefined",
  6252. "value" : "https://w3id.org/GDPRtEXT/gdpr#article40-2",
  6253. "type" : "iri"
  6254. }, {
  6255. "identifier" : "isDefinedBy",
  6256. "language" : "undefined",
  6257. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital77",
  6258. "type" : "iri"
  6259. }, {
  6260. "identifier" : "isDefinedBy",
  6261. "language" : "undefined",
  6262. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital81",
  6263. "type" : "iri"
  6264. }, {
  6265. "identifier" : "isDefinedBy",
  6266. "language" : "undefined",
  6267. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital98",
  6268. "type" : "iri"
  6269. } ]
  6270. },
  6271. "label" : {
  6272. "IRI-based" : "CodeOfConduct",
  6273. "undefined" : "Code of Conduct"
  6274. },
  6275. "comment" : {
  6276. "en" : "A Code of Conduct for the purpose of specifying the application of GDPR which may be monitored, evaluated, or processed by a third party appointed by the organisation."
  6277. },
  6278. "id" : "232",
  6279. "superClasses" : [ "11" ]
  6280. }, {
  6281. "iri" : "https://w3id.org/GDPRtEXT#VitalInterest",
  6282. "baseIri" : "https://w3id.org/GDPRtEXT",
  6283. "instances" : 0,
  6284. "annotations" : {
  6285. "isDefinedBy" : [ {
  6286. "identifier" : "isDefinedBy",
  6287. "language" : "undefined",
  6288. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-c",
  6289. "type" : "iri"
  6290. }, {
  6291. "identifier" : "isDefinedBy",
  6292. "language" : "undefined",
  6293. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1-d",
  6294. "type" : "iri"
  6295. }, {
  6296. "identifier" : "isDefinedBy",
  6297. "language" : "undefined",
  6298. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital46",
  6299. "type" : "iri"
  6300. } ],
  6301. "involves" : [ {
  6302. "identifier" : "involves",
  6303. "language" : "undefined",
  6304. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  6305. "type" : "iri"
  6306. } ]
  6307. },
  6308. "label" : {
  6309. "IRI-based" : "VitalInterest",
  6310. "undefined" : "Vital Interests"
  6311. },
  6312. "comment" : {
  6313. "en" : "These are obligations pertaining to the vital interests of the data subjects"
  6314. },
  6315. "id" : "384",
  6316. "superClasses" : [ "217" ]
  6317. }, {
  6318. "iri" : "https://w3id.org/GDPRtEXT#RecordCategoriesOfDataSubjectsAndPersonalData",
  6319. "baseIri" : "https://w3id.org/GDPRtEXT",
  6320. "instances" : 0,
  6321. "annotations" : {
  6322. "involves" : [ {
  6323. "identifier" : "involves",
  6324. "language" : "undefined",
  6325. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  6326. "type" : "iri"
  6327. }, {
  6328. "identifier" : "involves",
  6329. "language" : "undefined",
  6330. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6331. "type" : "iri"
  6332. } ]
  6333. },
  6334. "label" : {
  6335. "IRI-based" : "RecordCategoriesOfDataSubjectsAndPersonalData",
  6336. "undefined" : "Categories of data subjects and personal data"
  6337. },
  6338. "comment" : {
  6339. "en" : "This obligation requires Controllers to record the categories of data subjects and the personal data involved in processing/activities."
  6340. },
  6341. "id" : "35",
  6342. "superClasses" : [ "36" ]
  6343. }, {
  6344. "iri" : "http://data.europa.eu/eli/ontology#LegalResource",
  6345. "baseIri" : "http://data.europa.eu/eli/ontology",
  6346. "instances" : 0,
  6347. "label" : {
  6348. "IRI-based" : "LegalResource"
  6349. },
  6350. "attributes" : [ "external" ],
  6351. "id" : "455"
  6352. }, {
  6353. "iri" : "https://w3id.org/GDPRtEXT#InfoAboutSourceOfData",
  6354. "baseIri" : "https://w3id.org/GDPRtEXT",
  6355. "instances" : 0,
  6356. "annotations" : {
  6357. "involves" : [ {
  6358. "identifier" : "involves",
  6359. "language" : "undefined",
  6360. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6361. "type" : "iri"
  6362. }, {
  6363. "identifier" : "involves",
  6364. "language" : "undefined",
  6365. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  6366. "type" : "iri"
  6367. } ]
  6368. },
  6369. "label" : {
  6370. "IRI-based" : "InfoAboutSourceOfData",
  6371. "undefined" : "Information about data source"
  6372. },
  6373. "comment" : {
  6374. "en" : "The right to access personal data also includes information about the source of the personal data"
  6375. },
  6376. "id" : "184",
  6377. "superClasses" : [ "94" ]
  6378. }, {
  6379. "iri" : "https://w3id.org/GDPRtEXT#CooperateWithDPA",
  6380. "baseIri" : "https://w3id.org/GDPRtEXT",
  6381. "instances" : 0,
  6382. "annotations" : {
  6383. "isDefinedBy" : [ {
  6384. "identifier" : "isDefinedBy",
  6385. "language" : "undefined",
  6386. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital82",
  6387. "type" : "iri"
  6388. }, {
  6389. "identifier" : "isDefinedBy",
  6390. "language" : "undefined",
  6391. "value" : "https://w3id.org/GDPRtEXT/gdpr#article31",
  6392. "type" : "iri"
  6393. } ],
  6394. "involves" : [ {
  6395. "identifier" : "involves",
  6396. "language" : "undefined",
  6397. "value" : "https://w3id.org/GDPRtEXT#DPA",
  6398. "type" : "iri"
  6399. } ]
  6400. },
  6401. "label" : {
  6402. "IRI-based" : "CooperateWithDPA",
  6403. "undefined" : "Co-operate with DPA"
  6404. },
  6405. "comment" : {
  6406. "en" : "This obligation specifies the Controller/Processor must co-operate with the Data Protection Authority (DPA)."
  6407. },
  6408. "id" : "356",
  6409. "superClasses" : [ "59", "61" ]
  6410. }, {
  6411. "iri" : "https://w3id.org/GDPRtEXT#AccurateCollection",
  6412. "baseIri" : "https://w3id.org/GDPRtEXT",
  6413. "instances" : 0,
  6414. "annotations" : {
  6415. "involves" : [ {
  6416. "identifier" : "involves",
  6417. "language" : "undefined",
  6418. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6419. "type" : "iri"
  6420. }, {
  6421. "identifier" : "involves",
  6422. "language" : "undefined",
  6423. "value" : "https://w3id.org/GDPRtEXT#CollectionOfPersonalData",
  6424. "type" : "iri"
  6425. } ]
  6426. },
  6427. "label" : {
  6428. "IRI-based" : "AccurateCollection",
  6429. "undefined" : "Accurate Collection"
  6430. },
  6431. "comment" : {
  6432. "en" : "This obligation specifies that the collection of (or collected) personal data should in an accurate form - i.e. the personal data should be accurate."
  6433. },
  6434. "id" : "315",
  6435. "superClasses" : [ "71" ]
  6436. }, {
  6437. "iri" : "https://w3id.org/GDPRtEXT#ReturnOrDestroyPersonalDataAtEndTerm",
  6438. "baseIri" : "https://w3id.org/GDPRtEXT",
  6439. "instances" : 0,
  6440. "annotations" : {
  6441. "involves" : [ {
  6442. "identifier" : "involves",
  6443. "language" : "undefined",
  6444. "value" : "https://w3id.org/GDPRtEXT#ProcessorControllerAgreement",
  6445. "type" : "iri"
  6446. }, {
  6447. "identifier" : "involves",
  6448. "language" : "undefined",
  6449. "value" : "https://w3id.org/GDPRtEXT#EraseData",
  6450. "type" : "iri"
  6451. }, {
  6452. "identifier" : "involves",
  6453. "language" : "undefined",
  6454. "value" : "https://w3id.org/GDPRtEXT#Processor",
  6455. "type" : "iri"
  6456. } ]
  6457. },
  6458. "label" : {
  6459. "IRI-based" : "ReturnOrDestroyPersonalDataAtEndTerm",
  6460. "undefined" : "Return or destroy data"
  6461. },
  6462. "comment" : {
  6463. "en" : "The processor must return or destroy personal data at the end of term (of its agreement with the controller)"
  6464. },
  6465. "id" : "358",
  6466. "superClasses" : [ "61" ]
  6467. }, {
  6468. "iri" : "https://w3id.org/GDPRtEXT#RecordSecurityMeasures",
  6469. "baseIri" : "https://w3id.org/GDPRtEXT",
  6470. "instances" : 0,
  6471. "annotations" : {
  6472. "involves" : [ {
  6473. "identifier" : "involves",
  6474. "language" : "undefined",
  6475. "value" : "https://w3id.org/GDPRtEXT#SecurityOfPersonalData",
  6476. "type" : "iri"
  6477. } ]
  6478. },
  6479. "label" : {
  6480. "IRI-based" : "RecordSecurityMeasures",
  6481. "undefined" : "Record security measures"
  6482. },
  6483. "comment" : {
  6484. "en" : "This obligation requires Controllers to record the measures taken to ensure adequate safety measures of personal data and the involved activities."
  6485. },
  6486. "id" : "279",
  6487. "superClasses" : [ "36" ]
  6488. }, {
  6489. "iri" : "https://w3id.org/GDPRtEXT#Accuracy",
  6490. "baseIri" : "https://w3id.org/GDPRtEXT",
  6491. "instances" : 0,
  6492. "annotations" : {
  6493. "isDefinedBy" : [ {
  6494. "identifier" : "isDefinedBy",
  6495. "language" : "undefined",
  6496. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-1-d",
  6497. "type" : "iri"
  6498. }, {
  6499. "identifier" : "isDefinedBy",
  6500. "language" : "undefined",
  6501. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital39",
  6502. "type" : "iri"
  6503. } ],
  6504. "involves" : [ {
  6505. "identifier" : "involves",
  6506. "language" : "undefined",
  6507. "value" : "https://w3id.org/GDPRtEXT#EraseData",
  6508. "type" : "iri"
  6509. }, {
  6510. "identifier" : "involves",
  6511. "language" : "undefined",
  6512. "value" : "https://w3id.org/GDPRtEXT#RectifyData",
  6513. "type" : "iri"
  6514. }, {
  6515. "identifier" : "involves",
  6516. "language" : "undefined",
  6517. "value" : "https://w3id.org/GDPRtEXT#RectifyInaccuracy",
  6518. "type" : "iri"
  6519. }, {
  6520. "identifier" : "involves",
  6521. "language" : "undefined",
  6522. "value" : "https://w3id.org/GDPRtEXT#KeptUpToDate",
  6523. "type" : "iri"
  6524. }, {
  6525. "identifier" : "involves",
  6526. "language" : "undefined",
  6527. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6528. "type" : "iri"
  6529. } ]
  6530. },
  6531. "label" : {
  6532. "IRI-based" : "Accuracy",
  6533. "undefined" : "Principle of Accuracy"
  6534. },
  6535. "comment" : {
  6536. "en" : "The principle of accuracy states that personal data must be accurate and, where necessary, kept up to date; every reasonable step must be taken to ensure that personal data that are inaccurate, having regard to the purposes for which they are processed, are erased or rectified without delay."
  6537. },
  6538. "id" : "73",
  6539. "superClasses" : [ "2" ]
  6540. }, {
  6541. "iri" : "https://w3id.org/GDPRtEXT#RightToTransparency",
  6542. "baseIri" : "https://w3id.org/GDPRtEXT",
  6543. "instances" : 0,
  6544. "annotations" : {
  6545. "isDefinedBy" : [ {
  6546. "identifier" : "isDefinedBy",
  6547. "language" : "undefined",
  6548. "value" : "https://w3id.org/GDPRtEXT/gdpr#article12",
  6549. "type" : "iri"
  6550. }, {
  6551. "identifier" : "isDefinedBy",
  6552. "language" : "undefined",
  6553. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital39",
  6554. "type" : "iri"
  6555. }, {
  6556. "identifier" : "isDefinedBy",
  6557. "language" : "undefined",
  6558. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital60",
  6559. "type" : "iri"
  6560. }, {
  6561. "identifier" : "isDefinedBy",
  6562. "language" : "undefined",
  6563. "value" : "https://w3id.org/GDPRtEXT/gdpr#article14",
  6564. "type" : "iri"
  6565. }, {
  6566. "identifier" : "isDefinedBy",
  6567. "language" : "undefined",
  6568. "value" : "https://w3id.org/GDPRtEXT/gdpr#article13",
  6569. "type" : "iri"
  6570. }, {
  6571. "identifier" : "isDefinedBy",
  6572. "language" : "undefined",
  6573. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-1-a",
  6574. "type" : "iri"
  6575. }, {
  6576. "identifier" : "isDefinedBy",
  6577. "language" : "undefined",
  6578. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital58",
  6579. "type" : "iri"
  6580. } ],
  6581. "involves" : [ {
  6582. "identifier" : "involves",
  6583. "language" : "undefined",
  6584. "value" : "https://w3id.org/GDPRtEXT#Controller",
  6585. "type" : "iri"
  6586. }, {
  6587. "identifier" : "involves",
  6588. "language" : "undefined",
  6589. "value" : "https://w3id.org/GDPRtEXT#InformationShouldBeConcise",
  6590. "type" : "iri"
  6591. }, {
  6592. "identifier" : "involves",
  6593. "language" : "undefined",
  6594. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  6595. "type" : "iri"
  6596. }, {
  6597. "identifier" : "involves",
  6598. "language" : "undefined",
  6599. "value" : "https://w3id.org/GDPRtEXT#InformationShouldBeIntelligible",
  6600. "type" : "iri"
  6601. }, {
  6602. "identifier" : "involves",
  6603. "language" : "undefined",
  6604. "value" : "https://w3id.org/GDPRtEXT#LawfulnessFairnessAndTransparency",
  6605. "type" : "iri"
  6606. }, {
  6607. "identifier" : "involves",
  6608. "language" : "undefined",
  6609. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6610. "type" : "iri"
  6611. }, {
  6612. "identifier" : "involves",
  6613. "language" : "undefined",
  6614. "value" : "https://w3id.org/GDPRtEXT#Processing",
  6615. "type" : "iri"
  6616. }, {
  6617. "identifier" : "involves",
  6618. "language" : "undefined",
  6619. "value" : "https://w3id.org/GDPRtEXT#InformationShouldBeTransparent",
  6620. "type" : "iri"
  6621. }, {
  6622. "identifier" : "involves",
  6623. "language" : "undefined",
  6624. "value" : "https://w3id.org/GDPRtEXT#InformationShouldBeEasilyAccessible",
  6625. "type" : "iri"
  6626. } ]
  6627. },
  6628. "label" : {
  6629. "IRI-based" : "RightToTransparency",
  6630. "undefined" : "Right to Transparency"
  6631. },
  6632. "subClasses" : [ "215", "429", "425", "264" ],
  6633. "comment" : {
  6634. "en" : "The right to transparency requires controllers to provide information about the processing activities as well as personal data and its usage in a transparent manner"
  6635. },
  6636. "id" : "135",
  6637. "superClasses" : [ "136" ]
  6638. }, {
  6639. "iri" : "https://w3id.org/GDPRtEXT#MaintainRecordOfBreach",
  6640. "baseIri" : "https://w3id.org/GDPRtEXT",
  6641. "instances" : 0,
  6642. "annotations" : {
  6643. "involves" : [ {
  6644. "identifier" : "involves",
  6645. "language" : "undefined",
  6646. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  6647. "type" : "iri"
  6648. } ]
  6649. },
  6650. "label" : {
  6651. "IRI-based" : "MaintainRecordOfBreach",
  6652. "undefined" : "Maintain Record of Breach"
  6653. },
  6654. "comment" : {
  6655. "en" : "GDPR mandates the recording of data breaches and its effects."
  6656. },
  6657. "id" : "435",
  6658. "superClasses" : [ "120" ]
  6659. }, {
  6660. "iri" : "https://w3id.org/GDPRtEXT#ExistenceOfSafeguards",
  6661. "baseIri" : "https://w3id.org/GDPRtEXT",
  6662. "instances" : 0,
  6663. "annotations" : {
  6664. "involves" : [ {
  6665. "identifier" : "involves",
  6666. "language" : "undefined",
  6667. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6668. "type" : "iri"
  6669. }, {
  6670. "identifier" : "involves",
  6671. "language" : "undefined",
  6672. "value" : "https://w3id.org/GDPRtEXT#SecurityOfPersonalData",
  6673. "type" : "iri"
  6674. } ]
  6675. },
  6676. "label" : {
  6677. "IRI-based" : "ExistenceOfSafeguards",
  6678. "undefined" : "Existence of safeguards"
  6679. },
  6680. "comment" : {
  6681. "en" : "The purpose of new processing should take into context the existence of appropriate safeguards"
  6682. },
  6683. "id" : "180",
  6684. "superClasses" : [ "122" ]
  6685. }, {
  6686. "iri" : "https://w3id.org/GDPRtEXT#AdequateForProcessing",
  6687. "baseIri" : "https://w3id.org/GDPRtEXT",
  6688. "instances" : 0,
  6689. "annotations" : {
  6690. "involves" : [ {
  6691. "identifier" : "involves",
  6692. "language" : "undefined",
  6693. "value" : "https://w3id.org/GDPRtEXT#StoreData",
  6694. "type" : "iri"
  6695. }, {
  6696. "identifier" : "involves",
  6697. "language" : "undefined",
  6698. "value" : "https://w3id.org/GDPRtEXT#Processing",
  6699. "type" : "iri"
  6700. } ]
  6701. },
  6702. "label" : {
  6703. "IRI-based" : "AdequateForProcessing",
  6704. "undefined" : "Adequate for processing"
  6705. },
  6706. "comment" : {
  6707. "en" : "Only the personal data adequat for required processing should be maintained"
  6708. },
  6709. "id" : "306",
  6710. "superClasses" : [ "145" ]
  6711. }, {
  6712. "iri" : "https://w3id.org/GDPRtEXT#VoluntaryOptInConsentObligation",
  6713. "baseIri" : "https://w3id.org/GDPRtEXT",
  6714. "instances" : 0,
  6715. "annotations" : {
  6716. "involves" : [ {
  6717. "identifier" : "involves",
  6718. "language" : "undefined",
  6719. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  6720. "type" : "iri"
  6721. } ]
  6722. },
  6723. "label" : {
  6724. "IRI-based" : "VoluntaryOptInConsentObligation",
  6725. "undefined" : "Voluntary & Opt-in"
  6726. },
  6727. "comment" : {
  6728. "en" : "Consent must be obtained through the data subject's voluntary action and should be opt-in and not opt-out or by default."
  6729. },
  6730. "id" : "9",
  6731. "superClasses" : [ "5" ]
  6732. }, {
  6733. "iri" : "https://w3id.org/GDPRtEXT#Marketing",
  6734. "baseIri" : "https://w3id.org/GDPRtEXT",
  6735. "instances" : 0,
  6736. "label" : {
  6737. "IRI-based" : "Marketing",
  6738. "undefined" : "Marketing"
  6739. },
  6740. "subClasses" : [ "342" ],
  6741. "comment" : {
  6742. "undefined" : "The process or technique of promoting, selling, and distributing a product or service."
  6743. },
  6744. "id" : "343",
  6745. "superClasses" : [ "208" ]
  6746. }, {
  6747. "iri" : "https://w3id.org/GDPRtEXT#LegalClaims",
  6748. "baseIri" : "https://w3id.org/GDPRtEXT",
  6749. "instances" : 0,
  6750. "annotations" : {
  6751. "isDefinedBy" : [ {
  6752. "identifier" : "isDefinedBy",
  6753. "language" : "undefined",
  6754. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-f",
  6755. "type" : "iri"
  6756. } ]
  6757. },
  6758. "label" : {
  6759. "IRI-based" : "LegalClaims",
  6760. "undefined" : "Legal Claims"
  6761. },
  6762. "comment" : {
  6763. "en" : "Lawful basis for processing is provided by legal claims."
  6764. },
  6765. "id" : "383",
  6766. "superClasses" : [ "217" ]
  6767. }, {
  6768. "iri" : "https://w3id.org/GDPRtEXT#Certification",
  6769. "baseIri" : "https://w3id.org/GDPRtEXT",
  6770. "instances" : 0,
  6771. "annotations" : {
  6772. "isDefinedBy" : [ {
  6773. "identifier" : "isDefinedBy",
  6774. "language" : "undefined",
  6775. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital77",
  6776. "type" : "iri"
  6777. }, {
  6778. "identifier" : "isDefinedBy",
  6779. "language" : "undefined",
  6780. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital81",
  6781. "type" : "iri"
  6782. } ]
  6783. },
  6784. "label" : {
  6785. "IRI-based" : "Certification",
  6786. "undefined" : "Certification"
  6787. },
  6788. "comment" : {
  6789. "en" : "A certification pertaining to GDPR compliance"
  6790. },
  6791. "id" : "388",
  6792. "superClasses" : [ "244" ]
  6793. }, {
  6794. "iri" : "https://w3id.org/GDPRtEXT#InfoAboutStoragePeriod",
  6795. "baseIri" : "https://w3id.org/GDPRtEXT",
  6796. "instances" : 0,
  6797. "annotations" : {
  6798. "involves" : [ {
  6799. "identifier" : "involves",
  6800. "language" : "undefined",
  6801. "value" : "https://w3id.org/GDPRtEXT#StoreData",
  6802. "type" : "iri"
  6803. }, {
  6804. "identifier" : "involves",
  6805. "language" : "undefined",
  6806. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6807. "type" : "iri"
  6808. } ]
  6809. },
  6810. "label" : {
  6811. "IRI-based" : "InfoAboutStoragePeriod",
  6812. "undefined" : "Information about storage period"
  6813. },
  6814. "comment" : {
  6815. "en" : "The right to access personal data also includes information about the storage period of the data subject's personal data"
  6816. },
  6817. "id" : "186",
  6818. "superClasses" : [ "94" ]
  6819. }, {
  6820. "iri" : "https://w3id.org/GDPRtEXT#DataSubject",
  6821. "baseIri" : "https://w3id.org/GDPRtEXT",
  6822. "instances" : 0,
  6823. "label" : {
  6824. "IRI-based" : "DataSubject",
  6825. "undefined" : "Data Subject"
  6826. },
  6827. "comment" : {
  6828. "en" : "An individual or entity to whom their personal data relates."
  6829. },
  6830. "id" : "101",
  6831. "superClasses" : [ "84" ]
  6832. }, {
  6833. "iri" : "https://w3id.org/GDPRtEXT#OutsideMaterialScope",
  6834. "baseIri" : "https://w3id.org/GDPRtEXT",
  6835. "instances" : 0,
  6836. "annotations" : {
  6837. "isDefinedBy" : [ {
  6838. "identifier" : "isDefinedBy",
  6839. "language" : "undefined",
  6840. "value" : "https://w3id.org/GDPRtEXT/gdpr#article2-2",
  6841. "type" : "iri"
  6842. }, {
  6843. "identifier" : "isDefinedBy",
  6844. "language" : "undefined",
  6845. "value" : "https://w3id.org/GDPRtEXT/gdpr#article2-3",
  6846. "type" : "iri"
  6847. } ]
  6848. },
  6849. "label" : {
  6850. "IRI-based" : "OutsideMaterialScope",
  6851. "undefined" : "Outside Material Scope"
  6852. },
  6853. "comment" : {
  6854. "en" : "The activity was deemed to be outside the material scope of the GDPR."
  6855. },
  6856. "id" : "335",
  6857. "superClasses" : [ "63" ]
  6858. }, {
  6859. "iri" : "https://w3id.org/GDPRtEXT#ReportDataBreach",
  6860. "baseIri" : "https://w3id.org/GDPRtEXT",
  6861. "instances" : 0,
  6862. "annotations" : {
  6863. "isDefinedBy" : [ {
  6864. "identifier" : "isDefinedBy",
  6865. "language" : "undefined",
  6866. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital85",
  6867. "type" : "iri"
  6868. }, {
  6869. "identifier" : "isDefinedBy",
  6870. "language" : "undefined",
  6871. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital87",
  6872. "type" : "iri"
  6873. }, {
  6874. "identifier" : "isDefinedBy",
  6875. "language" : "undefined",
  6876. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital86",
  6877. "type" : "iri"
  6878. }, {
  6879. "identifier" : "isDefinedBy",
  6880. "language" : "undefined",
  6881. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital73",
  6882. "type" : "iri"
  6883. }, {
  6884. "identifier" : "isDefinedBy",
  6885. "language" : "undefined",
  6886. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital88",
  6887. "type" : "iri"
  6888. }, {
  6889. "identifier" : "isDefinedBy",
  6890. "language" : "undefined",
  6891. "value" : "https://w3id.org/GDPRtEXT/gdpr#article33",
  6892. "type" : "iri"
  6893. } ],
  6894. "involves" : [ {
  6895. "identifier" : "involves",
  6896. "language" : "undefined",
  6897. "value" : "https://w3id.org/GDPRtEXT#ReportDataBreachToDPAWithin72Hours",
  6898. "type" : "iri"
  6899. }, {
  6900. "identifier" : "involves",
  6901. "language" : "undefined",
  6902. "value" : "https://w3id.org/GDPRtEXT#NotifyDataSubjectOfBreach",
  6903. "type" : "iri"
  6904. }, {
  6905. "identifier" : "involves",
  6906. "language" : "undefined",
  6907. "value" : "https://w3id.org/GDPRtEXT#DataBreach",
  6908. "type" : "iri"
  6909. }, {
  6910. "identifier" : "involves",
  6911. "language" : "undefined",
  6912. "value" : "https://w3id.org/GDPRtEXT#MaintainRecordOfBreach",
  6913. "type" : "iri"
  6914. } ]
  6915. },
  6916. "label" : {
  6917. "IRI-based" : "ReportDataBreach",
  6918. "undefined" : "Report Data Breach"
  6919. },
  6920. "subClasses" : [ "435", "126", "119", "360" ],
  6921. "comment" : {
  6922. "en" : "The act of reporting a data breach to entities mentioned within the GDPR. These are the Data Protection Authority (DPA), and in the case of Processors, the Controller they have an agreement with."
  6923. },
  6924. "id" : "120",
  6925. "superClasses" : [ "59", "208", "246" ]
  6926. }, {
  6927. "iri" : "https://w3id.org/GDPRtEXT#GivenConsent",
  6928. "baseIri" : "https://w3id.org/GDPRtEXT",
  6929. "instances" : 0,
  6930. "annotations" : {
  6931. "isDefinedBy" : [ {
  6932. "identifier" : "isDefinedBy",
  6933. "language" : "undefined",
  6934. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital42",
  6935. "type" : "iri"
  6936. }, {
  6937. "identifier" : "isDefinedBy",
  6938. "language" : "undefined",
  6939. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital43",
  6940. "type" : "iri"
  6941. }, {
  6942. "identifier" : "isDefinedBy",
  6943. "language" : "undefined",
  6944. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital32",
  6945. "type" : "iri"
  6946. }, {
  6947. "identifier" : "isDefinedBy",
  6948. "language" : "undefined",
  6949. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-a",
  6950. "type" : "iri"
  6951. }, {
  6952. "identifier" : "isDefinedBy",
  6953. "language" : "undefined",
  6954. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1-a",
  6955. "type" : "iri"
  6956. } ],
  6957. "involves" : [ {
  6958. "identifier" : "involves",
  6959. "language" : "undefined",
  6960. "value" : "https://w3id.org/GDPRtEXT#Processing",
  6961. "type" : "iri"
  6962. }, {
  6963. "identifier" : "involves",
  6964. "language" : "undefined",
  6965. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  6966. "type" : "iri"
  6967. }, {
  6968. "identifier" : "involves",
  6969. "language" : "undefined",
  6970. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  6971. "type" : "iri"
  6972. } ]
  6973. },
  6974. "label" : {
  6975. "IRI-based" : "GivenConsent",
  6976. "undefined" : "Given Consent"
  6977. },
  6978. "subClasses" : [ "5" ],
  6979. "comment" : {
  6980. "en" : "Given Consent refers specifically to the form of consent given by the data subject in relation to their personal data and the proposed usage by activities."
  6981. },
  6982. "id" : "159",
  6983. "superClasses" : [ "217", "234" ]
  6984. }, {
  6985. "iri" : "https://w3id.org/GDPRtEXT#VoluntarySystemOfAccredition",
  6986. "baseIri" : "https://w3id.org/GDPRtEXT",
  6987. "instances" : 0,
  6988. "annotations" : {
  6989. "isDefinedBy" : [ {
  6990. "identifier" : "isDefinedBy",
  6991. "language" : "undefined",
  6992. "value" : "https://w3id.org/GDPRtEXT/gdpr#article42-3",
  6993. "type" : "iri"
  6994. } ]
  6995. },
  6996. "label" : {
  6997. "IRI-based" : "VoluntarySystemOfAccredition",
  6998. "undefined" : "Voluntary accredition"
  6999. },
  7000. "comment" : {
  7001. "en" : "The seals and certifications should be a voluntary system of accredition"
  7002. },
  7003. "id" : "324",
  7004. "superClasses" : [ "323" ]
  7005. }, {
  7006. "iri" : "https://w3id.org/GDPRtEXT#ShouldBeDistinguishableFromOtherMatters",
  7007. "baseIri" : "https://w3id.org/GDPRtEXT",
  7008. "instances" : 0,
  7009. "annotations" : {
  7010. "isDefinedBy" : [ {
  7011. "identifier" : "isDefinedBy",
  7012. "language" : "undefined",
  7013. "value" : "https://w3id.org/GDPRtEXT/gdpr#article7-2",
  7014. "type" : "iri"
  7015. } ],
  7016. "involves" : [ {
  7017. "identifier" : "involves",
  7018. "language" : "undefined",
  7019. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  7020. "type" : "iri"
  7021. } ]
  7022. },
  7023. "label" : {
  7024. "IRI-based" : "ShouldBeDistinguishableFromOtherMatters",
  7025. "undefined" : "Distinguishable from other matters"
  7026. },
  7027. "comment" : {
  7028. "en" : "Obtained consent should be distinguishable from other related matters (in the context of the process)"
  7029. },
  7030. "id" : "220",
  7031. "superClasses" : [ "203" ]
  7032. }, {
  7033. "iri" : "https://w3id.org/GDPRtEXT#ArchiveData",
  7034. "baseIri" : "https://w3id.org/GDPRtEXT",
  7035. "instances" : 0,
  7036. "annotations" : {
  7037. "involves" : [ {
  7038. "identifier" : "involves",
  7039. "language" : "undefined",
  7040. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  7041. "type" : "iri"
  7042. } ]
  7043. },
  7044. "label" : {
  7045. "IRI-based" : "ArchiveData",
  7046. "undefined" : "Archive Data"
  7047. },
  7048. "comment" : {
  7049. "undefined" : "An activity where personal data is archived"
  7050. },
  7051. "id" : "205",
  7052. "superClasses" : [ "66" ]
  7053. }, {
  7054. "iri" : "https://w3id.org/GDPRtEXT#ProvideCopyOfPersonalData",
  7055. "baseIri" : "https://w3id.org/GDPRtEXT",
  7056. "instances" : 0,
  7057. "annotations" : {
  7058. "involves" : [ {
  7059. "identifier" : "involves",
  7060. "language" : "undefined",
  7061. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  7062. "type" : "iri"
  7063. } ]
  7064. },
  7065. "label" : {
  7066. "IRI-based" : "ProvideCopyOfPersonalData",
  7067. "undefined" : "Provide copy of Personal Data"
  7068. },
  7069. "subClasses" : [ "88", "163", "165", "167" ],
  7070. "comment" : {
  7071. "en" : "The right of data portability requries providing a copy of the data subject's personal data"
  7072. },
  7073. "id" : "89",
  7074. "superClasses" : [ "174", "66" ]
  7075. }, {
  7076. "iri" : "https://w3id.org/GDPRtEXT#ContractWithDataSubject",
  7077. "baseIri" : "https://w3id.org/GDPRtEXT",
  7078. "instances" : 0,
  7079. "annotations" : {
  7080. "isDefinedBy" : [ {
  7081. "identifier" : "isDefinedBy",
  7082. "language" : "undefined",
  7083. "value" : "https://w3id.org/GDPRtEXT/gdpr#article6-1-b",
  7084. "type" : "iri"
  7085. }, {
  7086. "identifier" : "isDefinedBy",
  7087. "language" : "undefined",
  7088. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital44",
  7089. "type" : "iri"
  7090. } ],
  7091. "involves" : [ {
  7092. "identifier" : "involves",
  7093. "language" : "undefined",
  7094. "value" : "https://w3id.org/GDPRtEXT#DataSubject",
  7095. "type" : "iri"
  7096. } ]
  7097. },
  7098. "label" : {
  7099. "IRI-based" : "ContractWithDataSubject",
  7100. "undefined" : "Contract with Data Subject"
  7101. },
  7102. "comment" : {
  7103. "en" : "The lawful basis for processing personal data is provided through a contract with the data subject."
  7104. },
  7105. "id" : "380",
  7106. "superClasses" : [ "217" ]
  7107. }, {
  7108. "iri" : "https://w3id.org/GDPRtEXT#ShareDataWithThirdParty",
  7109. "baseIri" : "https://w3id.org/GDPRtEXT",
  7110. "instances" : 0,
  7111. "annotations" : {
  7112. "involves" : [ {
  7113. "identifier" : "involves",
  7114. "language" : "undefined",
  7115. "value" : "https://w3id.org/GDPRtEXT#Controller",
  7116. "type" : "iri"
  7117. }, {
  7118. "identifier" : "involves",
  7119. "language" : "undefined",
  7120. "value" : "https://w3id.org/GDPRtEXT#Processor",
  7121. "type" : "iri"
  7122. }, {
  7123. "identifier" : "involves",
  7124. "language" : "undefined",
  7125. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  7126. "type" : "iri"
  7127. } ]
  7128. },
  7129. "label" : {
  7130. "IRI-based" : "ShareDataWithThirdParty",
  7131. "undefined" : "Share Personal Data with Third Party"
  7132. },
  7133. "comment" : {
  7134. "en" : "This activity represents the sharing of data subject's personal data with a third party."
  7135. },
  7136. "id" : "196",
  7137. "superClasses" : [ "66" ]
  7138. }, {
  7139. "iri" : "https://w3id.org/GDPRtEXT#ControllerRepresentative",
  7140. "baseIri" : "https://w3id.org/GDPRtEXT",
  7141. "instances" : 0,
  7142. "annotations" : {
  7143. "isDefinedBy" : [ {
  7144. "identifier" : "isDefinedBy",
  7145. "language" : "undefined",
  7146. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital80",
  7147. "type" : "iri"
  7148. }, {
  7149. "identifier" : "isDefinedBy",
  7150. "language" : "undefined",
  7151. "value" : "https://w3id.org/GDPRtEXT/gdpr#article4-17",
  7152. "type" : "iri"
  7153. }, {
  7154. "identifier" : "isDefinedBy",
  7155. "language" : "undefined",
  7156. "value" : "https://w3id.org/GDPRtEXT/gdpr#article27",
  7157. "type" : "iri"
  7158. } ],
  7159. "involves" : [ {
  7160. "identifier" : "involves",
  7161. "language" : "undefined",
  7162. "value" : "https://w3id.org/GDPRtEXT#Controller",
  7163. "type" : "iri"
  7164. } ]
  7165. },
  7166. "label" : {
  7167. "IRI-based" : "ControllerRepresentative",
  7168. "undefined" : "Controller Representative"
  7169. },
  7170. "comment" : {
  7171. "en" : "A natural or legal person established in the Union who, designated by the controllerin writing, represents the controller with regard to their respective obligations under the GDPR."
  7172. },
  7173. "id" : "98",
  7174. "superClasses" : [ "84" ]
  7175. }, {
  7176. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  7177. "baseIri" : "http://owl2vowl.de",
  7178. "id" : "430",
  7179. "label" : {
  7180. "undefined" : "Thing"
  7181. }
  7182. }, {
  7183. "iri" : "https://w3id.org/GDPRtEXT#NoChargeLeviedForRightToAccess",
  7184. "baseIri" : "https://w3id.org/GDPRtEXT",
  7185. "instances" : 0,
  7186. "annotations" : {
  7187. "isDefinedBy" : [ {
  7188. "identifier" : "isDefinedBy",
  7189. "language" : "undefined",
  7190. "value" : "https://w3id.org/GDPRtEXT/gdpr#article12-5",
  7191. "type" : "iri"
  7192. }, {
  7193. "identifier" : "isDefinedBy",
  7194. "language" : "undefined",
  7195. "value" : "https://w3id.org/GDPRtEXT/gdpr#article15-3",
  7196. "type" : "iri"
  7197. }, {
  7198. "identifier" : "isDefinedBy",
  7199. "language" : "undefined",
  7200. "value" : "https://w3id.org/GDPRtEXT/gdpr#article15-4",
  7201. "type" : "iri"
  7202. }, {
  7203. "identifier" : "isDefinedBy",
  7204. "language" : "undefined",
  7205. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital59",
  7206. "type" : "iri"
  7207. } ],
  7208. "involves" : [ {
  7209. "identifier" : "involves",
  7210. "language" : "undefined",
  7211. "value" : "https://w3id.org/GDPRtEXT#Rights",
  7212. "type" : "iri"
  7213. } ]
  7214. },
  7215. "label" : {
  7216. "IRI-based" : "NoChargeLeviedForRightToAccess",
  7217. "undefined" : "No charges levied"
  7218. },
  7219. "comment" : {
  7220. "en" : "The right to access personal data should not incur any undue charge levied on the data subject for exercising their right"
  7221. },
  7222. "id" : "185",
  7223. "superClasses" : [ "94" ]
  7224. }, {
  7225. "iri" : "https://w3id.org/GDPRtEXT#R19",
  7226. "baseIri" : "https://w3id.org/GDPRtEXT",
  7227. "instances" : 0,
  7228. "annotations" : {
  7229. "isDefinedBy" : [ {
  7230. "identifier" : "isDefinedBy",
  7231. "language" : "undefined",
  7232. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital19",
  7233. "type" : "iri"
  7234. } ]
  7235. },
  7236. "label" : {
  7237. "IRI-based" : "R19",
  7238. "undefined" : "Covered by Directive (EU) 2016/680"
  7239. },
  7240. "comment" : {
  7241. "en" : "Exempted as it involves areas covered by Directive (EU) 2016/680"
  7242. },
  7243. "id" : "337",
  7244. "superClasses" : [ "63" ]
  7245. }, {
  7246. "iri" : "https://w3id.org/GDPRtEXT#CanBeWithdrawnEasilyConsentObligation",
  7247. "baseIri" : "https://w3id.org/GDPRtEXT",
  7248. "instances" : 0,
  7249. "annotations" : {
  7250. "isDefinedBy" : [ {
  7251. "identifier" : "isDefinedBy",
  7252. "language" : "undefined",
  7253. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital42",
  7254. "type" : "iri"
  7255. }, {
  7256. "identifier" : "isDefinedBy",
  7257. "language" : "undefined",
  7258. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital65",
  7259. "type" : "iri"
  7260. }, {
  7261. "identifier" : "isDefinedBy",
  7262. "language" : "undefined",
  7263. "value" : "https://w3id.org/GDPRtEXT/gdpr#article7-3",
  7264. "type" : "iri"
  7265. } ],
  7266. "involves" : [ {
  7267. "identifier" : "involves",
  7268. "language" : "undefined",
  7269. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  7270. "type" : "iri"
  7271. }, {
  7272. "identifier" : "involves",
  7273. "language" : "undefined",
  7274. "value" : "https://w3id.org/GDPRtEXT#WithdrawingConsent",
  7275. "type" : "iri"
  7276. } ]
  7277. },
  7278. "label" : {
  7279. "IRI-based" : "CanBeWithdrawnEasilyConsentObligation",
  7280. "undefined" : "Can be withdrawn easily"
  7281. },
  7282. "comment" : {
  7283. "en" : "This obligation states that the data subject should be able to withdraw the consent as easily as it was to give it."
  7284. },
  7285. "id" : "202",
  7286. "superClasses" : [ "203" ]
  7287. }, {
  7288. "iri" : "https://w3id.org/GDPRtEXT#R17",
  7289. "baseIri" : "https://w3id.org/GDPRtEXT",
  7290. "instances" : 0,
  7291. "annotations" : {
  7292. "isDefinedBy" : [ {
  7293. "identifier" : "isDefinedBy",
  7294. "language" : "undefined",
  7295. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital17",
  7296. "type" : "iri"
  7297. } ]
  7298. },
  7299. "label" : {
  7300. "IRI-based" : "R17",
  7301. "undefined" : "Regulation (EC) No 45/2001"
  7302. },
  7303. "comment" : {
  7304. "en" : "Related to Regulation (EC) No. 45/2001"
  7305. },
  7306. "id" : "328",
  7307. "superClasses" : [ "63" ]
  7308. }, {
  7309. "iri" : "https://w3id.org/GDPRtEXT#R18",
  7310. "baseIri" : "https://w3id.org/GDPRtEXT",
  7311. "instances" : 0,
  7312. "annotations" : {
  7313. "isDefinedBy" : [ {
  7314. "identifier" : "isDefinedBy",
  7315. "language" : "undefined",
  7316. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital18",
  7317. "type" : "iri"
  7318. } ]
  7319. },
  7320. "label" : {
  7321. "IRI-based" : "R18",
  7322. "undefined" : "Personal or Household activity"
  7323. },
  7324. "comment" : {
  7325. "en" : "Exempted as the GDPR does not apply to personal or household activity that does not have a professional or commercial activity associated with it."
  7326. },
  7327. "id" : "331",
  7328. "superClasses" : [ "63" ]
  7329. }, {
  7330. "iri" : "https://w3id.org/GDPRtEXT#HistoricStatisticScientificPurposes",
  7331. "baseIri" : "https://w3id.org/GDPRtEXT",
  7332. "instances" : 0,
  7333. "annotations" : {
  7334. "isDefinedBy" : [ {
  7335. "identifier" : "isDefinedBy",
  7336. "language" : "undefined",
  7337. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital156",
  7338. "type" : "iri"
  7339. }, {
  7340. "identifier" : "isDefinedBy",
  7341. "language" : "undefined",
  7342. "value" : "https://w3id.org/GDPRtEXT/gdpr#article83-1",
  7343. "type" : "iri"
  7344. }, {
  7345. "identifier" : "isDefinedBy",
  7346. "language" : "undefined",
  7347. "value" : "https://w3id.org/GDPRtEXT/gdpr#article9-2-j",
  7348. "type" : "iri"
  7349. }, {
  7350. "identifier" : "isDefinedBy",
  7351. "language" : "undefined",
  7352. "value" : "https://w3id.org/GDPRtEXT/gdpr#article21-6",
  7353. "type" : "iri"
  7354. } ]
  7355. },
  7356. "label" : {
  7357. "IRI-based" : "HistoricStatisticScientificPurposes",
  7358. "undefined" : "Historic, Statistical, or Scientific purposes"
  7359. },
  7360. "comment" : {
  7361. "en" : "Lawful basis if provided by the GDPR for processing related to historic, statistical, or scientific purposes."
  7362. },
  7363. "id" : "381",
  7364. "superClasses" : [ "217" ]
  7365. }, {
  7366. "iri" : "https://w3id.org/GDPRtEXT#StorageLimitation",
  7367. "baseIri" : "https://w3id.org/GDPRtEXT",
  7368. "instances" : 0,
  7369. "annotations" : {
  7370. "isDefinedBy" : [ {
  7371. "identifier" : "isDefinedBy",
  7372. "language" : "undefined",
  7373. "value" : "https://w3id.org/GDPRtEXT/gdpr#recital39",
  7374. "type" : "iri"
  7375. }, {
  7376. "identifier" : "isDefinedBy",
  7377. "language" : "undefined",
  7378. "value" : "https://w3id.org/GDPRtEXT/gdpr#article5-1-e",
  7379. "type" : "iri"
  7380. } ],
  7381. "involves" : [ {
  7382. "identifier" : "involves",
  7383. "language" : "undefined",
  7384. "value" : "https://w3id.org/GDPRtEXT#StoreData",
  7385. "type" : "iri"
  7386. }, {
  7387. "identifier" : "involves",
  7388. "language" : "undefined",
  7389. "value" : "https://w3id.org/GDPRtEXT#ArchiveData",
  7390. "type" : "iri"
  7391. }, {
  7392. "identifier" : "involves",
  7393. "language" : "undefined",
  7394. "value" : "https://w3id.org/GDPRtEXT#PublicInterest",
  7395. "type" : "iri"
  7396. }, {
  7397. "identifier" : "involves",
  7398. "language" : "undefined",
  7399. "value" : "https://w3id.org/GDPRtEXT#HistoricStatisticScientificPurposes",
  7400. "type" : "iri"
  7401. }, {
  7402. "identifier" : "involves",
  7403. "language" : "undefined",
  7404. "value" : "https://w3id.org/GDPRtEXT#IdentificationOfDataSubject",
  7405. "type" : "iri"
  7406. }, {
  7407. "identifier" : "involves",
  7408. "language" : "undefined",
  7409. "value" : "https://w3id.org/GDPRtEXT#IdentifiableForRequiredProcessing",
  7410. "type" : "iri"
  7411. }, {
  7412. "identifier" : "involves",
  7413. "language" : "undefined",
  7414. "value" : "https://w3id.org/GDPRtEXT#PersonalData",
  7415. "type" : "iri"
  7416. } ]
  7417. },
  7418. "label" : {
  7419. "IRI-based" : "StorageLimitation",
  7420. "undefined" : "Principle of Storage Limitation"
  7421. },
  7422. "comment" : {
  7423. "en" : "The principle of storage limitation states that personal data must be kept in a form which permits identification of data subjects for no longer than is necessary for the purposes for which the personal data are processed; personal data may be stored for longer periods insofar as the personal data will be processed solely for archiving purposes in the public interest, scientific or historical research purposes or statistical purposes in accordance with Article 89(1) of the GDPR subject to implementation of the appropriate technical and organisational measures required by this Regulation in order to safeguard the rights and freedoms of the data subject."
  7424. },
  7425. "id" : "1",
  7426. "superClasses" : [ "2" ]
  7427. }, {
  7428. "iri" : "https://w3id.org/GDPRtEXT#DemonstratingConsent",
  7429. "baseIri" : "https://w3id.org/GDPRtEXT",
  7430. "instances" : 0,
  7431. "annotations" : {
  7432. "involves" : [ {
  7433. "identifier" : "involves",
  7434. "language" : "undefined",
  7435. "value" : "https://w3id.org/GDPRtEXT#ValidConsent",
  7436. "type" : "iri"
  7437. }, {
  7438. "identifier" : "involves",
  7439. "language" : "undefined",
  7440. "value" : "https://w3id.org/GDPRtEXT#GivenConsent",
  7441. "type" : "iri"
  7442. } ]
  7443. },
  7444. "label" : {
  7445. "IRI-based" : "DemonstratingConsent",
  7446. "undefined" : "Demonstrating Consent"
  7447. },
  7448. "comment" : {
  7449. "en" : "The act of demonstrating consent is an activity whereby previously acquired consent is provided as sufficient justification for processing activities involving data subject's personal information."
  7450. },
  7451. "id" : "274",
  7452. "superClasses" : [ "208", "246" ]
  7453. } ],
  7454. "property" : [ {
  7455. "id" : "0",
  7456. "type" : "rdfs:SubClassOf"
  7457. }, {
  7458. "id" : "3",
  7459. "type" : "rdfs:SubClassOf"
  7460. }, {
  7461. "id" : "6",
  7462. "type" : "rdfs:SubClassOf"
  7463. }, {
  7464. "id" : "8",
  7465. "type" : "rdfs:SubClassOf"
  7466. }, {
  7467. "id" : "21",
  7468. "type" : "rdfs:SubClassOf"
  7469. }, {
  7470. "id" : "23",
  7471. "type" : "rdfs:SubClassOf"
  7472. }, {
  7473. "id" : "25",
  7474. "type" : "rdfs:SubClassOf"
  7475. }, {
  7476. "id" : "27",
  7477. "type" : "rdfs:SubClassOf"
  7478. }, {
  7479. "id" : "32",
  7480. "type" : "rdfs:SubClassOf"
  7481. }, {
  7482. "id" : "34",
  7483. "type" : "rdfs:SubClassOf"
  7484. }, {
  7485. "id" : "37",
  7486. "type" : "owl:objectProperty"
  7487. }, {
  7488. "id" : "41",
  7489. "type" : "rdfs:SubClassOf"
  7490. }, {
  7491. "id" : "44",
  7492. "type" : "rdfs:SubClassOf"
  7493. }, {
  7494. "id" : "46",
  7495. "type" : "rdfs:SubClassOf"
  7496. }, {
  7497. "id" : "48",
  7498. "type" : "rdfs:SubClassOf"
  7499. }, {
  7500. "id" : "50",
  7501. "type" : "rdfs:SubClassOf"
  7502. }, {
  7503. "id" : "68",
  7504. "type" : "rdfs:SubClassOf"
  7505. }, {
  7506. "id" : "72",
  7507. "type" : "rdfs:SubClassOf"
  7508. }, {
  7509. "id" : "74",
  7510. "type" : "rdfs:SubClassOf"
  7511. }, {
  7512. "id" : "76",
  7513. "type" : "rdfs:SubClassOf"
  7514. }, {
  7515. "id" : "78",
  7516. "type" : "rdfs:SubClassOf"
  7517. }, {
  7518. "id" : "80",
  7519. "type" : "rdfs:SubClassOf"
  7520. }, {
  7521. "id" : "82",
  7522. "type" : "rdfs:SubClassOf"
  7523. }, {
  7524. "id" : "85",
  7525. "type" : "rdfs:SubClassOf"
  7526. }, {
  7527. "id" : "86",
  7528. "type" : "rdfs:SubClassOf"
  7529. }, {
  7530. "id" : "90",
  7531. "type" : "rdfs:SubClassOf"
  7532. }, {
  7533. "id" : "91",
  7534. "type" : "rdfs:SubClassOf"
  7535. }, {
  7536. "id" : "95",
  7537. "type" : "rdfs:SubClassOf"
  7538. }, {
  7539. "id" : "97",
  7540. "type" : "rdfs:SubClassOf"
  7541. }, {
  7542. "id" : "99",
  7543. "type" : "rdfs:SubClassOf"
  7544. }, {
  7545. "id" : "100",
  7546. "type" : "rdfs:SubClassOf"
  7547. }, {
  7548. "id" : "103",
  7549. "type" : "rdfs:SubClassOf"
  7550. }, {
  7551. "id" : "104",
  7552. "type" : "rdfs:SubClassOf"
  7553. }, {
  7554. "id" : "107",
  7555. "type" : "rdfs:SubClassOf"
  7556. }, {
  7557. "id" : "108",
  7558. "type" : "rdfs:SubClassOf"
  7559. }, {
  7560. "id" : "111",
  7561. "type" : "rdfs:SubClassOf"
  7562. }, {
  7563. "id" : "114",
  7564. "type" : "rdfs:SubClassOf"
  7565. }, {
  7566. "id" : "116",
  7567. "type" : "rdfs:SubClassOf"
  7568. }, {
  7569. "id" : "128",
  7570. "type" : "rdfs:SubClassOf"
  7571. }, {
  7572. "id" : "130",
  7573. "type" : "rdfs:SubClassOf"
  7574. }, {
  7575. "id" : "132",
  7576. "type" : "rdfs:SubClassOf"
  7577. }, {
  7578. "id" : "134",
  7579. "type" : "rdfs:SubClassOf"
  7580. }, {
  7581. "id" : "137",
  7582. "type" : "rdfs:SubClassOf"
  7583. }, {
  7584. "id" : "139",
  7585. "type" : "rdfs:SubClassOf"
  7586. }, {
  7587. "id" : "141",
  7588. "type" : "rdfs:SubClassOf"
  7589. }, {
  7590. "id" : "146",
  7591. "type" : "rdfs:SubClassOf"
  7592. }, {
  7593. "id" : "148",
  7594. "type" : "rdfs:SubClassOf"
  7595. }, {
  7596. "id" : "149",
  7597. "type" : "rdfs:SubClassOf"
  7598. }, {
  7599. "id" : "151",
  7600. "type" : "rdfs:SubClassOf"
  7601. }, {
  7602. "id" : "153",
  7603. "type" : "rdfs:SubClassOf"
  7604. }, {
  7605. "id" : "155",
  7606. "type" : "owl:objectProperty"
  7607. }, {
  7608. "id" : "157",
  7609. "type" : "rdfs:SubClassOf"
  7610. }, {
  7611. "id" : "158",
  7612. "type" : "rdfs:SubClassOf"
  7613. }, {
  7614. "id" : "160",
  7615. "type" : "rdfs:SubClassOf"
  7616. }, {
  7617. "id" : "161",
  7618. "type" : "rdfs:SubClassOf"
  7619. }, {
  7620. "id" : "162",
  7621. "type" : "rdfs:SubClassOf"
  7622. }, {
  7623. "id" : "164",
  7624. "type" : "rdfs:SubClassOf"
  7625. }, {
  7626. "id" : "166",
  7627. "type" : "rdfs:SubClassOf"
  7628. }, {
  7629. "id" : "168",
  7630. "type" : "rdfs:SubClassOf"
  7631. }, {
  7632. "id" : "171",
  7633. "type" : "rdfs:SubClassOf"
  7634. }, {
  7635. "id" : "173",
  7636. "type" : "rdfs:SubClassOf"
  7637. }, {
  7638. "id" : "175",
  7639. "type" : "rdfs:SubClassOf"
  7640. }, {
  7641. "id" : "177",
  7642. "type" : "rdfs:SubClassOf"
  7643. }, {
  7644. "id" : "179",
  7645. "type" : "rdfs:SubClassOf"
  7646. }, {
  7647. "id" : "188",
  7648. "type" : "rdfs:SubClassOf"
  7649. }, {
  7650. "id" : "190",
  7651. "type" : "rdfs:SubClassOf"
  7652. }, {
  7653. "id" : "192",
  7654. "type" : "rdfs:SubClassOf"
  7655. }, {
  7656. "id" : "194",
  7657. "type" : "rdfs:SubClassOf"
  7658. }, {
  7659. "id" : "195",
  7660. "type" : "rdfs:SubClassOf"
  7661. }, {
  7662. "id" : "197",
  7663. "type" : "rdfs:SubClassOf"
  7664. }, {
  7665. "id" : "198",
  7666. "type" : "rdfs:SubClassOf"
  7667. }, {
  7668. "id" : "199",
  7669. "type" : "rdfs:SubClassOf"
  7670. }, {
  7671. "id" : "201",
  7672. "type" : "rdfs:SubClassOf"
  7673. }, {
  7674. "id" : "204",
  7675. "type" : "rdfs:SubClassOf"
  7676. }, {
  7677. "id" : "206",
  7678. "type" : "rdfs:SubClassOf"
  7679. }, {
  7680. "id" : "209",
  7681. "type" : "rdfs:SubClassOf"
  7682. }, {
  7683. "id" : "211",
  7684. "type" : "rdfs:SubClassOf"
  7685. }, {
  7686. "id" : "218",
  7687. "type" : "owl:objectProperty"
  7688. }, {
  7689. "id" : "219",
  7690. "type" : "rdfs:SubClassOf"
  7691. }, {
  7692. "id" : "221",
  7693. "type" : "rdfs:SubClassOf"
  7694. }, {
  7695. "id" : "223",
  7696. "type" : "rdfs:SubClassOf"
  7697. }, {
  7698. "id" : "225",
  7699. "type" : "rdfs:SubClassOf"
  7700. }, {
  7701. "id" : "227",
  7702. "type" : "rdfs:SubClassOf"
  7703. }, {
  7704. "id" : "228",
  7705. "type" : "rdfs:SubClassOf"
  7706. }, {
  7707. "id" : "231",
  7708. "type" : "rdfs:SubClassOf"
  7709. }, {
  7710. "id" : "233",
  7711. "type" : "rdfs:SubClassOf"
  7712. }, {
  7713. "id" : "235",
  7714. "type" : "rdfs:SubClassOf"
  7715. }, {
  7716. "id" : "236",
  7717. "type" : "rdfs:SubClassOf"
  7718. }, {
  7719. "id" : "238",
  7720. "type" : "rdfs:SubClassOf"
  7721. }, {
  7722. "id" : "242",
  7723. "type" : "rdfs:SubClassOf"
  7724. }, {
  7725. "id" : "243",
  7726. "type" : "rdfs:SubClassOf"
  7727. }, {
  7728. "id" : "245",
  7729. "type" : "rdfs:SubClassOf"
  7730. }, {
  7731. "id" : "248",
  7732. "type" : "rdfs:SubClassOf"
  7733. }, {
  7734. "id" : "250",
  7735. "type" : "rdfs:SubClassOf"
  7736. }, {
  7737. "id" : "251",
  7738. "type" : "rdfs:SubClassOf"
  7739. }, {
  7740. "id" : "252",
  7741. "type" : "rdfs:SubClassOf"
  7742. }, {
  7743. "id" : "253",
  7744. "type" : "rdfs:SubClassOf"
  7745. }, {
  7746. "id" : "254",
  7747. "type" : "rdfs:SubClassOf"
  7748. }, {
  7749. "id" : "255",
  7750. "type" : "rdfs:SubClassOf"
  7751. }, {
  7752. "id" : "257",
  7753. "type" : "rdfs:SubClassOf"
  7754. }, {
  7755. "id" : "258",
  7756. "type" : "rdfs:SubClassOf"
  7757. }, {
  7758. "id" : "260",
  7759. "type" : "rdfs:SubClassOf"
  7760. }, {
  7761. "id" : "261",
  7762. "type" : "rdfs:SubClassOf"
  7763. }, {
  7764. "id" : "271",
  7765. "type" : "rdfs:SubClassOf"
  7766. }, {
  7767. "id" : "273",
  7768. "type" : "rdfs:SubClassOf"
  7769. }, {
  7770. "id" : "275",
  7771. "type" : "rdfs:SubClassOf"
  7772. }, {
  7773. "id" : "277",
  7774. "type" : "rdfs:SubClassOf"
  7775. }, {
  7776. "id" : "278",
  7777. "type" : "rdfs:SubClassOf"
  7778. }, {
  7779. "id" : "280",
  7780. "type" : "rdfs:SubClassOf"
  7781. }, {
  7782. "id" : "281",
  7783. "type" : "rdfs:SubClassOf"
  7784. }, {
  7785. "id" : "282",
  7786. "type" : "rdfs:SubClassOf"
  7787. }, {
  7788. "id" : "286",
  7789. "type" : "rdfs:SubClassOf"
  7790. }, {
  7791. "id" : "288",
  7792. "type" : "rdfs:SubClassOf"
  7793. }, {
  7794. "id" : "290",
  7795. "type" : "rdfs:SubClassOf"
  7796. }, {
  7797. "id" : "291",
  7798. "type" : "rdfs:SubClassOf"
  7799. }, {
  7800. "id" : "293",
  7801. "type" : "rdfs:SubClassOf"
  7802. }, {
  7803. "id" : "294",
  7804. "type" : "rdfs:SubClassOf"
  7805. }, {
  7806. "id" : "296",
  7807. "type" : "rdfs:SubClassOf"
  7808. }, {
  7809. "id" : "297",
  7810. "type" : "rdfs:SubClassOf"
  7811. }, {
  7812. "id" : "298",
  7813. "type" : "rdfs:SubClassOf"
  7814. }, {
  7815. "id" : "299",
  7816. "type" : "rdfs:SubClassOf"
  7817. }, {
  7818. "id" : "302",
  7819. "type" : "rdfs:SubClassOf"
  7820. }, {
  7821. "id" : "303",
  7822. "type" : "rdfs:SubClassOf"
  7823. }, {
  7824. "id" : "304",
  7825. "type" : "rdfs:SubClassOf"
  7826. }, {
  7827. "id" : "305",
  7828. "type" : "rdfs:SubClassOf"
  7829. }, {
  7830. "id" : "307",
  7831. "type" : "rdfs:SubClassOf"
  7832. }, {
  7833. "id" : "308",
  7834. "type" : "rdfs:SubClassOf"
  7835. }, {
  7836. "id" : "309",
  7837. "type" : "rdfs:SubClassOf"
  7838. }, {
  7839. "id" : "311",
  7840. "type" : "rdfs:SubClassOf"
  7841. }, {
  7842. "id" : "312",
  7843. "type" : "rdfs:SubClassOf"
  7844. }, {
  7845. "id" : "313",
  7846. "type" : "rdfs:SubClassOf"
  7847. }, {
  7848. "id" : "314",
  7849. "type" : "rdfs:SubClassOf"
  7850. }, {
  7851. "id" : "319",
  7852. "type" : "rdfs:SubClassOf"
  7853. }, {
  7854. "id" : "320",
  7855. "type" : "rdfs:SubClassOf"
  7856. }, {
  7857. "id" : "327",
  7858. "type" : "rdfs:SubClassOf"
  7859. }, {
  7860. "id" : "329",
  7861. "type" : "rdfs:SubClassOf"
  7862. }, {
  7863. "id" : "330",
  7864. "type" : "rdfs:SubClassOf"
  7865. }, {
  7866. "id" : "332",
  7867. "type" : "rdfs:SubClassOf"
  7868. }, {
  7869. "id" : "333",
  7870. "type" : "rdfs:SubClassOf"
  7871. }, {
  7872. "id" : "334",
  7873. "type" : "rdfs:SubClassOf"
  7874. }, {
  7875. "id" : "336",
  7876. "type" : "rdfs:SubClassOf"
  7877. }, {
  7878. "id" : "338",
  7879. "type" : "rdfs:SubClassOf"
  7880. }, {
  7881. "id" : "340",
  7882. "type" : "rdfs:SubClassOf"
  7883. }, {
  7884. "id" : "344",
  7885. "type" : "rdfs:SubClassOf"
  7886. }, {
  7887. "id" : "348",
  7888. "type" : "rdfs:SubClassOf"
  7889. }, {
  7890. "id" : "349",
  7891. "type" : "rdfs:SubClassOf"
  7892. }, {
  7893. "id" : "350",
  7894. "type" : "rdfs:SubClassOf"
  7895. }, {
  7896. "id" : "352",
  7897. "type" : "rdfs:SubClassOf"
  7898. }, {
  7899. "id" : "353",
  7900. "type" : "rdfs:SubClassOf"
  7901. }, {
  7902. "id" : "354",
  7903. "type" : "rdfs:SubClassOf"
  7904. }, {
  7905. "id" : "355",
  7906. "type" : "rdfs:SubClassOf"
  7907. }, {
  7908. "id" : "357",
  7909. "type" : "rdfs:SubClassOf"
  7910. }, {
  7911. "id" : "359",
  7912. "type" : "rdfs:SubClassOf"
  7913. }, {
  7914. "id" : "361",
  7915. "type" : "rdfs:SubClassOf"
  7916. }, {
  7917. "id" : "363",
  7918. "type" : "rdfs:SubClassOf"
  7919. }, {
  7920. "id" : "364",
  7921. "type" : "rdfs:SubClassOf"
  7922. }, {
  7923. "id" : "365",
  7924. "type" : "rdfs:SubClassOf"
  7925. }, {
  7926. "id" : "366",
  7927. "type" : "rdfs:SubClassOf"
  7928. }, {
  7929. "id" : "367",
  7930. "type" : "rdfs:SubClassOf"
  7931. }, {
  7932. "id" : "368",
  7933. "type" : "rdfs:SubClassOf"
  7934. }, {
  7935. "id" : "369",
  7936. "type" : "rdfs:SubClassOf"
  7937. }, {
  7938. "id" : "370",
  7939. "type" : "rdfs:SubClassOf"
  7940. }, {
  7941. "id" : "371",
  7942. "type" : "rdfs:SubClassOf"
  7943. }, {
  7944. "id" : "372",
  7945. "type" : "rdfs:SubClassOf"
  7946. }, {
  7947. "id" : "373",
  7948. "type" : "rdfs:SubClassOf"
  7949. }, {
  7950. "id" : "374",
  7951. "type" : "rdfs:SubClassOf"
  7952. }, {
  7953. "id" : "376",
  7954. "type" : "rdfs:SubClassOf"
  7955. }, {
  7956. "id" : "378",
  7957. "type" : "rdfs:SubClassOf"
  7958. }, {
  7959. "id" : "389",
  7960. "type" : "rdfs:SubClassOf"
  7961. }, {
  7962. "id" : "390",
  7963. "type" : "rdfs:SubClassOf"
  7964. }, {
  7965. "id" : "391",
  7966. "type" : "rdfs:SubClassOf"
  7967. }, {
  7968. "id" : "392",
  7969. "type" : "rdfs:SubClassOf"
  7970. }, {
  7971. "id" : "393",
  7972. "type" : "rdfs:SubClassOf"
  7973. }, {
  7974. "id" : "394",
  7975. "type" : "rdfs:SubClassOf"
  7976. }, {
  7977. "id" : "395",
  7978. "type" : "rdfs:SubClassOf"
  7979. }, {
  7980. "id" : "396",
  7981. "type" : "rdfs:SubClassOf"
  7982. }, {
  7983. "id" : "397",
  7984. "type" : "rdfs:SubClassOf"
  7985. }, {
  7986. "id" : "398",
  7987. "type" : "rdfs:SubClassOf"
  7988. }, {
  7989. "id" : "399",
  7990. "type" : "rdfs:SubClassOf"
  7991. }, {
  7992. "id" : "400",
  7993. "type" : "rdfs:SubClassOf"
  7994. }, {
  7995. "id" : "401",
  7996. "type" : "rdfs:SubClassOf"
  7997. }, {
  7998. "id" : "402",
  7999. "type" : "rdfs:SubClassOf"
  8000. }, {
  8001. "id" : "403",
  8002. "type" : "rdfs:SubClassOf"
  8003. }, {
  8004. "id" : "404",
  8005. "type" : "rdfs:SubClassOf"
  8006. }, {
  8007. "id" : "405",
  8008. "type" : "rdfs:SubClassOf"
  8009. }, {
  8010. "id" : "406",
  8011. "type" : "owl:objectProperty"
  8012. }, {
  8013. "id" : "407",
  8014. "type" : "rdfs:SubClassOf"
  8015. }, {
  8016. "id" : "408",
  8017. "type" : "rdfs:SubClassOf"
  8018. }, {
  8019. "id" : "409",
  8020. "type" : "rdfs:SubClassOf"
  8021. }, {
  8022. "id" : "410",
  8023. "type" : "rdfs:SubClassOf"
  8024. }, {
  8025. "id" : "411",
  8026. "type" : "rdfs:SubClassOf"
  8027. }, {
  8028. "id" : "412",
  8029. "type" : "rdfs:SubClassOf"
  8030. }, {
  8031. "id" : "413",
  8032. "type" : "rdfs:SubClassOf"
  8033. }, {
  8034. "id" : "414",
  8035. "type" : "rdfs:SubClassOf"
  8036. }, {
  8037. "id" : "415",
  8038. "type" : "rdfs:SubClassOf"
  8039. }, {
  8040. "id" : "416",
  8041. "type" : "rdfs:SubClassOf"
  8042. }, {
  8043. "id" : "418",
  8044. "type" : "rdfs:SubClassOf"
  8045. }, {
  8046. "id" : "419",
  8047. "type" : "rdfs:SubClassOf"
  8048. }, {
  8049. "id" : "420",
  8050. "type" : "rdfs:SubClassOf"
  8051. }, {
  8052. "id" : "421",
  8053. "type" : "rdfs:SubClassOf"
  8054. }, {
  8055. "id" : "422",
  8056. "type" : "rdfs:SubClassOf"
  8057. }, {
  8058. "id" : "423",
  8059. "type" : "owl:objectProperty"
  8060. }, {
  8061. "id" : "424",
  8062. "type" : "owl:objectProperty"
  8063. }, {
  8064. "id" : "426",
  8065. "type" : "owl:objectProperty"
  8066. }, {
  8067. "id" : "427",
  8068. "type" : "owl:objectProperty"
  8069. }, {
  8070. "id" : "428",
  8071. "type" : "owl:objectProperty"
  8072. }, {
  8073. "id" : "40",
  8074. "type" : "owl:objectProperty"
  8075. }, {
  8076. "id" : "431",
  8077. "type" : "rdfs:SubClassOf"
  8078. }, {
  8079. "id" : "432",
  8080. "type" : "rdfs:SubClassOf"
  8081. }, {
  8082. "id" : "433",
  8083. "type" : "rdfs:SubClassOf"
  8084. }, {
  8085. "id" : "434",
  8086. "type" : "rdfs:SubClassOf"
  8087. }, {
  8088. "id" : "436",
  8089. "type" : "rdfs:SubClassOf"
  8090. }, {
  8091. "id" : "437",
  8092. "type" : "rdfs:SubClassOf"
  8093. }, {
  8094. "id" : "438",
  8095. "type" : "rdfs:SubClassOf"
  8096. }, {
  8097. "id" : "439",
  8098. "type" : "rdfs:SubClassOf"
  8099. }, {
  8100. "id" : "440",
  8101. "type" : "rdfs:SubClassOf"
  8102. }, {
  8103. "id" : "441",
  8104. "type" : "rdfs:SubClassOf"
  8105. }, {
  8106. "id" : "442",
  8107. "type" : "rdfs:SubClassOf"
  8108. }, {
  8109. "id" : "443",
  8110. "type" : "rdfs:SubClassOf"
  8111. }, {
  8112. "id" : "444",
  8113. "type" : "rdfs:SubClassOf"
  8114. }, {
  8115. "id" : "445",
  8116. "type" : "rdfs:SubClassOf"
  8117. }, {
  8118. "id" : "446",
  8119. "type" : "rdfs:SubClassOf"
  8120. }, {
  8121. "id" : "447",
  8122. "type" : "rdfs:SubClassOf"
  8123. }, {
  8124. "id" : "448",
  8125. "type" : "rdfs:SubClassOf"
  8126. }, {
  8127. "id" : "449",
  8128. "type" : "rdfs:SubClassOf"
  8129. }, {
  8130. "id" : "450",
  8131. "type" : "rdfs:SubClassOf"
  8132. }, {
  8133. "id" : "451",
  8134. "type" : "rdfs:SubClassOf"
  8135. }, {
  8136. "id" : "452",
  8137. "type" : "rdfs:SubClassOf"
  8138. }, {
  8139. "id" : "453",
  8140. "type" : "rdfs:SubClassOf"
  8141. }, {
  8142. "id" : "454",
  8143. "type" : "owl:objectProperty"
  8144. }, {
  8145. "id" : "456",
  8146. "type" : "rdfs:SubClassOf"
  8147. }, {
  8148. "id" : "457",
  8149. "type" : "rdfs:SubClassOf"
  8150. }, {
  8151. "id" : "458",
  8152. "type" : "rdfs:SubClassOf"
  8153. }, {
  8154. "id" : "459",
  8155. "type" : "rdfs:SubClassOf"
  8156. }, {
  8157. "id" : "460",
  8158. "type" : "rdfs:SubClassOf"
  8159. }, {
  8160. "id" : "461",
  8161. "type" : "rdfs:SubClassOf"
  8162. }, {
  8163. "id" : "462",
  8164. "type" : "rdfs:SubClassOf"
  8165. }, {
  8166. "id" : "463",
  8167. "type" : "rdfs:SubClassOf"
  8168. }, {
  8169. "id" : "464",
  8170. "type" : "rdfs:SubClassOf"
  8171. }, {
  8172. "id" : "465",
  8173. "type" : "rdfs:SubClassOf"
  8174. }, {
  8175. "id" : "466",
  8176. "type" : "rdfs:SubClassOf"
  8177. }, {
  8178. "id" : "467",
  8179. "type" : "rdfs:SubClassOf"
  8180. }, {
  8181. "id" : "468",
  8182. "type" : "rdfs:SubClassOf"
  8183. }, {
  8184. "id" : "469",
  8185. "type" : "rdfs:SubClassOf"
  8186. }, {
  8187. "id" : "470",
  8188. "type" : "rdfs:SubClassOf"
  8189. }, {
  8190. "id" : "471",
  8191. "type" : "rdfs:SubClassOf"
  8192. }, {
  8193. "id" : "472",
  8194. "type" : "rdfs:SubClassOf"
  8195. }, {
  8196. "id" : "473",
  8197. "type" : "rdfs:SubClassOf"
  8198. }, {
  8199. "id" : "474",
  8200. "type" : "owl:objectProperty"
  8201. }, {
  8202. "id" : "156",
  8203. "type" : "owl:objectProperty"
  8204. }, {
  8205. "id" : "475",
  8206. "type" : "rdfs:SubClassOf"
  8207. }, {
  8208. "id" : "476",
  8209. "type" : "rdfs:SubClassOf"
  8210. }, {
  8211. "id" : "477",
  8212. "type" : "rdfs:SubClassOf"
  8213. }, {
  8214. "id" : "478",
  8215. "type" : "rdfs:SubClassOf"
  8216. }, {
  8217. "id" : "479",
  8218. "type" : "rdfs:SubClassOf"
  8219. }, {
  8220. "id" : "480",
  8221. "type" : "rdfs:SubClassOf"
  8222. }, {
  8223. "id" : "481",
  8224. "type" : "rdfs:SubClassOf"
  8225. }, {
  8226. "id" : "482",
  8227. "type" : "rdfs:SubClassOf"
  8228. }, {
  8229. "id" : "483",
  8230. "type" : "rdfs:SubClassOf"
  8231. } ],
  8232. "propertyAttribute" : [ {
  8233. "range" : "2",
  8234. "domain" : "1",
  8235. "attributes" : [ "anonymous", "object" ],
  8236. "id" : "0"
  8237. }, {
  8238. "range" : "5",
  8239. "domain" : "4",
  8240. "attributes" : [ "anonymous", "object" ],
  8241. "id" : "3"
  8242. }, {
  8243. "range" : "2",
  8244. "domain" : "7",
  8245. "attributes" : [ "anonymous", "object" ],
  8246. "id" : "6"
  8247. }, {
  8248. "range" : "5",
  8249. "domain" : "9",
  8250. "attributes" : [ "anonymous", "object" ],
  8251. "id" : "8"
  8252. }, {
  8253. "range" : "2",
  8254. "domain" : "22",
  8255. "attributes" : [ "anonymous", "object" ],
  8256. "id" : "21"
  8257. }, {
  8258. "range" : "5",
  8259. "domain" : "24",
  8260. "attributes" : [ "anonymous", "object" ],
  8261. "id" : "23"
  8262. }, {
  8263. "range" : "2",
  8264. "domain" : "26",
  8265. "attributes" : [ "anonymous", "object" ],
  8266. "id" : "25"
  8267. }, {
  8268. "range" : "5",
  8269. "domain" : "28",
  8270. "attributes" : [ "anonymous", "object" ],
  8271. "id" : "27"
  8272. }, {
  8273. "range" : "2",
  8274. "domain" : "33",
  8275. "attributes" : [ "anonymous", "object" ],
  8276. "id" : "32"
  8277. }, {
  8278. "range" : "36",
  8279. "domain" : "35",
  8280. "attributes" : [ "anonymous", "object" ],
  8281. "id" : "34"
  8282. }, {
  8283. "iri" : "https://w3id.org/GDPRtEXT#isPartOfSection",
  8284. "baseIri" : "https://w3id.org/GDPRtEXT",
  8285. "range" : "39",
  8286. "label" : {
  8287. "IRI-based" : "isPartOfSection",
  8288. "undefined" : "is part of Section"
  8289. },
  8290. "superproperty" : [ "40" ],
  8291. "domain" : "38",
  8292. "comment" : {
  8293. "undefined" : "represents a legal resource subdivision to be part of a section"
  8294. },
  8295. "attributes" : [ "functional", "object" ],
  8296. "id" : "37"
  8297. }, {
  8298. "range" : "43",
  8299. "domain" : "42",
  8300. "attributes" : [ "anonymous", "object" ],
  8301. "id" : "41"
  8302. }, {
  8303. "range" : "36",
  8304. "domain" : "45",
  8305. "attributes" : [ "anonymous", "object" ],
  8306. "id" : "44"
  8307. }, {
  8308. "range" : "43",
  8309. "domain" : "47",
  8310. "attributes" : [ "anonymous", "object" ],
  8311. "id" : "46"
  8312. }, {
  8313. "range" : "36",
  8314. "domain" : "49",
  8315. "attributes" : [ "anonymous", "object" ],
  8316. "id" : "48"
  8317. }, {
  8318. "range" : "43",
  8319. "domain" : "51",
  8320. "attributes" : [ "anonymous", "object" ],
  8321. "id" : "50"
  8322. }, {
  8323. "range" : "31",
  8324. "domain" : "69",
  8325. "attributes" : [ "anonymous", "object" ],
  8326. "id" : "68"
  8327. }, {
  8328. "range" : "2",
  8329. "domain" : "73",
  8330. "attributes" : [ "anonymous", "object" ],
  8331. "id" : "72"
  8332. }, {
  8333. "range" : "31",
  8334. "domain" : "75",
  8335. "attributes" : [ "anonymous", "object" ],
  8336. "id" : "74"
  8337. }, {
  8338. "range" : "2",
  8339. "domain" : "77",
  8340. "attributes" : [ "anonymous", "object" ],
  8341. "id" : "76"
  8342. }, {
  8343. "range" : "31",
  8344. "domain" : "79",
  8345. "attributes" : [ "anonymous", "object" ],
  8346. "id" : "78"
  8347. }, {
  8348. "range" : "67",
  8349. "domain" : "81",
  8350. "attributes" : [ "anonymous", "object" ],
  8351. "id" : "80"
  8352. }, {
  8353. "range" : "84",
  8354. "domain" : "83",
  8355. "attributes" : [ "anonymous", "object" ],
  8356. "id" : "82"
  8357. }, {
  8358. "range" : "67",
  8359. "domain" : "14",
  8360. "attributes" : [ "anonymous", "object" ],
  8361. "id" : "85"
  8362. }, {
  8363. "range" : "84",
  8364. "domain" : "87",
  8365. "attributes" : [ "anonymous", "object" ],
  8366. "id" : "86"
  8367. }, {
  8368. "range" : "67",
  8369. "domain" : "17",
  8370. "attributes" : [ "anonymous", "object" ],
  8371. "id" : "90"
  8372. }, {
  8373. "range" : "84",
  8374. "domain" : "92",
  8375. "attributes" : [ "anonymous", "object" ],
  8376. "id" : "91"
  8377. }, {
  8378. "range" : "67",
  8379. "domain" : "96",
  8380. "attributes" : [ "anonymous", "object" ],
  8381. "id" : "95"
  8382. }, {
  8383. "range" : "84",
  8384. "domain" : "98",
  8385. "attributes" : [ "anonymous", "object" ],
  8386. "id" : "97"
  8387. }, {
  8388. "range" : "67",
  8389. "domain" : "18",
  8390. "attributes" : [ "anonymous", "object" ],
  8391. "id" : "99"
  8392. }, {
  8393. "range" : "84",
  8394. "domain" : "101",
  8395. "attributes" : [ "anonymous", "object" ],
  8396. "id" : "100"
  8397. }, {
  8398. "range" : "67",
  8399. "domain" : "19",
  8400. "attributes" : [ "anonymous", "object" ],
  8401. "id" : "103"
  8402. }, {
  8403. "range" : "106",
  8404. "domain" : "105",
  8405. "attributes" : [ "anonymous", "object" ],
  8406. "id" : "104"
  8407. }, {
  8408. "range" : "67",
  8409. "domain" : "20",
  8410. "attributes" : [ "anonymous", "object" ],
  8411. "id" : "107"
  8412. }, {
  8413. "range" : "106",
  8414. "domain" : "109",
  8415. "attributes" : [ "anonymous", "object" ],
  8416. "id" : "108"
  8417. }, {
  8418. "range" : "113",
  8419. "domain" : "112",
  8420. "attributes" : [ "anonymous", "object" ],
  8421. "id" : "111"
  8422. }, {
  8423. "range" : "31",
  8424. "domain" : "115",
  8425. "attributes" : [ "anonymous", "object" ],
  8426. "id" : "114"
  8427. }, {
  8428. "range" : "118",
  8429. "domain" : "117",
  8430. "attributes" : [ "anonymous", "object" ],
  8431. "id" : "116"
  8432. }, {
  8433. "range" : "84",
  8434. "domain" : "129",
  8435. "attributes" : [ "anonymous", "object" ],
  8436. "id" : "128"
  8437. }, {
  8438. "range" : "129",
  8439. "domain" : "131",
  8440. "attributes" : [ "anonymous", "object" ],
  8441. "id" : "130"
  8442. }, {
  8443. "range" : "84",
  8444. "domain" : "133",
  8445. "attributes" : [ "anonymous", "object" ],
  8446. "id" : "132"
  8447. }, {
  8448. "range" : "136",
  8449. "domain" : "135",
  8450. "attributes" : [ "anonymous", "object" ],
  8451. "id" : "134"
  8452. }, {
  8453. "range" : "136",
  8454. "domain" : "138",
  8455. "attributes" : [ "anonymous", "object" ],
  8456. "id" : "137"
  8457. }, {
  8458. "range" : "136",
  8459. "domain" : "140",
  8460. "attributes" : [ "anonymous", "object" ],
  8461. "id" : "139"
  8462. }, {
  8463. "range" : "136",
  8464. "domain" : "124",
  8465. "attributes" : [ "anonymous", "object" ],
  8466. "id" : "141"
  8467. }, {
  8468. "range" : "136",
  8469. "domain" : "147",
  8470. "attributes" : [ "anonymous", "object" ],
  8471. "id" : "146"
  8472. }, {
  8473. "range" : "136",
  8474. "domain" : "113",
  8475. "attributes" : [ "anonymous", "object" ],
  8476. "id" : "148"
  8477. }, {
  8478. "range" : "136",
  8479. "domain" : "150",
  8480. "attributes" : [ "anonymous", "object" ],
  8481. "id" : "149"
  8482. }, {
  8483. "range" : "84",
  8484. "domain" : "152",
  8485. "attributes" : [ "anonymous", "object" ],
  8486. "id" : "151"
  8487. }, {
  8488. "range" : "84",
  8489. "domain" : "154",
  8490. "attributes" : [ "anonymous", "object" ],
  8491. "id" : "153"
  8492. }, {
  8493. "iri" : "https://w3id.org/GDPRtEXT#hasArticle",
  8494. "baseIri" : "https://w3id.org/GDPRtEXT",
  8495. "range" : "56",
  8496. "label" : {
  8497. "IRI-based" : "hasArticle",
  8498. "undefined" : "has Article"
  8499. },
  8500. "superproperty" : [ "156" ],
  8501. "domain" : "38",
  8502. "comment" : {
  8503. "undefined" : "indicates the legal resource has the Article"
  8504. },
  8505. "attributes" : [ "functional", "object" ],
  8506. "id" : "155"
  8507. }, {
  8508. "range" : "136",
  8509. "domain" : "94",
  8510. "attributes" : [ "anonymous", "object" ],
  8511. "id" : "157"
  8512. }, {
  8513. "range" : "159",
  8514. "domain" : "5",
  8515. "attributes" : [ "anonymous", "object" ],
  8516. "id" : "158"
  8517. }, {
  8518. "range" : "81",
  8519. "domain" : "15",
  8520. "attributes" : [ "anonymous", "object" ],
  8521. "id" : "160"
  8522. }, {
  8523. "range" : "89",
  8524. "domain" : "88",
  8525. "attributes" : [ "anonymous", "object" ],
  8526. "id" : "161"
  8527. }, {
  8528. "range" : "89",
  8529. "domain" : "163",
  8530. "attributes" : [ "anonymous", "object" ],
  8531. "id" : "162"
  8532. }, {
  8533. "range" : "89",
  8534. "domain" : "165",
  8535. "attributes" : [ "anonymous", "object" ],
  8536. "id" : "164"
  8537. }, {
  8538. "range" : "89",
  8539. "domain" : "167",
  8540. "attributes" : [ "anonymous", "object" ],
  8541. "id" : "166"
  8542. }, {
  8543. "range" : "170",
  8544. "domain" : "169",
  8545. "attributes" : [ "anonymous", "object" ],
  8546. "id" : "168"
  8547. }, {
  8548. "range" : "170",
  8549. "domain" : "172",
  8550. "attributes" : [ "anonymous", "object" ],
  8551. "id" : "171"
  8552. }, {
  8553. "range" : "136",
  8554. "domain" : "174",
  8555. "attributes" : [ "anonymous", "object" ],
  8556. "id" : "173"
  8557. }, {
  8558. "range" : "136",
  8559. "domain" : "176",
  8560. "attributes" : [ "anonymous", "object" ],
  8561. "id" : "175"
  8562. }, {
  8563. "range" : "122",
  8564. "domain" : "178",
  8565. "attributes" : [ "anonymous", "object" ],
  8566. "id" : "177"
  8567. }, {
  8568. "range" : "122",
  8569. "domain" : "180",
  8570. "attributes" : [ "anonymous", "object" ],
  8571. "id" : "179"
  8572. }, {
  8573. "range" : "122",
  8574. "domain" : "189",
  8575. "attributes" : [ "anonymous", "object" ],
  8576. "id" : "188"
  8577. }, {
  8578. "range" : "122",
  8579. "domain" : "121",
  8580. "attributes" : [ "anonymous", "object" ],
  8581. "id" : "190"
  8582. }, {
  8583. "range" : "66",
  8584. "domain" : "193",
  8585. "attributes" : [ "anonymous", "object" ],
  8586. "id" : "192"
  8587. }, {
  8588. "range" : "66",
  8589. "domain" : "16",
  8590. "attributes" : [ "anonymous", "object" ],
  8591. "id" : "194"
  8592. }, {
  8593. "range" : "66",
  8594. "domain" : "196",
  8595. "attributes" : [ "anonymous", "object" ],
  8596. "id" : "195"
  8597. }, {
  8598. "range" : "66",
  8599. "domain" : "65",
  8600. "attributes" : [ "anonymous", "object" ],
  8601. "id" : "197"
  8602. }, {
  8603. "range" : "66",
  8604. "domain" : "89",
  8605. "attributes" : [ "anonymous", "object" ],
  8606. "id" : "198"
  8607. }, {
  8608. "range" : "122",
  8609. "domain" : "200",
  8610. "attributes" : [ "anonymous", "object" ],
  8611. "id" : "199"
  8612. }, {
  8613. "range" : "203",
  8614. "domain" : "202",
  8615. "attributes" : [ "anonymous", "object" ],
  8616. "id" : "201"
  8617. }, {
  8618. "range" : "66",
  8619. "domain" : "205",
  8620. "attributes" : [ "anonymous", "object" ],
  8621. "id" : "204"
  8622. }, {
  8623. "range" : "66",
  8624. "domain" : "118",
  8625. "attributes" : [ "anonymous", "object" ],
  8626. "id" : "206"
  8627. }, {
  8628. "range" : "66",
  8629. "domain" : "210",
  8630. "attributes" : [ "anonymous", "object" ],
  8631. "id" : "209"
  8632. }, {
  8633. "range" : "66",
  8634. "domain" : "212",
  8635. "attributes" : [ "anonymous", "object" ],
  8636. "id" : "211"
  8637. }, {
  8638. "iri" : "https://w3id.org/GDPRtEXT#hasPoint",
  8639. "baseIri" : "https://w3id.org/GDPRtEXT",
  8640. "range" : "57",
  8641. "label" : {
  8642. "IRI-based" : "hasPoint",
  8643. "undefined" : "has Point"
  8644. },
  8645. "superproperty" : [ "156" ],
  8646. "domain" : "38",
  8647. "comment" : {
  8648. "undefined" : "indicates the legal resource has the Point"
  8649. },
  8650. "attributes" : [ "functional", "object" ],
  8651. "id" : "218"
  8652. }, {
  8653. "range" : "203",
  8654. "domain" : "220",
  8655. "attributes" : [ "anonymous", "object" ],
  8656. "id" : "219"
  8657. }, {
  8658. "range" : "203",
  8659. "domain" : "222",
  8660. "attributes" : [ "anonymous", "object" ],
  8661. "id" : "221"
  8662. }, {
  8663. "range" : "203",
  8664. "domain" : "224",
  8665. "attributes" : [ "anonymous", "object" ],
  8666. "id" : "223"
  8667. }, {
  8668. "range" : "203",
  8669. "domain" : "226",
  8670. "attributes" : [ "anonymous", "object" ],
  8671. "id" : "225"
  8672. }, {
  8673. "range" : "203",
  8674. "domain" : "5",
  8675. "attributes" : [ "anonymous", "object" ],
  8676. "id" : "227"
  8677. }, {
  8678. "range" : "11",
  8679. "domain" : "229",
  8680. "attributes" : [ "anonymous", "object" ],
  8681. "id" : "228"
  8682. }, {
  8683. "range" : "11",
  8684. "domain" : "232",
  8685. "attributes" : [ "anonymous", "object" ],
  8686. "id" : "231"
  8687. }, {
  8688. "range" : "11",
  8689. "domain" : "234",
  8690. "attributes" : [ "anonymous", "object" ],
  8691. "id" : "233"
  8692. }, {
  8693. "range" : "11",
  8694. "domain" : "30",
  8695. "attributes" : [ "anonymous", "object" ],
  8696. "id" : "235"
  8697. }, {
  8698. "range" : "152",
  8699. "domain" : "237",
  8700. "attributes" : [ "anonymous", "object" ],
  8701. "id" : "236"
  8702. }, {
  8703. "range" : "240",
  8704. "domain" : "239",
  8705. "attributes" : [ "anonymous", "object" ],
  8706. "id" : "238"
  8707. }, {
  8708. "range" : "11",
  8709. "domain" : "136",
  8710. "attributes" : [ "anonymous", "object" ],
  8711. "id" : "242"
  8712. }, {
  8713. "range" : "11",
  8714. "domain" : "244",
  8715. "attributes" : [ "anonymous", "object" ],
  8716. "id" : "243"
  8717. }, {
  8718. "range" : "11",
  8719. "domain" : "246",
  8720. "attributes" : [ "anonymous", "object" ],
  8721. "id" : "245"
  8722. }, {
  8723. "range" : "11",
  8724. "domain" : "84",
  8725. "attributes" : [ "anonymous", "object" ],
  8726. "id" : "248"
  8727. }, {
  8728. "range" : "174",
  8729. "domain" : "89",
  8730. "attributes" : [ "anonymous", "object" ],
  8731. "id" : "250"
  8732. }, {
  8733. "range" : "30",
  8734. "domain" : "241",
  8735. "attributes" : [ "anonymous", "object" ],
  8736. "id" : "251"
  8737. }, {
  8738. "range" : "11",
  8739. "domain" : "2",
  8740. "attributes" : [ "anonymous", "object" ],
  8741. "id" : "252"
  8742. }, {
  8743. "range" : "30",
  8744. "domain" : "29",
  8745. "attributes" : [ "anonymous", "object" ],
  8746. "id" : "253"
  8747. }, {
  8748. "range" : "11",
  8749. "domain" : "10",
  8750. "attributes" : [ "anonymous", "object" ],
  8751. "id" : "254"
  8752. }, {
  8753. "range" : "30",
  8754. "domain" : "256",
  8755. "attributes" : [ "anonymous", "object" ],
  8756. "id" : "255"
  8757. }, {
  8758. "range" : "11",
  8759. "domain" : "208",
  8760. "attributes" : [ "anonymous", "object" ],
  8761. "id" : "257"
  8762. }, {
  8763. "range" : "11",
  8764. "domain" : "259",
  8765. "attributes" : [ "anonymous", "object" ],
  8766. "id" : "258"
  8767. }, {
  8768. "range" : "11",
  8769. "domain" : "63",
  8770. "attributes" : [ "anonymous", "object" ],
  8771. "id" : "260"
  8772. }, {
  8773. "range" : "11",
  8774. "domain" : "262",
  8775. "attributes" : [ "anonymous", "object" ],
  8776. "id" : "261"
  8777. }, {
  8778. "range" : "36",
  8779. "domain" : "272",
  8780. "attributes" : [ "anonymous", "object" ],
  8781. "id" : "271"
  8782. }, {
  8783. "range" : "246",
  8784. "domain" : "274",
  8785. "attributes" : [ "anonymous", "object" ],
  8786. "id" : "273"
  8787. }, {
  8788. "range" : "36",
  8789. "domain" : "276",
  8790. "attributes" : [ "anonymous", "object" ],
  8791. "id" : "275"
  8792. }, {
  8793. "range" : "246",
  8794. "domain" : "120",
  8795. "attributes" : [ "anonymous", "object" ],
  8796. "id" : "277"
  8797. }, {
  8798. "range" : "36",
  8799. "domain" : "279",
  8800. "attributes" : [ "anonymous", "object" ],
  8801. "id" : "278"
  8802. }, {
  8803. "range" : "246",
  8804. "domain" : "239",
  8805. "attributes" : [ "anonymous", "object" ],
  8806. "id" : "280"
  8807. }, {
  8808. "range" : "234",
  8809. "domain" : "159",
  8810. "attributes" : [ "anonymous", "object" ],
  8811. "id" : "281"
  8812. }, {
  8813. "range" : "61",
  8814. "domain" : "60",
  8815. "attributes" : [ "anonymous", "object" ],
  8816. "id" : "282"
  8817. }, {
  8818. "range" : "61",
  8819. "domain" : "287",
  8820. "attributes" : [ "anonymous", "object" ],
  8821. "id" : "286"
  8822. }, {
  8823. "range" : "61",
  8824. "domain" : "289",
  8825. "attributes" : [ "anonymous", "object" ],
  8826. "id" : "288"
  8827. }, {
  8828. "range" : "61",
  8829. "domain" : "207",
  8830. "attributes" : [ "anonymous", "object" ],
  8831. "id" : "290"
  8832. }, {
  8833. "range" : "61",
  8834. "domain" : "292",
  8835. "attributes" : [ "anonymous", "object" ],
  8836. "id" : "291"
  8837. }, {
  8838. "range" : "61",
  8839. "domain" : "102",
  8840. "attributes" : [ "anonymous", "object" ],
  8841. "id" : "293"
  8842. }, {
  8843. "range" : "61",
  8844. "domain" : "295",
  8845. "attributes" : [ "anonymous", "object" ],
  8846. "id" : "294"
  8847. }, {
  8848. "range" : "38",
  8849. "domain" : "55",
  8850. "attributes" : [ "anonymous", "object" ],
  8851. "id" : "296"
  8852. }, {
  8853. "range" : "38",
  8854. "domain" : "54",
  8855. "attributes" : [ "anonymous", "object" ],
  8856. "id" : "297"
  8857. }, {
  8858. "range" : "38",
  8859. "domain" : "57",
  8860. "attributes" : [ "anonymous", "object" ],
  8861. "id" : "298"
  8862. }, {
  8863. "range" : "38",
  8864. "domain" : "56",
  8865. "attributes" : [ "anonymous", "object" ],
  8866. "id" : "299"
  8867. }, {
  8868. "range" : "38",
  8869. "domain" : "52",
  8870. "attributes" : [ "anonymous", "object" ],
  8871. "id" : "302"
  8872. }, {
  8873. "range" : "38",
  8874. "domain" : "39",
  8875. "attributes" : [ "anonymous", "object" ],
  8876. "id" : "303"
  8877. }, {
  8878. "range" : "38",
  8879. "domain" : "53",
  8880. "attributes" : [ "anonymous", "object" ],
  8881. "id" : "304"
  8882. }, {
  8883. "range" : "145",
  8884. "domain" : "306",
  8885. "attributes" : [ "anonymous", "object" ],
  8886. "id" : "305"
  8887. }, {
  8888. "range" : "145",
  8889. "domain" : "263",
  8890. "attributes" : [ "anonymous", "object" ],
  8891. "id" : "307"
  8892. }, {
  8893. "range" : "29",
  8894. "domain" : "31",
  8895. "attributes" : [ "anonymous", "object" ],
  8896. "id" : "308"
  8897. }, {
  8898. "range" : "145",
  8899. "domain" : "310",
  8900. "attributes" : [ "anonymous", "object" ],
  8901. "id" : "309"
  8902. }, {
  8903. "range" : "145",
  8904. "domain" : "266",
  8905. "attributes" : [ "anonymous", "object" ],
  8906. "id" : "311"
  8907. }, {
  8908. "range" : "145",
  8909. "domain" : "300",
  8910. "attributes" : [ "anonymous", "object" ],
  8911. "id" : "312"
  8912. }, {
  8913. "range" : "145",
  8914. "domain" : "144",
  8915. "attributes" : [ "anonymous", "object" ],
  8916. "id" : "313"
  8917. }, {
  8918. "range" : "124",
  8919. "domain" : "285",
  8920. "attributes" : [ "anonymous", "object" ],
  8921. "id" : "314"
  8922. }, {
  8923. "range" : "124",
  8924. "domain" : "214",
  8925. "attributes" : [ "anonymous", "object" ],
  8926. "id" : "319"
  8927. }, {
  8928. "range" : "124",
  8929. "domain" : "123",
  8930. "attributes" : [ "anonymous", "object" ],
  8931. "id" : "320"
  8932. }, {
  8933. "range" : "63",
  8934. "domain" : "328",
  8935. "attributes" : [ "anonymous", "object" ],
  8936. "id" : "327"
  8937. }, {
  8938. "range" : "63",
  8939. "domain" : "62",
  8940. "attributes" : [ "anonymous", "object" ],
  8941. "id" : "329"
  8942. }, {
  8943. "range" : "63",
  8944. "domain" : "331",
  8945. "attributes" : [ "anonymous", "object" ],
  8946. "id" : "330"
  8947. }, {
  8948. "range" : "63",
  8949. "domain" : "247",
  8950. "attributes" : [ "anonymous", "object" ],
  8951. "id" : "332"
  8952. }, {
  8953. "range" : "63",
  8954. "domain" : "322",
  8955. "attributes" : [ "anonymous", "object" ],
  8956. "id" : "333"
  8957. }, {
  8958. "range" : "63",
  8959. "domain" : "335",
  8960. "attributes" : [ "anonymous", "object" ],
  8961. "id" : "334"
  8962. }, {
  8963. "range" : "63",
  8964. "domain" : "337",
  8965. "attributes" : [ "anonymous", "object" ],
  8966. "id" : "336"
  8967. }, {
  8968. "range" : "63",
  8969. "domain" : "339",
  8970. "attributes" : [ "anonymous", "object" ],
  8971. "id" : "338"
  8972. }, {
  8973. "range" : "63",
  8974. "domain" : "341",
  8975. "attributes" : [ "anonymous", "object" ],
  8976. "id" : "340"
  8977. }, {
  8978. "range" : "63",
  8979. "domain" : "110",
  8980. "attributes" : [ "anonymous", "object" ],
  8981. "id" : "344"
  8982. }, {
  8983. "range" : "63",
  8984. "domain" : "64",
  8985. "attributes" : [ "anonymous", "object" ],
  8986. "id" : "348"
  8987. }, {
  8988. "range" : "61",
  8989. "domain" : "36",
  8990. "attributes" : [ "anonymous", "object" ],
  8991. "id" : "349"
  8992. }, {
  8993. "range" : "61",
  8994. "domain" : "351",
  8995. "attributes" : [ "anonymous", "object" ],
  8996. "id" : "350"
  8997. }, {
  8998. "range" : "63",
  8999. "domain" : "43",
  9000. "attributes" : [ "anonymous", "object" ],
  9001. "id" : "352"
  9002. }, {
  9003. "range" : "61",
  9004. "domain" : "170",
  9005. "attributes" : [ "anonymous", "object" ],
  9006. "id" : "353"
  9007. }, {
  9008. "range" : "61",
  9009. "domain" : "301",
  9010. "attributes" : [ "anonymous", "object" ],
  9011. "id" : "354"
  9012. }, {
  9013. "range" : "61",
  9014. "domain" : "356",
  9015. "attributes" : [ "anonymous", "object" ],
  9016. "id" : "355"
  9017. }, {
  9018. "range" : "61",
  9019. "domain" : "358",
  9020. "attributes" : [ "anonymous", "object" ],
  9021. "id" : "357"
  9022. }, {
  9023. "range" : "61",
  9024. "domain" : "360",
  9025. "attributes" : [ "anonymous", "object" ],
  9026. "id" : "359"
  9027. }, {
  9028. "range" : "208",
  9029. "domain" : "362",
  9030. "attributes" : [ "anonymous", "object" ],
  9031. "id" : "361"
  9032. }, {
  9033. "range" : "208",
  9034. "domain" : "274",
  9035. "attributes" : [ "anonymous", "object" ],
  9036. "id" : "363"
  9037. }, {
  9038. "range" : "208",
  9039. "domain" : "66",
  9040. "attributes" : [ "anonymous", "object" ],
  9041. "id" : "364"
  9042. }, {
  9043. "range" : "208",
  9044. "domain" : "106",
  9045. "attributes" : [ "anonymous", "object" ],
  9046. "id" : "365"
  9047. }, {
  9048. "range" : "208",
  9049. "domain" : "343",
  9050. "attributes" : [ "anonymous", "object" ],
  9051. "id" : "366"
  9052. }, {
  9053. "range" : "208",
  9054. "domain" : "12",
  9055. "attributes" : [ "anonymous", "object" ],
  9056. "id" : "367"
  9057. }, {
  9058. "range" : "208",
  9059. "domain" : "265",
  9060. "attributes" : [ "anonymous", "object" ],
  9061. "id" : "368"
  9062. }, {
  9063. "range" : "208",
  9064. "domain" : "120",
  9065. "attributes" : [ "anonymous", "object" ],
  9066. "id" : "369"
  9067. }, {
  9068. "range" : "208",
  9069. "domain" : "207",
  9070. "attributes" : [ "anonymous", "object" ],
  9071. "id" : "370"
  9072. }, {
  9073. "range" : "208",
  9074. "domain" : "143",
  9075. "attributes" : [ "anonymous", "object" ],
  9076. "id" : "371"
  9077. }, {
  9078. "range" : "208",
  9079. "domain" : "347",
  9080. "attributes" : [ "anonymous", "object" ],
  9081. "id" : "372"
  9082. }, {
  9083. "range" : "59",
  9084. "domain" : "36",
  9085. "attributes" : [ "anonymous", "object" ],
  9086. "id" : "373"
  9087. }, {
  9088. "range" : "59",
  9089. "domain" : "375",
  9090. "attributes" : [ "anonymous", "object" ],
  9091. "id" : "374"
  9092. }, {
  9093. "range" : "59",
  9094. "domain" : "377",
  9095. "attributes" : [ "anonymous", "object" ],
  9096. "id" : "376"
  9097. }, {
  9098. "range" : "59",
  9099. "domain" : "356",
  9100. "attributes" : [ "anonymous", "object" ],
  9101. "id" : "378"
  9102. }, {
  9103. "range" : "59",
  9104. "domain" : "120",
  9105. "attributes" : [ "anonymous", "object" ],
  9106. "id" : "389"
  9107. }, {
  9108. "range" : "59",
  9109. "domain" : "58",
  9110. "attributes" : [ "anonymous", "object" ],
  9111. "id" : "390"
  9112. }, {
  9113. "range" : "59",
  9114. "domain" : "347",
  9115. "attributes" : [ "anonymous", "object" ],
  9116. "id" : "391"
  9117. }, {
  9118. "range" : "59",
  9119. "domain" : "346",
  9120. "attributes" : [ "anonymous", "object" ],
  9121. "id" : "392"
  9122. }, {
  9123. "range" : "59",
  9124. "domain" : "207",
  9125. "attributes" : [ "anonymous", "object" ],
  9126. "id" : "393"
  9127. }, {
  9128. "range" : "59",
  9129. "domain" : "213",
  9130. "attributes" : [ "anonymous", "object" ],
  9131. "id" : "394"
  9132. }, {
  9133. "range" : "59",
  9134. "domain" : "102",
  9135. "attributes" : [ "anonymous", "object" ],
  9136. "id" : "395"
  9137. }, {
  9138. "range" : "94",
  9139. "domain" : "187",
  9140. "attributes" : [ "anonymous", "object" ],
  9141. "id" : "396"
  9142. }, {
  9143. "range" : "94",
  9144. "domain" : "186",
  9145. "attributes" : [ "anonymous", "object" ],
  9146. "id" : "397"
  9147. }, {
  9148. "range" : "143",
  9149. "domain" : "284",
  9150. "attributes" : [ "anonymous", "object" ],
  9151. "id" : "398"
  9152. }, {
  9153. "range" : "346",
  9154. "domain" : "345",
  9155. "attributes" : [ "anonymous", "object" ],
  9156. "id" : "399"
  9157. }, {
  9158. "range" : "94",
  9159. "domain" : "184",
  9160. "attributes" : [ "anonymous", "object" ],
  9161. "id" : "400"
  9162. }, {
  9163. "range" : "94",
  9164. "domain" : "127",
  9165. "attributes" : [ "anonymous", "object" ],
  9166. "id" : "401"
  9167. }, {
  9168. "range" : "94",
  9169. "domain" : "185",
  9170. "attributes" : [ "anonymous", "object" ],
  9171. "id" : "402"
  9172. }, {
  9173. "range" : "94",
  9174. "domain" : "181",
  9175. "attributes" : [ "anonymous", "object" ],
  9176. "id" : "403"
  9177. }, {
  9178. "range" : "94",
  9179. "domain" : "93",
  9180. "attributes" : [ "anonymous", "object" ],
  9181. "id" : "404"
  9182. }, {
  9183. "range" : "94",
  9184. "domain" : "183",
  9185. "attributes" : [ "anonymous", "object" ],
  9186. "id" : "405"
  9187. }, {
  9188. "iri" : "https://w3id.org/GDPRtEXT#isPartOfArticle",
  9189. "baseIri" : "https://w3id.org/GDPRtEXT",
  9190. "range" : "56",
  9191. "label" : {
  9192. "IRI-based" : "isPartOfArticle",
  9193. "undefined" : "is part of Article"
  9194. },
  9195. "superproperty" : [ "40" ],
  9196. "domain" : "38",
  9197. "comment" : {
  9198. "undefined" : "represents a legal resource subdivision to be part of a article"
  9199. },
  9200. "attributes" : [ "functional", "object" ],
  9201. "id" : "406"
  9202. }, {
  9203. "range" : "94",
  9204. "domain" : "182",
  9205. "attributes" : [ "anonymous", "object" ],
  9206. "id" : "407"
  9207. }, {
  9208. "range" : "262",
  9209. "domain" : "61",
  9210. "attributes" : [ "anonymous", "object" ],
  9211. "id" : "408"
  9212. }, {
  9213. "range" : "262",
  9214. "domain" : "217",
  9215. "attributes" : [ "anonymous", "object" ],
  9216. "id" : "409"
  9217. }, {
  9218. "range" : "262",
  9219. "domain" : "143",
  9220. "attributes" : [ "anonymous", "object" ],
  9221. "id" : "410"
  9222. }, {
  9223. "range" : "262",
  9224. "domain" : "240",
  9225. "attributes" : [ "anonymous", "object" ],
  9226. "id" : "411"
  9227. }, {
  9228. "range" : "262",
  9229. "domain" : "145",
  9230. "attributes" : [ "anonymous", "object" ],
  9231. "id" : "412"
  9232. }, {
  9233. "range" : "262",
  9234. "domain" : "203",
  9235. "attributes" : [ "anonymous", "object" ],
  9236. "id" : "413"
  9237. }, {
  9238. "range" : "262",
  9239. "domain" : "71",
  9240. "attributes" : [ "anonymous", "object" ],
  9241. "id" : "414"
  9242. }, {
  9243. "range" : "208",
  9244. "domain" : "67",
  9245. "attributes" : [ "anonymous", "object" ],
  9246. "id" : "415"
  9247. }, {
  9248. "range" : "208",
  9249. "domain" : "417",
  9250. "attributes" : [ "anonymous", "object" ],
  9251. "id" : "416"
  9252. }, {
  9253. "range" : "262",
  9254. "domain" : "59",
  9255. "attributes" : [ "anonymous", "object" ],
  9256. "id" : "418"
  9257. }, {
  9258. "range" : "208",
  9259. "domain" : "239",
  9260. "attributes" : [ "anonymous", "object" ],
  9261. "id" : "419"
  9262. }, {
  9263. "range" : "143",
  9264. "domain" : "269",
  9265. "attributes" : [ "anonymous", "object" ],
  9266. "id" : "420"
  9267. }, {
  9268. "range" : "143",
  9269. "domain" : "142",
  9270. "attributes" : [ "anonymous", "object" ],
  9271. "id" : "421"
  9272. }, {
  9273. "range" : "143",
  9274. "domain" : "191",
  9275. "attributes" : [ "anonymous", "object" ],
  9276. "id" : "422"
  9277. }, {
  9278. "iri" : "https://w3id.org/GDPRtEXT#hasSubPoint",
  9279. "baseIri" : "https://w3id.org/GDPRtEXT",
  9280. "range" : "54",
  9281. "label" : {
  9282. "IRI-based" : "hasSubPoint",
  9283. "undefined" : "has SubPoint"
  9284. },
  9285. "superproperty" : [ "156" ],
  9286. "domain" : "38",
  9287. "comment" : {
  9288. "undefined" : "indicates the legal resource has the SubPoint"
  9289. },
  9290. "attributes" : [ "functional", "object" ],
  9291. "id" : "423"
  9292. }, {
  9293. "iri" : "https://w3id.org/GDPRtEXT#hasCitation",
  9294. "baseIri" : "https://w3id.org/GDPRtEXT",
  9295. "range" : "53",
  9296. "label" : {
  9297. "IRI-based" : "hasCitation",
  9298. "undefined" : "has Citation"
  9299. },
  9300. "superproperty" : [ "156" ],
  9301. "domain" : "38",
  9302. "comment" : {
  9303. "undefined" : "indicates that the legal resource has the referenced citation"
  9304. },
  9305. "attributes" : [ "object" ],
  9306. "id" : "424"
  9307. }, {
  9308. "iri" : "https://w3id.org/GDPRtEXT#hasRecital",
  9309. "baseIri" : "https://w3id.org/GDPRtEXT",
  9310. "range" : "52",
  9311. "label" : {
  9312. "IRI-based" : "hasRecital",
  9313. "undefined" : "has Recital"
  9314. },
  9315. "superproperty" : [ "156" ],
  9316. "domain" : "38",
  9317. "comment" : {
  9318. "undefined" : "indicates the legal resource has the Recital"
  9319. },
  9320. "attributes" : [ "functional", "object" ],
  9321. "id" : "426"
  9322. }, {
  9323. "iri" : "https://w3id.org/GDPRtEXT#isPartOfChapter",
  9324. "baseIri" : "https://w3id.org/GDPRtEXT",
  9325. "range" : "55",
  9326. "label" : {
  9327. "IRI-based" : "isPartOfChapter",
  9328. "undefined" : "is part of Chapter"
  9329. },
  9330. "superproperty" : [ "40" ],
  9331. "domain" : "38",
  9332. "comment" : {
  9333. "undefined" : "represents a legal resource subdivision to be part of a chapter"
  9334. },
  9335. "attributes" : [ "functional", "object" ],
  9336. "id" : "427"
  9337. }, {
  9338. "iri" : "https://w3id.org/GDPRtEXT#isPartOfPoint",
  9339. "baseIri" : "https://w3id.org/GDPRtEXT",
  9340. "range" : "57",
  9341. "label" : {
  9342. "IRI-based" : "isPartOfPoint",
  9343. "undefined" : "is part of Point"
  9344. },
  9345. "superproperty" : [ "40" ],
  9346. "domain" : "38",
  9347. "comment" : {
  9348. "undefined" : "represents a legal resource subdivision to be part of a point"
  9349. },
  9350. "attributes" : [ "functional", "object" ],
  9351. "id" : "428"
  9352. }, {
  9353. "iri" : "http://data.europa.eu/eli/ontology#is_part_of",
  9354. "baseIri" : "http://data.europa.eu/eli/ontology",
  9355. "range" : "430",
  9356. "label" : {
  9357. "IRI-based" : "is_part_of"
  9358. },
  9359. "domain" : "430",
  9360. "subproperty" : [ "427", "37", "406", "428" ],
  9361. "attributes" : [ "object", "external", "transitive" ],
  9362. "id" : "40"
  9363. }, {
  9364. "range" : "217",
  9365. "domain" : "385",
  9366. "attributes" : [ "anonymous", "object" ],
  9367. "id" : "431"
  9368. }, {
  9369. "range" : "217",
  9370. "domain" : "386",
  9371. "attributes" : [ "anonymous", "object" ],
  9372. "id" : "432"
  9373. }, {
  9374. "range" : "217",
  9375. "domain" : "122",
  9376. "attributes" : [ "anonymous", "object" ],
  9377. "id" : "433"
  9378. }, {
  9379. "range" : "120",
  9380. "domain" : "435",
  9381. "attributes" : [ "anonymous", "object" ],
  9382. "id" : "434"
  9383. }, {
  9384. "range" : "120",
  9385. "domain" : "126",
  9386. "attributes" : [ "anonymous", "object" ],
  9387. "id" : "436"
  9388. }, {
  9389. "range" : "120",
  9390. "domain" : "119",
  9391. "attributes" : [ "anonymous", "object" ],
  9392. "id" : "437"
  9393. }, {
  9394. "range" : "120",
  9395. "domain" : "360",
  9396. "attributes" : [ "anonymous", "object" ],
  9397. "id" : "438"
  9398. }, {
  9399. "range" : "244",
  9400. "domain" : "323",
  9401. "attributes" : [ "anonymous", "object" ],
  9402. "id" : "439"
  9403. }, {
  9404. "range" : "244",
  9405. "domain" : "387",
  9406. "attributes" : [ "anonymous", "object" ],
  9407. "id" : "440"
  9408. }, {
  9409. "range" : "244",
  9410. "domain" : "388",
  9411. "attributes" : [ "anonymous", "object" ],
  9412. "id" : "441"
  9413. }, {
  9414. "range" : "217",
  9415. "domain" : "270",
  9416. "attributes" : [ "anonymous", "object" ],
  9417. "id" : "442"
  9418. }, {
  9419. "range" : "217",
  9420. "domain" : "379",
  9421. "attributes" : [ "anonymous", "object" ],
  9422. "id" : "443"
  9423. }, {
  9424. "range" : "217",
  9425. "domain" : "380",
  9426. "attributes" : [ "anonymous", "object" ],
  9427. "id" : "444"
  9428. }, {
  9429. "range" : "217",
  9430. "domain" : "159",
  9431. "attributes" : [ "anonymous", "object" ],
  9432. "id" : "445"
  9433. }, {
  9434. "range" : "217",
  9435. "domain" : "381",
  9436. "attributes" : [ "anonymous", "object" ],
  9437. "id" : "446"
  9438. }, {
  9439. "range" : "217",
  9440. "domain" : "382",
  9441. "attributes" : [ "anonymous", "object" ],
  9442. "id" : "447"
  9443. }, {
  9444. "range" : "217",
  9445. "domain" : "216",
  9446. "attributes" : [ "anonymous", "object" ],
  9447. "id" : "448"
  9448. }, {
  9449. "range" : "217",
  9450. "domain" : "383",
  9451. "attributes" : [ "anonymous", "object" ],
  9452. "id" : "449"
  9453. }, {
  9454. "range" : "217",
  9455. "domain" : "268",
  9456. "attributes" : [ "anonymous", "object" ],
  9457. "id" : "450"
  9458. }, {
  9459. "range" : "217",
  9460. "domain" : "384",
  9461. "attributes" : [ "anonymous", "object" ],
  9462. "id" : "451"
  9463. }, {
  9464. "range" : "343",
  9465. "domain" : "342",
  9466. "attributes" : [ "anonymous", "object" ],
  9467. "id" : "452"
  9468. }, {
  9469. "range" : "217",
  9470. "domain" : "249",
  9471. "attributes" : [ "anonymous", "object" ],
  9472. "id" : "453"
  9473. }, {
  9474. "iri" : "https://w3id.org/GDPRtEXT#hasChapter",
  9475. "baseIri" : "https://w3id.org/GDPRtEXT",
  9476. "range" : "55",
  9477. "label" : {
  9478. "IRI-based" : "hasChapter",
  9479. "undefined" : "has Chapter"
  9480. },
  9481. "superproperty" : [ "156" ],
  9482. "domain" : "455",
  9483. "comment" : {
  9484. "undefined" : "indicates the legal resource has the Chapter"
  9485. },
  9486. "attributes" : [ "functional", "object" ],
  9487. "id" : "454"
  9488. }, {
  9489. "range" : "323",
  9490. "domain" : "324",
  9491. "attributes" : [ "anonymous", "object" ],
  9492. "id" : "456"
  9493. }, {
  9494. "range" : "323",
  9495. "domain" : "325",
  9496. "attributes" : [ "anonymous", "object" ],
  9497. "id" : "457"
  9498. }, {
  9499. "range" : "323",
  9500. "domain" : "326",
  9501. "attributes" : [ "anonymous", "object" ],
  9502. "id" : "458"
  9503. }, {
  9504. "range" : "322",
  9505. "domain" : "42",
  9506. "attributes" : [ "anonymous", "object" ],
  9507. "id" : "459"
  9508. }, {
  9509. "range" : "135",
  9510. "domain" : "215",
  9511. "attributes" : [ "anonymous", "object" ],
  9512. "id" : "460"
  9513. }, {
  9514. "range" : "135",
  9515. "domain" : "429",
  9516. "attributes" : [ "anonymous", "object" ],
  9517. "id" : "461"
  9518. }, {
  9519. "range" : "135",
  9520. "domain" : "425",
  9521. "attributes" : [ "anonymous", "object" ],
  9522. "id" : "462"
  9523. }, {
  9524. "range" : "135",
  9525. "domain" : "264",
  9526. "attributes" : [ "anonymous", "object" ],
  9527. "id" : "463"
  9528. }, {
  9529. "range" : "126",
  9530. "domain" : "321",
  9531. "attributes" : [ "anonymous", "object" ],
  9532. "id" : "464"
  9533. }, {
  9534. "range" : "126",
  9535. "domain" : "267",
  9536. "attributes" : [ "anonymous", "object" ],
  9537. "id" : "465"
  9538. }, {
  9539. "range" : "126",
  9540. "domain" : "125",
  9541. "attributes" : [ "anonymous", "object" ],
  9542. "id" : "466"
  9543. }, {
  9544. "range" : "71",
  9545. "domain" : "315",
  9546. "attributes" : [ "anonymous", "object" ],
  9547. "id" : "467"
  9548. }, {
  9549. "range" : "71",
  9550. "domain" : "316",
  9551. "attributes" : [ "anonymous", "object" ],
  9552. "id" : "468"
  9553. }, {
  9554. "range" : "71",
  9555. "domain" : "317",
  9556. "attributes" : [ "anonymous", "object" ],
  9557. "id" : "469"
  9558. }, {
  9559. "range" : "71",
  9560. "domain" : "318",
  9561. "attributes" : [ "anonymous", "object" ],
  9562. "id" : "470"
  9563. }, {
  9564. "range" : "71",
  9565. "domain" : "70",
  9566. "attributes" : [ "anonymous", "object" ],
  9567. "id" : "471"
  9568. }, {
  9569. "range" : "140",
  9570. "domain" : "230",
  9571. "attributes" : [ "anonymous", "object" ],
  9572. "id" : "472"
  9573. }, {
  9574. "range" : "140",
  9575. "domain" : "283",
  9576. "attributes" : [ "anonymous", "object" ],
  9577. "id" : "473"
  9578. }, {
  9579. "iri" : "https://w3id.org/GDPRtEXT#hasSection",
  9580. "baseIri" : "https://w3id.org/GDPRtEXT",
  9581. "range" : "39",
  9582. "label" : {
  9583. "IRI-based" : "hasSection",
  9584. "undefined" : "has Section"
  9585. },
  9586. "superproperty" : [ "156" ],
  9587. "domain" : "38",
  9588. "comment" : {
  9589. "undefined" : "indicates the legal resource has the Section"
  9590. },
  9591. "attributes" : [ "functional", "object" ],
  9592. "id" : "474"
  9593. }, {
  9594. "iri" : "http://data.europa.eu/eli/ontology#has_part",
  9595. "baseIri" : "http://data.europa.eu/eli/ontology",
  9596. "range" : "430",
  9597. "label" : {
  9598. "IRI-based" : "has_part"
  9599. },
  9600. "domain" : "430",
  9601. "subproperty" : [ "423", "454", "426", "218", "474", "155", "424" ],
  9602. "attributes" : [ "object", "external", "transitive" ],
  9603. "id" : "156"
  9604. }, {
  9605. "range" : "10",
  9606. "domain" : "13",
  9607. "attributes" : [ "anonymous", "object" ],
  9608. "id" : "475"
  9609. }, {
  9610. "range" : "10",
  9611. "domain" : "14",
  9612. "attributes" : [ "anonymous", "object" ],
  9613. "id" : "476"
  9614. }, {
  9615. "range" : "10",
  9616. "domain" : "15",
  9617. "attributes" : [ "anonymous", "object" ],
  9618. "id" : "477"
  9619. }, {
  9620. "range" : "10",
  9621. "domain" : "16",
  9622. "attributes" : [ "anonymous", "object" ],
  9623. "id" : "478"
  9624. }, {
  9625. "range" : "10",
  9626. "domain" : "17",
  9627. "attributes" : [ "anonymous", "object" ],
  9628. "id" : "479"
  9629. }, {
  9630. "range" : "10",
  9631. "domain" : "18",
  9632. "attributes" : [ "anonymous", "object" ],
  9633. "id" : "480"
  9634. }, {
  9635. "range" : "10",
  9636. "domain" : "19",
  9637. "attributes" : [ "anonymous", "object" ],
  9638. "id" : "481"
  9639. }, {
  9640. "range" : "10",
  9641. "domain" : "20",
  9642. "attributes" : [ "anonymous", "object" ],
  9643. "id" : "482"
  9644. }, {
  9645. "range" : "10",
  9646. "domain" : "12",
  9647. "attributes" : [ "anonymous", "object" ],
  9648. "id" : "483"
  9649. } ]
  9650. }