ontology.json 364 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678
  1. {
  2. "_comment" : "Created with OWL2VOWL (version 0.3.4), http://vowl.visualdataweb.org",
  3. "header" : {
  4. "languages" : [ "en", "undefined" ],
  5. "baseIris" : [ "http://www.w3.org/1999/02/22-rdf-syntax-ns", "http://www.w3.org/2002/07/owl", "http://www.w3.org/2000/01/rdf-schema", "http://www.w3.org/ns/prov", "http://www.w3.org/2001/XMLSchema", "https://w3id.org/consent-mapping-jit", "https://w3.org/2001/XMLSchema" ],
  6. "title" : {
  7. "undefined" : "Consent Ontology"
  8. },
  9. "iri" : "https://w3id.org/consent-mapping-jit#",
  10. "author" : [ "Harshvardhan J. Pandit", "Christophe Debruyne" ],
  11. "description" : {
  12. "undefined" : "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time."
  13. },
  14. "other" : {
  15. "license" : [ {
  16. "identifier" : "license",
  17. "language" : "undefined",
  18. "value" : "http://creativecommons.org/licenses/by/4.0/",
  19. "type" : "label"
  20. } ],
  21. "creator" : [ {
  22. "identifier" : "creator",
  23. "language" : "undefined",
  24. "value" : "Harshvardhan J. Pandit",
  25. "type" : "label"
  26. }, {
  27. "identifier" : "creator",
  28. "language" : "undefined",
  29. "value" : "Christophe Debruyne",
  30. "type" : "label"
  31. } ],
  32. "created" : [ {
  33. "identifier" : "created",
  34. "language" : "undefined",
  35. "value" : "2018-08-24",
  36. "type" : "label"
  37. } ],
  38. "publisher" : [ {
  39. "identifier" : "publisher",
  40. "language" : "undefined",
  41. "value" : "http://purl.org/adaptcentre/people/ADAPT",
  42. "type" : "iri"
  43. } ],
  44. "abstract" : [ {
  45. "identifier" : "abstract",
  46. "language" : "undefined",
  47. "value" : "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time.",
  48. "type" : "label"
  49. } ],
  50. "title" : [ {
  51. "identifier" : "title",
  52. "language" : "undefined",
  53. "value" : "Consent Ontology",
  54. "type" : "label"
  55. } ],
  56. "status" : [ {
  57. "identifier" : "status",
  58. "language" : "undefined",
  59. "value" : "http://purl.org/ontology/bibo/status/draft",
  60. "type" : "iri"
  61. } ]
  62. }
  63. },
  64. "namespace" : [ ],
  65. "metrics" : {
  66. "classCount" : 9,
  67. "objectPropertyCount" : 4,
  68. "datatypePropertyCount" : 3,
  69. "individualCount" : 0
  70. },
  71. "class" : [ {
  72. "id" : "11",
  73. "type" : "owl:Class"
  74. }, {
  75. "id" : "22",
  76. "type" : "owl:Class"
  77. }, {
  78. "id" : "26",
  79. "type" : "owl:Class"
  80. }, {
  81. "id" : "35",
  82. "type" : "owl:Class"
  83. }, {
  84. "id" : "36",
  85. "type" : "owl:Class"
  86. }, {
  87. "id" : "37",
  88. "type" : "owl:Class"
  89. }, {
  90. "id" : "32",
  91. "type" : "owl:Class"
  92. }, {
  93. "id" : "50",
  94. "type" : "owl:Class"
  95. }, {
  96. "id" : "24",
  97. "type" : "owl:Class"
  98. }, {
  99. "id" : "53",
  100. "type" : "owl:unionOf"
  101. }, {
  102. "id" : "30",
  103. "type" : "owl:Class"
  104. }, {
  105. "id" : "65",
  106. "type" : "owl:Class"
  107. }, {
  108. "id" : "66",
  109. "type" : "owl:Class"
  110. }, {
  111. "id" : "73",
  112. "type" : "owl:Class"
  113. }, {
  114. "id" : "76",
  115. "type" : "owl:Class"
  116. }, {
  117. "id" : "15",
  118. "type" : "owl:Class"
  119. }, {
  120. "id" : "90",
  121. "type" : "owl:Class"
  122. }, {
  123. "id" : "27",
  124. "type" : "owl:Class"
  125. }, {
  126. "id" : "94",
  127. "type" : "owl:Class"
  128. }, {
  129. "id" : "112",
  130. "type" : "owl:Class"
  131. }, {
  132. "id" : "52",
  133. "type" : "owl:Class"
  134. }, {
  135. "id" : "88",
  136. "type" : "owl:Class"
  137. }, {
  138. "id" : "110",
  139. "type" : "owl:Class"
  140. }, {
  141. "id" : "5",
  142. "type" : "owl:Thing"
  143. }, {
  144. "id" : "9",
  145. "type" : "owl:Class"
  146. }, {
  147. "id" : "33",
  148. "type" : "owl:Class"
  149. }, {
  150. "id" : "17",
  151. "type" : "owl:Class"
  152. }, {
  153. "id" : "133",
  154. "type" : "rdfs:Datatype"
  155. }, {
  156. "id" : "137",
  157. "type" : "rdfs:Datatype"
  158. }, {
  159. "id" : "123",
  160. "type" : "rdfs:Literal"
  161. }, {
  162. "id" : "127",
  163. "type" : "owl:Class"
  164. }, {
  165. "id" : "115",
  166. "type" : "rdfs:Literal"
  167. }, {
  168. "id" : "117",
  169. "type" : "rdfs:Datatype"
  170. }, {
  171. "id" : "140",
  172. "type" : "rdfs:Datatype"
  173. }, {
  174. "id" : "41",
  175. "type" : "rdfs:Datatype"
  176. }, {
  177. "id" : "83",
  178. "type" : "rdfs:Datatype"
  179. }, {
  180. "id" : "128",
  181. "type" : "owl:Class"
  182. }, {
  183. "id" : "141",
  184. "type" : "rdfs:Datatype"
  185. }, {
  186. "id" : "49",
  187. "type" : "rdfs:Datatype"
  188. }, {
  189. "id" : "1",
  190. "type" : "owl:Class"
  191. }, {
  192. "id" : "87",
  193. "type" : "owl:Class"
  194. }, {
  195. "id" : "13",
  196. "type" : "owl:Class"
  197. }, {
  198. "id" : "143",
  199. "type" : "owl:Class"
  200. }, {
  201. "id" : "43",
  202. "type" : "owl:Class"
  203. }, {
  204. "id" : "98",
  205. "type" : "owl:unionOf"
  206. }, {
  207. "id" : "2",
  208. "type" : "owl:unionOf"
  209. }, {
  210. "id" : "56",
  211. "type" : "owl:Class"
  212. }, {
  213. "id" : "99",
  214. "type" : "owl:unionOf"
  215. }, {
  216. "id" : "150",
  217. "type" : "owl:Class"
  218. }, {
  219. "id" : "29",
  220. "type" : "owl:unionOf"
  221. }, {
  222. "id" : "155",
  223. "type" : "owl:unionOf"
  224. }, {
  225. "id" : "156",
  226. "type" : "owl:unionOf"
  227. }, {
  228. "id" : "157",
  229. "type" : "owl:Class"
  230. }, {
  231. "id" : "54",
  232. "type" : "owl:Class"
  233. }, {
  234. "id" : "51",
  235. "type" : "owl:Class"
  236. }, {
  237. "id" : "14",
  238. "type" : "owl:Class"
  239. }, {
  240. "id" : "146",
  241. "type" : "owl:Class"
  242. }, {
  243. "id" : "135",
  244. "type" : "owl:Class"
  245. }, {
  246. "id" : "139",
  247. "type" : "owl:Class"
  248. }, {
  249. "id" : "72",
  250. "type" : "owl:Class"
  251. }, {
  252. "id" : "186",
  253. "type" : "owl:Class"
  254. }, {
  255. "id" : "59",
  256. "type" : "rdfs:Literal"
  257. }, {
  258. "id" : "18",
  259. "type" : "owl:Thing"
  260. }, {
  261. "id" : "148",
  262. "type" : "owl:Thing"
  263. }, {
  264. "id" : "75",
  265. "type" : "rdfs:Literal"
  266. }, {
  267. "id" : "67",
  268. "type" : "owl:Class"
  269. }, {
  270. "id" : "158",
  271. "type" : "owl:Class"
  272. }, {
  273. "id" : "69",
  274. "type" : "owl:Class"
  275. }, {
  276. "id" : "68",
  277. "type" : "owl:Class"
  278. }, {
  279. "id" : "95",
  280. "type" : "owl:Class"
  281. }, {
  282. "id" : "70",
  283. "type" : "owl:Class"
  284. }, {
  285. "id" : "144",
  286. "type" : "owl:Class"
  287. }, {
  288. "id" : "45",
  289. "type" : "owl:Class"
  290. }, {
  291. "id" : "8",
  292. "type" : "owl:Class"
  293. }, {
  294. "id" : "126",
  295. "type" : "owl:Class"
  296. }, {
  297. "id" : "160",
  298. "type" : "owl:Class"
  299. }, {
  300. "id" : "125",
  301. "type" : "owl:Class"
  302. }, {
  303. "id" : "129",
  304. "type" : "owl:Class"
  305. }, {
  306. "id" : "12",
  307. "type" : "owl:Class"
  308. } ],
  309. "classAttribute" : [ {
  310. "iri" : "http://www.w3.org/ns/prov#InstantaneousEvent",
  311. "baseIri" : "http://www.w3.org/ns/prov",
  312. "instances" : 0,
  313. "annotations" : {
  314. "component" : [ {
  315. "identifier" : "component",
  316. "language" : "undefined",
  317. "value" : "entities-activities",
  318. "type" : "label"
  319. }, {
  320. "identifier" : "component",
  321. "language" : "undefined",
  322. "value" : "entities-activities",
  323. "type" : "label"
  324. } ],
  325. "isDefinedBy" : [ {
  326. "identifier" : "isDefinedBy",
  327. "language" : "undefined",
  328. "value" : "http://www.w3.org/ns/prov-o#",
  329. "type" : "iri"
  330. }, {
  331. "identifier" : "isDefinedBy",
  332. "language" : "undefined",
  333. "value" : "http://www.w3.org/ns/prov-o#",
  334. "type" : "iri"
  335. } ],
  336. "definition" : [ {
  337. "identifier" : "definition",
  338. "language" : "en",
  339. "value" : "The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics.",
  340. "type" : "label"
  341. }, {
  342. "identifier" : "definition",
  343. "language" : "en",
  344. "value" : "The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics.",
  345. "type" : "label"
  346. } ],
  347. "category" : [ {
  348. "identifier" : "category",
  349. "language" : "undefined",
  350. "value" : "qualified",
  351. "type" : "label"
  352. }, {
  353. "identifier" : "category",
  354. "language" : "undefined",
  355. "value" : "qualified",
  356. "type" : "label"
  357. } ],
  358. "constraints" : [ {
  359. "identifier" : "constraints",
  360. "language" : "undefined",
  361. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event",
  362. "type" : "label"
  363. }, {
  364. "identifier" : "constraints",
  365. "language" : "undefined",
  366. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event",
  367. "type" : "label"
  368. } ]
  369. },
  370. "label" : {
  371. "IRI-based" : "InstantaneousEvent",
  372. "undefined" : "InstantaneousEvent"
  373. },
  374. "subClasses" : [ "12", "13", "14", "8", "15" ],
  375. "comment" : {
  376. "en" : "An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous."
  377. },
  378. "attributes" : [ "external" ],
  379. "id" : "11"
  380. }, {
  381. "iri" : "http://www.w3.org/ns/prov#KeyEntityPair",
  382. "baseIri" : "http://www.w3.org/ns/prov",
  383. "instances" : 0,
  384. "annotations" : {
  385. "component" : [ {
  386. "identifier" : "component",
  387. "language" : "undefined",
  388. "value" : "collections",
  389. "type" : "label"
  390. }, {
  391. "identifier" : "component",
  392. "language" : "undefined",
  393. "value" : "collections",
  394. "type" : "label"
  395. } ],
  396. "isDefinedBy" : [ {
  397. "identifier" : "isDefinedBy",
  398. "language" : "undefined",
  399. "value" : "http://www.w3.org/ns/prov#",
  400. "type" : "iri"
  401. }, {
  402. "identifier" : "isDefinedBy",
  403. "language" : "undefined",
  404. "value" : "http://www.w3.org/ns/prov#",
  405. "type" : "iri"
  406. } ],
  407. "dm" : [ {
  408. "identifier" : "dm",
  409. "language" : "undefined",
  410. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership",
  411. "type" : "label"
  412. }, {
  413. "identifier" : "dm",
  414. "language" : "undefined",
  415. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership",
  416. "type" : "label"
  417. } ],
  418. "definition" : [ {
  419. "identifier" : "definition",
  420. "language" : "undefined",
  421. "value" : "A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity.",
  422. "type" : "label"
  423. }, {
  424. "identifier" : "definition",
  425. "language" : "undefined",
  426. "value" : "A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity.",
  427. "type" : "label"
  428. } ],
  429. "category" : [ {
  430. "identifier" : "category",
  431. "language" : "undefined",
  432. "value" : "collections",
  433. "type" : "label"
  434. }, {
  435. "identifier" : "category",
  436. "language" : "undefined",
  437. "value" : "collections",
  438. "type" : "label"
  439. } ],
  440. "constraints" : [ {
  441. "identifier" : "constraints",
  442. "language" : "undefined",
  443. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  444. "type" : "label"
  445. }, {
  446. "identifier" : "constraints",
  447. "language" : "undefined",
  448. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  449. "type" : "label"
  450. } ],
  451. "n" : [ {
  452. "identifier" : "n",
  453. "language" : "undefined",
  454. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership",
  455. "type" : "label"
  456. }, {
  457. "identifier" : "n",
  458. "language" : "undefined",
  459. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership",
  460. "type" : "label"
  461. } ]
  462. },
  463. "label" : {
  464. "IRI-based" : "KeyEntityPair",
  465. "undefined" : "Key-Entity Pair"
  466. },
  467. "attributes" : [ "external" ],
  468. "id" : "22"
  469. }, {
  470. "iri" : "http://www.w3.org/ns/prov#ActivityInfluence",
  471. "baseIri" : "http://www.w3.org/ns/prov",
  472. "instances" : 0,
  473. "annotations" : {
  474. "isDefinedBy" : [ {
  475. "identifier" : "isDefinedBy",
  476. "language" : "undefined",
  477. "value" : "http://www.w3.org/ns/prov-o#",
  478. "type" : "iri"
  479. }, {
  480. "identifier" : "isDefinedBy",
  481. "language" : "undefined",
  482. "value" : "http://www.w3.org/ns/prov-o#",
  483. "type" : "iri"
  484. } ],
  485. "editorsDefinition" : [ {
  486. "identifier" : "editorsDefinition",
  487. "language" : "en",
  488. "value" : "ActivitiyInfluence is the capacity of an activity to have an effect on the character, development, or behavior of another by means of generation, invalidation, communication, or other.",
  489. "type" : "label"
  490. }, {
  491. "identifier" : "editorsDefinition",
  492. "language" : "en",
  493. "value" : "ActivitiyInfluence is the capacity of an activity to have an effect on the character, development, or behavior of another by means of generation, invalidation, communication, or other.",
  494. "type" : "label"
  495. } ],
  496. "category" : [ {
  497. "identifier" : "category",
  498. "language" : "undefined",
  499. "value" : "qualified",
  500. "type" : "label"
  501. }, {
  502. "identifier" : "category",
  503. "language" : "undefined",
  504. "value" : "qualified",
  505. "type" : "label"
  506. } ],
  507. "seeAlso" : [ {
  508. "identifier" : "seeAlso",
  509. "language" : "undefined",
  510. "value" : "http://www.w3.org/ns/prov#activity",
  511. "type" : "iri"
  512. }, {
  513. "identifier" : "seeAlso",
  514. "language" : "undefined",
  515. "value" : "http://www.w3.org/ns/prov#activity",
  516. "type" : "iri"
  517. } ]
  518. },
  519. "label" : {
  520. "IRI-based" : "ActivityInfluence",
  521. "undefined" : "ActivityInfluence"
  522. },
  523. "subClasses" : [ "27", "13", "14" ],
  524. "comment" : {
  525. "en" : "ActivityInfluence provides additional descriptions of an Activity's binary influence upon any other kind of resource. Instances of ActivityInfluence use the prov:activity property to cite the influencing Activity."
  526. },
  527. "attributes" : [ "external" ],
  528. "id" : "26",
  529. "superClasses" : [ "1" ]
  530. }, {
  531. "iri" : "http://www.w3.org/ns/prov#Modify",
  532. "baseIri" : "http://www.w3.org/ns/prov",
  533. "instances" : 0,
  534. "annotations" : {
  535. "isDefinedBy" : [ {
  536. "identifier" : "isDefinedBy",
  537. "language" : "undefined",
  538. "value" : "http://www.w3.org/ns/prov-dc#",
  539. "type" : "iri"
  540. } ],
  541. "definition" : [ {
  542. "identifier" : "definition",
  543. "language" : "en",
  544. "value" : "Activity that identifies the modification of a resource.",
  545. "type" : "label"
  546. }, {
  547. "identifier" : "definition",
  548. "language" : "en",
  549. "value" : "Activity that identifies the modification of a resource. ",
  550. "type" : "label"
  551. } ]
  552. },
  553. "label" : {
  554. "IRI-based" : "Modify",
  555. "en" : "Modify"
  556. },
  557. "attributes" : [ "external" ],
  558. "id" : "35",
  559. "superClasses" : [ "9" ]
  560. }, {
  561. "iri" : "http://www.w3.org/ns/prov#Person",
  562. "baseIri" : "http://www.w3.org/ns/prov",
  563. "instances" : 0,
  564. "annotations" : {
  565. "component" : [ {
  566. "identifier" : "component",
  567. "language" : "undefined",
  568. "value" : "agents-responsibility",
  569. "type" : "label"
  570. }, {
  571. "identifier" : "component",
  572. "language" : "undefined",
  573. "value" : "agents-responsibility",
  574. "type" : "label"
  575. } ],
  576. "isDefinedBy" : [ {
  577. "identifier" : "isDefinedBy",
  578. "language" : "undefined",
  579. "value" : "http://www.w3.org/ns/prov-o#",
  580. "type" : "iri"
  581. }, {
  582. "identifier" : "isDefinedBy",
  583. "language" : "undefined",
  584. "value" : "http://www.w3.org/ns/prov-o#",
  585. "type" : "iri"
  586. } ],
  587. "dm" : [ {
  588. "identifier" : "dm",
  589. "language" : "undefined",
  590. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  591. "type" : "label"
  592. }, {
  593. "identifier" : "dm",
  594. "language" : "undefined",
  595. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  596. "type" : "label"
  597. } ],
  598. "definition" : [ {
  599. "identifier" : "definition",
  600. "language" : "en",
  601. "value" : "Person agents are people.",
  602. "type" : "label"
  603. }, {
  604. "identifier" : "definition",
  605. "language" : "en",
  606. "value" : "Person agents are people.",
  607. "type" : "label"
  608. } ],
  609. "category" : [ {
  610. "identifier" : "category",
  611. "language" : "undefined",
  612. "value" : "expanded",
  613. "type" : "label"
  614. }, {
  615. "identifier" : "category",
  616. "language" : "undefined",
  617. "value" : "expanded",
  618. "type" : "label"
  619. } ],
  620. "n" : [ {
  621. "identifier" : "n",
  622. "language" : "undefined",
  623. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  624. "type" : "label"
  625. }, {
  626. "identifier" : "n",
  627. "language" : "undefined",
  628. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  629. "type" : "label"
  630. } ]
  631. },
  632. "label" : {
  633. "IRI-based" : "Person",
  634. "undefined" : "Person"
  635. },
  636. "attributes" : [ "external" ],
  637. "id" : "36",
  638. "superClasses" : [ "24" ]
  639. }, {
  640. "iri" : "https://w3id.org/consent-mapping-jit#Purpose",
  641. "baseIri" : "https://w3id.org/consent-mapping-jit",
  642. "instances" : 0,
  643. "label" : {
  644. "IRI-based" : "Purpose",
  645. "undefined" : "Purpose"
  646. },
  647. "comment" : {
  648. "undefined" : "Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one’s profile and purchase history for targeted advertising."
  649. },
  650. "id" : "37",
  651. "superClasses" : [ "17" ]
  652. }, {
  653. "iri" : "http://www.w3.org/ns/prov#Dictionary",
  654. "baseIri" : "http://www.w3.org/ns/prov",
  655. "instances" : 0,
  656. "annotations" : {
  657. "component" : [ {
  658. "identifier" : "component",
  659. "language" : "undefined",
  660. "value" : "collections",
  661. "type" : "label"
  662. }, {
  663. "identifier" : "component",
  664. "language" : "undefined",
  665. "value" : "collections",
  666. "type" : "label"
  667. } ],
  668. "isDefinedBy" : [ {
  669. "identifier" : "isDefinedBy",
  670. "language" : "undefined",
  671. "value" : "http://www.w3.org/ns/prov#",
  672. "type" : "iri"
  673. }, {
  674. "identifier" : "isDefinedBy",
  675. "language" : "undefined",
  676. "value" : "http://www.w3.org/ns/prov#",
  677. "type" : "iri"
  678. } ],
  679. "dm" : [ {
  680. "identifier" : "dm",
  681. "language" : "undefined",
  682. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition",
  683. "type" : "label"
  684. }, {
  685. "identifier" : "dm",
  686. "language" : "undefined",
  687. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition",
  688. "type" : "label"
  689. } ],
  690. "definition" : [ {
  691. "identifier" : "definition",
  692. "language" : "undefined",
  693. "value" : "A dictionary is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the dictionary.",
  694. "type" : "label"
  695. }, {
  696. "identifier" : "definition",
  697. "language" : "undefined",
  698. "value" : "A dictionary is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the dictionary.",
  699. "type" : "label"
  700. } ],
  701. "category" : [ {
  702. "identifier" : "category",
  703. "language" : "undefined",
  704. "value" : "collections",
  705. "type" : "label"
  706. }, {
  707. "identifier" : "category",
  708. "language" : "undefined",
  709. "value" : "collections",
  710. "type" : "label"
  711. } ],
  712. "constraints" : [ {
  713. "identifier" : "constraints",
  714. "language" : "undefined",
  715. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  716. "type" : "label"
  717. }, {
  718. "identifier" : "constraints",
  719. "language" : "undefined",
  720. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  721. "type" : "label"
  722. } ],
  723. "n" : [ {
  724. "identifier" : "n",
  725. "language" : "undefined",
  726. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary",
  727. "type" : "label"
  728. }, {
  729. "identifier" : "n",
  730. "language" : "undefined",
  731. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary",
  732. "type" : "label"
  733. } ]
  734. },
  735. "label" : {
  736. "IRI-based" : "Dictionary",
  737. "undefined" : "Dictionary"
  738. },
  739. "subClasses" : [ "45" ],
  740. "comment" : {
  741. "undefined" : "A given dictionary forms a given structure for its members. A different structure (obtained either by insertion or removal of members) constitutes a different dictionary."
  742. },
  743. "attributes" : [ "external" ],
  744. "id" : "32"
  745. }, {
  746. "iri" : "http://www.w3.org/ns/prov#EmptyCollection",
  747. "baseIri" : "http://www.w3.org/ns/prov",
  748. "instances" : 0,
  749. "annotations" : {
  750. "component" : [ {
  751. "identifier" : "component",
  752. "language" : "undefined",
  753. "value" : "collections",
  754. "type" : "label"
  755. }, {
  756. "identifier" : "component",
  757. "language" : "undefined",
  758. "value" : "collections",
  759. "type" : "label"
  760. } ],
  761. "isDefinedBy" : [ {
  762. "identifier" : "isDefinedBy",
  763. "language" : "undefined",
  764. "value" : "http://www.w3.org/ns/prov-o#",
  765. "type" : "iri"
  766. }, {
  767. "identifier" : "isDefinedBy",
  768. "language" : "undefined",
  769. "value" : "http://www.w3.org/ns/prov-o#",
  770. "type" : "iri"
  771. } ],
  772. "definition" : [ {
  773. "identifier" : "definition",
  774. "language" : "en",
  775. "value" : "An empty collection is a collection without members.",
  776. "type" : "label"
  777. }, {
  778. "identifier" : "definition",
  779. "language" : "en",
  780. "value" : "An empty collection is a collection without members.",
  781. "type" : "label"
  782. } ],
  783. "category" : [ {
  784. "identifier" : "category",
  785. "language" : "undefined",
  786. "value" : "expanded",
  787. "type" : "label"
  788. }, {
  789. "identifier" : "category",
  790. "language" : "undefined",
  791. "value" : "expanded",
  792. "type" : "label"
  793. } ]
  794. },
  795. "label" : {
  796. "IRI-based" : "EmptyCollection",
  797. "en" : "EmptyCollection"
  798. },
  799. "subClasses" : [ "45" ],
  800. "attributes" : [ "external" ],
  801. "id" : "50",
  802. "superClasses" : [ "51" ]
  803. }, {
  804. "iri" : "http://www.w3.org/ns/prov#Agent",
  805. "baseIri" : "http://www.w3.org/ns/prov",
  806. "instances" : 0,
  807. "annotations" : {
  808. "component" : [ {
  809. "identifier" : "component",
  810. "language" : "undefined",
  811. "value" : "agents-responsibility",
  812. "type" : "label"
  813. }, {
  814. "identifier" : "component",
  815. "language" : "undefined",
  816. "value" : "agents-responsibility",
  817. "type" : "label"
  818. } ],
  819. "isDefinedBy" : [ {
  820. "identifier" : "isDefinedBy",
  821. "language" : "undefined",
  822. "value" : "http://www.w3.org/ns/prov-o#",
  823. "type" : "iri"
  824. }, {
  825. "identifier" : "isDefinedBy",
  826. "language" : "undefined",
  827. "value" : "http://www.w3.org/ns/prov-o#",
  828. "type" : "iri"
  829. } ],
  830. "dm" : [ {
  831. "identifier" : "dm",
  832. "language" : "undefined",
  833. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  834. "type" : "label"
  835. }, {
  836. "identifier" : "dm",
  837. "language" : "undefined",
  838. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  839. "type" : "label"
  840. } ],
  841. "definition" : [ {
  842. "identifier" : "definition",
  843. "language" : "en",
  844. "value" : "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. ",
  845. "type" : "label"
  846. }, {
  847. "identifier" : "definition",
  848. "language" : "en",
  849. "value" : "An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. ",
  850. "type" : "label"
  851. } ],
  852. "category" : [ {
  853. "identifier" : "category",
  854. "language" : "undefined",
  855. "value" : "starting-point",
  856. "type" : "label"
  857. }, {
  858. "identifier" : "category",
  859. "language" : "undefined",
  860. "value" : "starting-point",
  861. "type" : "label"
  862. } ],
  863. "n" : [ {
  864. "identifier" : "n",
  865. "language" : "undefined",
  866. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent",
  867. "type" : "label"
  868. }, {
  869. "identifier" : "n",
  870. "language" : "undefined",
  871. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent",
  872. "type" : "label"
  873. } ]
  874. },
  875. "label" : {
  876. "IRI-based" : "Agent",
  877. "undefined" : "Agent"
  878. },
  879. "subClasses" : [ "36", "52", "53", "54" ],
  880. "attributes" : [ "external" ],
  881. "id" : "24"
  882. }, {
  883. "iri" : "https://w3id.org/consent-mapping-jit#Consenting_Party",
  884. "baseIri" : "https://w3id.org/consent-mapping-jit",
  885. "instances" : 0,
  886. "label" : {
  887. "IRI-based" : "Consenting_Party",
  888. "undefined" : "Consenting Party"
  889. },
  890. "union" : [ "36", "52" ],
  891. "comment" : {
  892. "undefined" : "Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization."
  893. },
  894. "attributes" : [ "union" ],
  895. "id" : "53",
  896. "superClasses" : [ "24" ]
  897. }, {
  898. "iri" : "http://www.w3.org/ns/prov#Location",
  899. "baseIri" : "http://www.w3.org/ns/prov",
  900. "instances" : 0,
  901. "annotations" : {
  902. "isDefinedBy" : [ {
  903. "identifier" : "isDefinedBy",
  904. "language" : "undefined",
  905. "value" : "http://www.w3.org/ns/prov-o#",
  906. "type" : "iri"
  907. }, {
  908. "identifier" : "isDefinedBy",
  909. "language" : "undefined",
  910. "value" : "http://www.w3.org/ns/prov-o#",
  911. "type" : "iri"
  912. } ],
  913. "dm" : [ {
  914. "identifier" : "dm",
  915. "language" : "undefined",
  916. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location",
  917. "type" : "label"
  918. }, {
  919. "identifier" : "dm",
  920. "language" : "undefined",
  921. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location",
  922. "type" : "label"
  923. } ],
  924. "definition" : [ {
  925. "identifier" : "definition",
  926. "language" : "en",
  927. "value" : "A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth.",
  928. "type" : "label"
  929. }, {
  930. "identifier" : "definition",
  931. "language" : "en",
  932. "value" : "A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth.",
  933. "type" : "label"
  934. } ],
  935. "category" : [ {
  936. "identifier" : "category",
  937. "language" : "undefined",
  938. "value" : "expanded",
  939. "type" : "label"
  940. }, {
  941. "identifier" : "category",
  942. "language" : "undefined",
  943. "value" : "expanded",
  944. "type" : "label"
  945. } ],
  946. "n" : [ {
  947. "identifier" : "n",
  948. "language" : "undefined",
  949. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute",
  950. "type" : "label"
  951. }, {
  952. "identifier" : "n",
  953. "language" : "undefined",
  954. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute",
  955. "type" : "label"
  956. } ],
  957. "seeAlso" : [ {
  958. "identifier" : "seeAlso",
  959. "language" : "undefined",
  960. "value" : "http://www.w3.org/ns/prov#atLocation",
  961. "type" : "iri"
  962. }, {
  963. "identifier" : "seeAlso",
  964. "language" : "undefined",
  965. "value" : "http://www.w3.org/ns/prov#atLocation",
  966. "type" : "iri"
  967. } ]
  968. },
  969. "label" : {
  970. "IRI-based" : "Location",
  971. "undefined" : "Location"
  972. },
  973. "attributes" : [ "external" ],
  974. "id" : "30"
  975. }, {
  976. "iri" : "http://www.w3.org/ns/prov#Copyright",
  977. "baseIri" : "http://www.w3.org/ns/prov",
  978. "instances" : 0,
  979. "annotations" : {
  980. "isDefinedBy" : [ {
  981. "identifier" : "isDefinedBy",
  982. "language" : "undefined",
  983. "value" : "http://www.w3.org/ns/prov-dc#",
  984. "type" : "iri"
  985. } ],
  986. "definition" : [ {
  987. "identifier" : "definition",
  988. "language" : "en",
  989. "value" : "Activity that identifies the Copyrighting activity associated to a resource.",
  990. "type" : "label"
  991. }, {
  992. "identifier" : "definition",
  993. "language" : "en",
  994. "value" : "Activity that identifies the Copyrighting activity associated to a resource.",
  995. "type" : "label"
  996. } ]
  997. },
  998. "label" : {
  999. "IRI-based" : "Copyright",
  1000. "en" : "Copyright"
  1001. },
  1002. "attributes" : [ "external" ],
  1003. "id" : "65",
  1004. "superClasses" : [ "9" ]
  1005. }, {
  1006. "iri" : "http://www.w3.org/ns/prov#Derivation",
  1007. "baseIri" : "http://www.w3.org/ns/prov",
  1008. "instances" : 0,
  1009. "annotations" : {
  1010. "component" : [ {
  1011. "identifier" : "component",
  1012. "language" : "undefined",
  1013. "value" : "derivations",
  1014. "type" : "label"
  1015. }, {
  1016. "identifier" : "component",
  1017. "language" : "undefined",
  1018. "value" : "derivations",
  1019. "type" : "label"
  1020. } ],
  1021. "isDefinedBy" : [ {
  1022. "identifier" : "isDefinedBy",
  1023. "language" : "undefined",
  1024. "value" : "http://www.w3.org/ns/prov-o#",
  1025. "type" : "iri"
  1026. }, {
  1027. "identifier" : "isDefinedBy",
  1028. "language" : "undefined",
  1029. "value" : "http://www.w3.org/ns/prov-o#",
  1030. "type" : "iri"
  1031. } ],
  1032. "unqualifiedForm" : [ {
  1033. "identifier" : "unqualifiedForm",
  1034. "language" : "undefined",
  1035. "value" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  1036. "type" : "iri"
  1037. }, {
  1038. "identifier" : "unqualifiedForm",
  1039. "language" : "undefined",
  1040. "value" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  1041. "type" : "iri"
  1042. } ],
  1043. "dm" : [ {
  1044. "identifier" : "dm",
  1045. "language" : "undefined",
  1046. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation",
  1047. "type" : "label"
  1048. }, {
  1049. "identifier" : "dm",
  1050. "language" : "undefined",
  1051. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation",
  1052. "type" : "label"
  1053. } ],
  1054. "definition" : [ {
  1055. "identifier" : "definition",
  1056. "language" : "en",
  1057. "value" : "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.",
  1058. "type" : "label"
  1059. }, {
  1060. "identifier" : "definition",
  1061. "language" : "en",
  1062. "value" : "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.",
  1063. "type" : "label"
  1064. } ],
  1065. "category" : [ {
  1066. "identifier" : "category",
  1067. "language" : "undefined",
  1068. "value" : "qualified",
  1069. "type" : "label"
  1070. }, {
  1071. "identifier" : "category",
  1072. "language" : "undefined",
  1073. "value" : "qualified",
  1074. "type" : "label"
  1075. } ],
  1076. "constraints" : [ {
  1077. "identifier" : "constraints",
  1078. "language" : "undefined",
  1079. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1080. "type" : "label"
  1081. }, {
  1082. "identifier" : "constraints",
  1083. "language" : "undefined",
  1084. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1085. "type" : "label"
  1086. } ],
  1087. "n" : [ {
  1088. "identifier" : "n",
  1089. "language" : "undefined",
  1090. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation",
  1091. "type" : "label"
  1092. }, {
  1093. "identifier" : "n",
  1094. "language" : "undefined",
  1095. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation",
  1096. "type" : "label"
  1097. } ]
  1098. },
  1099. "label" : {
  1100. "IRI-based" : "Derivation",
  1101. "undefined" : "Derivation"
  1102. },
  1103. "subClasses" : [ "67", "33", "68", "69", "70" ],
  1104. "comment" : {
  1105. "en" : "The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply."
  1106. },
  1107. "attributes" : [ "external" ],
  1108. "id" : "66",
  1109. "superClasses" : [ "56" ]
  1110. }, {
  1111. "iri" : "http://www.w3.org/ns/prov#Bundle",
  1112. "baseIri" : "http://www.w3.org/ns/prov",
  1113. "instances" : 0,
  1114. "annotations" : {
  1115. "isDefinedBy" : [ {
  1116. "identifier" : "isDefinedBy",
  1117. "language" : "undefined",
  1118. "value" : "http://www.w3.org/ns/prov-o#",
  1119. "type" : "iri"
  1120. }, {
  1121. "identifier" : "isDefinedBy",
  1122. "language" : "undefined",
  1123. "value" : "http://www.w3.org/ns/prov-o#",
  1124. "type" : "iri"
  1125. } ],
  1126. "dm" : [ {
  1127. "identifier" : "dm",
  1128. "language" : "undefined",
  1129. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity",
  1130. "type" : "label"
  1131. }, {
  1132. "identifier" : "dm",
  1133. "language" : "undefined",
  1134. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity",
  1135. "type" : "label"
  1136. } ],
  1137. "definition" : [ {
  1138. "identifier" : "definition",
  1139. "language" : "en",
  1140. "value" : "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.",
  1141. "type" : "label"
  1142. }, {
  1143. "identifier" : "definition",
  1144. "language" : "en",
  1145. "value" : "A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.",
  1146. "type" : "label"
  1147. } ],
  1148. "category" : [ {
  1149. "identifier" : "category",
  1150. "language" : "undefined",
  1151. "value" : "expanded",
  1152. "type" : "label"
  1153. }, {
  1154. "identifier" : "category",
  1155. "language" : "undefined",
  1156. "value" : "expanded",
  1157. "type" : "label"
  1158. } ],
  1159. "n" : [ {
  1160. "identifier" : "n",
  1161. "language" : "undefined",
  1162. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration",
  1163. "type" : "label"
  1164. }, {
  1165. "identifier" : "n",
  1166. "language" : "undefined",
  1167. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration",
  1168. "type" : "label"
  1169. } ]
  1170. },
  1171. "label" : {
  1172. "IRI-based" : "Bundle",
  1173. "undefined" : "Bundle"
  1174. },
  1175. "comment" : {
  1176. "en" : "Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O."
  1177. },
  1178. "attributes" : [ "external" ],
  1179. "id" : "73",
  1180. "superClasses" : [ "17" ]
  1181. }, {
  1182. "iri" : "http://www.w3.org/ns/prov#ServiceDescription",
  1183. "baseIri" : "http://www.w3.org/ns/prov",
  1184. "instances" : 0,
  1185. "annotations" : {
  1186. "aq" : [ {
  1187. "identifier" : "aq",
  1188. "language" : "undefined",
  1189. "value" : "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery",
  1190. "type" : "label"
  1191. } ],
  1192. "isDefinedBy" : [ {
  1193. "identifier" : "isDefinedBy",
  1194. "language" : "undefined",
  1195. "value" : "http://www.w3.org/ns/prov#",
  1196. "type" : "iri"
  1197. } ],
  1198. "category" : [ {
  1199. "identifier" : "category",
  1200. "language" : "undefined",
  1201. "value" : "access-and-query",
  1202. "type" : "label"
  1203. } ]
  1204. },
  1205. "label" : {
  1206. "IRI-based" : "ServiceDescription",
  1207. "undefined" : "ServiceDescription"
  1208. },
  1209. "comment" : {
  1210. "undefined" : "Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments."
  1211. },
  1212. "attributes" : [ "external" ],
  1213. "id" : "76",
  1214. "superClasses" : [ "54" ]
  1215. }, {
  1216. "iri" : "http://www.w3.org/ns/prov#Start",
  1217. "baseIri" : "http://www.w3.org/ns/prov",
  1218. "instances" : 0,
  1219. "annotations" : {
  1220. "component" : [ {
  1221. "identifier" : "component",
  1222. "language" : "undefined",
  1223. "value" : "entities-activities",
  1224. "type" : "label"
  1225. }, {
  1226. "identifier" : "component",
  1227. "language" : "undefined",
  1228. "value" : "entities-activities",
  1229. "type" : "label"
  1230. } ],
  1231. "isDefinedBy" : [ {
  1232. "identifier" : "isDefinedBy",
  1233. "language" : "undefined",
  1234. "value" : "http://www.w3.org/ns/prov-o#",
  1235. "type" : "iri"
  1236. }, {
  1237. "identifier" : "isDefinedBy",
  1238. "language" : "undefined",
  1239. "value" : "http://www.w3.org/ns/prov-o#",
  1240. "type" : "iri"
  1241. } ],
  1242. "unqualifiedForm" : [ {
  1243. "identifier" : "unqualifiedForm",
  1244. "language" : "undefined",
  1245. "value" : "http://www.w3.org/ns/prov#wasStartedBy",
  1246. "type" : "iri"
  1247. }, {
  1248. "identifier" : "unqualifiedForm",
  1249. "language" : "undefined",
  1250. "value" : "http://www.w3.org/ns/prov#wasStartedBy",
  1251. "type" : "iri"
  1252. } ],
  1253. "dm" : [ {
  1254. "identifier" : "dm",
  1255. "language" : "undefined",
  1256. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start",
  1257. "type" : "label"
  1258. }, {
  1259. "identifier" : "dm",
  1260. "language" : "undefined",
  1261. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start",
  1262. "type" : "label"
  1263. } ],
  1264. "definition" : [ {
  1265. "identifier" : "definition",
  1266. "language" : "en",
  1267. "value" : "Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger.",
  1268. "type" : "label"
  1269. }, {
  1270. "identifier" : "definition",
  1271. "language" : "en",
  1272. "value" : "Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger.",
  1273. "type" : "label"
  1274. } ],
  1275. "category" : [ {
  1276. "identifier" : "category",
  1277. "language" : "undefined",
  1278. "value" : "qualified",
  1279. "type" : "label"
  1280. }, {
  1281. "identifier" : "category",
  1282. "language" : "undefined",
  1283. "value" : "qualified",
  1284. "type" : "label"
  1285. } ],
  1286. "constraints" : [ {
  1287. "identifier" : "constraints",
  1288. "language" : "undefined",
  1289. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1290. "type" : "label"
  1291. }, {
  1292. "identifier" : "constraints",
  1293. "language" : "undefined",
  1294. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1295. "type" : "label"
  1296. } ],
  1297. "n" : [ {
  1298. "identifier" : "n",
  1299. "language" : "undefined",
  1300. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start",
  1301. "type" : "label"
  1302. }, {
  1303. "identifier" : "n",
  1304. "language" : "undefined",
  1305. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start",
  1306. "type" : "label"
  1307. } ]
  1308. },
  1309. "label" : {
  1310. "IRI-based" : "Start",
  1311. "undefined" : "Start"
  1312. },
  1313. "comment" : {
  1314. "en" : "An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] ."
  1315. },
  1316. "attributes" : [ "external" ],
  1317. "id" : "15",
  1318. "superClasses" : [ "56", "11" ]
  1319. }, {
  1320. "iri" : "http://www.w3.org/ns/prov#Accept",
  1321. "baseIri" : "http://www.w3.org/ns/prov",
  1322. "instances" : 0,
  1323. "annotations" : {
  1324. "isDefinedBy" : [ {
  1325. "identifier" : "isDefinedBy",
  1326. "language" : "undefined",
  1327. "value" : "http://www.w3.org/ns/prov-dc#",
  1328. "type" : "iri"
  1329. } ],
  1330. "definition" : [ {
  1331. "identifier" : "definition",
  1332. "language" : "en",
  1333. "value" : "Activity that identifies the acceptance of a resource (e.g., an article in a conference)",
  1334. "type" : "label"
  1335. }, {
  1336. "identifier" : "definition",
  1337. "language" : "en",
  1338. "value" : "Activity that identifies the acceptance of a resource (e.g., an article in a conference)",
  1339. "type" : "label"
  1340. } ]
  1341. },
  1342. "label" : {
  1343. "IRI-based" : "Accept",
  1344. "en" : "Accept"
  1345. },
  1346. "attributes" : [ "external" ],
  1347. "id" : "90",
  1348. "superClasses" : [ "9" ]
  1349. }, {
  1350. "iri" : "http://www.w3.org/ns/prov#Communication",
  1351. "baseIri" : "http://www.w3.org/ns/prov",
  1352. "instances" : 0,
  1353. "annotations" : {
  1354. "component" : [ {
  1355. "identifier" : "component",
  1356. "language" : "undefined",
  1357. "value" : "entities-activities",
  1358. "type" : "label"
  1359. }, {
  1360. "identifier" : "component",
  1361. "language" : "undefined",
  1362. "value" : "entities-activities",
  1363. "type" : "label"
  1364. } ],
  1365. "isDefinedBy" : [ {
  1366. "identifier" : "isDefinedBy",
  1367. "language" : "undefined",
  1368. "value" : "http://www.w3.org/ns/prov-o#",
  1369. "type" : "iri"
  1370. }, {
  1371. "identifier" : "isDefinedBy",
  1372. "language" : "undefined",
  1373. "value" : "http://www.w3.org/ns/prov-o#",
  1374. "type" : "iri"
  1375. } ],
  1376. "unqualifiedForm" : [ {
  1377. "identifier" : "unqualifiedForm",
  1378. "language" : "undefined",
  1379. "value" : "http://www.w3.org/ns/prov#wasInformedBy",
  1380. "type" : "iri"
  1381. }, {
  1382. "identifier" : "unqualifiedForm",
  1383. "language" : "undefined",
  1384. "value" : "http://www.w3.org/ns/prov#wasInformedBy",
  1385. "type" : "iri"
  1386. } ],
  1387. "dm" : [ {
  1388. "identifier" : "dm",
  1389. "language" : "undefined",
  1390. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication",
  1391. "type" : "label"
  1392. }, {
  1393. "identifier" : "dm",
  1394. "language" : "undefined",
  1395. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication",
  1396. "type" : "label"
  1397. } ],
  1398. "definition" : [ {
  1399. "identifier" : "definition",
  1400. "language" : "undefined",
  1401. "value" : "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other.",
  1402. "type" : "label"
  1403. }, {
  1404. "identifier" : "definition",
  1405. "language" : "undefined",
  1406. "value" : "Communication is the exchange of an entity by two activities, one activity using the entity generated by the other.",
  1407. "type" : "label"
  1408. } ],
  1409. "category" : [ {
  1410. "identifier" : "category",
  1411. "language" : "undefined",
  1412. "value" : "qualified",
  1413. "type" : "label"
  1414. }, {
  1415. "identifier" : "category",
  1416. "language" : "undefined",
  1417. "value" : "qualified",
  1418. "type" : "label"
  1419. } ],
  1420. "constraints" : [ {
  1421. "identifier" : "constraints",
  1422. "language" : "undefined",
  1423. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1424. "type" : "label"
  1425. }, {
  1426. "identifier" : "constraints",
  1427. "language" : "undefined",
  1428. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1429. "type" : "label"
  1430. } ],
  1431. "n" : [ {
  1432. "identifier" : "n",
  1433. "language" : "undefined",
  1434. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy",
  1435. "type" : "label"
  1436. }, {
  1437. "identifier" : "n",
  1438. "language" : "undefined",
  1439. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy",
  1440. "type" : "label"
  1441. } ]
  1442. },
  1443. "label" : {
  1444. "IRI-based" : "Communication",
  1445. "undefined" : "Communication"
  1446. },
  1447. "comment" : {
  1448. "en" : "An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ]."
  1449. },
  1450. "attributes" : [ "external" ],
  1451. "id" : "27",
  1452. "superClasses" : [ "26" ]
  1453. }, {
  1454. "iri" : "https://w3id.org/consent-mapping-jit#Inclusion",
  1455. "baseIri" : "https://w3id.org/consent-mapping-jit",
  1456. "instances" : 0,
  1457. "label" : {
  1458. "IRI-based" : "Inclusion",
  1459. "undefined" : "Inlclusion"
  1460. },
  1461. "comment" : {
  1462. "undefined" : "Inclusion represents the relation between a policy and a purpose."
  1463. },
  1464. "id" : "94",
  1465. "superClasses" : [ "17" ]
  1466. }, {
  1467. "iri" : "http://www.w3.org/ns/prov#Attribution",
  1468. "baseIri" : "http://www.w3.org/ns/prov",
  1469. "instances" : 0,
  1470. "annotations" : {
  1471. "component" : [ {
  1472. "identifier" : "component",
  1473. "language" : "undefined",
  1474. "value" : "agents-responsibility",
  1475. "type" : "label"
  1476. }, {
  1477. "identifier" : "component",
  1478. "language" : "undefined",
  1479. "value" : "agents-responsibility",
  1480. "type" : "label"
  1481. } ],
  1482. "isDefinedBy" : [ {
  1483. "identifier" : "isDefinedBy",
  1484. "language" : "undefined",
  1485. "value" : "http://www.w3.org/ns/prov-o#",
  1486. "type" : "iri"
  1487. }, {
  1488. "identifier" : "isDefinedBy",
  1489. "language" : "undefined",
  1490. "value" : "http://www.w3.org/ns/prov-o#",
  1491. "type" : "iri"
  1492. } ],
  1493. "unqualifiedForm" : [ {
  1494. "identifier" : "unqualifiedForm",
  1495. "language" : "undefined",
  1496. "value" : "http://www.w3.org/ns/prov#wasAttributedTo",
  1497. "type" : "iri"
  1498. }, {
  1499. "identifier" : "unqualifiedForm",
  1500. "language" : "undefined",
  1501. "value" : "http://www.w3.org/ns/prov#wasAttributedTo",
  1502. "type" : "iri"
  1503. } ],
  1504. "dm" : [ {
  1505. "identifier" : "dm",
  1506. "language" : "undefined",
  1507. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution",
  1508. "type" : "label"
  1509. }, {
  1510. "identifier" : "dm",
  1511. "language" : "undefined",
  1512. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution",
  1513. "type" : "label"
  1514. } ],
  1515. "definition" : [ {
  1516. "identifier" : "definition",
  1517. "language" : "en",
  1518. "value" : "Attribution is the ascribing of an entity to an agent.\n\nWhen an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant.",
  1519. "type" : "label"
  1520. }, {
  1521. "identifier" : "definition",
  1522. "language" : "en",
  1523. "value" : "Attribution is the ascribing of an entity to an agent.\n\nWhen an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant.",
  1524. "type" : "label"
  1525. } ],
  1526. "category" : [ {
  1527. "identifier" : "category",
  1528. "language" : "undefined",
  1529. "value" : "qualified",
  1530. "type" : "label"
  1531. }, {
  1532. "identifier" : "category",
  1533. "language" : "undefined",
  1534. "value" : "qualified",
  1535. "type" : "label"
  1536. } ],
  1537. "constraints" : [ {
  1538. "identifier" : "constraints",
  1539. "language" : "undefined",
  1540. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1541. "type" : "label"
  1542. }, {
  1543. "identifier" : "constraints",
  1544. "language" : "undefined",
  1545. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1546. "type" : "label"
  1547. } ],
  1548. "n" : [ {
  1549. "identifier" : "n",
  1550. "language" : "undefined",
  1551. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution",
  1552. "type" : "label"
  1553. }, {
  1554. "identifier" : "n",
  1555. "language" : "undefined",
  1556. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution",
  1557. "type" : "label"
  1558. } ]
  1559. },
  1560. "label" : {
  1561. "IRI-based" : "Attribution",
  1562. "undefined" : "Attribution"
  1563. },
  1564. "comment" : {
  1565. "en" : "An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ]."
  1566. },
  1567. "attributes" : [ "external" ],
  1568. "id" : "112",
  1569. "superClasses" : [ "43" ]
  1570. }, {
  1571. "iri" : "http://www.w3.org/ns/prov#Organization",
  1572. "baseIri" : "http://www.w3.org/ns/prov",
  1573. "instances" : 0,
  1574. "annotations" : {
  1575. "component" : [ {
  1576. "identifier" : "component",
  1577. "language" : "undefined",
  1578. "value" : "agents-responsibility",
  1579. "type" : "label"
  1580. }, {
  1581. "identifier" : "component",
  1582. "language" : "undefined",
  1583. "value" : "agents-responsibility",
  1584. "type" : "label"
  1585. } ],
  1586. "isDefinedBy" : [ {
  1587. "identifier" : "isDefinedBy",
  1588. "language" : "undefined",
  1589. "value" : "http://www.w3.org/ns/prov-o#",
  1590. "type" : "iri"
  1591. }, {
  1592. "identifier" : "isDefinedBy",
  1593. "language" : "undefined",
  1594. "value" : "http://www.w3.org/ns/prov-o#",
  1595. "type" : "iri"
  1596. } ],
  1597. "dm" : [ {
  1598. "identifier" : "dm",
  1599. "language" : "undefined",
  1600. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  1601. "type" : "label"
  1602. }, {
  1603. "identifier" : "dm",
  1604. "language" : "undefined",
  1605. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  1606. "type" : "label"
  1607. } ],
  1608. "definition" : [ {
  1609. "identifier" : "definition",
  1610. "language" : "undefined",
  1611. "value" : "An organization is a social or legal institution such as a company, society, etc.",
  1612. "type" : "label"
  1613. }, {
  1614. "identifier" : "definition",
  1615. "language" : "undefined",
  1616. "value" : "An organization is a social or legal institution such as a company, society, etc.",
  1617. "type" : "label"
  1618. } ],
  1619. "category" : [ {
  1620. "identifier" : "category",
  1621. "language" : "undefined",
  1622. "value" : "expanded",
  1623. "type" : "label"
  1624. }, {
  1625. "identifier" : "category",
  1626. "language" : "undefined",
  1627. "value" : "expanded",
  1628. "type" : "label"
  1629. } ],
  1630. "n" : [ {
  1631. "identifier" : "n",
  1632. "language" : "undefined",
  1633. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  1634. "type" : "label"
  1635. }, {
  1636. "identifier" : "n",
  1637. "language" : "undefined",
  1638. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  1639. "type" : "label"
  1640. } ]
  1641. },
  1642. "label" : {
  1643. "IRI-based" : "Organization",
  1644. "undefined" : "Organization"
  1645. },
  1646. "attributes" : [ "external" ],
  1647. "id" : "52",
  1648. "superClasses" : [ "24" ]
  1649. }, {
  1650. "iri" : "http://www.w3.org/ns/prov#Plan",
  1651. "baseIri" : "http://www.w3.org/ns/prov",
  1652. "instances" : 0,
  1653. "annotations" : {
  1654. "component" : [ {
  1655. "identifier" : "component",
  1656. "language" : "undefined",
  1657. "value" : "agents-responsibility",
  1658. "type" : "label"
  1659. }, {
  1660. "identifier" : "component",
  1661. "language" : "undefined",
  1662. "value" : "agents-responsibility",
  1663. "type" : "label"
  1664. } ],
  1665. "isDefinedBy" : [ {
  1666. "identifier" : "isDefinedBy",
  1667. "language" : "undefined",
  1668. "value" : "http://www.w3.org/ns/prov-o#",
  1669. "type" : "iri"
  1670. }, {
  1671. "identifier" : "isDefinedBy",
  1672. "language" : "undefined",
  1673. "value" : "http://www.w3.org/ns/prov-o#",
  1674. "type" : "iri"
  1675. } ],
  1676. "dm" : [ {
  1677. "identifier" : "dm",
  1678. "language" : "undefined",
  1679. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association",
  1680. "type" : "label"
  1681. }, {
  1682. "identifier" : "dm",
  1683. "language" : "undefined",
  1684. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association",
  1685. "type" : "label"
  1686. } ],
  1687. "definition" : [ {
  1688. "identifier" : "definition",
  1689. "language" : "undefined",
  1690. "value" : "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.",
  1691. "type" : "label"
  1692. }, {
  1693. "identifier" : "definition",
  1694. "language" : "undefined",
  1695. "value" : "A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.",
  1696. "type" : "label"
  1697. } ],
  1698. "category" : [ {
  1699. "identifier" : "category",
  1700. "language" : "undefined",
  1701. "value" : "qualified",
  1702. "type" : "label"
  1703. }, {
  1704. "identifier" : "category",
  1705. "language" : "undefined",
  1706. "value" : "expanded",
  1707. "type" : "label"
  1708. }, {
  1709. "identifier" : "category",
  1710. "language" : "undefined",
  1711. "value" : "qualified",
  1712. "type" : "label"
  1713. }, {
  1714. "identifier" : "category",
  1715. "language" : "undefined",
  1716. "value" : "expanded",
  1717. "type" : "label"
  1718. } ],
  1719. "n" : [ {
  1720. "identifier" : "n",
  1721. "language" : "undefined",
  1722. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association",
  1723. "type" : "label"
  1724. }, {
  1725. "identifier" : "n",
  1726. "language" : "undefined",
  1727. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association",
  1728. "type" : "label"
  1729. } ]
  1730. },
  1731. "label" : {
  1732. "IRI-based" : "Plan",
  1733. "undefined" : "Plan"
  1734. },
  1735. "comment" : {
  1736. "en" : "There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations."
  1737. },
  1738. "attributes" : [ "external" ],
  1739. "id" : "88",
  1740. "superClasses" : [ "17" ]
  1741. }, {
  1742. "iri" : "https://w3id.org/consent-mapping-jit#Consent",
  1743. "baseIri" : "https://w3id.org/consent-mapping-jit",
  1744. "instances" : 0,
  1745. "label" : {
  1746. "IRI-based" : "Consent",
  1747. "undefined" : "Consent"
  1748. },
  1749. "comment" : {
  1750. "undefined" : "Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a \"yes\" or a \"no\". We treat the absence of the predicate isGiven as a \"no\"."
  1751. },
  1752. "id" : "110",
  1753. "superClasses" : [ "17" ]
  1754. }, {
  1755. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  1756. "baseIri" : "http://owl2vowl.de",
  1757. "id" : "5",
  1758. "label" : {
  1759. "undefined" : "Thing"
  1760. }
  1761. }, {
  1762. "iri" : "http://www.w3.org/ns/prov#Activity",
  1763. "baseIri" : "http://www.w3.org/ns/prov",
  1764. "instances" : 0,
  1765. "annotations" : {
  1766. "component" : [ {
  1767. "identifier" : "component",
  1768. "language" : "undefined",
  1769. "value" : "entities-activities",
  1770. "type" : "label"
  1771. }, {
  1772. "identifier" : "component",
  1773. "language" : "undefined",
  1774. "value" : "entities-activities",
  1775. "type" : "label"
  1776. } ],
  1777. "isDefinedBy" : [ {
  1778. "identifier" : "isDefinedBy",
  1779. "language" : "undefined",
  1780. "value" : "http://www.w3.org/ns/prov-o#",
  1781. "type" : "iri"
  1782. }, {
  1783. "identifier" : "isDefinedBy",
  1784. "language" : "undefined",
  1785. "value" : "http://www.w3.org/ns/prov-o#",
  1786. "type" : "iri"
  1787. } ],
  1788. "dm" : [ {
  1789. "identifier" : "dm",
  1790. "language" : "undefined",
  1791. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity",
  1792. "type" : "label"
  1793. }, {
  1794. "identifier" : "dm",
  1795. "language" : "undefined",
  1796. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity",
  1797. "type" : "label"
  1798. } ],
  1799. "definition" : [ {
  1800. "identifier" : "definition",
  1801. "language" : "undefined",
  1802. "value" : "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.",
  1803. "type" : "label"
  1804. }, {
  1805. "identifier" : "definition",
  1806. "language" : "undefined",
  1807. "value" : "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.",
  1808. "type" : "label"
  1809. } ],
  1810. "category" : [ {
  1811. "identifier" : "category",
  1812. "language" : "undefined",
  1813. "value" : "starting-point",
  1814. "type" : "label"
  1815. }, {
  1816. "identifier" : "category",
  1817. "language" : "undefined",
  1818. "value" : "starting-point",
  1819. "type" : "label"
  1820. } ],
  1821. "constraints" : [ {
  1822. "identifier" : "constraints",
  1823. "language" : "undefined",
  1824. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1825. "type" : "label"
  1826. }, {
  1827. "identifier" : "constraints",
  1828. "language" : "undefined",
  1829. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  1830. "type" : "label"
  1831. } ],
  1832. "n" : [ {
  1833. "identifier" : "n",
  1834. "language" : "undefined",
  1835. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity",
  1836. "type" : "label"
  1837. }, {
  1838. "identifier" : "n",
  1839. "language" : "undefined",
  1840. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity",
  1841. "type" : "label"
  1842. } ]
  1843. },
  1844. "label" : {
  1845. "IRI-based" : "Activity",
  1846. "undefined" : "Activity"
  1847. },
  1848. "subClasses" : [ "125", "90", "126", "65", "127", "128", "129", "35" ],
  1849. "attributes" : [ "external" ],
  1850. "id" : "9"
  1851. }, {
  1852. "iri" : "http://www.w3.org/ns/prov#Insertion",
  1853. "baseIri" : "http://www.w3.org/ns/prov",
  1854. "instances" : 0,
  1855. "annotations" : {
  1856. "component" : [ {
  1857. "identifier" : "component",
  1858. "language" : "undefined",
  1859. "value" : "collections",
  1860. "type" : "label"
  1861. }, {
  1862. "identifier" : "component",
  1863. "language" : "undefined",
  1864. "value" : "collections",
  1865. "type" : "label"
  1866. } ],
  1867. "isDefinedBy" : [ {
  1868. "identifier" : "isDefinedBy",
  1869. "language" : "undefined",
  1870. "value" : "http://www.w3.org/ns/prov#",
  1871. "type" : "iri"
  1872. }, {
  1873. "identifier" : "isDefinedBy",
  1874. "language" : "undefined",
  1875. "value" : "http://www.w3.org/ns/prov#",
  1876. "type" : "iri"
  1877. } ],
  1878. "unqualifiedForm" : [ {
  1879. "identifier" : "unqualifiedForm",
  1880. "language" : "undefined",
  1881. "value" : "http://www.w3.org/ns/prov#derivedByInsertionFrom",
  1882. "type" : "iri"
  1883. }, {
  1884. "identifier" : "unqualifiedForm",
  1885. "language" : "undefined",
  1886. "value" : "http://www.w3.org/ns/prov#derivedByInsertionFrom",
  1887. "type" : "iri"
  1888. } ],
  1889. "dm" : [ {
  1890. "identifier" : "dm",
  1891. "language" : "undefined",
  1892. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  1893. "type" : "label"
  1894. }, {
  1895. "identifier" : "dm",
  1896. "language" : "undefined",
  1897. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  1898. "type" : "label"
  1899. } ],
  1900. "definition" : [ {
  1901. "identifier" : "definition",
  1902. "language" : "undefined",
  1903. "value" : "Insertion is a derivation that describes the transformation of a dictionary into another, by insertion of one or more key-entity pairs.",
  1904. "type" : "label"
  1905. }, {
  1906. "identifier" : "definition",
  1907. "language" : "undefined",
  1908. "value" : "Insertion is a derivation that describes the transformation of a dictionary into another, by insertion of one or more key-entity pairs.",
  1909. "type" : "label"
  1910. } ],
  1911. "category" : [ {
  1912. "identifier" : "category",
  1913. "language" : "undefined",
  1914. "value" : "collections",
  1915. "type" : "label"
  1916. }, {
  1917. "identifier" : "category",
  1918. "language" : "undefined",
  1919. "value" : "collections",
  1920. "type" : "label"
  1921. } ],
  1922. "constraints" : [ {
  1923. "identifier" : "constraints",
  1924. "language" : "undefined",
  1925. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  1926. "type" : "label"
  1927. }, {
  1928. "identifier" : "constraints",
  1929. "language" : "undefined",
  1930. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  1931. "type" : "label"
  1932. } ],
  1933. "n" : [ {
  1934. "identifier" : "n",
  1935. "language" : "undefined",
  1936. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  1937. "type" : "label"
  1938. }, {
  1939. "identifier" : "n",
  1940. "language" : "undefined",
  1941. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  1942. "type" : "label"
  1943. } ]
  1944. },
  1945. "label" : {
  1946. "IRI-based" : "Insertion",
  1947. "undefined" : "Insertion"
  1948. },
  1949. "attributes" : [ "external" ],
  1950. "id" : "33",
  1951. "superClasses" : [ "66" ]
  1952. }, {
  1953. "iri" : "http://www.w3.org/ns/prov#Entity",
  1954. "baseIri" : "http://www.w3.org/ns/prov",
  1955. "instances" : 0,
  1956. "annotations" : {
  1957. "component" : [ {
  1958. "identifier" : "component",
  1959. "language" : "undefined",
  1960. "value" : "entities-activities",
  1961. "type" : "label"
  1962. }, {
  1963. "identifier" : "component",
  1964. "language" : "undefined",
  1965. "value" : "entities-activities",
  1966. "type" : "label"
  1967. } ],
  1968. "isDefinedBy" : [ {
  1969. "identifier" : "isDefinedBy",
  1970. "language" : "undefined",
  1971. "value" : "http://www.w3.org/ns/prov-o#",
  1972. "type" : "iri"
  1973. }, {
  1974. "identifier" : "isDefinedBy",
  1975. "language" : "undefined",
  1976. "value" : "http://www.w3.org/ns/prov-o#",
  1977. "type" : "iri"
  1978. } ],
  1979. "dm" : [ {
  1980. "identifier" : "dm",
  1981. "language" : "undefined",
  1982. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity",
  1983. "type" : "label"
  1984. }, {
  1985. "identifier" : "dm",
  1986. "language" : "undefined",
  1987. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity",
  1988. "type" : "label"
  1989. } ],
  1990. "definition" : [ {
  1991. "identifier" : "definition",
  1992. "language" : "en",
  1993. "value" : "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. ",
  1994. "type" : "label"
  1995. }, {
  1996. "identifier" : "definition",
  1997. "language" : "en",
  1998. "value" : "An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. ",
  1999. "type" : "label"
  2000. } ],
  2001. "category" : [ {
  2002. "identifier" : "category",
  2003. "language" : "undefined",
  2004. "value" : "starting-point",
  2005. "type" : "label"
  2006. }, {
  2007. "identifier" : "category",
  2008. "language" : "undefined",
  2009. "value" : "starting-point",
  2010. "type" : "label"
  2011. } ],
  2012. "constraints" : [ {
  2013. "identifier" : "constraints",
  2014. "language" : "undefined",
  2015. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2016. "type" : "label"
  2017. }, {
  2018. "identifier" : "constraints",
  2019. "language" : "undefined",
  2020. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2021. "type" : "label"
  2022. } ],
  2023. "n" : [ {
  2024. "identifier" : "n",
  2025. "language" : "undefined",
  2026. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity",
  2027. "type" : "label"
  2028. }, {
  2029. "identifier" : "n",
  2030. "language" : "undefined",
  2031. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity",
  2032. "type" : "label"
  2033. } ]
  2034. },
  2035. "label" : {
  2036. "IRI-based" : "Entity",
  2037. "undefined" : "Entity"
  2038. },
  2039. "subClasses" : [ "110", "94", "73", "37", "95", "51", "88" ],
  2040. "attributes" : [ "external" ],
  2041. "id" : "17"
  2042. }, {
  2043. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  2044. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  2045. "id" : "133",
  2046. "label" : {
  2047. "IRI-based" : "dateTime"
  2048. }
  2049. }, {
  2050. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  2051. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  2052. "id" : "137",
  2053. "label" : {
  2054. "IRI-based" : "dateTime"
  2055. }
  2056. }, {
  2057. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  2058. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  2059. "id" : "123",
  2060. "label" : {
  2061. "IRI-based" : "Literal",
  2062. "undefined" : "Literal"
  2063. }
  2064. }, {
  2065. "iri" : "http://www.w3.org/ns/prov#Contribute",
  2066. "baseIri" : "http://www.w3.org/ns/prov",
  2067. "instances" : 0,
  2068. "annotations" : {
  2069. "isDefinedBy" : [ {
  2070. "identifier" : "isDefinedBy",
  2071. "language" : "undefined",
  2072. "value" : "http://www.w3.org/ns/prov-dc#",
  2073. "type" : "iri"
  2074. } ],
  2075. "definition" : [ {
  2076. "identifier" : "definition",
  2077. "language" : "en",
  2078. "value" : "Activity that identifies any contribution of an agent to a resource.",
  2079. "type" : "label"
  2080. }, {
  2081. "identifier" : "definition",
  2082. "language" : "en",
  2083. "value" : "Activity that identifies any contribution of an agent to a resource. ",
  2084. "type" : "label"
  2085. } ]
  2086. },
  2087. "label" : {
  2088. "IRI-based" : "Contribute",
  2089. "en" : "Contribute\n"
  2090. },
  2091. "subClasses" : [ "139" ],
  2092. "attributes" : [ "external" ],
  2093. "id" : "127",
  2094. "superClasses" : [ "9" ]
  2095. }, {
  2096. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  2097. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  2098. "id" : "115",
  2099. "label" : {
  2100. "IRI-based" : "Literal",
  2101. "undefined" : "Literal"
  2102. }
  2103. }, {
  2104. "iri" : "http://www.w3.org/2001/XMLSchema#boolean",
  2105. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  2106. "id" : "117",
  2107. "label" : {
  2108. "IRI-based" : "boolean"
  2109. }
  2110. }, {
  2111. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  2112. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  2113. "id" : "140",
  2114. "label" : {
  2115. "IRI-based" : "dateTime"
  2116. }
  2117. }, {
  2118. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  2119. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  2120. "id" : "41",
  2121. "label" : {
  2122. "IRI-based" : "dateTime"
  2123. }
  2124. }, {
  2125. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  2126. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  2127. "id" : "83",
  2128. "label" : {
  2129. "IRI-based" : "dateTime"
  2130. }
  2131. }, {
  2132. "iri" : "http://www.w3.org/ns/prov#Replace",
  2133. "baseIri" : "http://www.w3.org/ns/prov",
  2134. "instances" : 0,
  2135. "annotations" : {
  2136. "isDefinedBy" : [ {
  2137. "identifier" : "isDefinedBy",
  2138. "language" : "undefined",
  2139. "value" : "http://www.w3.org/ns/prov-dc#",
  2140. "type" : "iri"
  2141. } ],
  2142. "definition" : [ {
  2143. "identifier" : "definition",
  2144. "language" : "en",
  2145. "value" : "Activity that identifies the replacement of a resource.",
  2146. "type" : "label"
  2147. }, {
  2148. "identifier" : "definition",
  2149. "language" : "en",
  2150. "value" : "Activity that identifies the replacement of a resource.",
  2151. "type" : "label"
  2152. } ]
  2153. },
  2154. "label" : {
  2155. "IRI-based" : "Replace",
  2156. "en" : "Replace"
  2157. },
  2158. "attributes" : [ "external" ],
  2159. "id" : "128",
  2160. "superClasses" : [ "9" ]
  2161. }, {
  2162. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  2163. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  2164. "id" : "141",
  2165. "label" : {
  2166. "IRI-based" : "dateTime"
  2167. }
  2168. }, {
  2169. "iri" : "http://www.w3.org/2001/XMLSchema#dateTime",
  2170. "baseIri" : "http://www.w3.org/2001/XMLSchema",
  2171. "id" : "49",
  2172. "label" : {
  2173. "IRI-based" : "dateTime"
  2174. }
  2175. }, {
  2176. "iri" : "http://www.w3.org/ns/prov#Influence",
  2177. "baseIri" : "http://www.w3.org/ns/prov",
  2178. "instances" : 0,
  2179. "annotations" : {
  2180. "component" : [ {
  2181. "identifier" : "component",
  2182. "language" : "undefined",
  2183. "value" : "derivations",
  2184. "type" : "label"
  2185. }, {
  2186. "identifier" : "component",
  2187. "language" : "undefined",
  2188. "value" : "derivations",
  2189. "type" : "label"
  2190. } ],
  2191. "isDefinedBy" : [ {
  2192. "identifier" : "isDefinedBy",
  2193. "language" : "undefined",
  2194. "value" : "http://www.w3.org/ns/prov-o#",
  2195. "type" : "iri"
  2196. }, {
  2197. "identifier" : "isDefinedBy",
  2198. "language" : "undefined",
  2199. "value" : "http://www.w3.org/ns/prov-o#",
  2200. "type" : "iri"
  2201. } ],
  2202. "unqualifiedForm" : [ {
  2203. "identifier" : "unqualifiedForm",
  2204. "language" : "undefined",
  2205. "value" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  2206. "type" : "iri"
  2207. }, {
  2208. "identifier" : "unqualifiedForm",
  2209. "language" : "undefined",
  2210. "value" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  2211. "type" : "iri"
  2212. } ],
  2213. "dm" : [ {
  2214. "identifier" : "dm",
  2215. "language" : "undefined",
  2216. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence",
  2217. "type" : "label"
  2218. }, {
  2219. "identifier" : "dm",
  2220. "language" : "undefined",
  2221. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence",
  2222. "type" : "label"
  2223. } ],
  2224. "definition" : [ {
  2225. "identifier" : "definition",
  2226. "language" : "en",
  2227. "value" : "Influence is the capacity of an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation.",
  2228. "type" : "label"
  2229. }, {
  2230. "identifier" : "definition",
  2231. "language" : "en",
  2232. "value" : "Influence is the capacity of an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation.",
  2233. "type" : "label"
  2234. } ],
  2235. "category" : [ {
  2236. "identifier" : "category",
  2237. "language" : "undefined",
  2238. "value" : "qualified",
  2239. "type" : "label"
  2240. }, {
  2241. "identifier" : "category",
  2242. "language" : "undefined",
  2243. "value" : "qualified",
  2244. "type" : "label"
  2245. } ],
  2246. "n" : [ {
  2247. "identifier" : "n",
  2248. "language" : "undefined",
  2249. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence",
  2250. "type" : "label"
  2251. }, {
  2252. "identifier" : "n",
  2253. "language" : "undefined",
  2254. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence",
  2255. "type" : "label"
  2256. } ]
  2257. },
  2258. "label" : {
  2259. "IRI-based" : "Influence",
  2260. "undefined" : "Influence"
  2261. },
  2262. "subClasses" : [ "43", "56", "26" ],
  2263. "comment" : {
  2264. "en" : "Because prov:Influence is a broad relation, its most specific subclasses (e.g. prov:Communication, prov:Delegation, prov:End, prov:Revision, etc.) should be used when applicable."
  2265. },
  2266. "attributes" : [ "external" ],
  2267. "id" : "1"
  2268. }, {
  2269. "iri" : "http://www.w3.org/ns/prov#Association",
  2270. "baseIri" : "http://www.w3.org/ns/prov",
  2271. "instances" : 0,
  2272. "annotations" : {
  2273. "component" : [ {
  2274. "identifier" : "component",
  2275. "language" : "undefined",
  2276. "value" : "agents-responsibility",
  2277. "type" : "label"
  2278. }, {
  2279. "identifier" : "component",
  2280. "language" : "undefined",
  2281. "value" : "agents-responsibility",
  2282. "type" : "label"
  2283. } ],
  2284. "isDefinedBy" : [ {
  2285. "identifier" : "isDefinedBy",
  2286. "language" : "undefined",
  2287. "value" : "http://www.w3.org/ns/prov-o#",
  2288. "type" : "iri"
  2289. }, {
  2290. "identifier" : "isDefinedBy",
  2291. "language" : "undefined",
  2292. "value" : "http://www.w3.org/ns/prov-o#",
  2293. "type" : "iri"
  2294. } ],
  2295. "unqualifiedForm" : [ {
  2296. "identifier" : "unqualifiedForm",
  2297. "language" : "undefined",
  2298. "value" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  2299. "type" : "iri"
  2300. }, {
  2301. "identifier" : "unqualifiedForm",
  2302. "language" : "undefined",
  2303. "value" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  2304. "type" : "iri"
  2305. } ],
  2306. "dm" : [ {
  2307. "identifier" : "dm",
  2308. "language" : "undefined",
  2309. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association",
  2310. "type" : "label"
  2311. }, {
  2312. "identifier" : "dm",
  2313. "language" : "undefined",
  2314. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association",
  2315. "type" : "label"
  2316. } ],
  2317. "definition" : [ {
  2318. "identifier" : "definition",
  2319. "language" : "en",
  2320. "value" : "An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity.",
  2321. "type" : "label"
  2322. }, {
  2323. "identifier" : "definition",
  2324. "language" : "en",
  2325. "value" : "An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity.",
  2326. "type" : "label"
  2327. } ],
  2328. "category" : [ {
  2329. "identifier" : "category",
  2330. "language" : "undefined",
  2331. "value" : "qualified",
  2332. "type" : "label"
  2333. }, {
  2334. "identifier" : "category",
  2335. "language" : "undefined",
  2336. "value" : "qualified",
  2337. "type" : "label"
  2338. } ],
  2339. "n" : [ {
  2340. "identifier" : "n",
  2341. "language" : "undefined",
  2342. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association",
  2343. "type" : "label"
  2344. }, {
  2345. "identifier" : "n",
  2346. "language" : "undefined",
  2347. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association",
  2348. "type" : "label"
  2349. } ]
  2350. },
  2351. "label" : {
  2352. "IRI-based" : "Association",
  2353. "undefined" : "Association"
  2354. },
  2355. "comment" : {
  2356. "en" : "An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ]."
  2357. },
  2358. "attributes" : [ "external" ],
  2359. "id" : "87",
  2360. "superClasses" : [ "43" ]
  2361. }, {
  2362. "iri" : "http://www.w3.org/ns/prov#Generation",
  2363. "baseIri" : "http://www.w3.org/ns/prov",
  2364. "instances" : 0,
  2365. "annotations" : {
  2366. "component" : [ {
  2367. "identifier" : "component",
  2368. "language" : "undefined",
  2369. "value" : "entities-activities",
  2370. "type" : "label"
  2371. }, {
  2372. "identifier" : "component",
  2373. "language" : "undefined",
  2374. "value" : "entities-activities",
  2375. "type" : "label"
  2376. } ],
  2377. "isDefinedBy" : [ {
  2378. "identifier" : "isDefinedBy",
  2379. "language" : "undefined",
  2380. "value" : "http://www.w3.org/ns/prov-o#",
  2381. "type" : "iri"
  2382. }, {
  2383. "identifier" : "isDefinedBy",
  2384. "language" : "undefined",
  2385. "value" : "http://www.w3.org/ns/prov-o#",
  2386. "type" : "iri"
  2387. } ],
  2388. "unqualifiedForm" : [ {
  2389. "identifier" : "unqualifiedForm",
  2390. "language" : "undefined",
  2391. "value" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  2392. "type" : "iri"
  2393. }, {
  2394. "identifier" : "unqualifiedForm",
  2395. "language" : "undefined",
  2396. "value" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  2397. "type" : "iri"
  2398. } ],
  2399. "dm" : [ {
  2400. "identifier" : "dm",
  2401. "language" : "undefined",
  2402. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation",
  2403. "type" : "label"
  2404. }, {
  2405. "identifier" : "dm",
  2406. "language" : "undefined",
  2407. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation",
  2408. "type" : "label"
  2409. } ],
  2410. "definition" : [ {
  2411. "identifier" : "definition",
  2412. "language" : "en",
  2413. "value" : "Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.",
  2414. "type" : "label"
  2415. }, {
  2416. "identifier" : "definition",
  2417. "language" : "en",
  2418. "value" : "Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.",
  2419. "type" : "label"
  2420. } ],
  2421. "category" : [ {
  2422. "identifier" : "category",
  2423. "language" : "undefined",
  2424. "value" : "qualified",
  2425. "type" : "label"
  2426. }, {
  2427. "identifier" : "category",
  2428. "language" : "undefined",
  2429. "value" : "qualified",
  2430. "type" : "label"
  2431. } ],
  2432. "constraints" : [ {
  2433. "identifier" : "constraints",
  2434. "language" : "undefined",
  2435. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2436. "type" : "label"
  2437. }, {
  2438. "identifier" : "constraints",
  2439. "language" : "undefined",
  2440. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2441. "type" : "label"
  2442. } ],
  2443. "n" : [ {
  2444. "identifier" : "n",
  2445. "language" : "undefined",
  2446. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation",
  2447. "type" : "label"
  2448. }, {
  2449. "identifier" : "n",
  2450. "language" : "undefined",
  2451. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation",
  2452. "type" : "label"
  2453. } ]
  2454. },
  2455. "label" : {
  2456. "IRI-based" : "Generation",
  2457. "undefined" : "Generation"
  2458. },
  2459. "comment" : {
  2460. "en" : "An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ]."
  2461. },
  2462. "attributes" : [ "external" ],
  2463. "id" : "13",
  2464. "superClasses" : [ "11", "26" ]
  2465. }, {
  2466. "iri" : "http://www.w3.org/ns/prov#Publisher",
  2467. "baseIri" : "http://www.w3.org/ns/prov",
  2468. "instances" : 0,
  2469. "annotations" : {
  2470. "isDefinedBy" : [ {
  2471. "identifier" : "isDefinedBy",
  2472. "language" : "undefined",
  2473. "value" : "http://www.w3.org/ns/prov-dc#",
  2474. "type" : "iri"
  2475. } ],
  2476. "definition" : [ {
  2477. "identifier" : "definition",
  2478. "language" : "en",
  2479. "value" : "Role with the function of publishing a resource. The Agent assigned to this role is associated with a Publish Activity",
  2480. "type" : "label"
  2481. }, {
  2482. "identifier" : "definition",
  2483. "language" : "en",
  2484. "value" : "Role with the function of publishing a resource. The Agent assigned to this role is associated with a Publish Activity",
  2485. "type" : "label"
  2486. } ]
  2487. },
  2488. "label" : {
  2489. "IRI-based" : "Publisher",
  2490. "en" : "Publisher"
  2491. },
  2492. "attributes" : [ "external" ],
  2493. "id" : "143",
  2494. "superClasses" : [ "144" ]
  2495. }, {
  2496. "iri" : "http://www.w3.org/ns/prov#AgentInfluence",
  2497. "baseIri" : "http://www.w3.org/ns/prov",
  2498. "instances" : 0,
  2499. "annotations" : {
  2500. "isDefinedBy" : [ {
  2501. "identifier" : "isDefinedBy",
  2502. "language" : "undefined",
  2503. "value" : "http://www.w3.org/ns/prov-o#",
  2504. "type" : "iri"
  2505. }, {
  2506. "identifier" : "isDefinedBy",
  2507. "language" : "undefined",
  2508. "value" : "http://www.w3.org/ns/prov-o#",
  2509. "type" : "iri"
  2510. } ],
  2511. "editorsDefinition" : [ {
  2512. "identifier" : "editorsDefinition",
  2513. "language" : "en",
  2514. "value" : "AgentInfluence is the capacity of an agent to have an effect on the character, development, or behavior of another by means of attribution, association, delegation, or other.",
  2515. "type" : "label"
  2516. }, {
  2517. "identifier" : "editorsDefinition",
  2518. "language" : "en",
  2519. "value" : "AgentInfluence is the capacity of an agent to have an effect on the character, development, or behavior of another by means of attribution, association, delegation, or other.",
  2520. "type" : "label"
  2521. } ],
  2522. "category" : [ {
  2523. "identifier" : "category",
  2524. "language" : "undefined",
  2525. "value" : "qualified",
  2526. "type" : "label"
  2527. }, {
  2528. "identifier" : "category",
  2529. "language" : "undefined",
  2530. "value" : "qualified",
  2531. "type" : "label"
  2532. } ],
  2533. "seeAlso" : [ {
  2534. "identifier" : "seeAlso",
  2535. "language" : "undefined",
  2536. "value" : "http://www.w3.org/ns/prov#agent",
  2537. "type" : "iri"
  2538. }, {
  2539. "identifier" : "seeAlso",
  2540. "language" : "undefined",
  2541. "value" : "http://www.w3.org/ns/prov#agent",
  2542. "type" : "iri"
  2543. } ]
  2544. },
  2545. "label" : {
  2546. "IRI-based" : "AgentInfluence",
  2547. "undefined" : "AgentInfluence"
  2548. },
  2549. "subClasses" : [ "112", "87", "72" ],
  2550. "comment" : {
  2551. "en" : "AgentInfluence provides additional descriptions of an Agent's binary influence upon any other kind of resource. Instances of AgentInfluence use the prov:agent property to cite the influencing Agent."
  2552. },
  2553. "attributes" : [ "external" ],
  2554. "id" : "43",
  2555. "superClasses" : [ "1" ]
  2556. }, {
  2557. "instances" : 0,
  2558. "union" : [ "9", "17", "24" ],
  2559. "attributes" : [ "union", "anonymous" ],
  2560. "id" : "98"
  2561. }, {
  2562. "instances" : 0,
  2563. "union" : [ "9", "17", "24" ],
  2564. "attributes" : [ "union", "anonymous" ],
  2565. "id" : "2"
  2566. }, {
  2567. "iri" : "http://www.w3.org/ns/prov#EntityInfluence",
  2568. "baseIri" : "http://www.w3.org/ns/prov",
  2569. "instances" : 0,
  2570. "annotations" : {
  2571. "isDefinedBy" : [ {
  2572. "identifier" : "isDefinedBy",
  2573. "language" : "undefined",
  2574. "value" : "http://www.w3.org/ns/prov-o#",
  2575. "type" : "iri"
  2576. }, {
  2577. "identifier" : "isDefinedBy",
  2578. "language" : "undefined",
  2579. "value" : "http://www.w3.org/ns/prov-o#",
  2580. "type" : "iri"
  2581. } ],
  2582. "editorsDefinition" : [ {
  2583. "identifier" : "editorsDefinition",
  2584. "language" : "en",
  2585. "value" : "EntityInfluence is the capacity of an entity to have an effect on the character, development, or behavior of another by means of usage, start, end, derivation, or other. ",
  2586. "type" : "label"
  2587. }, {
  2588. "identifier" : "editorsDefinition",
  2589. "language" : "en",
  2590. "value" : "EntityInfluence is the capacity of an entity to have an effect on the character, development, or behavior of another by means of usage, start, end, derivation, or other. ",
  2591. "type" : "label"
  2592. } ],
  2593. "category" : [ {
  2594. "identifier" : "category",
  2595. "language" : "undefined",
  2596. "value" : "qualified",
  2597. "type" : "label"
  2598. }, {
  2599. "identifier" : "category",
  2600. "language" : "undefined",
  2601. "value" : "qualified",
  2602. "type" : "label"
  2603. } ],
  2604. "seeAlso" : [ {
  2605. "identifier" : "seeAlso",
  2606. "language" : "undefined",
  2607. "value" : "http://www.w3.org/ns/prov#entity",
  2608. "type" : "iri"
  2609. }, {
  2610. "identifier" : "seeAlso",
  2611. "language" : "undefined",
  2612. "value" : "http://www.w3.org/ns/prov#entity",
  2613. "type" : "iri"
  2614. } ]
  2615. },
  2616. "label" : {
  2617. "IRI-based" : "EntityInfluence",
  2618. "undefined" : "EntityInfluence"
  2619. },
  2620. "subClasses" : [ "12", "66", "8", "15" ],
  2621. "comment" : {
  2622. "en" : "It is not recommended that the type EntityInfluence be asserted without also asserting one of its more specific subclasses."
  2623. },
  2624. "attributes" : [ "external" ],
  2625. "id" : "56",
  2626. "superClasses" : [ "1" ]
  2627. }, {
  2628. "instances" : 0,
  2629. "union" : [ "9", "17", "24" ],
  2630. "attributes" : [ "union", "anonymous" ],
  2631. "id" : "99"
  2632. }, {
  2633. "iri" : "http://www.w3.org/ns/prov#RightsHolder",
  2634. "baseIri" : "http://www.w3.org/ns/prov",
  2635. "instances" : 0,
  2636. "annotations" : {
  2637. "isDefinedBy" : [ {
  2638. "identifier" : "isDefinedBy",
  2639. "language" : "undefined",
  2640. "value" : "http://www.w3.org/ns/prov-dc#",
  2641. "type" : "iri"
  2642. } ],
  2643. "definition" : [ {
  2644. "identifier" : "definition",
  2645. "language" : "en",
  2646. "value" : "Role with the function of owning or managing rights over a resource. The Agent assigned to this role is associated with a RightsAssignment Activity",
  2647. "type" : "label"
  2648. }, {
  2649. "identifier" : "definition",
  2650. "language" : "en",
  2651. "value" : "Role with the function of owning or managing rights over a resource. The Agent assigned to this role is associated with a RightsAssignment Activity",
  2652. "type" : "label"
  2653. } ]
  2654. },
  2655. "label" : {
  2656. "IRI-based" : "RightsHolder",
  2657. "en" : "RightsHolder"
  2658. },
  2659. "attributes" : [ "external" ],
  2660. "id" : "150",
  2661. "superClasses" : [ "144" ]
  2662. }, {
  2663. "instances" : 0,
  2664. "union" : [ "9", "17", "11", "24" ],
  2665. "attributes" : [ "union", "anonymous" ],
  2666. "id" : "29"
  2667. }, {
  2668. "instances" : 0,
  2669. "union" : [ "87", "11" ],
  2670. "attributes" : [ "union", "anonymous" ],
  2671. "id" : "155"
  2672. }, {
  2673. "instances" : 0,
  2674. "union" : [ "72", "66", "8", "15" ],
  2675. "attributes" : [ "union", "anonymous" ],
  2676. "id" : "156"
  2677. }, {
  2678. "iri" : "http://www.w3.org/ns/prov#Contributor",
  2679. "baseIri" : "http://www.w3.org/ns/prov",
  2680. "instances" : 0,
  2681. "annotations" : {
  2682. "isDefinedBy" : [ {
  2683. "identifier" : "isDefinedBy",
  2684. "language" : "undefined",
  2685. "value" : "http://www.w3.org/ns/prov-dc#",
  2686. "type" : "iri"
  2687. } ],
  2688. "definition" : [ {
  2689. "identifier" : "definition",
  2690. "language" : "en",
  2691. "value" : "Role with the function of having responsibility for making contributions to a resource. The Agent assigned to this role is associated with a Modify or Create Activities",
  2692. "type" : "label"
  2693. }, {
  2694. "identifier" : "definition",
  2695. "language" : "en",
  2696. "value" : "Role with the function of having responsibility for making contributions to a resource. The Agent assigned to this role is associated with a Modify or Create Activities",
  2697. "type" : "label"
  2698. } ]
  2699. },
  2700. "label" : {
  2701. "IRI-based" : "Contributor",
  2702. "en" : "Contributor"
  2703. },
  2704. "subClasses" : [ "158" ],
  2705. "attributes" : [ "external" ],
  2706. "id" : "157",
  2707. "superClasses" : [ "144" ]
  2708. }, {
  2709. "iri" : "http://www.w3.org/ns/prov#SoftwareAgent",
  2710. "baseIri" : "http://www.w3.org/ns/prov",
  2711. "instances" : 0,
  2712. "annotations" : {
  2713. "component" : [ {
  2714. "identifier" : "component",
  2715. "language" : "undefined",
  2716. "value" : "agents-responsibility",
  2717. "type" : "label"
  2718. }, {
  2719. "identifier" : "component",
  2720. "language" : "undefined",
  2721. "value" : "agents-responsibility",
  2722. "type" : "label"
  2723. } ],
  2724. "isDefinedBy" : [ {
  2725. "identifier" : "isDefinedBy",
  2726. "language" : "undefined",
  2727. "value" : "http://www.w3.org/ns/prov-o#",
  2728. "type" : "iri"
  2729. }, {
  2730. "identifier" : "isDefinedBy",
  2731. "language" : "undefined",
  2732. "value" : "http://www.w3.org/ns/prov-o#",
  2733. "type" : "iri"
  2734. }, {
  2735. "identifier" : "isDefinedBy",
  2736. "language" : "undefined",
  2737. "value" : "http://www.w3.org/ns/prov#",
  2738. "type" : "iri"
  2739. } ],
  2740. "dm" : [ {
  2741. "identifier" : "dm",
  2742. "language" : "undefined",
  2743. "value" : "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent",
  2744. "type" : "label"
  2745. }, {
  2746. "identifier" : "dm",
  2747. "language" : "undefined",
  2748. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  2749. "type" : "label"
  2750. }, {
  2751. "identifier" : "dm",
  2752. "language" : "undefined",
  2753. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent",
  2754. "type" : "label"
  2755. } ],
  2756. "definition" : [ {
  2757. "identifier" : "definition",
  2758. "language" : "en",
  2759. "value" : "A software agent is running software.",
  2760. "type" : "label"
  2761. }, {
  2762. "identifier" : "definition",
  2763. "language" : "en",
  2764. "value" : "A software agent is running software.",
  2765. "type" : "label"
  2766. } ],
  2767. "category" : [ {
  2768. "identifier" : "category",
  2769. "language" : "undefined",
  2770. "value" : "expanded",
  2771. "type" : "label"
  2772. }, {
  2773. "identifier" : "category",
  2774. "language" : "undefined",
  2775. "value" : "expanded",
  2776. "type" : "label"
  2777. } ],
  2778. "n" : [ {
  2779. "identifier" : "n",
  2780. "language" : "undefined",
  2781. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  2782. "type" : "label"
  2783. }, {
  2784. "identifier" : "n",
  2785. "language" : "undefined",
  2786. "value" : "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types",
  2787. "type" : "label"
  2788. }, {
  2789. "identifier" : "n",
  2790. "language" : "undefined",
  2791. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types",
  2792. "type" : "label"
  2793. } ]
  2794. },
  2795. "label" : {
  2796. "IRI-based" : "SoftwareAgent",
  2797. "undefined" : "SoftwareAgent"
  2798. },
  2799. "subClasses" : [ "160", "76" ],
  2800. "attributes" : [ "external" ],
  2801. "id" : "54",
  2802. "superClasses" : [ "24" ]
  2803. }, {
  2804. "iri" : "http://www.w3.org/ns/prov#Collection",
  2805. "baseIri" : "http://www.w3.org/ns/prov",
  2806. "instances" : 0,
  2807. "annotations" : {
  2808. "component" : [ {
  2809. "identifier" : "component",
  2810. "language" : "undefined",
  2811. "value" : "collections",
  2812. "type" : "label"
  2813. }, {
  2814. "identifier" : "component",
  2815. "language" : "undefined",
  2816. "value" : "collections",
  2817. "type" : "label"
  2818. } ],
  2819. "isDefinedBy" : [ {
  2820. "identifier" : "isDefinedBy",
  2821. "language" : "undefined",
  2822. "value" : "http://www.w3.org/ns/prov-o#",
  2823. "type" : "iri"
  2824. }, {
  2825. "identifier" : "isDefinedBy",
  2826. "language" : "undefined",
  2827. "value" : "http://www.w3.org/ns/prov-o#",
  2828. "type" : "iri"
  2829. } ],
  2830. "dm" : [ {
  2831. "identifier" : "dm",
  2832. "language" : "undefined",
  2833. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection",
  2834. "type" : "label"
  2835. }, {
  2836. "identifier" : "dm",
  2837. "language" : "undefined",
  2838. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection",
  2839. "type" : "label"
  2840. } ],
  2841. "definition" : [ {
  2842. "identifier" : "definition",
  2843. "language" : "en",
  2844. "value" : "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.",
  2845. "type" : "label"
  2846. }, {
  2847. "identifier" : "definition",
  2848. "language" : "en",
  2849. "value" : "A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.",
  2850. "type" : "label"
  2851. } ],
  2852. "category" : [ {
  2853. "identifier" : "category",
  2854. "language" : "undefined",
  2855. "value" : "expanded",
  2856. "type" : "label"
  2857. }, {
  2858. "identifier" : "category",
  2859. "language" : "undefined",
  2860. "value" : "expanded",
  2861. "type" : "label"
  2862. } ]
  2863. },
  2864. "label" : {
  2865. "IRI-based" : "Collection",
  2866. "undefined" : "Collection"
  2867. },
  2868. "subClasses" : [ "50" ],
  2869. "attributes" : [ "external" ],
  2870. "id" : "51",
  2871. "superClasses" : [ "17" ]
  2872. }, {
  2873. "iri" : "http://www.w3.org/ns/prov#Invalidation",
  2874. "baseIri" : "http://www.w3.org/ns/prov",
  2875. "instances" : 0,
  2876. "annotations" : {
  2877. "component" : [ {
  2878. "identifier" : "component",
  2879. "language" : "undefined",
  2880. "value" : "entities-activities",
  2881. "type" : "label"
  2882. }, {
  2883. "identifier" : "component",
  2884. "language" : "undefined",
  2885. "value" : "entities-activities",
  2886. "type" : "label"
  2887. } ],
  2888. "isDefinedBy" : [ {
  2889. "identifier" : "isDefinedBy",
  2890. "language" : "undefined",
  2891. "value" : "http://www.w3.org/ns/prov-o#",
  2892. "type" : "iri"
  2893. }, {
  2894. "identifier" : "isDefinedBy",
  2895. "language" : "undefined",
  2896. "value" : "http://www.w3.org/ns/prov-o#",
  2897. "type" : "iri"
  2898. } ],
  2899. "unqualifiedForm" : [ {
  2900. "identifier" : "unqualifiedForm",
  2901. "language" : "undefined",
  2902. "value" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  2903. "type" : "iri"
  2904. }, {
  2905. "identifier" : "unqualifiedForm",
  2906. "language" : "undefined",
  2907. "value" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  2908. "type" : "iri"
  2909. } ],
  2910. "dm" : [ {
  2911. "identifier" : "dm",
  2912. "language" : "undefined",
  2913. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation",
  2914. "type" : "label"
  2915. }, {
  2916. "identifier" : "dm",
  2917. "language" : "undefined",
  2918. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation",
  2919. "type" : "label"
  2920. } ],
  2921. "definition" : [ {
  2922. "identifier" : "definition",
  2923. "language" : "undefined",
  2924. "value" : "Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation.",
  2925. "type" : "label"
  2926. }, {
  2927. "identifier" : "definition",
  2928. "language" : "undefined",
  2929. "value" : "Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation.",
  2930. "type" : "label"
  2931. } ],
  2932. "category" : [ {
  2933. "identifier" : "category",
  2934. "language" : "undefined",
  2935. "value" : "qualified",
  2936. "type" : "label"
  2937. }, {
  2938. "identifier" : "category",
  2939. "language" : "undefined",
  2940. "value" : "qualified",
  2941. "type" : "label"
  2942. } ],
  2943. "constraints" : [ {
  2944. "identifier" : "constraints",
  2945. "language" : "undefined",
  2946. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2947. "type" : "label"
  2948. }, {
  2949. "identifier" : "constraints",
  2950. "language" : "undefined",
  2951. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  2952. "type" : "label"
  2953. } ],
  2954. "n" : [ {
  2955. "identifier" : "n",
  2956. "language" : "undefined",
  2957. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation",
  2958. "type" : "label"
  2959. }, {
  2960. "identifier" : "n",
  2961. "language" : "undefined",
  2962. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation",
  2963. "type" : "label"
  2964. } ]
  2965. },
  2966. "label" : {
  2967. "IRI-based" : "Invalidation",
  2968. "undefined" : "Invalidation"
  2969. },
  2970. "comment" : {
  2971. "en" : "An instance of prov:Invalidation provides additional descriptions about the binary prov:wasInvalidatedBy relation from an invalidated prov:Entity to the prov:Activity that invalidated it. For example, :uncracked_egg prov:wasInvalidatedBy :baking; prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :baking; :foo :bar ]."
  2972. },
  2973. "attributes" : [ "external" ],
  2974. "id" : "14",
  2975. "superClasses" : [ "11", "26" ]
  2976. }, {
  2977. "instances" : 0,
  2978. "union" : [ "33", "69" ],
  2979. "attributes" : [ "union", "anonymous" ],
  2980. "id" : "146"
  2981. }, {
  2982. "instances" : 0,
  2983. "union" : [ "1", "156" ],
  2984. "attributes" : [ "union", "anonymous" ],
  2985. "id" : "135"
  2986. }, {
  2987. "iri" : "http://www.w3.org/ns/prov#Create",
  2988. "baseIri" : "http://www.w3.org/ns/prov",
  2989. "instances" : 0,
  2990. "annotations" : {
  2991. "isDefinedBy" : [ {
  2992. "identifier" : "isDefinedBy",
  2993. "language" : "undefined",
  2994. "value" : "http://www.w3.org/ns/prov-dc#",
  2995. "type" : "iri"
  2996. } ],
  2997. "definition" : [ {
  2998. "identifier" : "definition",
  2999. "language" : "en",
  3000. "value" : "Activity that identifies the creation of a resource",
  3001. "type" : "label"
  3002. }, {
  3003. "identifier" : "definition",
  3004. "language" : "en",
  3005. "value" : "Activity that identifies the creation of a resource",
  3006. "type" : "label"
  3007. } ]
  3008. },
  3009. "label" : {
  3010. "IRI-based" : "Create",
  3011. "en" : "Create"
  3012. },
  3013. "attributes" : [ "external" ],
  3014. "id" : "139",
  3015. "superClasses" : [ "127" ]
  3016. }, {
  3017. "iri" : "http://www.w3.org/ns/prov#Delegation",
  3018. "baseIri" : "http://www.w3.org/ns/prov",
  3019. "instances" : 0,
  3020. "annotations" : {
  3021. "component" : [ {
  3022. "identifier" : "component",
  3023. "language" : "undefined",
  3024. "value" : "agents-responsibility",
  3025. "type" : "label"
  3026. }, {
  3027. "identifier" : "component",
  3028. "language" : "undefined",
  3029. "value" : "agents-responsibility",
  3030. "type" : "label"
  3031. } ],
  3032. "isDefinedBy" : [ {
  3033. "identifier" : "isDefinedBy",
  3034. "language" : "undefined",
  3035. "value" : "http://www.w3.org/ns/prov-o#",
  3036. "type" : "iri"
  3037. }, {
  3038. "identifier" : "isDefinedBy",
  3039. "language" : "undefined",
  3040. "value" : "http://www.w3.org/ns/prov-o#",
  3041. "type" : "iri"
  3042. } ],
  3043. "unqualifiedForm" : [ {
  3044. "identifier" : "unqualifiedForm",
  3045. "language" : "undefined",
  3046. "value" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  3047. "type" : "iri"
  3048. }, {
  3049. "identifier" : "unqualifiedForm",
  3050. "language" : "undefined",
  3051. "value" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  3052. "type" : "iri"
  3053. } ],
  3054. "dm" : [ {
  3055. "identifier" : "dm",
  3056. "language" : "undefined",
  3057. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation",
  3058. "type" : "label"
  3059. }, {
  3060. "identifier" : "dm",
  3061. "language" : "undefined",
  3062. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation",
  3063. "type" : "label"
  3064. } ],
  3065. "definition" : [ {
  3066. "identifier" : "definition",
  3067. "language" : "en",
  3068. "value" : "Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.\n\nFor example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree.",
  3069. "type" : "label"
  3070. }, {
  3071. "identifier" : "definition",
  3072. "language" : "en",
  3073. "value" : "Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.\n\nFor example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree.",
  3074. "type" : "label"
  3075. } ],
  3076. "category" : [ {
  3077. "identifier" : "category",
  3078. "language" : "undefined",
  3079. "value" : "qualified",
  3080. "type" : "label"
  3081. }, {
  3082. "identifier" : "category",
  3083. "language" : "undefined",
  3084. "value" : "qualified",
  3085. "type" : "label"
  3086. } ],
  3087. "n" : [ {
  3088. "identifier" : "n",
  3089. "language" : "undefined",
  3090. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation",
  3091. "type" : "label"
  3092. }, {
  3093. "identifier" : "n",
  3094. "language" : "undefined",
  3095. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation",
  3096. "type" : "label"
  3097. } ]
  3098. },
  3099. "label" : {
  3100. "IRI-based" : "Delegation",
  3101. "undefined" : "Delegation"
  3102. },
  3103. "comment" : {
  3104. "en" : "An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ]."
  3105. },
  3106. "attributes" : [ "external" ],
  3107. "id" : "72",
  3108. "superClasses" : [ "43" ]
  3109. }, {
  3110. "instances" : 0,
  3111. "union" : [ "1", "155" ],
  3112. "attributes" : [ "union", "anonymous" ],
  3113. "id" : "186"
  3114. }, {
  3115. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  3116. "id" : "59",
  3117. "label" : {
  3118. "IRI-based" : "Literal",
  3119. "undefined" : "Literal"
  3120. }
  3121. }, {
  3122. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  3123. "baseIri" : "http://owl2vowl.de",
  3124. "id" : "18",
  3125. "label" : {
  3126. "undefined" : "Thing"
  3127. }
  3128. }, {
  3129. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  3130. "baseIri" : "http://owl2vowl.de",
  3131. "id" : "148",
  3132. "label" : {
  3133. "undefined" : "Thing"
  3134. }
  3135. }, {
  3136. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  3137. "id" : "75",
  3138. "label" : {
  3139. "IRI-based" : "Literal",
  3140. "undefined" : "Literal"
  3141. }
  3142. }, {
  3143. "iri" : "http://www.w3.org/ns/prov#Quotation",
  3144. "baseIri" : "http://www.w3.org/ns/prov",
  3145. "instances" : 0,
  3146. "annotations" : {
  3147. "component" : [ {
  3148. "identifier" : "component",
  3149. "language" : "undefined",
  3150. "value" : "derivations",
  3151. "type" : "label"
  3152. }, {
  3153. "identifier" : "component",
  3154. "language" : "undefined",
  3155. "value" : "derivations",
  3156. "type" : "label"
  3157. } ],
  3158. "isDefinedBy" : [ {
  3159. "identifier" : "isDefinedBy",
  3160. "language" : "undefined",
  3161. "value" : "http://www.w3.org/ns/prov-o#",
  3162. "type" : "iri"
  3163. }, {
  3164. "identifier" : "isDefinedBy",
  3165. "language" : "undefined",
  3166. "value" : "http://www.w3.org/ns/prov-o#",
  3167. "type" : "iri"
  3168. } ],
  3169. "unqualifiedForm" : [ {
  3170. "identifier" : "unqualifiedForm",
  3171. "language" : "undefined",
  3172. "value" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  3173. "type" : "iri"
  3174. }, {
  3175. "identifier" : "unqualifiedForm",
  3176. "language" : "undefined",
  3177. "value" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  3178. "type" : "iri"
  3179. } ],
  3180. "dm" : [ {
  3181. "identifier" : "dm",
  3182. "language" : "undefined",
  3183. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation",
  3184. "type" : "label"
  3185. }, {
  3186. "identifier" : "dm",
  3187. "language" : "undefined",
  3188. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation",
  3189. "type" : "label"
  3190. } ],
  3191. "definition" : [ {
  3192. "identifier" : "definition",
  3193. "language" : "en",
  3194. "value" : "A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation.",
  3195. "type" : "label"
  3196. }, {
  3197. "identifier" : "definition",
  3198. "language" : "en",
  3199. "value" : "A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation.",
  3200. "type" : "label"
  3201. } ],
  3202. "category" : [ {
  3203. "identifier" : "category",
  3204. "language" : "undefined",
  3205. "value" : "qualified",
  3206. "type" : "label"
  3207. }, {
  3208. "identifier" : "category",
  3209. "language" : "undefined",
  3210. "value" : "qualified",
  3211. "type" : "label"
  3212. } ],
  3213. "n" : [ {
  3214. "identifier" : "n",
  3215. "language" : "undefined",
  3216. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation",
  3217. "type" : "label"
  3218. }, {
  3219. "identifier" : "n",
  3220. "language" : "undefined",
  3221. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation",
  3222. "type" : "label"
  3223. } ]
  3224. },
  3225. "label" : {
  3226. "IRI-based" : "Quotation",
  3227. "undefined" : "Quotation"
  3228. },
  3229. "comment" : {
  3230. "en" : "An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ]."
  3231. },
  3232. "attributes" : [ "external" ],
  3233. "id" : "67",
  3234. "superClasses" : [ "66" ]
  3235. }, {
  3236. "iri" : "http://www.w3.org/ns/prov#Creator",
  3237. "baseIri" : "http://www.w3.org/ns/prov",
  3238. "instances" : 0,
  3239. "annotations" : {
  3240. "isDefinedBy" : [ {
  3241. "identifier" : "isDefinedBy",
  3242. "language" : "undefined",
  3243. "value" : "http://www.w3.org/ns/prov-dc#",
  3244. "type" : "iri"
  3245. } ],
  3246. "definition" : [ {
  3247. "identifier" : "definition",
  3248. "language" : "en",
  3249. "value" : "Role with the function of creating a resource. The Agent assigned to this role is associated with a Create Activity",
  3250. "type" : "label"
  3251. }, {
  3252. "identifier" : "definition",
  3253. "language" : "en",
  3254. "value" : "Role with the function of creating a resource. The Agent assigned to this role is associated with a Create Activity",
  3255. "type" : "label"
  3256. } ]
  3257. },
  3258. "label" : {
  3259. "IRI-based" : "Creator",
  3260. "en" : "Creator"
  3261. },
  3262. "attributes" : [ "external" ],
  3263. "id" : "158",
  3264. "superClasses" : [ "157" ]
  3265. }, {
  3266. "iri" : "http://www.w3.org/ns/prov#Removal",
  3267. "baseIri" : "http://www.w3.org/ns/prov",
  3268. "instances" : 0,
  3269. "annotations" : {
  3270. "component" : [ {
  3271. "identifier" : "component",
  3272. "language" : "undefined",
  3273. "value" : "collections",
  3274. "type" : "label"
  3275. }, {
  3276. "identifier" : "component",
  3277. "language" : "undefined",
  3278. "value" : "collections",
  3279. "type" : "label"
  3280. } ],
  3281. "isDefinedBy" : [ {
  3282. "identifier" : "isDefinedBy",
  3283. "language" : "undefined",
  3284. "value" : "http://www.w3.org/ns/prov#",
  3285. "type" : "iri"
  3286. }, {
  3287. "identifier" : "isDefinedBy",
  3288. "language" : "undefined",
  3289. "value" : "http://www.w3.org/ns/prov#",
  3290. "type" : "iri"
  3291. } ],
  3292. "unqualifiedForm" : [ {
  3293. "identifier" : "unqualifiedForm",
  3294. "language" : "undefined",
  3295. "value" : "http://www.w3.org/ns/prov#derivedByRemovalFrom",
  3296. "type" : "iri"
  3297. }, {
  3298. "identifier" : "unqualifiedForm",
  3299. "language" : "undefined",
  3300. "value" : "http://www.w3.org/ns/prov#derivedByRemovalFrom",
  3301. "type" : "iri"
  3302. } ],
  3303. "dm" : [ {
  3304. "identifier" : "dm",
  3305. "language" : "undefined",
  3306. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  3307. "type" : "label"
  3308. }, {
  3309. "identifier" : "dm",
  3310. "language" : "undefined",
  3311. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  3312. "type" : "label"
  3313. } ],
  3314. "definition" : [ {
  3315. "identifier" : "definition",
  3316. "language" : "undefined",
  3317. "value" : "Removal is a derivation that describes the transformation of a dictionary into another, by removing one or more keys.",
  3318. "type" : "label"
  3319. }, {
  3320. "identifier" : "definition",
  3321. "language" : "undefined",
  3322. "value" : "Removal is a derivation that describes the transformation of a dictionary into another, by removing one or more keys.",
  3323. "type" : "label"
  3324. } ],
  3325. "category" : [ {
  3326. "identifier" : "category",
  3327. "language" : "undefined",
  3328. "value" : "collections",
  3329. "type" : "label"
  3330. }, {
  3331. "identifier" : "category",
  3332. "language" : "undefined",
  3333. "value" : "collections",
  3334. "type" : "label"
  3335. } ],
  3336. "constraints" : [ {
  3337. "identifier" : "constraints",
  3338. "language" : "undefined",
  3339. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  3340. "type" : "label"
  3341. }, {
  3342. "identifier" : "constraints",
  3343. "language" : "undefined",
  3344. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  3345. "type" : "label"
  3346. } ],
  3347. "n" : [ {
  3348. "identifier" : "n",
  3349. "language" : "undefined",
  3350. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  3351. "type" : "label"
  3352. }, {
  3353. "identifier" : "n",
  3354. "language" : "undefined",
  3355. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  3356. "type" : "label"
  3357. } ]
  3358. },
  3359. "label" : {
  3360. "IRI-based" : "Removal",
  3361. "undefined" : "Removal"
  3362. },
  3363. "attributes" : [ "external" ],
  3364. "id" : "69",
  3365. "superClasses" : [ "66" ]
  3366. }, {
  3367. "iri" : "http://www.w3.org/ns/prov#PrimarySource",
  3368. "baseIri" : "http://www.w3.org/ns/prov",
  3369. "instances" : 0,
  3370. "annotations" : {
  3371. "component" : [ {
  3372. "identifier" : "component",
  3373. "language" : "undefined",
  3374. "value" : "derivations",
  3375. "type" : "label"
  3376. }, {
  3377. "identifier" : "component",
  3378. "language" : "undefined",
  3379. "value" : "derivations",
  3380. "type" : "label"
  3381. } ],
  3382. "isDefinedBy" : [ {
  3383. "identifier" : "isDefinedBy",
  3384. "language" : "undefined",
  3385. "value" : "http://www.w3.org/ns/prov-o#",
  3386. "type" : "iri"
  3387. }, {
  3388. "identifier" : "isDefinedBy",
  3389. "language" : "undefined",
  3390. "value" : "http://www.w3.org/ns/prov-o#",
  3391. "type" : "iri"
  3392. } ],
  3393. "unqualifiedForm" : [ {
  3394. "identifier" : "unqualifiedForm",
  3395. "language" : "undefined",
  3396. "value" : "http://www.w3.org/ns/prov#hadPrimarySource",
  3397. "type" : "iri"
  3398. }, {
  3399. "identifier" : "unqualifiedForm",
  3400. "language" : "undefined",
  3401. "value" : "http://www.w3.org/ns/prov#hadPrimarySource",
  3402. "type" : "iri"
  3403. } ],
  3404. "dm" : [ {
  3405. "identifier" : "dm",
  3406. "language" : "undefined",
  3407. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source",
  3408. "type" : "label"
  3409. }, {
  3410. "identifier" : "dm",
  3411. "language" : "undefined",
  3412. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source",
  3413. "type" : "label"
  3414. } ],
  3415. "definition" : [ {
  3416. "identifier" : "definition",
  3417. "language" : "en",
  3418. "value" : "A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.\n\nBecause of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.\n\nA primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain.",
  3419. "type" : "label"
  3420. }, {
  3421. "identifier" : "definition",
  3422. "language" : "en",
  3423. "value" : "A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.\n\nBecause of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.\n\nA primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain.",
  3424. "type" : "label"
  3425. } ],
  3426. "category" : [ {
  3427. "identifier" : "category",
  3428. "language" : "undefined",
  3429. "value" : "qualified",
  3430. "type" : "label"
  3431. }, {
  3432. "identifier" : "category",
  3433. "language" : "undefined",
  3434. "value" : "qualified",
  3435. "type" : "label"
  3436. } ],
  3437. "n" : [ {
  3438. "identifier" : "n",
  3439. "language" : "undefined",
  3440. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source",
  3441. "type" : "label"
  3442. }, {
  3443. "identifier" : "n",
  3444. "language" : "undefined",
  3445. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source",
  3446. "type" : "label"
  3447. } ]
  3448. },
  3449. "label" : {
  3450. "IRI-based" : "PrimarySource",
  3451. "undefined" : "PrimarySource"
  3452. },
  3453. "comment" : {
  3454. "en" : "An instance of prov:PrimarySource provides additional descriptions about the binary prov:hadPrimarySource relation from some secondary prov:Entity to an earlier, primary prov:Entity. For example, :blog prov:hadPrimarySource :newsArticle; prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :newsArticle; :foo :bar ] ."
  3455. },
  3456. "attributes" : [ "external" ],
  3457. "id" : "68",
  3458. "superClasses" : [ "66" ]
  3459. }, {
  3460. "iri" : "https://w3id.org/consent-mapping-jit#Policy",
  3461. "baseIri" : "https://w3id.org/consent-mapping-jit",
  3462. "instances" : 0,
  3463. "label" : {
  3464. "IRI-based" : "Policy",
  3465. "undefined" : "Policy"
  3466. },
  3467. "comment" : {
  3468. "undefined" : "Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data."
  3469. },
  3470. "id" : "95",
  3471. "superClasses" : [ "17" ]
  3472. }, {
  3473. "iri" : "http://www.w3.org/ns/prov#Revision",
  3474. "baseIri" : "http://www.w3.org/ns/prov",
  3475. "instances" : 0,
  3476. "annotations" : {
  3477. "component" : [ {
  3478. "identifier" : "component",
  3479. "language" : "undefined",
  3480. "value" : "derivations",
  3481. "type" : "label"
  3482. }, {
  3483. "identifier" : "component",
  3484. "language" : "undefined",
  3485. "value" : "derivations",
  3486. "type" : "label"
  3487. } ],
  3488. "isDefinedBy" : [ {
  3489. "identifier" : "isDefinedBy",
  3490. "language" : "undefined",
  3491. "value" : "http://www.w3.org/ns/prov-o#",
  3492. "type" : "iri"
  3493. }, {
  3494. "identifier" : "isDefinedBy",
  3495. "language" : "undefined",
  3496. "value" : "http://www.w3.org/ns/prov-o#",
  3497. "type" : "iri"
  3498. } ],
  3499. "unqualifiedForm" : [ {
  3500. "identifier" : "unqualifiedForm",
  3501. "language" : "undefined",
  3502. "value" : "http://www.w3.org/ns/prov#wasRevisionOf",
  3503. "type" : "iri"
  3504. }, {
  3505. "identifier" : "unqualifiedForm",
  3506. "language" : "undefined",
  3507. "value" : "http://www.w3.org/ns/prov#wasRevisionOf",
  3508. "type" : "iri"
  3509. } ],
  3510. "dm" : [ {
  3511. "identifier" : "dm",
  3512. "language" : "undefined",
  3513. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision",
  3514. "type" : "label"
  3515. }, {
  3516. "identifier" : "dm",
  3517. "language" : "undefined",
  3518. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision",
  3519. "type" : "label"
  3520. } ],
  3521. "definition" : [ {
  3522. "identifier" : "definition",
  3523. "language" : "en",
  3524. "value" : "A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation.",
  3525. "type" : "label"
  3526. }, {
  3527. "identifier" : "definition",
  3528. "language" : "en",
  3529. "value" : "A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation.",
  3530. "type" : "label"
  3531. } ],
  3532. "category" : [ {
  3533. "identifier" : "category",
  3534. "language" : "undefined",
  3535. "value" : "qualified",
  3536. "type" : "label"
  3537. }, {
  3538. "identifier" : "category",
  3539. "language" : "undefined",
  3540. "value" : "qualified",
  3541. "type" : "label"
  3542. } ],
  3543. "n" : [ {
  3544. "identifier" : "n",
  3545. "language" : "undefined",
  3546. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision",
  3547. "type" : "label"
  3548. }, {
  3549. "identifier" : "n",
  3550. "language" : "undefined",
  3551. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision",
  3552. "type" : "label"
  3553. } ]
  3554. },
  3555. "label" : {
  3556. "IRI-based" : "Revision",
  3557. "undefined" : "Revision"
  3558. },
  3559. "comment" : {
  3560. "en" : "An instance of prov:Revision provides additional descriptions about the binary prov:wasRevisionOf relation from some newer prov:Entity to an earlier prov:Entity. For example, :draft_2 prov:wasRevisionOf :draft_1; prov:qualifiedRevision [ a prov:Revision; prov:entity :draft_1; :foo :bar ]."
  3561. },
  3562. "attributes" : [ "external" ],
  3563. "id" : "70",
  3564. "superClasses" : [ "66" ]
  3565. }, {
  3566. "iri" : "http://www.w3.org/ns/prov#Role",
  3567. "baseIri" : "http://www.w3.org/ns/prov",
  3568. "instances" : 0,
  3569. "annotations" : {
  3570. "component" : [ {
  3571. "identifier" : "component",
  3572. "language" : "undefined",
  3573. "value" : "agents-responsibility",
  3574. "type" : "label"
  3575. }, {
  3576. "identifier" : "component",
  3577. "language" : "undefined",
  3578. "value" : "agents-responsibility",
  3579. "type" : "label"
  3580. } ],
  3581. "isDefinedBy" : [ {
  3582. "identifier" : "isDefinedBy",
  3583. "language" : "undefined",
  3584. "value" : "http://www.w3.org/ns/prov-o#",
  3585. "type" : "iri"
  3586. }, {
  3587. "identifier" : "isDefinedBy",
  3588. "language" : "undefined",
  3589. "value" : "http://www.w3.org/ns/prov-o#",
  3590. "type" : "iri"
  3591. } ],
  3592. "dm" : [ {
  3593. "identifier" : "dm",
  3594. "language" : "undefined",
  3595. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role",
  3596. "type" : "label"
  3597. }, {
  3598. "identifier" : "dm",
  3599. "language" : "undefined",
  3600. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role",
  3601. "type" : "label"
  3602. } ],
  3603. "definition" : [ {
  3604. "identifier" : "definition",
  3605. "language" : "en",
  3606. "value" : "A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end.",
  3607. "type" : "label"
  3608. }, {
  3609. "identifier" : "definition",
  3610. "language" : "en",
  3611. "value" : "A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end.",
  3612. "type" : "label"
  3613. } ],
  3614. "category" : [ {
  3615. "identifier" : "category",
  3616. "language" : "undefined",
  3617. "value" : "qualified",
  3618. "type" : "label"
  3619. }, {
  3620. "identifier" : "category",
  3621. "language" : "undefined",
  3622. "value" : "qualified",
  3623. "type" : "label"
  3624. } ],
  3625. "n" : [ {
  3626. "identifier" : "n",
  3627. "language" : "undefined",
  3628. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute",
  3629. "type" : "label"
  3630. }, {
  3631. "identifier" : "n",
  3632. "language" : "undefined",
  3633. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute",
  3634. "type" : "label"
  3635. } ],
  3636. "seeAlso" : [ {
  3637. "identifier" : "seeAlso",
  3638. "language" : "undefined",
  3639. "value" : "http://www.w3.org/ns/prov#hadRole",
  3640. "type" : "iri"
  3641. }, {
  3642. "identifier" : "seeAlso",
  3643. "language" : "undefined",
  3644. "value" : "http://www.w3.org/ns/prov#hadRole",
  3645. "type" : "iri"
  3646. } ]
  3647. },
  3648. "label" : {
  3649. "IRI-based" : "Role",
  3650. "undefined" : "Role"
  3651. },
  3652. "subClasses" : [ "143", "150", "157" ],
  3653. "attributes" : [ "external" ],
  3654. "id" : "144"
  3655. }, {
  3656. "iri" : "http://www.w3.org/ns/prov#EmptyDictionary",
  3657. "baseIri" : "http://www.w3.org/ns/prov",
  3658. "instances" : 0,
  3659. "annotations" : {
  3660. "component" : [ {
  3661. "identifier" : "component",
  3662. "language" : "undefined",
  3663. "value" : "collections",
  3664. "type" : "label"
  3665. }, {
  3666. "identifier" : "component",
  3667. "language" : "undefined",
  3668. "value" : "collections",
  3669. "type" : "label"
  3670. } ],
  3671. "isDefinedBy" : [ {
  3672. "identifier" : "isDefinedBy",
  3673. "language" : "undefined",
  3674. "value" : "http://www.w3.org/ns/prov#",
  3675. "type" : "iri"
  3676. }, {
  3677. "identifier" : "isDefinedBy",
  3678. "language" : "undefined",
  3679. "value" : "http://www.w3.org/ns/prov#",
  3680. "type" : "iri"
  3681. } ],
  3682. "dm" : [ {
  3683. "identifier" : "dm",
  3684. "language" : "undefined",
  3685. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition",
  3686. "type" : "label"
  3687. }, {
  3688. "identifier" : "dm",
  3689. "language" : "undefined",
  3690. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition",
  3691. "type" : "label"
  3692. } ],
  3693. "definition" : [ {
  3694. "identifier" : "definition",
  3695. "language" : "undefined",
  3696. "value" : "An empty dictionary (i.e. has no members).",
  3697. "type" : "label"
  3698. }, {
  3699. "identifier" : "definition",
  3700. "language" : "undefined",
  3701. "value" : "An empty dictionary (i.e. has no members).",
  3702. "type" : "label"
  3703. } ],
  3704. "category" : [ {
  3705. "identifier" : "category",
  3706. "language" : "undefined",
  3707. "value" : "collections",
  3708. "type" : "label"
  3709. }, {
  3710. "identifier" : "category",
  3711. "language" : "undefined",
  3712. "value" : "collections",
  3713. "type" : "label"
  3714. } ],
  3715. "constraints" : [ {
  3716. "identifier" : "constraints",
  3717. "language" : "undefined",
  3718. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  3719. "type" : "label"
  3720. }, {
  3721. "identifier" : "constraints",
  3722. "language" : "undefined",
  3723. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  3724. "type" : "label"
  3725. } ],
  3726. "n" : [ {
  3727. "identifier" : "n",
  3728. "language" : "undefined",
  3729. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary",
  3730. "type" : "label"
  3731. }, {
  3732. "identifier" : "n",
  3733. "language" : "undefined",
  3734. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary",
  3735. "type" : "label"
  3736. } ]
  3737. },
  3738. "label" : {
  3739. "IRI-based" : "EmptyDictionary",
  3740. "undefined" : "Empty Dictionary"
  3741. },
  3742. "attributes" : [ "external" ],
  3743. "id" : "45",
  3744. "superClasses" : [ "32", "50" ]
  3745. }, {
  3746. "iri" : "http://www.w3.org/ns/prov#End",
  3747. "baseIri" : "http://www.w3.org/ns/prov",
  3748. "instances" : 0,
  3749. "annotations" : {
  3750. "component" : [ {
  3751. "identifier" : "component",
  3752. "language" : "undefined",
  3753. "value" : "entities-activities",
  3754. "type" : "label"
  3755. }, {
  3756. "identifier" : "component",
  3757. "language" : "undefined",
  3758. "value" : "entities-activities",
  3759. "type" : "label"
  3760. } ],
  3761. "isDefinedBy" : [ {
  3762. "identifier" : "isDefinedBy",
  3763. "language" : "undefined",
  3764. "value" : "http://www.w3.org/ns/prov-o#",
  3765. "type" : "iri"
  3766. }, {
  3767. "identifier" : "isDefinedBy",
  3768. "language" : "undefined",
  3769. "value" : "http://www.w3.org/ns/prov-o#",
  3770. "type" : "iri"
  3771. } ],
  3772. "unqualifiedForm" : [ {
  3773. "identifier" : "unqualifiedForm",
  3774. "language" : "undefined",
  3775. "value" : "http://www.w3.org/ns/prov#wasEndedBy",
  3776. "type" : "iri"
  3777. }, {
  3778. "identifier" : "unqualifiedForm",
  3779. "language" : "undefined",
  3780. "value" : "http://www.w3.org/ns/prov#wasEndedBy",
  3781. "type" : "iri"
  3782. } ],
  3783. "dm" : [ {
  3784. "identifier" : "dm",
  3785. "language" : "undefined",
  3786. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End",
  3787. "type" : "label"
  3788. }, {
  3789. "identifier" : "dm",
  3790. "language" : "undefined",
  3791. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End",
  3792. "type" : "label"
  3793. } ],
  3794. "definition" : [ {
  3795. "identifier" : "definition",
  3796. "language" : "en",
  3797. "value" : "End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger.",
  3798. "type" : "label"
  3799. }, {
  3800. "identifier" : "definition",
  3801. "language" : "en",
  3802. "value" : "End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger.",
  3803. "type" : "label"
  3804. } ],
  3805. "category" : [ {
  3806. "identifier" : "category",
  3807. "language" : "undefined",
  3808. "value" : "qualified",
  3809. "type" : "label"
  3810. }, {
  3811. "identifier" : "category",
  3812. "language" : "undefined",
  3813. "value" : "qualified",
  3814. "type" : "label"
  3815. } ],
  3816. "constraints" : [ {
  3817. "identifier" : "constraints",
  3818. "language" : "undefined",
  3819. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3820. "type" : "label"
  3821. }, {
  3822. "identifier" : "constraints",
  3823. "language" : "undefined",
  3824. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  3825. "type" : "label"
  3826. } ],
  3827. "n" : [ {
  3828. "identifier" : "n",
  3829. "language" : "undefined",
  3830. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End",
  3831. "type" : "label"
  3832. }, {
  3833. "identifier" : "n",
  3834. "language" : "undefined",
  3835. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End",
  3836. "type" : "label"
  3837. } ]
  3838. },
  3839. "label" : {
  3840. "IRI-based" : "End",
  3841. "undefined" : "End"
  3842. },
  3843. "comment" : {
  3844. "en" : "An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ]."
  3845. },
  3846. "attributes" : [ "external" ],
  3847. "id" : "8",
  3848. "superClasses" : [ "56", "11" ]
  3849. }, {
  3850. "iri" : "http://www.w3.org/ns/prov#Publish",
  3851. "baseIri" : "http://www.w3.org/ns/prov",
  3852. "instances" : 0,
  3853. "annotations" : {
  3854. "isDefinedBy" : [ {
  3855. "identifier" : "isDefinedBy",
  3856. "language" : "undefined",
  3857. "value" : "http://www.w3.org/ns/prov-dc#",
  3858. "type" : "iri"
  3859. } ],
  3860. "definition" : [ {
  3861. "identifier" : "definition",
  3862. "language" : "en",
  3863. "value" : "Activity that identifies the publication of a resource",
  3864. "type" : "label"
  3865. }, {
  3866. "identifier" : "definition",
  3867. "language" : "en",
  3868. "value" : "Activity that identifies the publication of a resource",
  3869. "type" : "label"
  3870. } ]
  3871. },
  3872. "label" : {
  3873. "IRI-based" : "Publish",
  3874. "en" : "Publish"
  3875. },
  3876. "attributes" : [ "external" ],
  3877. "id" : "126",
  3878. "superClasses" : [ "9" ]
  3879. }, {
  3880. "iri" : "http://www.w3.org/ns/prov#DirectQueryService",
  3881. "baseIri" : "http://www.w3.org/ns/prov",
  3882. "instances" : 0,
  3883. "annotations" : {
  3884. "aq" : [ {
  3885. "identifier" : "aq",
  3886. "language" : "undefined",
  3887. "value" : "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery",
  3888. "type" : "label"
  3889. } ],
  3890. "isDefinedBy" : [ {
  3891. "identifier" : "isDefinedBy",
  3892. "language" : "undefined",
  3893. "value" : "http://www.w3.org/ns/prov#",
  3894. "type" : "iri"
  3895. } ],
  3896. "category" : [ {
  3897. "identifier" : "category",
  3898. "language" : "undefined",
  3899. "value" : "access-and-query",
  3900. "type" : "label"
  3901. } ]
  3902. },
  3903. "label" : {
  3904. "IRI-based" : "DirectQueryService",
  3905. "undefined" : "ProvenanceService"
  3906. },
  3907. "comment" : {
  3908. "undefined" : "Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments."
  3909. },
  3910. "attributes" : [ "external" ],
  3911. "id" : "160",
  3912. "superClasses" : [ "54" ]
  3913. }, {
  3914. "iri" : "http://www.w3.org/ns/prov#RightsAssignment",
  3915. "baseIri" : "http://www.w3.org/ns/prov",
  3916. "instances" : 0,
  3917. "annotations" : {
  3918. "isDefinedBy" : [ {
  3919. "identifier" : "isDefinedBy",
  3920. "language" : "undefined",
  3921. "value" : "http://www.w3.org/ns/prov-dc#",
  3922. "type" : "iri"
  3923. } ],
  3924. "definition" : [ {
  3925. "identifier" : "definition",
  3926. "language" : "en",
  3927. "value" : "Activity that identifies the rights assignment of a resource.",
  3928. "type" : "label"
  3929. }, {
  3930. "identifier" : "definition",
  3931. "language" : "en",
  3932. "value" : "Activity that identifies the rights assignment of a resource.",
  3933. "type" : "label"
  3934. } ]
  3935. },
  3936. "label" : {
  3937. "IRI-based" : "RightsAssignment",
  3938. "en" : "RightsAssignment"
  3939. },
  3940. "attributes" : [ "external" ],
  3941. "id" : "125",
  3942. "superClasses" : [ "9" ]
  3943. }, {
  3944. "iri" : "http://www.w3.org/ns/prov#Submit",
  3945. "baseIri" : "http://www.w3.org/ns/prov",
  3946. "instances" : 0,
  3947. "annotations" : {
  3948. "isDefinedBy" : [ {
  3949. "identifier" : "isDefinedBy",
  3950. "language" : "undefined",
  3951. "value" : "http://www.w3.org/ns/prov-dc#",
  3952. "type" : "iri"
  3953. } ],
  3954. "definition" : [ {
  3955. "identifier" : "definition",
  3956. "language" : "en",
  3957. "value" : "Activity that identifies the issuance (e.g., publication) of a resource. ",
  3958. "type" : "label"
  3959. }, {
  3960. "identifier" : "definition",
  3961. "language" : "en",
  3962. "value" : "Activity that identifies the issuance (e.g., publication) of a resource.",
  3963. "type" : "label"
  3964. } ]
  3965. },
  3966. "label" : {
  3967. "IRI-based" : "Submit",
  3968. "en" : "Submit"
  3969. },
  3970. "attributes" : [ "external" ],
  3971. "id" : "129",
  3972. "superClasses" : [ "9" ]
  3973. }, {
  3974. "iri" : "http://www.w3.org/ns/prov#Usage",
  3975. "baseIri" : "http://www.w3.org/ns/prov",
  3976. "instances" : 0,
  3977. "annotations" : {
  3978. "component" : [ {
  3979. "identifier" : "component",
  3980. "language" : "undefined",
  3981. "value" : "entities-activities",
  3982. "type" : "label"
  3983. }, {
  3984. "identifier" : "component",
  3985. "language" : "undefined",
  3986. "value" : "entities-activities",
  3987. "type" : "label"
  3988. } ],
  3989. "isDefinedBy" : [ {
  3990. "identifier" : "isDefinedBy",
  3991. "language" : "undefined",
  3992. "value" : "http://www.w3.org/ns/prov-o#",
  3993. "type" : "iri"
  3994. }, {
  3995. "identifier" : "isDefinedBy",
  3996. "language" : "undefined",
  3997. "value" : "http://www.w3.org/ns/prov-o#",
  3998. "type" : "iri"
  3999. } ],
  4000. "unqualifiedForm" : [ {
  4001. "identifier" : "unqualifiedForm",
  4002. "language" : "undefined",
  4003. "value" : "http://www.w3.org/ns/prov#used",
  4004. "type" : "iri"
  4005. }, {
  4006. "identifier" : "unqualifiedForm",
  4007. "language" : "undefined",
  4008. "value" : "http://www.w3.org/ns/prov#used",
  4009. "type" : "iri"
  4010. } ],
  4011. "dm" : [ {
  4012. "identifier" : "dm",
  4013. "language" : "undefined",
  4014. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage",
  4015. "type" : "label"
  4016. }, {
  4017. "identifier" : "dm",
  4018. "language" : "undefined",
  4019. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage",
  4020. "type" : "label"
  4021. } ],
  4022. "definition" : [ {
  4023. "identifier" : "definition",
  4024. "language" : "en",
  4025. "value" : "Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.",
  4026. "type" : "label"
  4027. }, {
  4028. "identifier" : "definition",
  4029. "language" : "en",
  4030. "value" : "Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.",
  4031. "type" : "label"
  4032. } ],
  4033. "category" : [ {
  4034. "identifier" : "category",
  4035. "language" : "undefined",
  4036. "value" : "qualified",
  4037. "type" : "label"
  4038. }, {
  4039. "identifier" : "category",
  4040. "language" : "undefined",
  4041. "value" : "qualified",
  4042. "type" : "label"
  4043. } ],
  4044. "constraints" : [ {
  4045. "identifier" : "constraints",
  4046. "language" : "undefined",
  4047. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  4048. "type" : "label"
  4049. }, {
  4050. "identifier" : "constraints",
  4051. "language" : "undefined",
  4052. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  4053. "type" : "label"
  4054. } ],
  4055. "n" : [ {
  4056. "identifier" : "n",
  4057. "language" : "undefined",
  4058. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage",
  4059. "type" : "label"
  4060. }, {
  4061. "identifier" : "n",
  4062. "language" : "undefined",
  4063. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage",
  4064. "type" : "label"
  4065. } ]
  4066. },
  4067. "label" : {
  4068. "IRI-based" : "Usage",
  4069. "undefined" : "Usage"
  4070. },
  4071. "comment" : {
  4072. "en" : "An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ]."
  4073. },
  4074. "attributes" : [ "external" ],
  4075. "id" : "12",
  4076. "superClasses" : [ "56", "11" ]
  4077. } ],
  4078. "property" : [ {
  4079. "id" : "0",
  4080. "type" : "owl:objectProperty"
  4081. }, {
  4082. "id" : "4",
  4083. "type" : "owl:objectProperty"
  4084. }, {
  4085. "id" : "6",
  4086. "type" : "owl:objectProperty"
  4087. }, {
  4088. "id" : "7",
  4089. "type" : "owl:objectProperty"
  4090. }, {
  4091. "id" : "16",
  4092. "type" : "owl:objectProperty"
  4093. }, {
  4094. "id" : "23",
  4095. "type" : "owl:objectProperty"
  4096. }, {
  4097. "id" : "20",
  4098. "type" : "owl:objectProperty"
  4099. }, {
  4100. "id" : "28",
  4101. "type" : "owl:objectProperty"
  4102. }, {
  4103. "id" : "31",
  4104. "type" : "owl:objectProperty"
  4105. }, {
  4106. "id" : "38",
  4107. "type" : "owl:objectProperty"
  4108. }, {
  4109. "id" : "40",
  4110. "type" : "owl:datatypeProperty"
  4111. }, {
  4112. "id" : "42",
  4113. "type" : "owl:objectProperty"
  4114. }, {
  4115. "id" : "46",
  4116. "type" : "owl:objectProperty"
  4117. }, {
  4118. "id" : "47",
  4119. "type" : "owl:objectProperty"
  4120. }, {
  4121. "id" : "48",
  4122. "type" : "owl:datatypeProperty"
  4123. }, {
  4124. "id" : "55",
  4125. "type" : "owl:objectProperty"
  4126. }, {
  4127. "id" : "58",
  4128. "type" : "owl:datatypeProperty"
  4129. }, {
  4130. "id" : "60",
  4131. "type" : "owl:objectProperty"
  4132. }, {
  4133. "id" : "63",
  4134. "type" : "owl:objectProperty"
  4135. }, {
  4136. "id" : "64",
  4137. "type" : "owl:objectProperty"
  4138. }, {
  4139. "id" : "71",
  4140. "type" : "owl:objectProperty"
  4141. }, {
  4142. "id" : "74",
  4143. "type" : "owl:datatypeProperty"
  4144. }, {
  4145. "id" : "21",
  4146. "type" : "owl:objectProperty"
  4147. }, {
  4148. "id" : "39",
  4149. "type" : "owl:objectProperty"
  4150. }, {
  4151. "id" : "82",
  4152. "type" : "owl:datatypeProperty"
  4153. }, {
  4154. "id" : "61",
  4155. "type" : "owl:objectProperty"
  4156. }, {
  4157. "id" : "84",
  4158. "type" : "owl:objectProperty"
  4159. }, {
  4160. "id" : "85",
  4161. "type" : "owl:objectProperty"
  4162. }, {
  4163. "id" : "86",
  4164. "type" : "owl:objectProperty"
  4165. }, {
  4166. "id" : "89",
  4167. "type" : "owl:objectProperty"
  4168. }, {
  4169. "id" : "91",
  4170. "type" : "owl:objectProperty"
  4171. }, {
  4172. "id" : "93",
  4173. "type" : "owl:objectProperty"
  4174. }, {
  4175. "id" : "96",
  4176. "type" : "owl:objectProperty"
  4177. }, {
  4178. "id" : "77",
  4179. "type" : "owl:objectProperty"
  4180. }, {
  4181. "id" : "107",
  4182. "type" : "owl:objectProperty"
  4183. }, {
  4184. "id" : "102",
  4185. "type" : "owl:objectProperty"
  4186. }, {
  4187. "id" : "108",
  4188. "type" : "owl:objectProperty"
  4189. }, {
  4190. "id" : "109",
  4191. "type" : "owl:objectProperty"
  4192. }, {
  4193. "id" : "111",
  4194. "type" : "owl:objectProperty"
  4195. }, {
  4196. "id" : "113",
  4197. "type" : "owl:objectProperty"
  4198. }, {
  4199. "id" : "114",
  4200. "type" : "owl:datatypeProperty"
  4201. }, {
  4202. "id" : "116",
  4203. "type" : "owl:datatypeProperty"
  4204. }, {
  4205. "id" : "118",
  4206. "type" : "owl:objectProperty"
  4207. }, {
  4208. "id" : "119",
  4209. "type" : "owl:objectProperty"
  4210. }, {
  4211. "id" : "120",
  4212. "type" : "owl:objectProperty"
  4213. }, {
  4214. "id" : "121",
  4215. "type" : "owl:objectProperty"
  4216. }, {
  4217. "id" : "122",
  4218. "type" : "owl:datatypeProperty"
  4219. }, {
  4220. "id" : "124",
  4221. "type" : "owl:objectProperty"
  4222. }, {
  4223. "id" : "34",
  4224. "type" : "owl:objectProperty"
  4225. }, {
  4226. "id" : "131",
  4227. "type" : "owl:objectProperty"
  4228. }, {
  4229. "id" : "104",
  4230. "type" : "owl:objectProperty"
  4231. }, {
  4232. "id" : "132",
  4233. "type" : "owl:datatypeProperty"
  4234. }, {
  4235. "id" : "134",
  4236. "type" : "owl:objectProperty"
  4237. }, {
  4238. "id" : "136",
  4239. "type" : "owl:objectProperty"
  4240. }, {
  4241. "id" : "10",
  4242. "type" : "owl:objectProperty"
  4243. }, {
  4244. "id" : "138",
  4245. "type" : "owl:objectProperty"
  4246. }, {
  4247. "id" : "97",
  4248. "type" : "owl:objectProperty"
  4249. }, {
  4250. "id" : "142",
  4251. "type" : "owl:objectProperty"
  4252. }, {
  4253. "id" : "79",
  4254. "type" : "owl:objectProperty"
  4255. }, {
  4256. "id" : "145",
  4257. "type" : "owl:objectProperty"
  4258. }, {
  4259. "id" : "147",
  4260. "type" : "owl:objectProperty"
  4261. }, {
  4262. "id" : "100",
  4263. "type" : "owl:objectProperty"
  4264. }, {
  4265. "id" : "151",
  4266. "type" : "owl:disjointWith"
  4267. }, {
  4268. "id" : "152",
  4269. "type" : "owl:objectProperty"
  4270. }, {
  4271. "id" : "153",
  4272. "type" : "owl:objectProperty"
  4273. }, {
  4274. "id" : "159",
  4275. "type" : "owl:disjointWith"
  4276. }, {
  4277. "id" : "161",
  4278. "type" : "owl:disjointWith"
  4279. }, {
  4280. "id" : "162",
  4281. "type" : "owl:disjointWith"
  4282. }, {
  4283. "id" : "163",
  4284. "type" : "rdfs:SubClassOf"
  4285. }, {
  4286. "id" : "78",
  4287. "type" : "owl:objectProperty"
  4288. }, {
  4289. "id" : "164",
  4290. "type" : "rdfs:SubClassOf"
  4291. }, {
  4292. "id" : "165",
  4293. "type" : "rdfs:SubClassOf"
  4294. }, {
  4295. "id" : "154",
  4296. "type" : "owl:objectProperty"
  4297. }, {
  4298. "id" : "62",
  4299. "type" : "owl:objectProperty"
  4300. }, {
  4301. "id" : "81",
  4302. "type" : "owl:objectProperty"
  4303. }, {
  4304. "id" : "167",
  4305. "type" : "owl:objectProperty"
  4306. }, {
  4307. "id" : "168",
  4308. "type" : "rdfs:SubClassOf"
  4309. }, {
  4310. "id" : "169",
  4311. "type" : "rdfs:SubClassOf"
  4312. }, {
  4313. "id" : "170",
  4314. "type" : "rdfs:SubClassOf"
  4315. }, {
  4316. "id" : "171",
  4317. "type" : "rdfs:SubClassOf"
  4318. }, {
  4319. "id" : "172",
  4320. "type" : "rdfs:SubClassOf"
  4321. }, {
  4322. "id" : "130",
  4323. "type" : "owl:objectProperty"
  4324. }, {
  4325. "id" : "173",
  4326. "type" : "rdfs:SubClassOf"
  4327. }, {
  4328. "id" : "174",
  4329. "type" : "rdfs:SubClassOf"
  4330. }, {
  4331. "id" : "175",
  4332. "type" : "rdfs:SubClassOf"
  4333. }, {
  4334. "id" : "176",
  4335. "type" : "owl:objectProperty"
  4336. }, {
  4337. "id" : "177",
  4338. "type" : "rdfs:SubClassOf"
  4339. }, {
  4340. "id" : "178",
  4341. "type" : "owl:objectProperty"
  4342. }, {
  4343. "id" : "179",
  4344. "type" : "rdfs:SubClassOf"
  4345. }, {
  4346. "id" : "180",
  4347. "type" : "owl:objectProperty"
  4348. }, {
  4349. "id" : "181",
  4350. "type" : "owl:objectProperty"
  4351. }, {
  4352. "id" : "182",
  4353. "type" : "owl:objectProperty"
  4354. }, {
  4355. "id" : "183",
  4356. "type" : "rdfs:SubClassOf"
  4357. }, {
  4358. "id" : "184",
  4359. "type" : "rdfs:SubClassOf"
  4360. }, {
  4361. "id" : "149",
  4362. "type" : "owl:objectProperty"
  4363. }, {
  4364. "id" : "187",
  4365. "type" : "owl:objectProperty"
  4366. }, {
  4367. "id" : "188",
  4368. "type" : "owl:datatypeProperty"
  4369. }, {
  4370. "id" : "189",
  4371. "type" : "rdfs:SubClassOf"
  4372. }, {
  4373. "id" : "190",
  4374. "type" : "rdfs:SubClassOf"
  4375. }, {
  4376. "id" : "191",
  4377. "type" : "owl:objectProperty"
  4378. }, {
  4379. "id" : "192",
  4380. "type" : "rdfs:SubClassOf"
  4381. }, {
  4382. "id" : "193",
  4383. "type" : "rdfs:SubClassOf"
  4384. }, {
  4385. "id" : "194",
  4386. "type" : "owl:objectProperty"
  4387. }, {
  4388. "id" : "80",
  4389. "type" : "owl:objectProperty"
  4390. }, {
  4391. "id" : "195",
  4392. "type" : "rdfs:SubClassOf"
  4393. }, {
  4394. "id" : "196",
  4395. "type" : "owl:objectProperty"
  4396. }, {
  4397. "id" : "103",
  4398. "type" : "owl:objectProperty"
  4399. }, {
  4400. "id" : "197",
  4401. "type" : "owl:objectProperty"
  4402. }, {
  4403. "id" : "92",
  4404. "type" : "owl:objectProperty"
  4405. }, {
  4406. "id" : "44",
  4407. "type" : "owl:objectProperty"
  4408. }, {
  4409. "id" : "198",
  4410. "type" : "owl:objectProperty"
  4411. }, {
  4412. "id" : "199",
  4413. "type" : "rdfs:SubClassOf"
  4414. }, {
  4415. "id" : "200",
  4416. "type" : "owl:objectProperty"
  4417. }, {
  4418. "id" : "201",
  4419. "type" : "rdfs:SubClassOf"
  4420. }, {
  4421. "id" : "202",
  4422. "type" : "rdfs:SubClassOf"
  4423. }, {
  4424. "id" : "203",
  4425. "type" : "rdfs:SubClassOf"
  4426. }, {
  4427. "id" : "204",
  4428. "type" : "rdfs:SubClassOf"
  4429. }, {
  4430. "id" : "205",
  4431. "type" : "rdfs:SubClassOf"
  4432. }, {
  4433. "id" : "206",
  4434. "type" : "rdfs:SubClassOf"
  4435. }, {
  4436. "id" : "207",
  4437. "type" : "rdfs:SubClassOf"
  4438. }, {
  4439. "id" : "208",
  4440. "type" : "rdfs:SubClassOf"
  4441. }, {
  4442. "id" : "19",
  4443. "type" : "owl:objectProperty"
  4444. }, {
  4445. "id" : "209",
  4446. "type" : "rdfs:SubClassOf"
  4447. }, {
  4448. "id" : "210",
  4449. "type" : "owl:datatypeProperty"
  4450. }, {
  4451. "id" : "105",
  4452. "type" : "owl:objectProperty"
  4453. }, {
  4454. "id" : "211",
  4455. "type" : "owl:objectProperty"
  4456. }, {
  4457. "id" : "212",
  4458. "type" : "owl:objectProperty"
  4459. }, {
  4460. "id" : "213",
  4461. "type" : "owl:objectProperty"
  4462. }, {
  4463. "id" : "166",
  4464. "type" : "owl:objectProperty"
  4465. }, {
  4466. "id" : "214",
  4467. "type" : "rdfs:SubClassOf"
  4468. }, {
  4469. "id" : "215",
  4470. "type" : "rdfs:SubClassOf"
  4471. }, {
  4472. "id" : "25",
  4473. "type" : "owl:objectProperty"
  4474. }, {
  4475. "id" : "216",
  4476. "type" : "rdfs:SubClassOf"
  4477. }, {
  4478. "id" : "217",
  4479. "type" : "rdfs:SubClassOf"
  4480. }, {
  4481. "id" : "218",
  4482. "type" : "rdfs:SubClassOf"
  4483. }, {
  4484. "id" : "219",
  4485. "type" : "rdfs:SubClassOf"
  4486. }, {
  4487. "id" : "220",
  4488. "type" : "rdfs:SubClassOf"
  4489. }, {
  4490. "id" : "101",
  4491. "type" : "owl:objectProperty"
  4492. }, {
  4493. "id" : "57",
  4494. "type" : "owl:objectProperty"
  4495. }, {
  4496. "id" : "221",
  4497. "type" : "owl:disjointWith"
  4498. }, {
  4499. "id" : "222",
  4500. "type" : "owl:disjointWith"
  4501. }, {
  4502. "id" : "223",
  4503. "type" : "owl:disjointWith"
  4504. }, {
  4505. "id" : "224",
  4506. "type" : "owl:disjointWith"
  4507. }, {
  4508. "id" : "225",
  4509. "type" : "owl:disjointWith"
  4510. }, {
  4511. "id" : "226",
  4512. "type" : "owl:disjointWith"
  4513. }, {
  4514. "id" : "185",
  4515. "type" : "owl:objectProperty"
  4516. }, {
  4517. "id" : "227",
  4518. "type" : "owl:disjointWith"
  4519. }, {
  4520. "id" : "106",
  4521. "type" : "owl:objectProperty"
  4522. }, {
  4523. "id" : "228",
  4524. "type" : "owl:datatypeProperty"
  4525. }, {
  4526. "id" : "229",
  4527. "type" : "owl:disjointWith"
  4528. }, {
  4529. "id" : "230",
  4530. "type" : "owl:objectProperty"
  4531. }, {
  4532. "id" : "231",
  4533. "type" : "owl:objectProperty"
  4534. }, {
  4535. "id" : "233",
  4536. "type" : "owl:disjointWith"
  4537. }, {
  4538. "id" : "234",
  4539. "type" : "owl:objectProperty"
  4540. }, {
  4541. "id" : "235",
  4542. "type" : "owl:disjointWith"
  4543. }, {
  4544. "id" : "236",
  4545. "type" : "owl:objectProperty"
  4546. }, {
  4547. "id" : "237",
  4548. "type" : "rdfs:SubClassOf"
  4549. }, {
  4550. "id" : "238",
  4551. "type" : "rdfs:SubClassOf"
  4552. }, {
  4553. "id" : "239",
  4554. "type" : "rdfs:SubClassOf"
  4555. }, {
  4556. "id" : "240",
  4557. "type" : "rdfs:SubClassOf"
  4558. }, {
  4559. "id" : "241",
  4560. "type" : "rdfs:SubClassOf"
  4561. }, {
  4562. "id" : "242",
  4563. "type" : "rdfs:SubClassOf"
  4564. }, {
  4565. "id" : "232",
  4566. "type" : "owl:objectProperty"
  4567. }, {
  4568. "id" : "243",
  4569. "type" : "owl:objectProperty"
  4570. }, {
  4571. "id" : "244",
  4572. "type" : "rdfs:SubClassOf"
  4573. }, {
  4574. "id" : "245",
  4575. "type" : "owl:objectProperty"
  4576. }, {
  4577. "id" : "246",
  4578. "type" : "rdfs:SubClassOf"
  4579. }, {
  4580. "id" : "247",
  4581. "type" : "rdfs:SubClassOf"
  4582. }, {
  4583. "id" : "248",
  4584. "type" : "rdfs:SubClassOf"
  4585. }, {
  4586. "id" : "249",
  4587. "type" : "owl:objectProperty"
  4588. }, {
  4589. "id" : "250",
  4590. "type" : "owl:objectProperty"
  4591. }, {
  4592. "id" : "251",
  4593. "type" : "owl:objectProperty"
  4594. }, {
  4595. "id" : "3",
  4596. "type" : "owl:objectProperty"
  4597. }, {
  4598. "id" : "252",
  4599. "type" : "owl:objectProperty"
  4600. }, {
  4601. "id" : "253",
  4602. "type" : "rdfs:SubClassOf"
  4603. }, {
  4604. "id" : "254",
  4605. "type" : "rdfs:SubClassOf"
  4606. }, {
  4607. "id" : "255",
  4608. "type" : "rdfs:SubClassOf"
  4609. }, {
  4610. "id" : "256",
  4611. "type" : "rdfs:SubClassOf"
  4612. }, {
  4613. "id" : "257",
  4614. "type" : "rdfs:SubClassOf"
  4615. } ],
  4616. "propertyAttribute" : [ {
  4617. "iri" : "http://www.w3.org/ns/prov#qualifiedInfluenceOf",
  4618. "inverse" : "3",
  4619. "baseIri" : "http://www.w3.org/ns/prov",
  4620. "range" : "2",
  4621. "annotations" : {
  4622. "isDefinedBy" : [ {
  4623. "identifier" : "isDefinedBy",
  4624. "language" : "undefined",
  4625. "value" : "http://www.w3.org/ns/prov#",
  4626. "type" : "iri"
  4627. }, {
  4628. "identifier" : "isDefinedBy",
  4629. "language" : "undefined",
  4630. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  4631. "type" : "iri"
  4632. } ]
  4633. },
  4634. "label" : {
  4635. "IRI-based" : "qualifiedInfluenceOf",
  4636. "undefined" : "qualifiedInfluenceOf"
  4637. },
  4638. "domain" : "1",
  4639. "attributes" : [ "object", "external" ],
  4640. "id" : "0"
  4641. }, {
  4642. "iri" : "http://www.w3.org/ns/prov#describesService",
  4643. "baseIri" : "http://www.w3.org/ns/prov",
  4644. "range" : "5",
  4645. "annotations" : {
  4646. "aq" : [ {
  4647. "identifier" : "aq",
  4648. "language" : "undefined",
  4649. "value" : "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/rovenance-query-service-description",
  4650. "type" : "label"
  4651. } ],
  4652. "inverse" : [ {
  4653. "identifier" : "inverse",
  4654. "language" : "undefined",
  4655. "value" : "serviceDescribedBy",
  4656. "type" : "label"
  4657. } ],
  4658. "isDefinedBy" : [ {
  4659. "identifier" : "isDefinedBy",
  4660. "language" : "undefined",
  4661. "value" : "http://www.w3.org/ns/prov#",
  4662. "type" : "iri"
  4663. } ],
  4664. "category" : [ {
  4665. "identifier" : "category",
  4666. "language" : "undefined",
  4667. "value" : "access-and-query",
  4668. "type" : "label"
  4669. } ]
  4670. },
  4671. "label" : {
  4672. "IRI-based" : "describesService",
  4673. "undefined" : "describesService"
  4674. },
  4675. "domain" : "5",
  4676. "comment" : {
  4677. "en" : "relates a generic provenance query service resource (type prov:ServiceDescription) to a specific query service description (e.g. a prov:DirectQueryService or a sd:Service)."
  4678. },
  4679. "attributes" : [ "object", "external" ],
  4680. "id" : "4"
  4681. }, {
  4682. "iri" : "http://www.w3.org/ns/prov#has_query_service",
  4683. "baseIri" : "http://www.w3.org/ns/prov",
  4684. "range" : "5",
  4685. "annotations" : {
  4686. "aq" : [ {
  4687. "identifier" : "aq",
  4688. "language" : "undefined",
  4689. "value" : "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/",
  4690. "type" : "label"
  4691. } ],
  4692. "inverse" : [ {
  4693. "identifier" : "inverse",
  4694. "language" : "undefined",
  4695. "value" : "provenanceQueryServiceOf",
  4696. "type" : "label"
  4697. } ],
  4698. "isDefinedBy" : [ {
  4699. "identifier" : "isDefinedBy",
  4700. "language" : "undefined",
  4701. "value" : "http://www.w3.org/ns/prov#",
  4702. "type" : "iri"
  4703. } ],
  4704. "category" : [ {
  4705. "identifier" : "category",
  4706. "language" : "undefined",
  4707. "value" : "access-and-query",
  4708. "type" : "label"
  4709. } ]
  4710. },
  4711. "label" : {
  4712. "IRI-based" : "has_query_service",
  4713. "undefined" : "hasProvenanceService"
  4714. },
  4715. "domain" : "5",
  4716. "comment" : {
  4717. "en" : "Indicates a provenance query service that can access provenance related to its subject or anchor resource."
  4718. },
  4719. "attributes" : [ "object", "external" ],
  4720. "id" : "6"
  4721. }, {
  4722. "iri" : "http://www.w3.org/ns/prov#qualifiedEndOf",
  4723. "inverse" : "10",
  4724. "baseIri" : "http://www.w3.org/ns/prov",
  4725. "range" : "9",
  4726. "annotations" : {
  4727. "isDefinedBy" : [ {
  4728. "identifier" : "isDefinedBy",
  4729. "language" : "undefined",
  4730. "value" : "http://www.w3.org/ns/prov#",
  4731. "type" : "iri"
  4732. }, {
  4733. "identifier" : "isDefinedBy",
  4734. "language" : "undefined",
  4735. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  4736. "type" : "iri"
  4737. } ]
  4738. },
  4739. "label" : {
  4740. "IRI-based" : "qualifiedEndOf",
  4741. "undefined" : "qualifiedEndOf"
  4742. },
  4743. "domain" : "8",
  4744. "attributes" : [ "object", "external" ],
  4745. "id" : "7"
  4746. }, {
  4747. "iri" : "http://www.w3.org/ns/prov#specializationOf",
  4748. "baseIri" : "http://www.w3.org/ns/prov",
  4749. "range" : "18",
  4750. "annotations" : {
  4751. "inverse" : [ {
  4752. "identifier" : "inverse",
  4753. "language" : "undefined",
  4754. "value" : "generalizationOf",
  4755. "type" : "label"
  4756. }, {
  4757. "identifier" : "inverse",
  4758. "language" : "undefined",
  4759. "value" : "generalizationOf",
  4760. "type" : "label"
  4761. } ],
  4762. "component" : [ {
  4763. "identifier" : "component",
  4764. "language" : "undefined",
  4765. "value" : "alternate",
  4766. "type" : "label"
  4767. }, {
  4768. "identifier" : "component",
  4769. "language" : "undefined",
  4770. "value" : "alternate",
  4771. "type" : "label"
  4772. } ],
  4773. "isDefinedBy" : [ {
  4774. "identifier" : "isDefinedBy",
  4775. "language" : "undefined",
  4776. "value" : "http://www.w3.org/ns/prov#",
  4777. "type" : "iri"
  4778. }, {
  4779. "identifier" : "isDefinedBy",
  4780. "language" : "undefined",
  4781. "value" : "http://www.w3.org/ns/prov-o#",
  4782. "type" : "iri"
  4783. }, {
  4784. "identifier" : "isDefinedBy",
  4785. "language" : "undefined",
  4786. "value" : "http://www.w3.org/ns/prov-o#",
  4787. "type" : "iri"
  4788. }, {
  4789. "identifier" : "isDefinedBy",
  4790. "language" : "undefined",
  4791. "value" : "http://www.w3.org/ns/prov-o#",
  4792. "type" : "iri"
  4793. } ],
  4794. "dm" : [ {
  4795. "identifier" : "dm",
  4796. "language" : "undefined",
  4797. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization",
  4798. "type" : "label"
  4799. }, {
  4800. "identifier" : "dm",
  4801. "language" : "undefined",
  4802. "value" : "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-specialization",
  4803. "type" : "label"
  4804. }, {
  4805. "identifier" : "dm",
  4806. "language" : "undefined",
  4807. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization",
  4808. "type" : "label"
  4809. } ],
  4810. "definition" : [ {
  4811. "identifier" : "definition",
  4812. "language" : "en",
  4813. "value" : "An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.",
  4814. "type" : "label"
  4815. }, {
  4816. "identifier" : "definition",
  4817. "language" : "en",
  4818. "value" : "An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.",
  4819. "type" : "label"
  4820. } ],
  4821. "category" : [ {
  4822. "identifier" : "category",
  4823. "language" : "undefined",
  4824. "value" : "expanded",
  4825. "type" : "label"
  4826. }, {
  4827. "identifier" : "category",
  4828. "language" : "undefined",
  4829. "value" : "expanded",
  4830. "type" : "label"
  4831. } ],
  4832. "constraints" : [ {
  4833. "identifier" : "constraints",
  4834. "language" : "undefined",
  4835. "value" : "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig",
  4836. "type" : "label"
  4837. }, {
  4838. "identifier" : "constraints",
  4839. "language" : "undefined",
  4840. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  4841. "type" : "label"
  4842. }, {
  4843. "identifier" : "constraints",
  4844. "language" : "undefined",
  4845. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  4846. "type" : "label"
  4847. } ],
  4848. "seeAlso" : [ {
  4849. "identifier" : "seeAlso",
  4850. "language" : "undefined",
  4851. "value" : "http://www.w3.org/ns/prov#alternateOf",
  4852. "type" : "iri"
  4853. }, {
  4854. "identifier" : "seeAlso",
  4855. "language" : "undefined",
  4856. "value" : "http://www.w3.org/ns/prov#alternateOf",
  4857. "type" : "iri"
  4858. } ],
  4859. "n" : [ {
  4860. "identifier" : "n",
  4861. "language" : "undefined",
  4862. "value" : "http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-specialization",
  4863. "type" : "label"
  4864. }, {
  4865. "identifier" : "n",
  4866. "language" : "undefined",
  4867. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization",
  4868. "type" : "label"
  4869. }, {
  4870. "identifier" : "n",
  4871. "language" : "undefined",
  4872. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization",
  4873. "type" : "label"
  4874. } ]
  4875. },
  4876. "label" : {
  4877. "IRI-based" : "specializationOf",
  4878. "undefined" : "specializationOf"
  4879. },
  4880. "superproperty" : [ "19", "20" ],
  4881. "domain" : "17",
  4882. "subproperty" : [ "21" ],
  4883. "attributes" : [ "object", "external" ],
  4884. "id" : "16"
  4885. }, {
  4886. "iri" : "http://www.w3.org/ns/prov#hadDelegate",
  4887. "inverse" : "25",
  4888. "baseIri" : "http://www.w3.org/ns/prov",
  4889. "range" : "24",
  4890. "annotations" : {
  4891. "isDefinedBy" : [ {
  4892. "identifier" : "isDefinedBy",
  4893. "language" : "undefined",
  4894. "value" : "http://www.w3.org/ns/prov#",
  4895. "type" : "iri"
  4896. }, {
  4897. "identifier" : "isDefinedBy",
  4898. "language" : "undefined",
  4899. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  4900. "type" : "iri"
  4901. } ]
  4902. },
  4903. "label" : {
  4904. "IRI-based" : "hadDelegate",
  4905. "undefined" : "hadDelegate"
  4906. },
  4907. "domain" : "24",
  4908. "attributes" : [ "object", "external" ],
  4909. "id" : "23"
  4910. }, {
  4911. "iri" : "http://www.w3.org/2002/07/owl#topObjectProperty",
  4912. "baseIri" : "http://www.w3.org/2002/07/owl",
  4913. "range" : "5",
  4914. "label" : {
  4915. "IRI-based" : "topObjectProperty"
  4916. },
  4917. "domain" : "5",
  4918. "subproperty" : [ "16" ],
  4919. "attributes" : [ "object", "external" ],
  4920. "id" : "20"
  4921. }, {
  4922. "iri" : "http://www.w3.org/ns/prov#atLocation",
  4923. "baseIri" : "http://www.w3.org/ns/prov",
  4924. "range" : "30",
  4925. "annotations" : {
  4926. "sharesDefinitionWith" : [ {
  4927. "identifier" : "sharesDefinitionWith",
  4928. "language" : "undefined",
  4929. "value" : "http://www.w3.org/ns/prov#Location",
  4930. "type" : "iri"
  4931. }, {
  4932. "identifier" : "sharesDefinitionWith",
  4933. "language" : "undefined",
  4934. "value" : "http://www.w3.org/ns/prov#Location",
  4935. "type" : "iri"
  4936. } ],
  4937. "editorialNote" : [ {
  4938. "identifier" : "editorialNote",
  4939. "language" : "en",
  4940. "value" : "The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes.",
  4941. "type" : "label"
  4942. }, {
  4943. "identifier" : "editorialNote",
  4944. "language" : "en",
  4945. "value" : "This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair).",
  4946. "type" : "label"
  4947. }, {
  4948. "identifier" : "editorialNote",
  4949. "language" : "en",
  4950. "value" : "The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes.",
  4951. "type" : "label"
  4952. }, {
  4953. "identifier" : "editorialNote",
  4954. "language" : "en",
  4955. "value" : "This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair).",
  4956. "type" : "label"
  4957. } ],
  4958. "inverse" : [ {
  4959. "identifier" : "inverse",
  4960. "language" : "undefined",
  4961. "value" : "locationOf",
  4962. "type" : "label"
  4963. }, {
  4964. "identifier" : "inverse",
  4965. "language" : "undefined",
  4966. "value" : "locationOf",
  4967. "type" : "label"
  4968. } ],
  4969. "isDefinedBy" : [ {
  4970. "identifier" : "isDefinedBy",
  4971. "language" : "undefined",
  4972. "value" : "http://www.w3.org/ns/prov-o#",
  4973. "type" : "iri"
  4974. }, {
  4975. "identifier" : "isDefinedBy",
  4976. "language" : "undefined",
  4977. "value" : "http://www.w3.org/ns/prov-o#",
  4978. "type" : "iri"
  4979. }, {
  4980. "identifier" : "isDefinedBy",
  4981. "language" : "undefined",
  4982. "value" : "http://www.w3.org/ns/prov-o#",
  4983. "type" : "iri"
  4984. } ],
  4985. "category" : [ {
  4986. "identifier" : "category",
  4987. "language" : "undefined",
  4988. "value" : "expanded",
  4989. "type" : "label"
  4990. }, {
  4991. "identifier" : "category",
  4992. "language" : "undefined",
  4993. "value" : "expanded",
  4994. "type" : "label"
  4995. } ]
  4996. },
  4997. "label" : {
  4998. "IRI-based" : "atLocation",
  4999. "undefined" : "atLocation"
  5000. },
  5001. "domain" : "29",
  5002. "comment" : {
  5003. "en" : "The Location of any resource.",
  5004. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  5005. },
  5006. "attributes" : [ "object", "external" ],
  5007. "id" : "28"
  5008. }, {
  5009. "iri" : "http://www.w3.org/ns/prov#qualifiedInsertion",
  5010. "baseIri" : "http://www.w3.org/ns/prov",
  5011. "range" : "33",
  5012. "annotations" : {
  5013. "component" : [ {
  5014. "identifier" : "component",
  5015. "language" : "undefined",
  5016. "value" : "collections",
  5017. "type" : "label"
  5018. }, {
  5019. "identifier" : "component",
  5020. "language" : "undefined",
  5021. "value" : "collections",
  5022. "type" : "label"
  5023. } ],
  5024. "isDefinedBy" : [ {
  5025. "identifier" : "isDefinedBy",
  5026. "language" : "undefined",
  5027. "value" : "http://www.w3.org/ns/prov#",
  5028. "type" : "iri"
  5029. }, {
  5030. "identifier" : "isDefinedBy",
  5031. "language" : "undefined",
  5032. "value" : "http://www.w3.org/ns/prov#",
  5033. "type" : "iri"
  5034. } ],
  5035. "dm" : [ {
  5036. "identifier" : "dm",
  5037. "language" : "undefined",
  5038. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  5039. "type" : "label"
  5040. }, {
  5041. "identifier" : "dm",
  5042. "language" : "undefined",
  5043. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  5044. "type" : "label"
  5045. } ],
  5046. "definition" : [ {
  5047. "identifier" : "definition",
  5048. "language" : "undefined",
  5049. "value" : "prov:qualifiedInsertion shows the details of an insertion, in particular the inserted key-entity pairs.",
  5050. "type" : "label"
  5051. }, {
  5052. "identifier" : "definition",
  5053. "language" : "undefined",
  5054. "value" : "prov:qualifiedInsertion shows the details of an insertion, in particular the inserted key-entity pairs.",
  5055. "type" : "label"
  5056. } ],
  5057. "category" : [ {
  5058. "identifier" : "category",
  5059. "language" : "undefined",
  5060. "value" : "collections",
  5061. "type" : "label"
  5062. }, {
  5063. "identifier" : "category",
  5064. "language" : "undefined",
  5065. "value" : "collections",
  5066. "type" : "label"
  5067. } ],
  5068. "constraints" : [ {
  5069. "identifier" : "constraints",
  5070. "language" : "undefined",
  5071. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  5072. "type" : "label"
  5073. }, {
  5074. "identifier" : "constraints",
  5075. "language" : "undefined",
  5076. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  5077. "type" : "label"
  5078. } ],
  5079. "n" : [ {
  5080. "identifier" : "n",
  5081. "language" : "undefined",
  5082. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  5083. "type" : "label"
  5084. }, {
  5085. "identifier" : "n",
  5086. "language" : "undefined",
  5087. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  5088. "type" : "label"
  5089. } ]
  5090. },
  5091. "label" : {
  5092. "IRI-based" : "qualifiedInsertion",
  5093. "undefined" : "qualifiedInsertion"
  5094. },
  5095. "superproperty" : [ "34" ],
  5096. "domain" : "32",
  5097. "attributes" : [ "object", "external" ],
  5098. "id" : "31"
  5099. }, {
  5100. "iri" : "http://www.w3.org/ns/prov#derivedByInsertionFrom",
  5101. "baseIri" : "http://www.w3.org/ns/prov",
  5102. "range" : "32",
  5103. "annotations" : {
  5104. "component" : [ {
  5105. "identifier" : "component",
  5106. "language" : "undefined",
  5107. "value" : "collections",
  5108. "type" : "label"
  5109. }, {
  5110. "identifier" : "component",
  5111. "language" : "undefined",
  5112. "value" : "collections",
  5113. "type" : "label"
  5114. } ],
  5115. "isDefinedBy" : [ {
  5116. "identifier" : "isDefinedBy",
  5117. "language" : "undefined",
  5118. "value" : "http://www.w3.org/ns/prov#",
  5119. "type" : "iri"
  5120. }, {
  5121. "identifier" : "isDefinedBy",
  5122. "language" : "undefined",
  5123. "value" : "http://www.w3.org/ns/prov#",
  5124. "type" : "iri"
  5125. } ],
  5126. "dm" : [ {
  5127. "identifier" : "dm",
  5128. "language" : "undefined",
  5129. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  5130. "type" : "label"
  5131. }, {
  5132. "identifier" : "dm",
  5133. "language" : "undefined",
  5134. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  5135. "type" : "label"
  5136. } ],
  5137. "definition" : [ {
  5138. "identifier" : "definition",
  5139. "language" : "undefined",
  5140. "value" : "The dictionary was derived from the other by insertion. Can be qualified with prov:qualifiedInsertion, which shows details of the insertion, in particular the inserted key-entity pairs.",
  5141. "type" : "label"
  5142. }, {
  5143. "identifier" : "definition",
  5144. "language" : "undefined",
  5145. "value" : "The dictionary was derived from the other by insertion. Can be qualified with prov:qualifiedInsertion, which shows details of the insertion, in particular the inserted key-entity pairs.",
  5146. "type" : "label"
  5147. } ],
  5148. "category" : [ {
  5149. "identifier" : "category",
  5150. "language" : "undefined",
  5151. "value" : "collections",
  5152. "type" : "label"
  5153. }, {
  5154. "identifier" : "category",
  5155. "language" : "undefined",
  5156. "value" : "collections",
  5157. "type" : "label"
  5158. } ],
  5159. "constraints" : [ {
  5160. "identifier" : "constraints",
  5161. "language" : "undefined",
  5162. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  5163. "type" : "label"
  5164. }, {
  5165. "identifier" : "constraints",
  5166. "language" : "undefined",
  5167. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  5168. "type" : "label"
  5169. } ],
  5170. "n" : [ {
  5171. "identifier" : "n",
  5172. "language" : "undefined",
  5173. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  5174. "type" : "label"
  5175. }, {
  5176. "identifier" : "n",
  5177. "language" : "undefined",
  5178. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  5179. "type" : "label"
  5180. } ]
  5181. },
  5182. "label" : {
  5183. "IRI-based" : "derivedByInsertionFrom",
  5184. "undefined" : "derivedByInsertionFrom"
  5185. },
  5186. "superproperty" : [ "39" ],
  5187. "domain" : "32",
  5188. "attributes" : [ "object", "external" ],
  5189. "id" : "38"
  5190. }, {
  5191. "iri" : "http://www.w3.org/ns/prov#endedAtTime",
  5192. "baseIri" : "http://www.w3.org/ns/prov",
  5193. "range" : "41",
  5194. "annotations" : {
  5195. "editorialNote" : [ {
  5196. "identifier" : "editorialNote",
  5197. "language" : "en",
  5198. "value" : "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime.",
  5199. "type" : "label"
  5200. }, {
  5201. "identifier" : "editorialNote",
  5202. "language" : "en",
  5203. "value" : "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime.",
  5204. "type" : "label"
  5205. } ],
  5206. "component" : [ {
  5207. "identifier" : "component",
  5208. "language" : "undefined",
  5209. "value" : "entities-activities",
  5210. "type" : "label"
  5211. }, {
  5212. "identifier" : "component",
  5213. "language" : "undefined",
  5214. "value" : "entities-activities",
  5215. "type" : "label"
  5216. } ],
  5217. "isDefinedBy" : [ {
  5218. "identifier" : "isDefinedBy",
  5219. "language" : "undefined",
  5220. "value" : "http://www.w3.org/ns/prov-o#",
  5221. "type" : "iri"
  5222. }, {
  5223. "identifier" : "isDefinedBy",
  5224. "language" : "undefined",
  5225. "value" : "http://www.w3.org/ns/prov-o#",
  5226. "type" : "iri"
  5227. } ],
  5228. "category" : [ {
  5229. "identifier" : "category",
  5230. "language" : "undefined",
  5231. "value" : "starting-point",
  5232. "type" : "label"
  5233. }, {
  5234. "identifier" : "category",
  5235. "language" : "undefined",
  5236. "value" : "starting-point",
  5237. "type" : "label"
  5238. } ],
  5239. "qualifiedForm" : [ {
  5240. "identifier" : "qualifiedForm",
  5241. "language" : "undefined",
  5242. "value" : "http://www.w3.org/ns/prov#End",
  5243. "type" : "iri"
  5244. }, {
  5245. "identifier" : "qualifiedForm",
  5246. "language" : "undefined",
  5247. "value" : "http://www.w3.org/ns/prov#atTime",
  5248. "type" : "iri"
  5249. }, {
  5250. "identifier" : "qualifiedForm",
  5251. "language" : "undefined",
  5252. "value" : "http://www.w3.org/ns/prov#atTime",
  5253. "type" : "iri"
  5254. }, {
  5255. "identifier" : "qualifiedForm",
  5256. "language" : "undefined",
  5257. "value" : "http://www.w3.org/ns/prov#End",
  5258. "type" : "iri"
  5259. } ]
  5260. },
  5261. "label" : {
  5262. "IRI-based" : "endedAtTime",
  5263. "undefined" : "endedAtTime"
  5264. },
  5265. "domain" : "9",
  5266. "comment" : {
  5267. "en" : "The time at which an activity ended. See also prov:startedAtTime."
  5268. },
  5269. "attributes" : [ "datatype", "external" ],
  5270. "id" : "40"
  5271. }, {
  5272. "iri" : "http://www.w3.org/ns/prov#agentOfInfluence",
  5273. "inverse" : "44",
  5274. "baseIri" : "http://www.w3.org/ns/prov",
  5275. "range" : "43",
  5276. "annotations" : {
  5277. "isDefinedBy" : [ {
  5278. "identifier" : "isDefinedBy",
  5279. "language" : "undefined",
  5280. "value" : "http://www.w3.org/ns/prov#",
  5281. "type" : "iri"
  5282. }, {
  5283. "identifier" : "isDefinedBy",
  5284. "language" : "undefined",
  5285. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  5286. "type" : "iri"
  5287. } ]
  5288. },
  5289. "label" : {
  5290. "IRI-based" : "agentOfInfluence",
  5291. "undefined" : "agentOfInfluence"
  5292. },
  5293. "domain" : "24",
  5294. "attributes" : [ "object", "external" ],
  5295. "id" : "42"
  5296. }, {
  5297. "iri" : "http://www.w3.org/ns/prov#qualifiedCommunication",
  5298. "baseIri" : "http://www.w3.org/ns/prov",
  5299. "range" : "27",
  5300. "annotations" : {
  5301. "sharesDefinitionWith" : [ {
  5302. "identifier" : "sharesDefinitionWith",
  5303. "language" : "undefined",
  5304. "value" : "http://www.w3.org/ns/prov#Communication",
  5305. "type" : "iri"
  5306. }, {
  5307. "identifier" : "sharesDefinitionWith",
  5308. "language" : "undefined",
  5309. "value" : "http://www.w3.org/ns/prov#Communication",
  5310. "type" : "iri"
  5311. } ],
  5312. "inverse" : [ {
  5313. "identifier" : "inverse",
  5314. "language" : "undefined",
  5315. "value" : "qualifiedCommunicationOf",
  5316. "type" : "label"
  5317. }, {
  5318. "identifier" : "inverse",
  5319. "language" : "undefined",
  5320. "value" : "qualifiedCommunicationOf",
  5321. "type" : "label"
  5322. } ],
  5323. "component" : [ {
  5324. "identifier" : "component",
  5325. "language" : "undefined",
  5326. "value" : "entities-activities",
  5327. "type" : "label"
  5328. }, {
  5329. "identifier" : "component",
  5330. "language" : "undefined",
  5331. "value" : "entities-activities",
  5332. "type" : "label"
  5333. } ],
  5334. "isDefinedBy" : [ {
  5335. "identifier" : "isDefinedBy",
  5336. "language" : "undefined",
  5337. "value" : "http://www.w3.org/ns/prov-o#",
  5338. "type" : "iri"
  5339. }, {
  5340. "identifier" : "isDefinedBy",
  5341. "language" : "undefined",
  5342. "value" : "http://www.w3.org/ns/prov-o#",
  5343. "type" : "iri"
  5344. }, {
  5345. "identifier" : "isDefinedBy",
  5346. "language" : "undefined",
  5347. "value" : "http://www.w3.org/ns/prov-o#",
  5348. "type" : "iri"
  5349. } ],
  5350. "category" : [ {
  5351. "identifier" : "category",
  5352. "language" : "undefined",
  5353. "value" : "qualified",
  5354. "type" : "label"
  5355. }, {
  5356. "identifier" : "category",
  5357. "language" : "undefined",
  5358. "value" : "qualified",
  5359. "type" : "label"
  5360. } ],
  5361. "qualifiedForm" : [ {
  5362. "identifier" : "qualifiedForm",
  5363. "language" : "undefined",
  5364. "value" : "http://www.w3.org/ns/prov#Communication",
  5365. "type" : "iri"
  5366. }, {
  5367. "identifier" : "qualifiedForm",
  5368. "language" : "undefined",
  5369. "value" : "http://www.w3.org/ns/prov#Communication",
  5370. "type" : "iri"
  5371. } ]
  5372. },
  5373. "label" : {
  5374. "IRI-based" : "qualifiedCommunication",
  5375. "undefined" : "qualifiedCommunication"
  5376. },
  5377. "superproperty" : [ "3" ],
  5378. "domain" : "9",
  5379. "comment" : {
  5380. "en" : "If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication; prov:activity :a; :foo :bar ]."
  5381. },
  5382. "attributes" : [ "object", "external" ],
  5383. "id" : "46"
  5384. }, {
  5385. "iri" : "http://www.w3.org/ns/prov#qualifiedCommunicationOf",
  5386. "inverse" : "46",
  5387. "baseIri" : "http://www.w3.org/ns/prov",
  5388. "range" : "9",
  5389. "annotations" : {
  5390. "isDefinedBy" : [ {
  5391. "identifier" : "isDefinedBy",
  5392. "language" : "undefined",
  5393. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  5394. "type" : "iri"
  5395. }, {
  5396. "identifier" : "isDefinedBy",
  5397. "language" : "undefined",
  5398. "value" : "http://www.w3.org/ns/prov#",
  5399. "type" : "iri"
  5400. } ]
  5401. },
  5402. "label" : {
  5403. "IRI-based" : "qualifiedCommunicationOf",
  5404. "undefined" : "qualifiedCommunicationOf"
  5405. },
  5406. "domain" : "27",
  5407. "attributes" : [ "object", "external" ],
  5408. "id" : "47"
  5409. }, {
  5410. "iri" : "http://www.w3.org/ns/prov#generatedAtTime",
  5411. "baseIri" : "http://www.w3.org/ns/prov",
  5412. "range" : "49",
  5413. "annotations" : {
  5414. "editorialNote" : [ {
  5415. "identifier" : "editorialNote",
  5416. "language" : "en",
  5417. "value" : "It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime.",
  5418. "type" : "label"
  5419. }, {
  5420. "identifier" : "editorialNote",
  5421. "language" : "en",
  5422. "value" : "It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime.",
  5423. "type" : "label"
  5424. } ],
  5425. "component" : [ {
  5426. "identifier" : "component",
  5427. "language" : "undefined",
  5428. "value" : "entities-activities",
  5429. "type" : "label"
  5430. }, {
  5431. "identifier" : "component",
  5432. "language" : "undefined",
  5433. "value" : "entities-activities",
  5434. "type" : "label"
  5435. } ],
  5436. "isDefinedBy" : [ {
  5437. "identifier" : "isDefinedBy",
  5438. "language" : "undefined",
  5439. "value" : "http://www.w3.org/ns/prov-o#",
  5440. "type" : "iri"
  5441. }, {
  5442. "identifier" : "isDefinedBy",
  5443. "language" : "undefined",
  5444. "value" : "http://www.w3.org/ns/prov-o#",
  5445. "type" : "iri"
  5446. } ],
  5447. "category" : [ {
  5448. "identifier" : "category",
  5449. "language" : "undefined",
  5450. "value" : "expanded",
  5451. "type" : "label"
  5452. }, {
  5453. "identifier" : "category",
  5454. "language" : "undefined",
  5455. "value" : "expanded",
  5456. "type" : "label"
  5457. } ],
  5458. "qualifiedForm" : [ {
  5459. "identifier" : "qualifiedForm",
  5460. "language" : "undefined",
  5461. "value" : "http://www.w3.org/ns/prov#atTime",
  5462. "type" : "iri"
  5463. }, {
  5464. "identifier" : "qualifiedForm",
  5465. "language" : "undefined",
  5466. "value" : "http://www.w3.org/ns/prov#atTime",
  5467. "type" : "iri"
  5468. }, {
  5469. "identifier" : "qualifiedForm",
  5470. "language" : "undefined",
  5471. "value" : "http://www.w3.org/ns/prov#Generation",
  5472. "type" : "iri"
  5473. }, {
  5474. "identifier" : "qualifiedForm",
  5475. "language" : "undefined",
  5476. "value" : "http://www.w3.org/ns/prov#Generation",
  5477. "type" : "iri"
  5478. } ]
  5479. },
  5480. "label" : {
  5481. "IRI-based" : "generatedAtTime",
  5482. "undefined" : "generatedAtTime"
  5483. },
  5484. "domain" : "17",
  5485. "comment" : {
  5486. "en" : "The time at which an entity was completely created and is available for use."
  5487. },
  5488. "attributes" : [ "datatype", "external" ],
  5489. "id" : "48"
  5490. }, {
  5491. "iri" : "http://www.w3.org/ns/prov#entityOfInfluence",
  5492. "inverse" : "57",
  5493. "baseIri" : "http://www.w3.org/ns/prov",
  5494. "range" : "56",
  5495. "annotations" : {
  5496. "isDefinedBy" : [ {
  5497. "identifier" : "isDefinedBy",
  5498. "language" : "undefined",
  5499. "value" : "http://www.w3.org/ns/prov#",
  5500. "type" : "iri"
  5501. }, {
  5502. "identifier" : "isDefinedBy",
  5503. "language" : "undefined",
  5504. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  5505. "type" : "iri"
  5506. } ]
  5507. },
  5508. "label" : {
  5509. "IRI-based" : "entityOfInfluence",
  5510. "undefined" : "entityOfInfluence"
  5511. },
  5512. "domain" : "17",
  5513. "attributes" : [ "object", "external" ],
  5514. "id" : "55"
  5515. }, {
  5516. "iri" : "http://www.w3.org/ns/prov#value",
  5517. "baseIri" : "http://www.w3.org/ns/prov",
  5518. "range" : "59",
  5519. "annotations" : {
  5520. "editorialNote" : [ {
  5521. "identifier" : "editorialNote",
  5522. "language" : "en",
  5523. "value" : "This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values').",
  5524. "type" : "label"
  5525. }, {
  5526. "identifier" : "editorialNote",
  5527. "language" : "en",
  5528. "value" : "This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values').",
  5529. "type" : "label"
  5530. }, {
  5531. "identifier" : "editorialNote",
  5532. "language" : "undefined",
  5533. "value" : "The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue",
  5534. "type" : "label"
  5535. }, {
  5536. "identifier" : "editorialNote",
  5537. "language" : "undefined",
  5538. "value" : "The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue",
  5539. "type" : "label"
  5540. } ],
  5541. "component" : [ {
  5542. "identifier" : "component",
  5543. "language" : "undefined",
  5544. "value" : "entities-activities",
  5545. "type" : "label"
  5546. }, {
  5547. "identifier" : "component",
  5548. "language" : "undefined",
  5549. "value" : "entities-activities",
  5550. "type" : "label"
  5551. } ],
  5552. "isDefinedBy" : [ {
  5553. "identifier" : "isDefinedBy",
  5554. "language" : "undefined",
  5555. "value" : "http://www.w3.org/ns/prov-o#",
  5556. "type" : "iri"
  5557. }, {
  5558. "identifier" : "isDefinedBy",
  5559. "language" : "undefined",
  5560. "value" : "http://www.w3.org/ns/prov-o#",
  5561. "type" : "iri"
  5562. } ],
  5563. "dm" : [ {
  5564. "identifier" : "dm",
  5565. "language" : "undefined",
  5566. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value",
  5567. "type" : "label"
  5568. }, {
  5569. "identifier" : "dm",
  5570. "language" : "undefined",
  5571. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value",
  5572. "type" : "label"
  5573. } ],
  5574. "definition" : [ {
  5575. "identifier" : "definition",
  5576. "language" : "en",
  5577. "value" : "Provides a value that is a direct representation of an entity.",
  5578. "type" : "label"
  5579. }, {
  5580. "identifier" : "definition",
  5581. "language" : "en",
  5582. "value" : "Provides a value that is a direct representation of an entity.",
  5583. "type" : "label"
  5584. } ],
  5585. "category" : [ {
  5586. "identifier" : "category",
  5587. "language" : "undefined",
  5588. "value" : "expanded",
  5589. "type" : "label"
  5590. }, {
  5591. "identifier" : "category",
  5592. "language" : "undefined",
  5593. "value" : "expanded",
  5594. "type" : "label"
  5595. } ]
  5596. },
  5597. "label" : {
  5598. "IRI-based" : "value",
  5599. "undefined" : "value"
  5600. },
  5601. "domain" : "17",
  5602. "attributes" : [ "datatype", "external" ],
  5603. "id" : "58"
  5604. }, {
  5605. "iri" : "http://www.w3.org/ns/prov#invalidated",
  5606. "inverse" : "61",
  5607. "baseIri" : "http://www.w3.org/ns/prov",
  5608. "range" : "17",
  5609. "annotations" : {
  5610. "sharesDefinitionWith" : [ {
  5611. "identifier" : "sharesDefinitionWith",
  5612. "language" : "undefined",
  5613. "value" : "http://www.w3.org/ns/prov#Invalidation",
  5614. "type" : "iri"
  5615. }, {
  5616. "identifier" : "sharesDefinitionWith",
  5617. "language" : "undefined",
  5618. "value" : "http://www.w3.org/ns/prov#Invalidation",
  5619. "type" : "iri"
  5620. } ],
  5621. "inverse" : [ {
  5622. "identifier" : "inverse",
  5623. "language" : "undefined",
  5624. "value" : "wasInvalidatedBy",
  5625. "type" : "label"
  5626. }, {
  5627. "identifier" : "inverse",
  5628. "language" : "undefined",
  5629. "value" : "wasInvalidatedBy",
  5630. "type" : "label"
  5631. } ],
  5632. "editorialNote" : [ {
  5633. "identifier" : "editorialNote",
  5634. "language" : "en",
  5635. "value" : "prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.",
  5636. "type" : "label"
  5637. }, {
  5638. "identifier" : "editorialNote",
  5639. "language" : "en",
  5640. "value" : "prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.",
  5641. "type" : "label"
  5642. } ],
  5643. "component" : [ {
  5644. "identifier" : "component",
  5645. "language" : "undefined",
  5646. "value" : "entities-activities",
  5647. "type" : "label"
  5648. }, {
  5649. "identifier" : "component",
  5650. "language" : "undefined",
  5651. "value" : "entities-activities",
  5652. "type" : "label"
  5653. } ],
  5654. "isDefinedBy" : [ {
  5655. "identifier" : "isDefinedBy",
  5656. "language" : "undefined",
  5657. "value" : "http://www.w3.org/ns/prov-o#",
  5658. "type" : "iri"
  5659. }, {
  5660. "identifier" : "isDefinedBy",
  5661. "language" : "undefined",
  5662. "value" : "http://www.w3.org/ns/prov-o#",
  5663. "type" : "iri"
  5664. }, {
  5665. "identifier" : "isDefinedBy",
  5666. "language" : "undefined",
  5667. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  5668. "type" : "iri"
  5669. }, {
  5670. "identifier" : "isDefinedBy",
  5671. "language" : "undefined",
  5672. "value" : "http://www.w3.org/ns/prov-o#",
  5673. "type" : "iri"
  5674. }, {
  5675. "identifier" : "isDefinedBy",
  5676. "language" : "undefined",
  5677. "value" : "http://www.w3.org/ns/prov#",
  5678. "type" : "iri"
  5679. } ],
  5680. "category" : [ {
  5681. "identifier" : "category",
  5682. "language" : "undefined",
  5683. "value" : "expanded",
  5684. "type" : "label"
  5685. }, {
  5686. "identifier" : "category",
  5687. "language" : "undefined",
  5688. "value" : "expanded",
  5689. "type" : "label"
  5690. } ]
  5691. },
  5692. "label" : {
  5693. "IRI-based" : "invalidated",
  5694. "undefined" : "invalidated"
  5695. },
  5696. "superproperty" : [ "62" ],
  5697. "domain" : "9",
  5698. "attributes" : [ "object", "external" ],
  5699. "id" : "60"
  5700. }, {
  5701. "iri" : "http://www.w3.org/ns/prov#pingback",
  5702. "baseIri" : "http://www.w3.org/ns/prov",
  5703. "range" : "5",
  5704. "annotations" : {
  5705. "aq" : [ {
  5706. "identifier" : "aq",
  5707. "language" : "undefined",
  5708. "value" : "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-pingback",
  5709. "type" : "label"
  5710. } ],
  5711. "isDefinedBy" : [ {
  5712. "identifier" : "isDefinedBy",
  5713. "language" : "undefined",
  5714. "value" : "http://www.w3.org/ns/prov#",
  5715. "type" : "iri"
  5716. } ],
  5717. "category" : [ {
  5718. "identifier" : "category",
  5719. "language" : "undefined",
  5720. "value" : "access-and-query",
  5721. "type" : "label"
  5722. } ]
  5723. },
  5724. "label" : {
  5725. "IRI-based" : "pingback",
  5726. "undefined" : "provenance pingback"
  5727. },
  5728. "domain" : "5",
  5729. "comment" : {
  5730. "en" : "Relates a resource to a provenance pingback service that may receive additional provenance links about the resource."
  5731. },
  5732. "attributes" : [ "object", "external" ],
  5733. "id" : "63"
  5734. }, {
  5735. "iri" : "http://www.w3.org/ns/prov#has_anchor",
  5736. "baseIri" : "http://www.w3.org/ns/prov",
  5737. "range" : "5",
  5738. "annotations" : {
  5739. "aq" : [ {
  5740. "identifier" : "aq",
  5741. "language" : "undefined",
  5742. "value" : "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html",
  5743. "type" : "label"
  5744. } ],
  5745. "inverse" : [ {
  5746. "identifier" : "inverse",
  5747. "language" : "undefined",
  5748. "value" : "anchorOf",
  5749. "type" : "label"
  5750. } ],
  5751. "isDefinedBy" : [ {
  5752. "identifier" : "isDefinedBy",
  5753. "language" : "undefined",
  5754. "value" : "http://www.w3.org/ns/prov#",
  5755. "type" : "iri"
  5756. } ],
  5757. "category" : [ {
  5758. "identifier" : "category",
  5759. "language" : "undefined",
  5760. "value" : "access-and-query",
  5761. "type" : "label"
  5762. } ]
  5763. },
  5764. "label" : {
  5765. "IRI-based" : "has_anchor",
  5766. "undefined" : "has_anchor"
  5767. },
  5768. "domain" : "5",
  5769. "comment" : {
  5770. "en" : "Indicates anchor URI for a potentially dynamic resource instance."
  5771. },
  5772. "attributes" : [ "object", "external" ],
  5773. "id" : "64"
  5774. }, {
  5775. "iri" : "http://www.w3.org/ns/prov#qualifiedDelegation",
  5776. "baseIri" : "http://www.w3.org/ns/prov",
  5777. "range" : "72",
  5778. "annotations" : {
  5779. "inverse" : [ {
  5780. "identifier" : "inverse",
  5781. "language" : "undefined",
  5782. "value" : "qualifiedDelegationOf",
  5783. "type" : "label"
  5784. }, {
  5785. "identifier" : "inverse",
  5786. "language" : "undefined",
  5787. "value" : "qualifiedDelegationOf",
  5788. "type" : "label"
  5789. } ],
  5790. "sharesDefinitionWith" : [ {
  5791. "identifier" : "sharesDefinitionWith",
  5792. "language" : "undefined",
  5793. "value" : "http://www.w3.org/ns/prov#Delegation",
  5794. "type" : "iri"
  5795. }, {
  5796. "identifier" : "sharesDefinitionWith",
  5797. "language" : "undefined",
  5798. "value" : "http://www.w3.org/ns/prov#Delegation",
  5799. "type" : "iri"
  5800. } ],
  5801. "component" : [ {
  5802. "identifier" : "component",
  5803. "language" : "undefined",
  5804. "value" : "agents-responsibility",
  5805. "type" : "label"
  5806. }, {
  5807. "identifier" : "component",
  5808. "language" : "undefined",
  5809. "value" : "agents-responsibility",
  5810. "type" : "label"
  5811. } ],
  5812. "isDefinedBy" : [ {
  5813. "identifier" : "isDefinedBy",
  5814. "language" : "undefined",
  5815. "value" : "http://www.w3.org/ns/prov-o#",
  5816. "type" : "iri"
  5817. }, {
  5818. "identifier" : "isDefinedBy",
  5819. "language" : "undefined",
  5820. "value" : "http://www.w3.org/ns/prov-o#",
  5821. "type" : "iri"
  5822. }, {
  5823. "identifier" : "isDefinedBy",
  5824. "language" : "undefined",
  5825. "value" : "http://www.w3.org/ns/prov-o#",
  5826. "type" : "iri"
  5827. } ],
  5828. "unqualifiedForm" : [ {
  5829. "identifier" : "unqualifiedForm",
  5830. "language" : "undefined",
  5831. "value" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  5832. "type" : "iri"
  5833. }, {
  5834. "identifier" : "unqualifiedForm",
  5835. "language" : "undefined",
  5836. "value" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  5837. "type" : "iri"
  5838. } ],
  5839. "category" : [ {
  5840. "identifier" : "category",
  5841. "language" : "undefined",
  5842. "value" : "qualified",
  5843. "type" : "label"
  5844. }, {
  5845. "identifier" : "category",
  5846. "language" : "undefined",
  5847. "value" : "qualified",
  5848. "type" : "label"
  5849. } ]
  5850. },
  5851. "label" : {
  5852. "IRI-based" : "qualifiedDelegation",
  5853. "undefined" : "qualifiedDelegation"
  5854. },
  5855. "superproperty" : [ "3" ],
  5856. "domain" : "24",
  5857. "comment" : {
  5858. "en" : "If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility; prov:agent :ag; :foo :bar ]."
  5859. },
  5860. "attributes" : [ "object", "external" ],
  5861. "id" : "71"
  5862. }, {
  5863. "iri" : "http://www.w3.org/ns/prov#provenanceUriTemplate",
  5864. "baseIri" : "http://www.w3.org/ns/prov",
  5865. "range" : "75",
  5866. "annotations" : {
  5867. "aq" : [ {
  5868. "identifier" : "aq",
  5869. "language" : "undefined",
  5870. "value" : "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/",
  5871. "type" : "label"
  5872. } ],
  5873. "isDefinedBy" : [ {
  5874. "identifier" : "isDefinedBy",
  5875. "language" : "undefined",
  5876. "value" : "http://www.w3.org/ns/prov#",
  5877. "type" : "iri"
  5878. } ],
  5879. "category" : [ {
  5880. "identifier" : "category",
  5881. "language" : "undefined",
  5882. "value" : "access-and-query",
  5883. "type" : "label"
  5884. } ]
  5885. },
  5886. "label" : {
  5887. "IRI-based" : "provenanceUriTemplate",
  5888. "undefined" : "provenanceUriTemplate"
  5889. },
  5890. "domain" : "5",
  5891. "comment" : {
  5892. "en" : "Relates a provenance service to a URI template string for constructing provenance-URIs."
  5893. },
  5894. "attributes" : [ "datatype", "external" ],
  5895. "id" : "74"
  5896. }, {
  5897. "iri" : "http://www.w3.org/ns/prov#mentionOf",
  5898. "baseIri" : "http://www.w3.org/ns/prov",
  5899. "range" : "17",
  5900. "annotations" : {
  5901. "inverse" : [ {
  5902. "identifier" : "inverse",
  5903. "language" : "undefined",
  5904. "value" : "hadMention",
  5905. "type" : "label"
  5906. }, {
  5907. "identifier" : "inverse",
  5908. "language" : "undefined",
  5909. "value" : "hadMention",
  5910. "type" : "label"
  5911. } ],
  5912. "isDefinedBy" : [ {
  5913. "identifier" : "isDefinedBy",
  5914. "language" : "undefined",
  5915. "value" : "http://www.w3.org/ns/prov-links#",
  5916. "type" : "iri"
  5917. }, {
  5918. "identifier" : "isDefinedBy",
  5919. "language" : "undefined",
  5920. "value" : "http://www.w3.org/ns/prov-links#",
  5921. "type" : "iri"
  5922. } ]
  5923. },
  5924. "label" : {
  5925. "IRI-based" : "mentionOf",
  5926. "undefined" : "mentionOf"
  5927. },
  5928. "superproperty" : [ "16" ],
  5929. "domain" : "17",
  5930. "comment" : {
  5931. "en" : "prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle.\n\nprov:asInBundle is used to cite the Bundle in which the generalization was mentioned."
  5932. },
  5933. "attributes" : [ "object", "external" ],
  5934. "id" : "21"
  5935. }, {
  5936. "iri" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  5937. "baseIri" : "http://www.w3.org/ns/prov",
  5938. "range" : "17",
  5939. "annotations" : {
  5940. "inverse" : [ {
  5941. "identifier" : "inverse",
  5942. "language" : "undefined",
  5943. "value" : "hadDerivation",
  5944. "type" : "label"
  5945. }, {
  5946. "identifier" : "inverse",
  5947. "language" : "undefined",
  5948. "value" : "hadDerivation",
  5949. "type" : "label"
  5950. } ],
  5951. "component" : [ {
  5952. "identifier" : "component",
  5953. "language" : "undefined",
  5954. "value" : "derivations",
  5955. "type" : "label"
  5956. }, {
  5957. "identifier" : "component",
  5958. "language" : "undefined",
  5959. "value" : "derivations",
  5960. "type" : "label"
  5961. } ],
  5962. "isDefinedBy" : [ {
  5963. "identifier" : "isDefinedBy",
  5964. "language" : "undefined",
  5965. "value" : "http://www.w3.org/ns/prov-o#",
  5966. "type" : "iri"
  5967. }, {
  5968. "identifier" : "isDefinedBy",
  5969. "language" : "undefined",
  5970. "value" : "http://www.w3.org/ns/prov-o#",
  5971. "type" : "iri"
  5972. }, {
  5973. "identifier" : "isDefinedBy",
  5974. "language" : "undefined",
  5975. "value" : "http://www.w3.org/ns/prov-o#",
  5976. "type" : "iri"
  5977. } ],
  5978. "definition" : [ {
  5979. "identifier" : "definition",
  5980. "language" : "en",
  5981. "value" : "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.",
  5982. "type" : "label"
  5983. }, {
  5984. "identifier" : "definition",
  5985. "language" : "en",
  5986. "value" : "A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.",
  5987. "type" : "label"
  5988. } ],
  5989. "category" : [ {
  5990. "identifier" : "category",
  5991. "language" : "undefined",
  5992. "value" : "starting-point",
  5993. "type" : "label"
  5994. }, {
  5995. "identifier" : "category",
  5996. "language" : "undefined",
  5997. "value" : "starting-point",
  5998. "type" : "label"
  5999. } ],
  6000. "qualifiedForm" : [ {
  6001. "identifier" : "qualifiedForm",
  6002. "language" : "undefined",
  6003. "value" : "http://www.w3.org/ns/prov#Derivation",
  6004. "type" : "iri"
  6005. }, {
  6006. "identifier" : "qualifiedForm",
  6007. "language" : "undefined",
  6008. "value" : "http://www.w3.org/ns/prov#qualifiedDerivation",
  6009. "type" : "iri"
  6010. }, {
  6011. "identifier" : "qualifiedForm",
  6012. "language" : "undefined",
  6013. "value" : "http://www.w3.org/ns/prov#Derivation",
  6014. "type" : "iri"
  6015. }, {
  6016. "identifier" : "qualifiedForm",
  6017. "language" : "undefined",
  6018. "value" : "http://www.w3.org/ns/prov#qualifiedDerivation",
  6019. "type" : "iri"
  6020. } ]
  6021. },
  6022. "label" : {
  6023. "IRI-based" : "wasDerivedFrom",
  6024. "undefined" : "wasDerivedFrom"
  6025. },
  6026. "superproperty" : [ "77" ],
  6027. "domain" : "17",
  6028. "subproperty" : [ "78", "79", "80", "38", "81" ],
  6029. "comment" : {
  6030. "en" : "The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable."
  6031. },
  6032. "attributes" : [ "object", "external" ],
  6033. "id" : "39"
  6034. }, {
  6035. "iri" : "http://www.w3.org/ns/prov#atTime",
  6036. "baseIri" : "http://www.w3.org/ns/prov",
  6037. "range" : "83",
  6038. "annotations" : {
  6039. "sharesDefinitionWith" : [ {
  6040. "identifier" : "sharesDefinitionWith",
  6041. "language" : "undefined",
  6042. "value" : "http://www.w3.org/ns/prov#InstantaneousEvent",
  6043. "type" : "iri"
  6044. }, {
  6045. "identifier" : "sharesDefinitionWith",
  6046. "language" : "undefined",
  6047. "value" : "http://www.w3.org/ns/prov#InstantaneousEvent",
  6048. "type" : "iri"
  6049. } ],
  6050. "component" : [ {
  6051. "identifier" : "component",
  6052. "language" : "undefined",
  6053. "value" : "entities-activities",
  6054. "type" : "label"
  6055. }, {
  6056. "identifier" : "component",
  6057. "language" : "undefined",
  6058. "value" : "entities-activities",
  6059. "type" : "label"
  6060. } ],
  6061. "isDefinedBy" : [ {
  6062. "identifier" : "isDefinedBy",
  6063. "language" : "undefined",
  6064. "value" : "http://www.w3.org/ns/prov-o#",
  6065. "type" : "iri"
  6066. }, {
  6067. "identifier" : "isDefinedBy",
  6068. "language" : "undefined",
  6069. "value" : "http://www.w3.org/ns/prov-o#",
  6070. "type" : "iri"
  6071. } ],
  6072. "unqualifiedForm" : [ {
  6073. "identifier" : "unqualifiedForm",
  6074. "language" : "undefined",
  6075. "value" : "http://www.w3.org/ns/prov#startedAtTime",
  6076. "type" : "iri"
  6077. }, {
  6078. "identifier" : "unqualifiedForm",
  6079. "language" : "undefined",
  6080. "value" : "http://www.w3.org/ns/prov#endedAtTime",
  6081. "type" : "iri"
  6082. }, {
  6083. "identifier" : "unqualifiedForm",
  6084. "language" : "undefined",
  6085. "value" : "http://www.w3.org/ns/prov#endedAtTime",
  6086. "type" : "iri"
  6087. }, {
  6088. "identifier" : "unqualifiedForm",
  6089. "language" : "undefined",
  6090. "value" : "http://www.w3.org/ns/prov#generatedAtTime",
  6091. "type" : "iri"
  6092. }, {
  6093. "identifier" : "unqualifiedForm",
  6094. "language" : "undefined",
  6095. "value" : "http://www.w3.org/ns/prov#invalidatedAtTime",
  6096. "type" : "iri"
  6097. }, {
  6098. "identifier" : "unqualifiedForm",
  6099. "language" : "undefined",
  6100. "value" : "http://www.w3.org/ns/prov#invalidatedAtTime",
  6101. "type" : "iri"
  6102. }, {
  6103. "identifier" : "unqualifiedForm",
  6104. "language" : "undefined",
  6105. "value" : "http://www.w3.org/ns/prov#generatedAtTime",
  6106. "type" : "iri"
  6107. }, {
  6108. "identifier" : "unqualifiedForm",
  6109. "language" : "undefined",
  6110. "value" : "http://www.w3.org/ns/prov#startedAtTime",
  6111. "type" : "iri"
  6112. } ],
  6113. "category" : [ {
  6114. "identifier" : "category",
  6115. "language" : "undefined",
  6116. "value" : "qualified",
  6117. "type" : "label"
  6118. }, {
  6119. "identifier" : "category",
  6120. "language" : "undefined",
  6121. "value" : "qualified",
  6122. "type" : "label"
  6123. } ]
  6124. },
  6125. "label" : {
  6126. "IRI-based" : "atTime",
  6127. "undefined" : "atTime"
  6128. },
  6129. "domain" : "11",
  6130. "comment" : {
  6131. "en" : "The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime."
  6132. },
  6133. "attributes" : [ "datatype", "external" ],
  6134. "id" : "82"
  6135. }, {
  6136. "iri" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  6137. "baseIri" : "http://www.w3.org/ns/prov",
  6138. "range" : "9",
  6139. "annotations" : {
  6140. "inverse" : [ {
  6141. "identifier" : "inverse",
  6142. "language" : "undefined",
  6143. "value" : "invalidated",
  6144. "type" : "label"
  6145. }, {
  6146. "identifier" : "inverse",
  6147. "language" : "undefined",
  6148. "value" : "invalidated",
  6149. "type" : "label"
  6150. } ],
  6151. "component" : [ {
  6152. "identifier" : "component",
  6153. "language" : "undefined",
  6154. "value" : "entities-activities",
  6155. "type" : "label"
  6156. }, {
  6157. "identifier" : "component",
  6158. "language" : "undefined",
  6159. "value" : "entities-activities",
  6160. "type" : "label"
  6161. } ],
  6162. "isDefinedBy" : [ {
  6163. "identifier" : "isDefinedBy",
  6164. "language" : "undefined",
  6165. "value" : "http://www.w3.org/ns/prov-o#",
  6166. "type" : "iri"
  6167. }, {
  6168. "identifier" : "isDefinedBy",
  6169. "language" : "undefined",
  6170. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  6171. "type" : "iri"
  6172. }, {
  6173. "identifier" : "isDefinedBy",
  6174. "language" : "undefined",
  6175. "value" : "http://www.w3.org/ns/prov-o#",
  6176. "type" : "iri"
  6177. }, {
  6178. "identifier" : "isDefinedBy",
  6179. "language" : "undefined",
  6180. "value" : "http://www.w3.org/ns/prov-o#",
  6181. "type" : "iri"
  6182. }, {
  6183. "identifier" : "isDefinedBy",
  6184. "language" : "undefined",
  6185. "value" : "http://www.w3.org/ns/prov#",
  6186. "type" : "iri"
  6187. } ],
  6188. "category" : [ {
  6189. "identifier" : "category",
  6190. "language" : "undefined",
  6191. "value" : "expanded",
  6192. "type" : "label"
  6193. }, {
  6194. "identifier" : "category",
  6195. "language" : "undefined",
  6196. "value" : "expanded",
  6197. "type" : "label"
  6198. } ],
  6199. "qualifiedForm" : [ {
  6200. "identifier" : "qualifiedForm",
  6201. "language" : "undefined",
  6202. "value" : "http://www.w3.org/ns/prov#qualifiedInvalidation",
  6203. "type" : "iri"
  6204. }, {
  6205. "identifier" : "qualifiedForm",
  6206. "language" : "undefined",
  6207. "value" : "http://www.w3.org/ns/prov#qualifiedInvalidation",
  6208. "type" : "iri"
  6209. }, {
  6210. "identifier" : "qualifiedForm",
  6211. "language" : "undefined",
  6212. "value" : "http://www.w3.org/ns/prov#Invalidation",
  6213. "type" : "iri"
  6214. }, {
  6215. "identifier" : "qualifiedForm",
  6216. "language" : "undefined",
  6217. "value" : "http://www.w3.org/ns/prov#Invalidation",
  6218. "type" : "iri"
  6219. } ]
  6220. },
  6221. "label" : {
  6222. "IRI-based" : "wasInvalidatedBy",
  6223. "undefined" : "wasInvalidatedBy"
  6224. },
  6225. "superproperty" : [ "77" ],
  6226. "domain" : "17",
  6227. "attributes" : [ "object", "external" ],
  6228. "id" : "61"
  6229. }, {
  6230. "iri" : "http://www.w3.org/ns/prov#qualifiedStart",
  6231. "baseIri" : "http://www.w3.org/ns/prov",
  6232. "range" : "15",
  6233. "annotations" : {
  6234. "inverse" : [ {
  6235. "identifier" : "inverse",
  6236. "language" : "undefined",
  6237. "value" : "qualifiedStartOf",
  6238. "type" : "label"
  6239. }, {
  6240. "identifier" : "inverse",
  6241. "language" : "undefined",
  6242. "value" : "qualifiedStartOf",
  6243. "type" : "label"
  6244. } ],
  6245. "sharesDefinitionWith" : [ {
  6246. "identifier" : "sharesDefinitionWith",
  6247. "language" : "undefined",
  6248. "value" : "http://www.w3.org/ns/prov#Start",
  6249. "type" : "iri"
  6250. }, {
  6251. "identifier" : "sharesDefinitionWith",
  6252. "language" : "undefined",
  6253. "value" : "http://www.w3.org/ns/prov#Start",
  6254. "type" : "iri"
  6255. } ],
  6256. "component" : [ {
  6257. "identifier" : "component",
  6258. "language" : "undefined",
  6259. "value" : "entities-activities",
  6260. "type" : "label"
  6261. }, {
  6262. "identifier" : "component",
  6263. "language" : "undefined",
  6264. "value" : "entities-activities",
  6265. "type" : "label"
  6266. } ],
  6267. "isDefinedBy" : [ {
  6268. "identifier" : "isDefinedBy",
  6269. "language" : "undefined",
  6270. "value" : "http://www.w3.org/ns/prov-o#",
  6271. "type" : "iri"
  6272. }, {
  6273. "identifier" : "isDefinedBy",
  6274. "language" : "undefined",
  6275. "value" : "http://www.w3.org/ns/prov-o#",
  6276. "type" : "iri"
  6277. }, {
  6278. "identifier" : "isDefinedBy",
  6279. "language" : "undefined",
  6280. "value" : "http://www.w3.org/ns/prov-o#",
  6281. "type" : "iri"
  6282. } ],
  6283. "unqualifiedForm" : [ {
  6284. "identifier" : "unqualifiedForm",
  6285. "language" : "undefined",
  6286. "value" : "http://www.w3.org/ns/prov#wasStartedBy",
  6287. "type" : "iri"
  6288. }, {
  6289. "identifier" : "unqualifiedForm",
  6290. "language" : "undefined",
  6291. "value" : "http://www.w3.org/ns/prov#wasStartedBy",
  6292. "type" : "iri"
  6293. } ],
  6294. "category" : [ {
  6295. "identifier" : "category",
  6296. "language" : "undefined",
  6297. "value" : "qualified",
  6298. "type" : "label"
  6299. }, {
  6300. "identifier" : "category",
  6301. "language" : "undefined",
  6302. "value" : "qualified",
  6303. "type" : "label"
  6304. } ]
  6305. },
  6306. "label" : {
  6307. "IRI-based" : "qualifiedStart",
  6308. "undefined" : "qualifiedStart"
  6309. },
  6310. "superproperty" : [ "3" ],
  6311. "domain" : "9",
  6312. "comment" : {
  6313. "en" : "If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start; prov:entity :e1; :foo :bar ]."
  6314. },
  6315. "attributes" : [ "object", "external" ],
  6316. "id" : "84"
  6317. }, {
  6318. "iri" : "http://www.w3.org/ns/prov#qualifiedQuotation",
  6319. "baseIri" : "http://www.w3.org/ns/prov",
  6320. "range" : "67",
  6321. "annotations" : {
  6322. "inverse" : [ {
  6323. "identifier" : "inverse",
  6324. "language" : "undefined",
  6325. "value" : "qualifiedQuotationOf",
  6326. "type" : "label"
  6327. }, {
  6328. "identifier" : "inverse",
  6329. "language" : "undefined",
  6330. "value" : "qualifiedQuotationOf",
  6331. "type" : "label"
  6332. } ],
  6333. "sharesDefinitionWith" : [ {
  6334. "identifier" : "sharesDefinitionWith",
  6335. "language" : "undefined",
  6336. "value" : "http://www.w3.org/ns/prov#Quotation",
  6337. "type" : "iri"
  6338. }, {
  6339. "identifier" : "sharesDefinitionWith",
  6340. "language" : "undefined",
  6341. "value" : "http://www.w3.org/ns/prov#Quotation",
  6342. "type" : "iri"
  6343. } ],
  6344. "component" : [ {
  6345. "identifier" : "component",
  6346. "language" : "undefined",
  6347. "value" : "derivations",
  6348. "type" : "label"
  6349. }, {
  6350. "identifier" : "component",
  6351. "language" : "undefined",
  6352. "value" : "derivations",
  6353. "type" : "label"
  6354. } ],
  6355. "isDefinedBy" : [ {
  6356. "identifier" : "isDefinedBy",
  6357. "language" : "undefined",
  6358. "value" : "http://www.w3.org/ns/prov-o#",
  6359. "type" : "iri"
  6360. }, {
  6361. "identifier" : "isDefinedBy",
  6362. "language" : "undefined",
  6363. "value" : "http://www.w3.org/ns/prov-o#",
  6364. "type" : "iri"
  6365. }, {
  6366. "identifier" : "isDefinedBy",
  6367. "language" : "undefined",
  6368. "value" : "http://www.w3.org/ns/prov-o#",
  6369. "type" : "iri"
  6370. } ],
  6371. "unqualifiedForm" : [ {
  6372. "identifier" : "unqualifiedForm",
  6373. "language" : "undefined",
  6374. "value" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  6375. "type" : "iri"
  6376. }, {
  6377. "identifier" : "unqualifiedForm",
  6378. "language" : "undefined",
  6379. "value" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  6380. "type" : "iri"
  6381. } ],
  6382. "category" : [ {
  6383. "identifier" : "category",
  6384. "language" : "undefined",
  6385. "value" : "qualified",
  6386. "type" : "label"
  6387. }, {
  6388. "identifier" : "category",
  6389. "language" : "undefined",
  6390. "value" : "qualified",
  6391. "type" : "label"
  6392. } ]
  6393. },
  6394. "label" : {
  6395. "IRI-based" : "qualifiedQuotation",
  6396. "undefined" : "qualifiedQuotation"
  6397. },
  6398. "superproperty" : [ "3" ],
  6399. "domain" : "17",
  6400. "comment" : {
  6401. "en" : "If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation; prov:entity :e; :foo :bar ]."
  6402. },
  6403. "attributes" : [ "object", "external" ],
  6404. "id" : "85"
  6405. }, {
  6406. "iri" : "http://www.w3.org/ns/prov#hadPlan",
  6407. "baseIri" : "http://www.w3.org/ns/prov",
  6408. "range" : "88",
  6409. "annotations" : {
  6410. "sharesDefinitionWith" : [ {
  6411. "identifier" : "sharesDefinitionWith",
  6412. "language" : "undefined",
  6413. "value" : "http://www.w3.org/ns/prov#Plan",
  6414. "type" : "iri"
  6415. }, {
  6416. "identifier" : "sharesDefinitionWith",
  6417. "language" : "undefined",
  6418. "value" : "http://www.w3.org/ns/prov#Plan",
  6419. "type" : "iri"
  6420. } ],
  6421. "inverse" : [ {
  6422. "identifier" : "inverse",
  6423. "language" : "undefined",
  6424. "value" : "wasPlanOf",
  6425. "type" : "label"
  6426. }, {
  6427. "identifier" : "inverse",
  6428. "language" : "undefined",
  6429. "value" : "wasPlanOf",
  6430. "type" : "label"
  6431. } ],
  6432. "component" : [ {
  6433. "identifier" : "component",
  6434. "language" : "undefined",
  6435. "value" : "agents-responsibility",
  6436. "type" : "label"
  6437. }, {
  6438. "identifier" : "component",
  6439. "language" : "undefined",
  6440. "value" : "agents-responsibility",
  6441. "type" : "label"
  6442. } ],
  6443. "isDefinedBy" : [ {
  6444. "identifier" : "isDefinedBy",
  6445. "language" : "undefined",
  6446. "value" : "http://www.w3.org/ns/prov-o#",
  6447. "type" : "iri"
  6448. }, {
  6449. "identifier" : "isDefinedBy",
  6450. "language" : "undefined",
  6451. "value" : "http://www.w3.org/ns/prov-o#",
  6452. "type" : "iri"
  6453. }, {
  6454. "identifier" : "isDefinedBy",
  6455. "language" : "undefined",
  6456. "value" : "http://www.w3.org/ns/prov-o#",
  6457. "type" : "iri"
  6458. } ],
  6459. "category" : [ {
  6460. "identifier" : "category",
  6461. "language" : "undefined",
  6462. "value" : "qualified",
  6463. "type" : "label"
  6464. }, {
  6465. "identifier" : "category",
  6466. "language" : "undefined",
  6467. "value" : "qualified",
  6468. "type" : "label"
  6469. } ]
  6470. },
  6471. "label" : {
  6472. "IRI-based" : "hadPlan",
  6473. "undefined" : "hadPlan"
  6474. },
  6475. "domain" : "87",
  6476. "comment" : {
  6477. "en" : "The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification."
  6478. },
  6479. "attributes" : [ "object", "external" ],
  6480. "id" : "86"
  6481. }, {
  6482. "iri" : "http://www.w3.org/ns/prov#qualifiedUsage",
  6483. "baseIri" : "http://www.w3.org/ns/prov",
  6484. "range" : "12",
  6485. "annotations" : {
  6486. "inverse" : [ {
  6487. "identifier" : "inverse",
  6488. "language" : "undefined",
  6489. "value" : "qualifiedUsingActivity",
  6490. "type" : "label"
  6491. }, {
  6492. "identifier" : "inverse",
  6493. "language" : "undefined",
  6494. "value" : "qualifiedUsingActivity",
  6495. "type" : "label"
  6496. } ],
  6497. "sharesDefinitionWith" : [ {
  6498. "identifier" : "sharesDefinitionWith",
  6499. "language" : "undefined",
  6500. "value" : "http://www.w3.org/ns/prov#Usage",
  6501. "type" : "iri"
  6502. }, {
  6503. "identifier" : "sharesDefinitionWith",
  6504. "language" : "undefined",
  6505. "value" : "http://www.w3.org/ns/prov#Usage",
  6506. "type" : "iri"
  6507. } ],
  6508. "component" : [ {
  6509. "identifier" : "component",
  6510. "language" : "undefined",
  6511. "value" : "entities-activities",
  6512. "type" : "label"
  6513. }, {
  6514. "identifier" : "component",
  6515. "language" : "undefined",
  6516. "value" : "entities-activities",
  6517. "type" : "label"
  6518. } ],
  6519. "isDefinedBy" : [ {
  6520. "identifier" : "isDefinedBy",
  6521. "language" : "undefined",
  6522. "value" : "http://www.w3.org/ns/prov-o#",
  6523. "type" : "iri"
  6524. }, {
  6525. "identifier" : "isDefinedBy",
  6526. "language" : "undefined",
  6527. "value" : "http://www.w3.org/ns/prov-o#",
  6528. "type" : "iri"
  6529. }, {
  6530. "identifier" : "isDefinedBy",
  6531. "language" : "undefined",
  6532. "value" : "http://www.w3.org/ns/prov-o#",
  6533. "type" : "iri"
  6534. } ],
  6535. "unqualifiedForm" : [ {
  6536. "identifier" : "unqualifiedForm",
  6537. "language" : "undefined",
  6538. "value" : "http://www.w3.org/ns/prov#used",
  6539. "type" : "iri"
  6540. }, {
  6541. "identifier" : "unqualifiedForm",
  6542. "language" : "undefined",
  6543. "value" : "http://www.w3.org/ns/prov#used",
  6544. "type" : "iri"
  6545. } ],
  6546. "category" : [ {
  6547. "identifier" : "category",
  6548. "language" : "undefined",
  6549. "value" : "qualified",
  6550. "type" : "label"
  6551. }, {
  6552. "identifier" : "category",
  6553. "language" : "undefined",
  6554. "value" : "qualified",
  6555. "type" : "label"
  6556. } ]
  6557. },
  6558. "label" : {
  6559. "IRI-based" : "qualifiedUsage",
  6560. "undefined" : "qualifiedUsage"
  6561. },
  6562. "superproperty" : [ "3" ],
  6563. "domain" : "9",
  6564. "comment" : {
  6565. "en" : "If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ]."
  6566. },
  6567. "attributes" : [ "object", "external" ],
  6568. "id" : "89"
  6569. }, {
  6570. "iri" : "http://www.w3.org/ns/prov#wasUsedInDerivation",
  6571. "inverse" : "92",
  6572. "baseIri" : "http://www.w3.org/ns/prov",
  6573. "range" : "66",
  6574. "annotations" : {
  6575. "isDefinedBy" : [ {
  6576. "identifier" : "isDefinedBy",
  6577. "language" : "undefined",
  6578. "value" : "http://www.w3.org/ns/prov#",
  6579. "type" : "iri"
  6580. }, {
  6581. "identifier" : "isDefinedBy",
  6582. "language" : "undefined",
  6583. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  6584. "type" : "iri"
  6585. } ]
  6586. },
  6587. "label" : {
  6588. "IRI-based" : "wasUsedInDerivation",
  6589. "undefined" : "wasUsedInDerivation"
  6590. },
  6591. "domain" : "12",
  6592. "attributes" : [ "object", "external" ],
  6593. "id" : "91"
  6594. }, {
  6595. "iri" : "https://w3id.org/consent-mapping-jit#ofPolicy",
  6596. "baseIri" : "https://w3id.org/consent-mapping-jit",
  6597. "range" : "95",
  6598. "label" : {
  6599. "IRI-based" : "ofPolicy"
  6600. },
  6601. "domain" : "94",
  6602. "comment" : {
  6603. "undefined" : "of policy"
  6604. },
  6605. "attributes" : [ "functional", "object" ],
  6606. "id" : "93"
  6607. }, {
  6608. "iri" : "http://www.w3.org/ns/prov#wasAssociateFor",
  6609. "inverse" : "97",
  6610. "baseIri" : "http://www.w3.org/ns/prov",
  6611. "range" : "9",
  6612. "annotations" : {
  6613. "isDefinedBy" : [ {
  6614. "identifier" : "isDefinedBy",
  6615. "language" : "undefined",
  6616. "value" : "http://www.w3.org/ns/prov#",
  6617. "type" : "iri"
  6618. }, {
  6619. "identifier" : "isDefinedBy",
  6620. "language" : "undefined",
  6621. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  6622. "type" : "iri"
  6623. } ]
  6624. },
  6625. "label" : {
  6626. "IRI-based" : "wasAssociateFor",
  6627. "undefined" : "wasAssociateFor"
  6628. },
  6629. "domain" : "24",
  6630. "attributes" : [ "object", "external" ],
  6631. "id" : "96"
  6632. }, {
  6633. "iri" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  6634. "baseIri" : "http://www.w3.org/ns/prov",
  6635. "range" : "99",
  6636. "annotations" : {
  6637. "editorialNote" : [ {
  6638. "identifier" : "editorialNote",
  6639. "language" : "en",
  6640. "value" : "The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .\n\nSubproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.\n\nprov:wasInfluencedBy should not be used without also using one of its subproperties. \n",
  6641. "type" : "label"
  6642. }, {
  6643. "identifier" : "editorialNote",
  6644. "language" : "en",
  6645. "value" : "The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .\n\nSubproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.\n\nprov:wasInfluencedBy should not be used without also using one of its subproperties. \n",
  6646. "type" : "label"
  6647. } ],
  6648. "inverse" : [ {
  6649. "identifier" : "inverse",
  6650. "language" : "undefined",
  6651. "value" : "influenced",
  6652. "type" : "label"
  6653. }, {
  6654. "identifier" : "inverse",
  6655. "language" : "undefined",
  6656. "value" : "influenced",
  6657. "type" : "label"
  6658. } ],
  6659. "sharesDefinitionWith" : [ {
  6660. "identifier" : "sharesDefinitionWith",
  6661. "language" : "undefined",
  6662. "value" : "http://www.w3.org/ns/prov#Influence",
  6663. "type" : "iri"
  6664. }, {
  6665. "identifier" : "sharesDefinitionWith",
  6666. "language" : "undefined",
  6667. "value" : "http://www.w3.org/ns/prov#Influence",
  6668. "type" : "iri"
  6669. } ],
  6670. "component" : [ {
  6671. "identifier" : "component",
  6672. "language" : "undefined",
  6673. "value" : "agents-responsibility",
  6674. "type" : "label"
  6675. }, {
  6676. "identifier" : "component",
  6677. "language" : "undefined",
  6678. "value" : "agents-responsibility",
  6679. "type" : "label"
  6680. } ],
  6681. "isDefinedBy" : [ {
  6682. "identifier" : "isDefinedBy",
  6683. "language" : "undefined",
  6684. "value" : "http://www.w3.org/ns/prov-o#",
  6685. "type" : "iri"
  6686. }, {
  6687. "identifier" : "isDefinedBy",
  6688. "language" : "undefined",
  6689. "value" : "http://www.w3.org/ns/prov-o#",
  6690. "type" : "iri"
  6691. }, {
  6692. "identifier" : "isDefinedBy",
  6693. "language" : "undefined",
  6694. "value" : "http://www.w3.org/ns/prov#",
  6695. "type" : "iri"
  6696. }, {
  6697. "identifier" : "isDefinedBy",
  6698. "language" : "undefined",
  6699. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  6700. "type" : "iri"
  6701. }, {
  6702. "identifier" : "isDefinedBy",
  6703. "language" : "undefined",
  6704. "value" : "http://www.w3.org/ns/prov-o#",
  6705. "type" : "iri"
  6706. } ],
  6707. "category" : [ {
  6708. "identifier" : "category",
  6709. "language" : "undefined",
  6710. "value" : "qualified",
  6711. "type" : "label"
  6712. }, {
  6713. "identifier" : "category",
  6714. "language" : "undefined",
  6715. "value" : "qualified",
  6716. "type" : "label"
  6717. } ],
  6718. "qualifiedForm" : [ {
  6719. "identifier" : "qualifiedForm",
  6720. "language" : "undefined",
  6721. "value" : "http://www.w3.org/ns/prov#qualifiedInfluence",
  6722. "type" : "iri"
  6723. }, {
  6724. "identifier" : "qualifiedForm",
  6725. "language" : "undefined",
  6726. "value" : "http://www.w3.org/ns/prov#Influence",
  6727. "type" : "iri"
  6728. }, {
  6729. "identifier" : "qualifiedForm",
  6730. "language" : "undefined",
  6731. "value" : "http://www.w3.org/ns/prov#Influence",
  6732. "type" : "iri"
  6733. }, {
  6734. "identifier" : "qualifiedForm",
  6735. "language" : "undefined",
  6736. "value" : "http://www.w3.org/ns/prov#qualifiedInfluence",
  6737. "type" : "iri"
  6738. } ]
  6739. },
  6740. "label" : {
  6741. "IRI-based" : "wasInfluencedBy",
  6742. "undefined" : "wasInfluencedBy"
  6743. },
  6744. "domain" : "98",
  6745. "subproperty" : [ "100", "101", "39", "102", "103", "97", "104", "25", "105", "61", "106" ],
  6746. "comment" : {
  6747. "en" : "Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable.",
  6748. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  6749. },
  6750. "attributes" : [ "object", "external" ],
  6751. "id" : "77"
  6752. }, {
  6753. "iri" : "http://www.w3.org/ns/prov#hadRevision",
  6754. "inverse" : "79",
  6755. "baseIri" : "http://www.w3.org/ns/prov",
  6756. "range" : "17",
  6757. "annotations" : {
  6758. "isDefinedBy" : [ {
  6759. "identifier" : "isDefinedBy",
  6760. "language" : "undefined",
  6761. "value" : "http://www.w3.org/ns/prov#",
  6762. "type" : "iri"
  6763. }, {
  6764. "identifier" : "isDefinedBy",
  6765. "language" : "undefined",
  6766. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  6767. "type" : "iri"
  6768. } ]
  6769. },
  6770. "label" : {
  6771. "IRI-based" : "hadRevision",
  6772. "undefined" : "hadRevision"
  6773. },
  6774. "domain" : "18",
  6775. "attributes" : [ "object", "external" ],
  6776. "id" : "107"
  6777. }, {
  6778. "iri" : "http://www.w3.org/ns/prov#wasAttributedTo",
  6779. "baseIri" : "http://www.w3.org/ns/prov",
  6780. "range" : "24",
  6781. "annotations" : {
  6782. "inverse" : [ {
  6783. "identifier" : "inverse",
  6784. "language" : "undefined",
  6785. "value" : "contributed",
  6786. "type" : "label"
  6787. }, {
  6788. "identifier" : "inverse",
  6789. "language" : "undefined",
  6790. "value" : "contributed",
  6791. "type" : "label"
  6792. } ],
  6793. "component" : [ {
  6794. "identifier" : "component",
  6795. "language" : "undefined",
  6796. "value" : "agents-responsibility",
  6797. "type" : "label"
  6798. }, {
  6799. "identifier" : "component",
  6800. "language" : "undefined",
  6801. "value" : "agents-responsibility",
  6802. "type" : "label"
  6803. } ],
  6804. "isDefinedBy" : [ {
  6805. "identifier" : "isDefinedBy",
  6806. "language" : "undefined",
  6807. "value" : "http://www.w3.org/ns/prov-o#",
  6808. "type" : "iri"
  6809. }, {
  6810. "identifier" : "isDefinedBy",
  6811. "language" : "undefined",
  6812. "value" : "http://www.w3.org/ns/prov-o#",
  6813. "type" : "iri"
  6814. }, {
  6815. "identifier" : "isDefinedBy",
  6816. "language" : "undefined",
  6817. "value" : "http://www.w3.org/ns/prov-o#",
  6818. "type" : "iri"
  6819. } ],
  6820. "definition" : [ {
  6821. "identifier" : "definition",
  6822. "language" : "en",
  6823. "value" : "Attribution is the ascribing of an entity to an agent.",
  6824. "type" : "label"
  6825. }, {
  6826. "identifier" : "definition",
  6827. "language" : "en",
  6828. "value" : "Attribution is the ascribing of an entity to an agent.",
  6829. "type" : "label"
  6830. } ],
  6831. "category" : [ {
  6832. "identifier" : "category",
  6833. "language" : "undefined",
  6834. "value" : "starting-point",
  6835. "type" : "label"
  6836. }, {
  6837. "identifier" : "category",
  6838. "language" : "undefined",
  6839. "value" : "starting-point",
  6840. "type" : "label"
  6841. } ],
  6842. "qualifiedForm" : [ {
  6843. "identifier" : "qualifiedForm",
  6844. "language" : "undefined",
  6845. "value" : "http://www.w3.org/ns/prov#qualifiedAttribution",
  6846. "type" : "iri"
  6847. }, {
  6848. "identifier" : "qualifiedForm",
  6849. "language" : "undefined",
  6850. "value" : "http://www.w3.org/ns/prov#qualifiedAttribution",
  6851. "type" : "iri"
  6852. }, {
  6853. "identifier" : "qualifiedForm",
  6854. "language" : "undefined",
  6855. "value" : "http://www.w3.org/ns/prov#Attribution",
  6856. "type" : "iri"
  6857. }, {
  6858. "identifier" : "qualifiedForm",
  6859. "language" : "undefined",
  6860. "value" : "http://www.w3.org/ns/prov#Attribution",
  6861. "type" : "iri"
  6862. } ]
  6863. },
  6864. "label" : {
  6865. "IRI-based" : "wasAttributedTo",
  6866. "undefined" : "wasAttributedTo"
  6867. },
  6868. "superproperty" : [ "77" ],
  6869. "domain" : "17",
  6870. "comment" : {
  6871. "en" : "Attribution is the ascribing of an entity to an agent."
  6872. },
  6873. "attributes" : [ "object", "external" ],
  6874. "id" : "102"
  6875. }, {
  6876. "iri" : "http://www.w3.org/ns/prov#qualifiedRevision",
  6877. "baseIri" : "http://www.w3.org/ns/prov",
  6878. "range" : "70",
  6879. "annotations" : {
  6880. "sharesDefinitionWith" : [ {
  6881. "identifier" : "sharesDefinitionWith",
  6882. "language" : "undefined",
  6883. "value" : "http://www.w3.org/ns/prov#Revision",
  6884. "type" : "iri"
  6885. }, {
  6886. "identifier" : "sharesDefinitionWith",
  6887. "language" : "undefined",
  6888. "value" : "http://www.w3.org/ns/prov#Revision",
  6889. "type" : "iri"
  6890. } ],
  6891. "inverse" : [ {
  6892. "identifier" : "inverse",
  6893. "language" : "undefined",
  6894. "value" : "revisedEntity",
  6895. "type" : "label"
  6896. }, {
  6897. "identifier" : "inverse",
  6898. "language" : "undefined",
  6899. "value" : "revisedEntity",
  6900. "type" : "label"
  6901. } ],
  6902. "component" : [ {
  6903. "identifier" : "component",
  6904. "language" : "undefined",
  6905. "value" : "derivations",
  6906. "type" : "label"
  6907. }, {
  6908. "identifier" : "component",
  6909. "language" : "undefined",
  6910. "value" : "derivations",
  6911. "type" : "label"
  6912. } ],
  6913. "isDefinedBy" : [ {
  6914. "identifier" : "isDefinedBy",
  6915. "language" : "undefined",
  6916. "value" : "http://www.w3.org/ns/prov-o#",
  6917. "type" : "iri"
  6918. }, {
  6919. "identifier" : "isDefinedBy",
  6920. "language" : "undefined",
  6921. "value" : "http://www.w3.org/ns/prov-o#",
  6922. "type" : "iri"
  6923. }, {
  6924. "identifier" : "isDefinedBy",
  6925. "language" : "undefined",
  6926. "value" : "http://www.w3.org/ns/prov-o#",
  6927. "type" : "iri"
  6928. } ],
  6929. "unqualifiedForm" : [ {
  6930. "identifier" : "unqualifiedForm",
  6931. "language" : "undefined",
  6932. "value" : "http://www.w3.org/ns/prov#wasRevisionOf",
  6933. "type" : "iri"
  6934. }, {
  6935. "identifier" : "unqualifiedForm",
  6936. "language" : "undefined",
  6937. "value" : "http://www.w3.org/ns/prov#wasRevisionOf",
  6938. "type" : "iri"
  6939. } ],
  6940. "category" : [ {
  6941. "identifier" : "category",
  6942. "language" : "undefined",
  6943. "value" : "qualified",
  6944. "type" : "label"
  6945. }, {
  6946. "identifier" : "category",
  6947. "language" : "undefined",
  6948. "value" : "qualified",
  6949. "type" : "label"
  6950. } ]
  6951. },
  6952. "label" : {
  6953. "IRI-based" : "qualifiedRevision",
  6954. "undefined" : "qualifiedRevision"
  6955. },
  6956. "superproperty" : [ "3" ],
  6957. "domain" : "17",
  6958. "comment" : {
  6959. "en" : "If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision; prov:entity :e; :foo :bar ]."
  6960. },
  6961. "attributes" : [ "object", "external" ],
  6962. "id" : "108"
  6963. }, {
  6964. "iri" : "https://w3id.org/consent-mapping-jit#givenBy",
  6965. "baseIri" : "https://w3id.org/consent-mapping-jit",
  6966. "range" : "53",
  6967. "label" : {
  6968. "IRI-based" : "givenBy"
  6969. },
  6970. "domain" : "110",
  6971. "comment" : {
  6972. "undefined" : "given by"
  6973. },
  6974. "attributes" : [ "functional", "object" ],
  6975. "id" : "109"
  6976. }, {
  6977. "iri" : "http://www.w3.org/ns/prov#qualifiedPrimarySource",
  6978. "baseIri" : "http://www.w3.org/ns/prov",
  6979. "range" : "68",
  6980. "annotations" : {
  6981. "inverse" : [ {
  6982. "identifier" : "inverse",
  6983. "language" : "undefined",
  6984. "value" : "qualifiedSourceOf",
  6985. "type" : "label"
  6986. }, {
  6987. "identifier" : "inverse",
  6988. "language" : "undefined",
  6989. "value" : "qualifiedSourceOf",
  6990. "type" : "label"
  6991. } ],
  6992. "sharesDefinitionWith" : [ {
  6993. "identifier" : "sharesDefinitionWith",
  6994. "language" : "undefined",
  6995. "value" : "http://www.w3.org/ns/prov#PrimarySource",
  6996. "type" : "iri"
  6997. }, {
  6998. "identifier" : "sharesDefinitionWith",
  6999. "language" : "undefined",
  7000. "value" : "http://www.w3.org/ns/prov#PrimarySource",
  7001. "type" : "iri"
  7002. } ],
  7003. "component" : [ {
  7004. "identifier" : "component",
  7005. "language" : "undefined",
  7006. "value" : "derivations",
  7007. "type" : "label"
  7008. }, {
  7009. "identifier" : "component",
  7010. "language" : "undefined",
  7011. "value" : "derivations",
  7012. "type" : "label"
  7013. } ],
  7014. "isDefinedBy" : [ {
  7015. "identifier" : "isDefinedBy",
  7016. "language" : "undefined",
  7017. "value" : "http://www.w3.org/ns/prov-o#",
  7018. "type" : "iri"
  7019. }, {
  7020. "identifier" : "isDefinedBy",
  7021. "language" : "undefined",
  7022. "value" : "http://www.w3.org/ns/prov-o#",
  7023. "type" : "iri"
  7024. }, {
  7025. "identifier" : "isDefinedBy",
  7026. "language" : "undefined",
  7027. "value" : "http://www.w3.org/ns/prov-o#",
  7028. "type" : "iri"
  7029. } ],
  7030. "unqualifiedForm" : [ {
  7031. "identifier" : "unqualifiedForm",
  7032. "language" : "undefined",
  7033. "value" : "http://www.w3.org/ns/prov#hadPrimarySource",
  7034. "type" : "iri"
  7035. }, {
  7036. "identifier" : "unqualifiedForm",
  7037. "language" : "undefined",
  7038. "value" : "http://www.w3.org/ns/prov#hadPrimarySource",
  7039. "type" : "iri"
  7040. } ],
  7041. "category" : [ {
  7042. "identifier" : "category",
  7043. "language" : "undefined",
  7044. "value" : "qualified",
  7045. "type" : "label"
  7046. }, {
  7047. "identifier" : "category",
  7048. "language" : "undefined",
  7049. "value" : "qualified",
  7050. "type" : "label"
  7051. } ]
  7052. },
  7053. "label" : {
  7054. "IRI-based" : "qualifiedPrimarySource",
  7055. "undefined" : "qualifiedPrimarySource"
  7056. },
  7057. "superproperty" : [ "3" ],
  7058. "domain" : "17",
  7059. "comment" : {
  7060. "en" : "If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ]."
  7061. },
  7062. "attributes" : [ "object", "external" ],
  7063. "id" : "111"
  7064. }, {
  7065. "iri" : "http://www.w3.org/ns/prov#pairEntity",
  7066. "baseIri" : "http://www.w3.org/ns/prov",
  7067. "range" : "17",
  7068. "annotations" : {
  7069. "component" : [ {
  7070. "identifier" : "component",
  7071. "language" : "undefined",
  7072. "value" : "collections",
  7073. "type" : "label"
  7074. }, {
  7075. "identifier" : "component",
  7076. "language" : "undefined",
  7077. "value" : "collections",
  7078. "type" : "label"
  7079. } ],
  7080. "isDefinedBy" : [ {
  7081. "identifier" : "isDefinedBy",
  7082. "language" : "undefined",
  7083. "value" : "http://www.w3.org/ns/prov#",
  7084. "type" : "iri"
  7085. }, {
  7086. "identifier" : "isDefinedBy",
  7087. "language" : "undefined",
  7088. "value" : "http://www.w3.org/ns/prov#",
  7089. "type" : "iri"
  7090. } ],
  7091. "dm" : [ {
  7092. "identifier" : "dm",
  7093. "language" : "undefined",
  7094. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership",
  7095. "type" : "label"
  7096. }, {
  7097. "identifier" : "dm",
  7098. "language" : "undefined",
  7099. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership",
  7100. "type" : "label"
  7101. } ],
  7102. "definition" : [ {
  7103. "identifier" : "definition",
  7104. "language" : "undefined",
  7105. "value" : "The entity of a prov:KeyEntityPair, which is an element of a prov:Dictionary.",
  7106. "type" : "label"
  7107. }, {
  7108. "identifier" : "definition",
  7109. "language" : "undefined",
  7110. "value" : "The entity of a prov:KeyEntityPair, which is an element of a prov:Dictionary.",
  7111. "type" : "label"
  7112. } ],
  7113. "category" : [ {
  7114. "identifier" : "category",
  7115. "language" : "undefined",
  7116. "value" : "collections",
  7117. "type" : "label"
  7118. }, {
  7119. "identifier" : "category",
  7120. "language" : "undefined",
  7121. "value" : "collections",
  7122. "type" : "label"
  7123. } ],
  7124. "constraints" : [ {
  7125. "identifier" : "constraints",
  7126. "language" : "undefined",
  7127. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  7128. "type" : "label"
  7129. }, {
  7130. "identifier" : "constraints",
  7131. "language" : "undefined",
  7132. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  7133. "type" : "label"
  7134. } ],
  7135. "n" : [ {
  7136. "identifier" : "n",
  7137. "language" : "undefined",
  7138. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership",
  7139. "type" : "label"
  7140. }, {
  7141. "identifier" : "n",
  7142. "language" : "undefined",
  7143. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership",
  7144. "type" : "label"
  7145. } ]
  7146. },
  7147. "label" : {
  7148. "IRI-based" : "pairEntity",
  7149. "undefined" : "pairKey"
  7150. },
  7151. "cardinality" : "1",
  7152. "domain" : "22",
  7153. "attributes" : [ "functional", "object", "external" ],
  7154. "id" : "113"
  7155. }, {
  7156. "iri" : "http://www.w3.org/ns/prov#pairKey",
  7157. "baseIri" : "http://www.w3.org/ns/prov",
  7158. "range" : "115",
  7159. "annotations" : {
  7160. "component" : [ {
  7161. "identifier" : "component",
  7162. "language" : "undefined",
  7163. "value" : "collections",
  7164. "type" : "label"
  7165. }, {
  7166. "identifier" : "component",
  7167. "language" : "undefined",
  7168. "value" : "collections",
  7169. "type" : "label"
  7170. } ],
  7171. "isDefinedBy" : [ {
  7172. "identifier" : "isDefinedBy",
  7173. "language" : "undefined",
  7174. "value" : "http://www.w3.org/ns/prov#",
  7175. "type" : "iri"
  7176. }, {
  7177. "identifier" : "isDefinedBy",
  7178. "language" : "undefined",
  7179. "value" : "http://www.w3.org/ns/prov#",
  7180. "type" : "iri"
  7181. } ],
  7182. "dm" : [ {
  7183. "identifier" : "dm",
  7184. "language" : "undefined",
  7185. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership",
  7186. "type" : "label"
  7187. }, {
  7188. "identifier" : "dm",
  7189. "language" : "undefined",
  7190. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership",
  7191. "type" : "label"
  7192. } ],
  7193. "definition" : [ {
  7194. "identifier" : "definition",
  7195. "language" : "undefined",
  7196. "value" : "The key of a prov:KeyEntityPair, which is an element of a prov:Dictionary.",
  7197. "type" : "label"
  7198. }, {
  7199. "identifier" : "definition",
  7200. "language" : "undefined",
  7201. "value" : "The key of a prov:KeyEntityPair, which is an element of a prov:Dictionary.",
  7202. "type" : "label"
  7203. } ],
  7204. "category" : [ {
  7205. "identifier" : "category",
  7206. "language" : "undefined",
  7207. "value" : "collections",
  7208. "type" : "label"
  7209. }, {
  7210. "identifier" : "category",
  7211. "language" : "undefined",
  7212. "value" : "collections",
  7213. "type" : "label"
  7214. } ],
  7215. "constraints" : [ {
  7216. "identifier" : "constraints",
  7217. "language" : "undefined",
  7218. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  7219. "type" : "label"
  7220. }, {
  7221. "identifier" : "constraints",
  7222. "language" : "undefined",
  7223. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  7224. "type" : "label"
  7225. } ],
  7226. "n" : [ {
  7227. "identifier" : "n",
  7228. "language" : "undefined",
  7229. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership",
  7230. "type" : "label"
  7231. }, {
  7232. "identifier" : "n",
  7233. "language" : "undefined",
  7234. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership",
  7235. "type" : "label"
  7236. } ]
  7237. },
  7238. "label" : {
  7239. "IRI-based" : "pairKey",
  7240. "undefined" : "pairKey"
  7241. },
  7242. "cardinality" : "1",
  7243. "domain" : "22",
  7244. "attributes" : [ "functional", "datatype", "external" ],
  7245. "id" : "114"
  7246. }, {
  7247. "iri" : "https://w3id.org/consent-mapping-jit#isGiven",
  7248. "baseIri" : "https://w3id.org/consent-mapping-jit",
  7249. "range" : "117",
  7250. "label" : {
  7251. "IRI-based" : "isGiven"
  7252. },
  7253. "domain" : "110",
  7254. "comment" : {
  7255. "undefined" : "Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.)."
  7256. },
  7257. "attributes" : [ "functional", "datatype" ],
  7258. "id" : "116"
  7259. }, {
  7260. "iri" : "https://w3id.org/consent-mapping-jit#forInclusion",
  7261. "baseIri" : "https://w3id.org/consent-mapping-jit",
  7262. "range" : "94",
  7263. "label" : {
  7264. "IRI-based" : "forInclusion"
  7265. },
  7266. "domain" : "110",
  7267. "comment" : {
  7268. "undefined" : "for inclusion"
  7269. },
  7270. "attributes" : [ "functional", "object" ],
  7271. "id" : "118"
  7272. }, {
  7273. "iri" : "http://www.w3.org/ns/prov#qualifiedInvalidation",
  7274. "baseIri" : "http://www.w3.org/ns/prov",
  7275. "range" : "14",
  7276. "annotations" : {
  7277. "sharesDefinitionWith" : [ {
  7278. "identifier" : "sharesDefinitionWith",
  7279. "language" : "undefined",
  7280. "value" : "http://www.w3.org/ns/prov#Invalidation",
  7281. "type" : "iri"
  7282. }, {
  7283. "identifier" : "sharesDefinitionWith",
  7284. "language" : "undefined",
  7285. "value" : "http://www.w3.org/ns/prov#Invalidation",
  7286. "type" : "iri"
  7287. } ],
  7288. "inverse" : [ {
  7289. "identifier" : "inverse",
  7290. "language" : "undefined",
  7291. "value" : "qualifiedInvalidationOf",
  7292. "type" : "label"
  7293. }, {
  7294. "identifier" : "inverse",
  7295. "language" : "undefined",
  7296. "value" : "qualifiedInvalidationOf",
  7297. "type" : "label"
  7298. } ],
  7299. "component" : [ {
  7300. "identifier" : "component",
  7301. "language" : "undefined",
  7302. "value" : "entities-activities",
  7303. "type" : "label"
  7304. }, {
  7305. "identifier" : "component",
  7306. "language" : "undefined",
  7307. "value" : "entities-activities",
  7308. "type" : "label"
  7309. } ],
  7310. "isDefinedBy" : [ {
  7311. "identifier" : "isDefinedBy",
  7312. "language" : "undefined",
  7313. "value" : "http://www.w3.org/ns/prov-o#",
  7314. "type" : "iri"
  7315. }, {
  7316. "identifier" : "isDefinedBy",
  7317. "language" : "undefined",
  7318. "value" : "http://www.w3.org/ns/prov-o#",
  7319. "type" : "iri"
  7320. }, {
  7321. "identifier" : "isDefinedBy",
  7322. "language" : "undefined",
  7323. "value" : "http://www.w3.org/ns/prov-o#",
  7324. "type" : "iri"
  7325. } ],
  7326. "unqualifiedForm" : [ {
  7327. "identifier" : "unqualifiedForm",
  7328. "language" : "undefined",
  7329. "value" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  7330. "type" : "iri"
  7331. }, {
  7332. "identifier" : "unqualifiedForm",
  7333. "language" : "undefined",
  7334. "value" : "http://www.w3.org/ns/prov#wasInvalidatedBy",
  7335. "type" : "iri"
  7336. } ],
  7337. "category" : [ {
  7338. "identifier" : "category",
  7339. "language" : "undefined",
  7340. "value" : "qualified",
  7341. "type" : "label"
  7342. }, {
  7343. "identifier" : "category",
  7344. "language" : "undefined",
  7345. "value" : "qualified",
  7346. "type" : "label"
  7347. } ]
  7348. },
  7349. "label" : {
  7350. "IRI-based" : "qualifiedInvalidation",
  7351. "undefined" : "qualifiedInvalidation"
  7352. },
  7353. "superproperty" : [ "3" ],
  7354. "domain" : "17",
  7355. "comment" : {
  7356. "en" : "If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :a; :foo :bar ]."
  7357. },
  7358. "attributes" : [ "object", "external" ],
  7359. "id" : "119"
  7360. }, {
  7361. "iri" : "http://www.w3.org/ns/prov#wasPrimarySourceOf",
  7362. "inverse" : "78",
  7363. "baseIri" : "http://www.w3.org/ns/prov",
  7364. "range" : "17",
  7365. "annotations" : {
  7366. "isDefinedBy" : [ {
  7367. "identifier" : "isDefinedBy",
  7368. "language" : "undefined",
  7369. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  7370. "type" : "iri"
  7371. }, {
  7372. "identifier" : "isDefinedBy",
  7373. "language" : "undefined",
  7374. "value" : "http://www.w3.org/ns/prov#",
  7375. "type" : "iri"
  7376. } ]
  7377. },
  7378. "label" : {
  7379. "IRI-based" : "wasPrimarySourceOf",
  7380. "undefined" : "wasPrimarySourceOf"
  7381. },
  7382. "domain" : "17",
  7383. "attributes" : [ "object", "external" ],
  7384. "id" : "120"
  7385. }, {
  7386. "iri" : "http://www.w3.org/ns/prov#wasPlanOf",
  7387. "inverse" : "86",
  7388. "baseIri" : "http://www.w3.org/ns/prov",
  7389. "range" : "87",
  7390. "annotations" : {
  7391. "isDefinedBy" : [ {
  7392. "identifier" : "isDefinedBy",
  7393. "language" : "undefined",
  7394. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  7395. "type" : "iri"
  7396. }, {
  7397. "identifier" : "isDefinedBy",
  7398. "language" : "undefined",
  7399. "value" : "http://www.w3.org/ns/prov#",
  7400. "type" : "iri"
  7401. } ]
  7402. },
  7403. "label" : {
  7404. "IRI-based" : "wasPlanOf",
  7405. "undefined" : "wasPlanOf"
  7406. },
  7407. "domain" : "88",
  7408. "attributes" : [ "object", "external" ],
  7409. "id" : "121"
  7410. }, {
  7411. "iri" : "http://www.w3.org/ns/prov#removedKey",
  7412. "baseIri" : "http://www.w3.org/ns/prov",
  7413. "range" : "123",
  7414. "annotations" : {
  7415. "component" : [ {
  7416. "identifier" : "component",
  7417. "language" : "undefined",
  7418. "value" : "collections",
  7419. "type" : "label"
  7420. }, {
  7421. "identifier" : "component",
  7422. "language" : "undefined",
  7423. "value" : "collections",
  7424. "type" : "label"
  7425. } ],
  7426. "isDefinedBy" : [ {
  7427. "identifier" : "isDefinedBy",
  7428. "language" : "undefined",
  7429. "value" : "http://www.w3.org/ns/prov#",
  7430. "type" : "iri"
  7431. }, {
  7432. "identifier" : "isDefinedBy",
  7433. "language" : "undefined",
  7434. "value" : "http://www.w3.org/ns/prov#",
  7435. "type" : "iri"
  7436. } ],
  7437. "dm" : [ {
  7438. "identifier" : "dm",
  7439. "language" : "undefined",
  7440. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  7441. "type" : "label"
  7442. }, {
  7443. "identifier" : "dm",
  7444. "language" : "undefined",
  7445. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  7446. "type" : "label"
  7447. } ],
  7448. "definition" : [ {
  7449. "identifier" : "definition",
  7450. "language" : "undefined",
  7451. "value" : "The key removed in a Removal.",
  7452. "type" : "label"
  7453. }, {
  7454. "identifier" : "definition",
  7455. "language" : "undefined",
  7456. "value" : "The key removed in a Removal.",
  7457. "type" : "label"
  7458. } ],
  7459. "category" : [ {
  7460. "identifier" : "category",
  7461. "language" : "undefined",
  7462. "value" : "collections",
  7463. "type" : "label"
  7464. }, {
  7465. "identifier" : "category",
  7466. "language" : "undefined",
  7467. "value" : "collections",
  7468. "type" : "label"
  7469. } ],
  7470. "constraints" : [ {
  7471. "identifier" : "constraints",
  7472. "language" : "undefined",
  7473. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  7474. "type" : "label"
  7475. }, {
  7476. "identifier" : "constraints",
  7477. "language" : "undefined",
  7478. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  7479. "type" : "label"
  7480. } ],
  7481. "n" : [ {
  7482. "identifier" : "n",
  7483. "language" : "undefined",
  7484. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  7485. "type" : "label"
  7486. }, {
  7487. "identifier" : "n",
  7488. "language" : "undefined",
  7489. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  7490. "type" : "label"
  7491. } ]
  7492. },
  7493. "label" : {
  7494. "IRI-based" : "removedKey",
  7495. "undefined" : "removedKey"
  7496. },
  7497. "minCardinality" : "1",
  7498. "domain" : "69",
  7499. "attributes" : [ "datatype", "external" ],
  7500. "id" : "122"
  7501. }, {
  7502. "iri" : "http://www.w3.org/ns/prov#started",
  7503. "inverse" : "104",
  7504. "baseIri" : "http://www.w3.org/ns/prov",
  7505. "range" : "9",
  7506. "annotations" : {
  7507. "isDefinedBy" : [ {
  7508. "identifier" : "isDefinedBy",
  7509. "language" : "undefined",
  7510. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  7511. "type" : "iri"
  7512. }, {
  7513. "identifier" : "isDefinedBy",
  7514. "language" : "undefined",
  7515. "value" : "http://www.w3.org/ns/prov#",
  7516. "type" : "iri"
  7517. } ]
  7518. },
  7519. "label" : {
  7520. "IRI-based" : "started",
  7521. "undefined" : "started"
  7522. },
  7523. "domain" : "17",
  7524. "attributes" : [ "object", "external" ],
  7525. "id" : "124"
  7526. }, {
  7527. "iri" : "http://www.w3.org/ns/prov#qualifiedDerivation",
  7528. "baseIri" : "http://www.w3.org/ns/prov",
  7529. "range" : "66",
  7530. "annotations" : {
  7531. "sharesDefinitionWith" : [ {
  7532. "identifier" : "sharesDefinitionWith",
  7533. "language" : "undefined",
  7534. "value" : "http://www.w3.org/ns/prov#Derivation",
  7535. "type" : "iri"
  7536. }, {
  7537. "identifier" : "sharesDefinitionWith",
  7538. "language" : "undefined",
  7539. "value" : "http://www.w3.org/ns/prov#Derivation",
  7540. "type" : "iri"
  7541. } ],
  7542. "inverse" : [ {
  7543. "identifier" : "inverse",
  7544. "language" : "undefined",
  7545. "value" : "qualifiedDerivationOf",
  7546. "type" : "label"
  7547. }, {
  7548. "identifier" : "inverse",
  7549. "language" : "undefined",
  7550. "value" : "qualifiedDerivationOf",
  7551. "type" : "label"
  7552. } ],
  7553. "component" : [ {
  7554. "identifier" : "component",
  7555. "language" : "undefined",
  7556. "value" : "derivations",
  7557. "type" : "label"
  7558. }, {
  7559. "identifier" : "component",
  7560. "language" : "undefined",
  7561. "value" : "derivations",
  7562. "type" : "label"
  7563. } ],
  7564. "isDefinedBy" : [ {
  7565. "identifier" : "isDefinedBy",
  7566. "language" : "undefined",
  7567. "value" : "http://www.w3.org/ns/prov-o#",
  7568. "type" : "iri"
  7569. }, {
  7570. "identifier" : "isDefinedBy",
  7571. "language" : "undefined",
  7572. "value" : "http://www.w3.org/ns/prov-o#",
  7573. "type" : "iri"
  7574. }, {
  7575. "identifier" : "isDefinedBy",
  7576. "language" : "undefined",
  7577. "value" : "http://www.w3.org/ns/prov-o#",
  7578. "type" : "iri"
  7579. } ],
  7580. "unqualifiedForm" : [ {
  7581. "identifier" : "unqualifiedForm",
  7582. "language" : "undefined",
  7583. "value" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  7584. "type" : "iri"
  7585. }, {
  7586. "identifier" : "unqualifiedForm",
  7587. "language" : "undefined",
  7588. "value" : "http://www.w3.org/ns/prov#wasDerivedFrom",
  7589. "type" : "iri"
  7590. } ],
  7591. "category" : [ {
  7592. "identifier" : "category",
  7593. "language" : "undefined",
  7594. "value" : "qualified",
  7595. "type" : "label"
  7596. }, {
  7597. "identifier" : "category",
  7598. "language" : "undefined",
  7599. "value" : "qualified",
  7600. "type" : "label"
  7601. } ]
  7602. },
  7603. "label" : {
  7604. "IRI-based" : "qualifiedDerivation",
  7605. "undefined" : "qualifiedDerivation"
  7606. },
  7607. "superproperty" : [ "3" ],
  7608. "domain" : "17",
  7609. "subproperty" : [ "130", "31" ],
  7610. "comment" : {
  7611. "en" : "If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation; prov:entity :e; :foo :bar ]."
  7612. },
  7613. "attributes" : [ "object", "external" ],
  7614. "id" : "34"
  7615. }, {
  7616. "iri" : "http://www.w3.org/ns/prov#wasMemberOf",
  7617. "inverse" : "106",
  7618. "baseIri" : "http://www.w3.org/ns/prov",
  7619. "range" : "51",
  7620. "annotations" : {
  7621. "isDefinedBy" : [ {
  7622. "identifier" : "isDefinedBy",
  7623. "language" : "undefined",
  7624. "value" : "http://www.w3.org/ns/prov#",
  7625. "type" : "iri"
  7626. }, {
  7627. "identifier" : "isDefinedBy",
  7628. "language" : "undefined",
  7629. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  7630. "type" : "iri"
  7631. } ]
  7632. },
  7633. "label" : {
  7634. "IRI-based" : "wasMemberOf",
  7635. "undefined" : "wasMemberOf"
  7636. },
  7637. "domain" : "17",
  7638. "attributes" : [ "object", "external" ],
  7639. "id" : "131"
  7640. }, {
  7641. "iri" : "http://www.w3.org/ns/prov#wasStartedBy",
  7642. "baseIri" : "http://www.w3.org/ns/prov",
  7643. "range" : "17",
  7644. "annotations" : {
  7645. "inverse" : [ {
  7646. "identifier" : "inverse",
  7647. "language" : "undefined",
  7648. "value" : "started",
  7649. "type" : "label"
  7650. }, {
  7651. "identifier" : "inverse",
  7652. "language" : "undefined",
  7653. "value" : "started",
  7654. "type" : "label"
  7655. } ],
  7656. "component" : [ {
  7657. "identifier" : "component",
  7658. "language" : "undefined",
  7659. "value" : "entities-activities",
  7660. "type" : "label"
  7661. }, {
  7662. "identifier" : "component",
  7663. "language" : "undefined",
  7664. "value" : "entities-activities",
  7665. "type" : "label"
  7666. } ],
  7667. "isDefinedBy" : [ {
  7668. "identifier" : "isDefinedBy",
  7669. "language" : "undefined",
  7670. "value" : "http://www.w3.org/ns/prov-o#",
  7671. "type" : "iri"
  7672. }, {
  7673. "identifier" : "isDefinedBy",
  7674. "language" : "undefined",
  7675. "value" : "http://www.w3.org/ns/prov-o#",
  7676. "type" : "iri"
  7677. }, {
  7678. "identifier" : "isDefinedBy",
  7679. "language" : "undefined",
  7680. "value" : "http://www.w3.org/ns/prov-o#",
  7681. "type" : "iri"
  7682. } ],
  7683. "category" : [ {
  7684. "identifier" : "category",
  7685. "language" : "undefined",
  7686. "value" : "expanded",
  7687. "type" : "label"
  7688. }, {
  7689. "identifier" : "category",
  7690. "language" : "undefined",
  7691. "value" : "expanded",
  7692. "type" : "label"
  7693. } ],
  7694. "qualifiedForm" : [ {
  7695. "identifier" : "qualifiedForm",
  7696. "language" : "undefined",
  7697. "value" : "http://www.w3.org/ns/prov#qualifiedStart",
  7698. "type" : "iri"
  7699. }, {
  7700. "identifier" : "qualifiedForm",
  7701. "language" : "undefined",
  7702. "value" : "http://www.w3.org/ns/prov#qualifiedStart",
  7703. "type" : "iri"
  7704. }, {
  7705. "identifier" : "qualifiedForm",
  7706. "language" : "undefined",
  7707. "value" : "http://www.w3.org/ns/prov#Start",
  7708. "type" : "iri"
  7709. }, {
  7710. "identifier" : "qualifiedForm",
  7711. "language" : "undefined",
  7712. "value" : "http://www.w3.org/ns/prov#Start",
  7713. "type" : "iri"
  7714. } ]
  7715. },
  7716. "label" : {
  7717. "IRI-based" : "wasStartedBy",
  7718. "undefined" : "wasStartedBy"
  7719. },
  7720. "superproperty" : [ "77" ],
  7721. "domain" : "9",
  7722. "comment" : {
  7723. "en" : "Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity."
  7724. },
  7725. "attributes" : [ "object", "external" ],
  7726. "id" : "104"
  7727. }, {
  7728. "iri" : "https://w3id.org/consent-mapping-jit#validUntil",
  7729. "baseIri" : "https://w3id.org/consent-mapping-jit",
  7730. "range" : "133",
  7731. "label" : {
  7732. "IRI-based" : "validUntil"
  7733. },
  7734. "domain" : "110",
  7735. "comment" : {
  7736. "undefined" : "Indicates when consent expires."
  7737. },
  7738. "attributes" : [ "functional", "datatype" ],
  7739. "id" : "132"
  7740. }, {
  7741. "iri" : "http://www.w3.org/ns/prov#hadActivity",
  7742. "baseIri" : "http://www.w3.org/ns/prov",
  7743. "range" : "9",
  7744. "annotations" : {
  7745. "editorialNote" : [ {
  7746. "identifier" : "editorialNote",
  7747. "language" : "en",
  7748. "value" : "The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL.",
  7749. "type" : "label"
  7750. }, {
  7751. "identifier" : "editorialNote",
  7752. "language" : "en",
  7753. "value" : "The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL.",
  7754. "type" : "label"
  7755. } ],
  7756. "sharesDefinitionWith" : [ {
  7757. "identifier" : "sharesDefinitionWith",
  7758. "language" : "undefined",
  7759. "value" : "http://www.w3.org/ns/prov#Activity",
  7760. "type" : "iri"
  7761. }, {
  7762. "identifier" : "sharesDefinitionWith",
  7763. "language" : "undefined",
  7764. "value" : "http://www.w3.org/ns/prov#Activity",
  7765. "type" : "iri"
  7766. } ],
  7767. "inverse" : [ {
  7768. "identifier" : "inverse",
  7769. "language" : "undefined",
  7770. "value" : "wasActivityOfInfluence",
  7771. "type" : "label"
  7772. }, {
  7773. "identifier" : "inverse",
  7774. "language" : "undefined",
  7775. "value" : "wasActivityOfInfluence",
  7776. "type" : "label"
  7777. } ],
  7778. "component" : [ {
  7779. "identifier" : "component",
  7780. "language" : "undefined",
  7781. "value" : "derivations",
  7782. "type" : "label"
  7783. }, {
  7784. "identifier" : "component",
  7785. "language" : "undefined",
  7786. "value" : "derivations",
  7787. "type" : "label"
  7788. } ],
  7789. "isDefinedBy" : [ {
  7790. "identifier" : "isDefinedBy",
  7791. "language" : "undefined",
  7792. "value" : "http://www.w3.org/ns/prov-o#",
  7793. "type" : "iri"
  7794. }, {
  7795. "identifier" : "isDefinedBy",
  7796. "language" : "undefined",
  7797. "value" : "http://www.w3.org/ns/prov-o#",
  7798. "type" : "iri"
  7799. }, {
  7800. "identifier" : "isDefinedBy",
  7801. "language" : "undefined",
  7802. "value" : "http://www.w3.org/ns/prov-o#",
  7803. "type" : "iri"
  7804. } ],
  7805. "category" : [ {
  7806. "identifier" : "category",
  7807. "language" : "undefined",
  7808. "value" : "qualified",
  7809. "type" : "label"
  7810. }, {
  7811. "identifier" : "category",
  7812. "language" : "undefined",
  7813. "value" : "qualified",
  7814. "type" : "label"
  7815. } ]
  7816. },
  7817. "label" : {
  7818. "IRI-based" : "hadActivity",
  7819. "undefined" : "hadActivity"
  7820. },
  7821. "domain" : "135",
  7822. "comment" : {
  7823. "en" : "The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead).",
  7824. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  7825. },
  7826. "attributes" : [ "object", "external" ],
  7827. "id" : "134"
  7828. }, {
  7829. "iri" : "http://www.w3.org/ns/prov#quotedAs",
  7830. "inverse" : "80",
  7831. "baseIri" : "http://www.w3.org/ns/prov",
  7832. "range" : "17",
  7833. "annotations" : {
  7834. "isDefinedBy" : [ {
  7835. "identifier" : "isDefinedBy",
  7836. "language" : "undefined",
  7837. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  7838. "type" : "iri"
  7839. }, {
  7840. "identifier" : "isDefinedBy",
  7841. "language" : "undefined",
  7842. "value" : "http://www.w3.org/ns/prov#",
  7843. "type" : "iri"
  7844. } ]
  7845. },
  7846. "label" : {
  7847. "IRI-based" : "quotedAs",
  7848. "undefined" : "quotedAs"
  7849. },
  7850. "domain" : "17",
  7851. "attributes" : [ "object", "external" ],
  7852. "id" : "136"
  7853. }, {
  7854. "iri" : "http://www.w3.org/ns/prov#qualifiedEnd",
  7855. "baseIri" : "http://www.w3.org/ns/prov",
  7856. "range" : "8",
  7857. "annotations" : {
  7858. "sharesDefinitionWith" : [ {
  7859. "identifier" : "sharesDefinitionWith",
  7860. "language" : "undefined",
  7861. "value" : "http://www.w3.org/ns/prov#End",
  7862. "type" : "iri"
  7863. }, {
  7864. "identifier" : "sharesDefinitionWith",
  7865. "language" : "undefined",
  7866. "value" : "http://www.w3.org/ns/prov#End",
  7867. "type" : "iri"
  7868. } ],
  7869. "inverse" : [ {
  7870. "identifier" : "inverse",
  7871. "language" : "undefined",
  7872. "value" : "qualifiedEndOf",
  7873. "type" : "label"
  7874. }, {
  7875. "identifier" : "inverse",
  7876. "language" : "undefined",
  7877. "value" : "qualifiedEndOf",
  7878. "type" : "label"
  7879. } ],
  7880. "component" : [ {
  7881. "identifier" : "component",
  7882. "language" : "undefined",
  7883. "value" : "entities-activities",
  7884. "type" : "label"
  7885. }, {
  7886. "identifier" : "component",
  7887. "language" : "undefined",
  7888. "value" : "entities-activities",
  7889. "type" : "label"
  7890. } ],
  7891. "isDefinedBy" : [ {
  7892. "identifier" : "isDefinedBy",
  7893. "language" : "undefined",
  7894. "value" : "http://www.w3.org/ns/prov-o#",
  7895. "type" : "iri"
  7896. }, {
  7897. "identifier" : "isDefinedBy",
  7898. "language" : "undefined",
  7899. "value" : "http://www.w3.org/ns/prov-o#",
  7900. "type" : "iri"
  7901. }, {
  7902. "identifier" : "isDefinedBy",
  7903. "language" : "undefined",
  7904. "value" : "http://www.w3.org/ns/prov-o#",
  7905. "type" : "iri"
  7906. } ],
  7907. "unqualifiedForm" : [ {
  7908. "identifier" : "unqualifiedForm",
  7909. "language" : "undefined",
  7910. "value" : "http://www.w3.org/ns/prov#wasEndedBy",
  7911. "type" : "iri"
  7912. }, {
  7913. "identifier" : "unqualifiedForm",
  7914. "language" : "undefined",
  7915. "value" : "http://www.w3.org/ns/prov#wasEndedBy",
  7916. "type" : "iri"
  7917. } ],
  7918. "category" : [ {
  7919. "identifier" : "category",
  7920. "language" : "undefined",
  7921. "value" : "qualified",
  7922. "type" : "label"
  7923. }, {
  7924. "identifier" : "category",
  7925. "language" : "undefined",
  7926. "value" : "qualified",
  7927. "type" : "label"
  7928. } ]
  7929. },
  7930. "label" : {
  7931. "IRI-based" : "qualifiedEnd",
  7932. "undefined" : "qualifiedEnd"
  7933. },
  7934. "superproperty" : [ "3" ],
  7935. "domain" : "9",
  7936. "comment" : {
  7937. "en" : "If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End; prov:entity :e1; :foo :bar ]."
  7938. },
  7939. "attributes" : [ "object", "external" ],
  7940. "id" : "10"
  7941. }, {
  7942. "iri" : "http://www.w3.org/ns/prov#qualifiedInvalidationOf",
  7943. "inverse" : "119",
  7944. "baseIri" : "http://www.w3.org/ns/prov",
  7945. "range" : "17",
  7946. "annotations" : {
  7947. "isDefinedBy" : [ {
  7948. "identifier" : "isDefinedBy",
  7949. "language" : "undefined",
  7950. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  7951. "type" : "iri"
  7952. }, {
  7953. "identifier" : "isDefinedBy",
  7954. "language" : "undefined",
  7955. "value" : "http://www.w3.org/ns/prov#",
  7956. "type" : "iri"
  7957. } ]
  7958. },
  7959. "label" : {
  7960. "IRI-based" : "qualifiedInvalidationOf",
  7961. "undefined" : "qualifiedInvalidationOf"
  7962. },
  7963. "domain" : "14",
  7964. "attributes" : [ "object", "external" ],
  7965. "id" : "138"
  7966. }, {
  7967. "iri" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  7968. "baseIri" : "http://www.w3.org/ns/prov",
  7969. "range" : "24",
  7970. "annotations" : {
  7971. "inverse" : [ {
  7972. "identifier" : "inverse",
  7973. "language" : "undefined",
  7974. "value" : "wasAssociateFor",
  7975. "type" : "label"
  7976. }, {
  7977. "identifier" : "inverse",
  7978. "language" : "undefined",
  7979. "value" : "wasAssociateFor",
  7980. "type" : "label"
  7981. } ],
  7982. "component" : [ {
  7983. "identifier" : "component",
  7984. "language" : "undefined",
  7985. "value" : "agents-responsibility",
  7986. "type" : "label"
  7987. }, {
  7988. "identifier" : "component",
  7989. "language" : "undefined",
  7990. "value" : "agents-responsibility",
  7991. "type" : "label"
  7992. } ],
  7993. "isDefinedBy" : [ {
  7994. "identifier" : "isDefinedBy",
  7995. "language" : "undefined",
  7996. "value" : "http://www.w3.org/ns/prov-o#",
  7997. "type" : "iri"
  7998. }, {
  7999. "identifier" : "isDefinedBy",
  8000. "language" : "undefined",
  8001. "value" : "http://www.w3.org/ns/prov-o#",
  8002. "type" : "iri"
  8003. }, {
  8004. "identifier" : "isDefinedBy",
  8005. "language" : "undefined",
  8006. "value" : "http://www.w3.org/ns/prov-o#",
  8007. "type" : "iri"
  8008. } ],
  8009. "category" : [ {
  8010. "identifier" : "category",
  8011. "language" : "undefined",
  8012. "value" : "starting-point",
  8013. "type" : "label"
  8014. }, {
  8015. "identifier" : "category",
  8016. "language" : "undefined",
  8017. "value" : "starting-point",
  8018. "type" : "label"
  8019. } ],
  8020. "qualifiedForm" : [ {
  8021. "identifier" : "qualifiedForm",
  8022. "language" : "undefined",
  8023. "value" : "http://www.w3.org/ns/prov#qualifiedAssociation",
  8024. "type" : "iri"
  8025. }, {
  8026. "identifier" : "qualifiedForm",
  8027. "language" : "undefined",
  8028. "value" : "http://www.w3.org/ns/prov#qualifiedAssociation",
  8029. "type" : "iri"
  8030. }, {
  8031. "identifier" : "qualifiedForm",
  8032. "language" : "undefined",
  8033. "value" : "http://www.w3.org/ns/prov#Association",
  8034. "type" : "iri"
  8035. }, {
  8036. "identifier" : "qualifiedForm",
  8037. "language" : "undefined",
  8038. "value" : "http://www.w3.org/ns/prov#Association",
  8039. "type" : "iri"
  8040. } ]
  8041. },
  8042. "label" : {
  8043. "IRI-based" : "wasAssociatedWith",
  8044. "undefined" : "wasAssociatedWith"
  8045. },
  8046. "superproperty" : [ "77" ],
  8047. "domain" : "9",
  8048. "comment" : {
  8049. "en" : "An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity."
  8050. },
  8051. "attributes" : [ "object", "external" ],
  8052. "id" : "97"
  8053. }, {
  8054. "iri" : "http://www.w3.org/ns/prov#qualifiedQuotationOf",
  8055. "inverse" : "85",
  8056. "baseIri" : "http://www.w3.org/ns/prov",
  8057. "range" : "17",
  8058. "annotations" : {
  8059. "isDefinedBy" : [ {
  8060. "identifier" : "isDefinedBy",
  8061. "language" : "undefined",
  8062. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  8063. "type" : "iri"
  8064. }, {
  8065. "identifier" : "isDefinedBy",
  8066. "language" : "undefined",
  8067. "value" : "http://www.w3.org/ns/prov#",
  8068. "type" : "iri"
  8069. } ]
  8070. },
  8071. "label" : {
  8072. "IRI-based" : "qualifiedQuotationOf",
  8073. "undefined" : "qualifiedQuotationOf"
  8074. },
  8075. "domain" : "67",
  8076. "attributes" : [ "object", "external" ],
  8077. "id" : "142"
  8078. }, {
  8079. "iri" : "http://www.w3.org/ns/prov#wasRevisionOf",
  8080. "baseIri" : "http://www.w3.org/ns/prov",
  8081. "range" : "18",
  8082. "annotations" : {
  8083. "inverse" : [ {
  8084. "identifier" : "inverse",
  8085. "language" : "undefined",
  8086. "value" : "hadRevision",
  8087. "type" : "label"
  8088. }, {
  8089. "identifier" : "inverse",
  8090. "language" : "undefined",
  8091. "value" : "hadRevision",
  8092. "type" : "label"
  8093. } ],
  8094. "component" : [ {
  8095. "identifier" : "component",
  8096. "language" : "undefined",
  8097. "value" : "derivations",
  8098. "type" : "label"
  8099. }, {
  8100. "identifier" : "component",
  8101. "language" : "undefined",
  8102. "value" : "derivations",
  8103. "type" : "label"
  8104. } ],
  8105. "isDefinedBy" : [ {
  8106. "identifier" : "isDefinedBy",
  8107. "language" : "undefined",
  8108. "value" : "http://www.w3.org/ns/prov-o#",
  8109. "type" : "iri"
  8110. }, {
  8111. "identifier" : "isDefinedBy",
  8112. "language" : "undefined",
  8113. "value" : "http://www.w3.org/ns/prov-o#",
  8114. "type" : "iri"
  8115. }, {
  8116. "identifier" : "isDefinedBy",
  8117. "language" : "undefined",
  8118. "value" : "http://www.w3.org/ns/prov-o#",
  8119. "type" : "iri"
  8120. } ],
  8121. "category" : [ {
  8122. "identifier" : "category",
  8123. "language" : "undefined",
  8124. "value" : "expanded",
  8125. "type" : "label"
  8126. }, {
  8127. "identifier" : "category",
  8128. "language" : "undefined",
  8129. "value" : "expanded",
  8130. "type" : "label"
  8131. } ],
  8132. "qualifiedForm" : [ {
  8133. "identifier" : "qualifiedForm",
  8134. "language" : "undefined",
  8135. "value" : "http://www.w3.org/ns/prov#Revision",
  8136. "type" : "iri"
  8137. }, {
  8138. "identifier" : "qualifiedForm",
  8139. "language" : "undefined",
  8140. "value" : "http://www.w3.org/ns/prov#Revision",
  8141. "type" : "iri"
  8142. }, {
  8143. "identifier" : "qualifiedForm",
  8144. "language" : "undefined",
  8145. "value" : "http://www.w3.org/ns/prov#qualifiedRevision",
  8146. "type" : "iri"
  8147. }, {
  8148. "identifier" : "qualifiedForm",
  8149. "language" : "undefined",
  8150. "value" : "http://www.w3.org/ns/prov#qualifiedRevision",
  8151. "type" : "iri"
  8152. } ]
  8153. },
  8154. "label" : {
  8155. "IRI-based" : "wasRevisionOf",
  8156. "undefined" : "wasRevisionOf"
  8157. },
  8158. "superproperty" : [ "39" ],
  8159. "domain" : "17",
  8160. "comment" : {
  8161. "en" : "A revision is a derivation that revises an entity into a revised version."
  8162. },
  8163. "attributes" : [ "object", "external" ],
  8164. "id" : "79"
  8165. }, {
  8166. "iri" : "http://www.w3.org/ns/prov#dictionary",
  8167. "baseIri" : "http://www.w3.org/ns/prov",
  8168. "range" : "32",
  8169. "annotations" : {
  8170. "component" : [ {
  8171. "identifier" : "component",
  8172. "language" : "undefined",
  8173. "value" : "collections",
  8174. "type" : "label"
  8175. }, {
  8176. "identifier" : "component",
  8177. "language" : "undefined",
  8178. "value" : "collections",
  8179. "type" : "label"
  8180. } ],
  8181. "isDefinedBy" : [ {
  8182. "identifier" : "isDefinedBy",
  8183. "language" : "undefined",
  8184. "value" : "http://www.w3.org/ns/prov#",
  8185. "type" : "iri"
  8186. }, {
  8187. "identifier" : "isDefinedBy",
  8188. "language" : "undefined",
  8189. "value" : "http://www.w3.org/ns/prov#",
  8190. "type" : "iri"
  8191. } ],
  8192. "dm" : [ {
  8193. "identifier" : "dm",
  8194. "language" : "undefined",
  8195. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  8196. "type" : "label"
  8197. }, {
  8198. "identifier" : "dm",
  8199. "language" : "undefined",
  8200. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  8201. "type" : "label"
  8202. }, {
  8203. "identifier" : "dm",
  8204. "language" : "undefined",
  8205. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  8206. "type" : "label"
  8207. }, {
  8208. "identifier" : "dm",
  8209. "language" : "undefined",
  8210. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  8211. "type" : "label"
  8212. } ],
  8213. "definition" : [ {
  8214. "identifier" : "definition",
  8215. "language" : "undefined",
  8216. "value" : "The property used by a prov:Insertion and prov:Removal to cite the prov:Dictionary that was prov:derivedByInsertionFrom or prov:derivedByRemovalFrom another dictionary.",
  8217. "type" : "label"
  8218. }, {
  8219. "identifier" : "definition",
  8220. "language" : "undefined",
  8221. "value" : "The property used by a prov:Insertion and prov:Removal to cite the prov:Dictionary that was prov:derivedByInsertionFrom or prov:derivedByRemovalFrom another dictionary.",
  8222. "type" : "label"
  8223. } ],
  8224. "category" : [ {
  8225. "identifier" : "category",
  8226. "language" : "undefined",
  8227. "value" : "collections",
  8228. "type" : "label"
  8229. }, {
  8230. "identifier" : "category",
  8231. "language" : "undefined",
  8232. "value" : "collections",
  8233. "type" : "label"
  8234. } ],
  8235. "constraints" : [ {
  8236. "identifier" : "constraints",
  8237. "language" : "undefined",
  8238. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  8239. "type" : "label"
  8240. }, {
  8241. "identifier" : "constraints",
  8242. "language" : "undefined",
  8243. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  8244. "type" : "label"
  8245. } ],
  8246. "n" : [ {
  8247. "identifier" : "n",
  8248. "language" : "undefined",
  8249. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  8250. "type" : "label"
  8251. }, {
  8252. "identifier" : "n",
  8253. "language" : "undefined",
  8254. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  8255. "type" : "label"
  8256. }, {
  8257. "identifier" : "n",
  8258. "language" : "undefined",
  8259. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  8260. "type" : "label"
  8261. }, {
  8262. "identifier" : "n",
  8263. "language" : "undefined",
  8264. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  8265. "type" : "label"
  8266. } ]
  8267. },
  8268. "label" : {
  8269. "IRI-based" : "dictionary",
  8270. "undefined" : "dictionary"
  8271. },
  8272. "superproperty" : [ "57" ],
  8273. "cardinality" : "1",
  8274. "domain" : "146",
  8275. "attributes" : [ "object", "external" ],
  8276. "id" : "145"
  8277. }, {
  8278. "iri" : "http://www.w3.org/ns/prov#hadInfluence",
  8279. "inverse" : "149",
  8280. "baseIri" : "http://www.w3.org/ns/prov",
  8281. "range" : "1",
  8282. "annotations" : {
  8283. "isDefinedBy" : [ {
  8284. "identifier" : "isDefinedBy",
  8285. "language" : "undefined",
  8286. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  8287. "type" : "iri"
  8288. }, {
  8289. "identifier" : "isDefinedBy",
  8290. "language" : "undefined",
  8291. "value" : "http://www.w3.org/ns/prov#",
  8292. "type" : "iri"
  8293. } ]
  8294. },
  8295. "label" : {
  8296. "IRI-based" : "hadInfluence",
  8297. "undefined" : "hadInfluence"
  8298. },
  8299. "domain" : "148",
  8300. "attributes" : [ "object", "external" ],
  8301. "id" : "147"
  8302. }, {
  8303. "iri" : "http://www.w3.org/ns/prov#wasEndedBy",
  8304. "baseIri" : "http://www.w3.org/ns/prov",
  8305. "range" : "17",
  8306. "annotations" : {
  8307. "inverse" : [ {
  8308. "identifier" : "inverse",
  8309. "language" : "undefined",
  8310. "value" : "ended",
  8311. "type" : "label"
  8312. }, {
  8313. "identifier" : "inverse",
  8314. "language" : "undefined",
  8315. "value" : "ended",
  8316. "type" : "label"
  8317. } ],
  8318. "component" : [ {
  8319. "identifier" : "component",
  8320. "language" : "undefined",
  8321. "value" : "entities-activities",
  8322. "type" : "label"
  8323. }, {
  8324. "identifier" : "component",
  8325. "language" : "undefined",
  8326. "value" : "entities-activities",
  8327. "type" : "label"
  8328. } ],
  8329. "isDefinedBy" : [ {
  8330. "identifier" : "isDefinedBy",
  8331. "language" : "undefined",
  8332. "value" : "http://www.w3.org/ns/prov-o#",
  8333. "type" : "iri"
  8334. }, {
  8335. "identifier" : "isDefinedBy",
  8336. "language" : "undefined",
  8337. "value" : "http://www.w3.org/ns/prov-o#",
  8338. "type" : "iri"
  8339. }, {
  8340. "identifier" : "isDefinedBy",
  8341. "language" : "undefined",
  8342. "value" : "http://www.w3.org/ns/prov-o#",
  8343. "type" : "iri"
  8344. } ],
  8345. "category" : [ {
  8346. "identifier" : "category",
  8347. "language" : "undefined",
  8348. "value" : "expanded",
  8349. "type" : "label"
  8350. }, {
  8351. "identifier" : "category",
  8352. "language" : "undefined",
  8353. "value" : "expanded",
  8354. "type" : "label"
  8355. } ],
  8356. "qualifiedForm" : [ {
  8357. "identifier" : "qualifiedForm",
  8358. "language" : "undefined",
  8359. "value" : "http://www.w3.org/ns/prov#qualifiedEnd",
  8360. "type" : "iri"
  8361. }, {
  8362. "identifier" : "qualifiedForm",
  8363. "language" : "undefined",
  8364. "value" : "http://www.w3.org/ns/prov#qualifiedEnd",
  8365. "type" : "iri"
  8366. }, {
  8367. "identifier" : "qualifiedForm",
  8368. "language" : "undefined",
  8369. "value" : "http://www.w3.org/ns/prov#End",
  8370. "type" : "iri"
  8371. }, {
  8372. "identifier" : "qualifiedForm",
  8373. "language" : "undefined",
  8374. "value" : "http://www.w3.org/ns/prov#End",
  8375. "type" : "iri"
  8376. } ]
  8377. },
  8378. "label" : {
  8379. "IRI-based" : "wasEndedBy",
  8380. "undefined" : "wasEndedBy"
  8381. },
  8382. "superproperty" : [ "77" ],
  8383. "domain" : "9",
  8384. "comment" : {
  8385. "en" : "End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity."
  8386. },
  8387. "attributes" : [ "object", "external" ],
  8388. "id" : "100"
  8389. }, {
  8390. "range" : "37",
  8391. "domain" : "95",
  8392. "attributes" : [ "object", "anonymous" ],
  8393. "id" : "151"
  8394. }, {
  8395. "iri" : "http://www.w3.org/ns/prov#wasActivityOfInfluence",
  8396. "inverse" : "134",
  8397. "baseIri" : "http://www.w3.org/ns/prov",
  8398. "range" : "135",
  8399. "annotations" : {
  8400. "isDefinedBy" : [ {
  8401. "identifier" : "isDefinedBy",
  8402. "language" : "undefined",
  8403. "value" : "http://www.w3.org/ns/prov#",
  8404. "type" : "iri"
  8405. }, {
  8406. "identifier" : "isDefinedBy",
  8407. "language" : "undefined",
  8408. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  8409. "type" : "iri"
  8410. } ]
  8411. },
  8412. "label" : {
  8413. "IRI-based" : "wasActivityOfInfluence",
  8414. "undefined" : "wasActivityOfInfluence"
  8415. },
  8416. "domain" : "9",
  8417. "attributes" : [ "object", "external" ],
  8418. "id" : "152"
  8419. }, {
  8420. "iri" : "http://www.w3.org/ns/prov#qualifiedAttributionOf",
  8421. "inverse" : "154",
  8422. "baseIri" : "http://www.w3.org/ns/prov",
  8423. "range" : "17",
  8424. "annotations" : {
  8425. "isDefinedBy" : [ {
  8426. "identifier" : "isDefinedBy",
  8427. "language" : "undefined",
  8428. "value" : "http://www.w3.org/ns/prov#",
  8429. "type" : "iri"
  8430. }, {
  8431. "identifier" : "isDefinedBy",
  8432. "language" : "undefined",
  8433. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  8434. "type" : "iri"
  8435. } ]
  8436. },
  8437. "label" : {
  8438. "IRI-based" : "qualifiedAttributionOf",
  8439. "undefined" : "qualifiedAttributionOf"
  8440. },
  8441. "domain" : "112",
  8442. "attributes" : [ "object", "external" ],
  8443. "id" : "153"
  8444. }, {
  8445. "range" : "37",
  8446. "domain" : "53",
  8447. "attributes" : [ "object", "anonymous" ],
  8448. "id" : "159"
  8449. }, {
  8450. "range" : "37",
  8451. "domain" : "94",
  8452. "attributes" : [ "object", "anonymous" ],
  8453. "id" : "161"
  8454. }, {
  8455. "range" : "95",
  8456. "domain" : "94",
  8457. "attributes" : [ "object", "anonymous" ],
  8458. "id" : "162"
  8459. }, {
  8460. "range" : "24",
  8461. "domain" : "53",
  8462. "attributes" : [ "object", "anonymous" ],
  8463. "id" : "163"
  8464. }, {
  8465. "iri" : "http://www.w3.org/ns/prov#hadPrimarySource",
  8466. "baseIri" : "http://www.w3.org/ns/prov",
  8467. "range" : "17",
  8468. "annotations" : {
  8469. "inverse" : [ {
  8470. "identifier" : "inverse",
  8471. "language" : "undefined",
  8472. "value" : "wasPrimarySourceOf",
  8473. "type" : "label"
  8474. }, {
  8475. "identifier" : "inverse",
  8476. "language" : "undefined",
  8477. "value" : "wasPrimarySourceOf",
  8478. "type" : "label"
  8479. } ],
  8480. "component" : [ {
  8481. "identifier" : "component",
  8482. "language" : "undefined",
  8483. "value" : "derivations",
  8484. "type" : "label"
  8485. }, {
  8486. "identifier" : "component",
  8487. "language" : "undefined",
  8488. "value" : "derivations",
  8489. "type" : "label"
  8490. } ],
  8491. "isDefinedBy" : [ {
  8492. "identifier" : "isDefinedBy",
  8493. "language" : "undefined",
  8494. "value" : "http://www.w3.org/ns/prov-o#",
  8495. "type" : "iri"
  8496. }, {
  8497. "identifier" : "isDefinedBy",
  8498. "language" : "undefined",
  8499. "value" : "http://www.w3.org/ns/prov-o#",
  8500. "type" : "iri"
  8501. }, {
  8502. "identifier" : "isDefinedBy",
  8503. "language" : "undefined",
  8504. "value" : "http://www.w3.org/ns/prov-o#",
  8505. "type" : "iri"
  8506. } ],
  8507. "category" : [ {
  8508. "identifier" : "category",
  8509. "language" : "undefined",
  8510. "value" : "expanded",
  8511. "type" : "label"
  8512. }, {
  8513. "identifier" : "category",
  8514. "language" : "undefined",
  8515. "value" : "expanded",
  8516. "type" : "label"
  8517. } ],
  8518. "qualifiedForm" : [ {
  8519. "identifier" : "qualifiedForm",
  8520. "language" : "undefined",
  8521. "value" : "http://www.w3.org/ns/prov#qualifiedPrimarySource",
  8522. "type" : "iri"
  8523. }, {
  8524. "identifier" : "qualifiedForm",
  8525. "language" : "undefined",
  8526. "value" : "http://www.w3.org/ns/prov#PrimarySource",
  8527. "type" : "iri"
  8528. }, {
  8529. "identifier" : "qualifiedForm",
  8530. "language" : "undefined",
  8531. "value" : "http://www.w3.org/ns/prov#qualifiedPrimarySource",
  8532. "type" : "iri"
  8533. }, {
  8534. "identifier" : "qualifiedForm",
  8535. "language" : "undefined",
  8536. "value" : "http://www.w3.org/ns/prov#PrimarySource",
  8537. "type" : "iri"
  8538. } ]
  8539. },
  8540. "label" : {
  8541. "IRI-based" : "hadPrimarySource",
  8542. "undefined" : "hadPrimarySource"
  8543. },
  8544. "superproperty" : [ "39" ],
  8545. "domain" : "17",
  8546. "attributes" : [ "object", "external" ],
  8547. "id" : "78"
  8548. }, {
  8549. "range" : "66",
  8550. "domain" : "67",
  8551. "attributes" : [ "object", "anonymous" ],
  8552. "id" : "164"
  8553. }, {
  8554. "range" : "24",
  8555. "domain" : "54",
  8556. "attributes" : [ "object", "anonymous" ],
  8557. "id" : "165"
  8558. }, {
  8559. "iri" : "http://www.w3.org/ns/prov#qualifiedAttribution",
  8560. "baseIri" : "http://www.w3.org/ns/prov",
  8561. "range" : "112",
  8562. "annotations" : {
  8563. "sharesDefinitionWith" : [ {
  8564. "identifier" : "sharesDefinitionWith",
  8565. "language" : "undefined",
  8566. "value" : "http://www.w3.org/ns/prov#Attribution",
  8567. "type" : "iri"
  8568. }, {
  8569. "identifier" : "sharesDefinitionWith",
  8570. "language" : "undefined",
  8571. "value" : "http://www.w3.org/ns/prov#Attribution",
  8572. "type" : "iri"
  8573. } ],
  8574. "inverse" : [ {
  8575. "identifier" : "inverse",
  8576. "language" : "undefined",
  8577. "value" : "qualifiedAttributionOf",
  8578. "type" : "label"
  8579. }, {
  8580. "identifier" : "inverse",
  8581. "language" : "undefined",
  8582. "value" : "qualifiedAttributionOf",
  8583. "type" : "label"
  8584. } ],
  8585. "component" : [ {
  8586. "identifier" : "component",
  8587. "language" : "undefined",
  8588. "value" : "agents-responsibility",
  8589. "type" : "label"
  8590. }, {
  8591. "identifier" : "component",
  8592. "language" : "undefined",
  8593. "value" : "agents-responsibility",
  8594. "type" : "label"
  8595. } ],
  8596. "isDefinedBy" : [ {
  8597. "identifier" : "isDefinedBy",
  8598. "language" : "undefined",
  8599. "value" : "http://www.w3.org/ns/prov-o#",
  8600. "type" : "iri"
  8601. }, {
  8602. "identifier" : "isDefinedBy",
  8603. "language" : "undefined",
  8604. "value" : "http://www.w3.org/ns/prov-o#",
  8605. "type" : "iri"
  8606. }, {
  8607. "identifier" : "isDefinedBy",
  8608. "language" : "undefined",
  8609. "value" : "http://www.w3.org/ns/prov-o#",
  8610. "type" : "iri"
  8611. } ],
  8612. "unqualifiedForm" : [ {
  8613. "identifier" : "unqualifiedForm",
  8614. "language" : "undefined",
  8615. "value" : "http://www.w3.org/ns/prov#wasAttributedTo",
  8616. "type" : "iri"
  8617. }, {
  8618. "identifier" : "unqualifiedForm",
  8619. "language" : "undefined",
  8620. "value" : "http://www.w3.org/ns/prov#wasAttributedTo",
  8621. "type" : "iri"
  8622. } ],
  8623. "category" : [ {
  8624. "identifier" : "category",
  8625. "language" : "undefined",
  8626. "value" : "qualified",
  8627. "type" : "label"
  8628. }, {
  8629. "identifier" : "category",
  8630. "language" : "undefined",
  8631. "value" : "qualified",
  8632. "type" : "label"
  8633. } ]
  8634. },
  8635. "label" : {
  8636. "IRI-based" : "qualifiedAttribution",
  8637. "undefined" : "qualifiedAttribution"
  8638. },
  8639. "superproperty" : [ "3" ],
  8640. "domain" : "17",
  8641. "comment" : {
  8642. "en" : "If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution; prov:agent :ag; :foo :bar ]."
  8643. },
  8644. "attributes" : [ "object", "external" ],
  8645. "id" : "154"
  8646. }, {
  8647. "iri" : "http://www.w3.org/ns/prov#influenced",
  8648. "inverse" : "77",
  8649. "baseIri" : "http://www.w3.org/ns/prov",
  8650. "range" : "98",
  8651. "annotations" : {
  8652. "sharesDefinitionWith" : [ {
  8653. "identifier" : "sharesDefinitionWith",
  8654. "language" : "undefined",
  8655. "value" : "http://www.w3.org/ns/prov#Influence",
  8656. "type" : "iri"
  8657. }, {
  8658. "identifier" : "sharesDefinitionWith",
  8659. "language" : "undefined",
  8660. "value" : "http://www.w3.org/ns/prov#Influence",
  8661. "type" : "iri"
  8662. } ],
  8663. "inverse" : [ {
  8664. "identifier" : "inverse",
  8665. "language" : "undefined",
  8666. "value" : "wasInfluencedBy",
  8667. "type" : "label"
  8668. }, {
  8669. "identifier" : "inverse",
  8670. "language" : "undefined",
  8671. "value" : "wasInfluencedBy",
  8672. "type" : "label"
  8673. } ],
  8674. "component" : [ {
  8675. "identifier" : "component",
  8676. "language" : "undefined",
  8677. "value" : "agents-responsibility",
  8678. "type" : "label"
  8679. }, {
  8680. "identifier" : "component",
  8681. "language" : "undefined",
  8682. "value" : "agents-responsibility",
  8683. "type" : "label"
  8684. } ],
  8685. "isDefinedBy" : [ {
  8686. "identifier" : "isDefinedBy",
  8687. "language" : "undefined",
  8688. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  8689. "type" : "iri"
  8690. }, {
  8691. "identifier" : "isDefinedBy",
  8692. "language" : "undefined",
  8693. "value" : "http://www.w3.org/ns/prov-o#",
  8694. "type" : "iri"
  8695. }, {
  8696. "identifier" : "isDefinedBy",
  8697. "language" : "undefined",
  8698. "value" : "http://www.w3.org/ns/prov#",
  8699. "type" : "iri"
  8700. }, {
  8701. "identifier" : "isDefinedBy",
  8702. "language" : "undefined",
  8703. "value" : "http://www.w3.org/ns/prov-o#",
  8704. "type" : "iri"
  8705. }, {
  8706. "identifier" : "isDefinedBy",
  8707. "language" : "undefined",
  8708. "value" : "http://www.w3.org/ns/prov-o#",
  8709. "type" : "iri"
  8710. } ],
  8711. "category" : [ {
  8712. "identifier" : "category",
  8713. "language" : "undefined",
  8714. "value" : "expanded",
  8715. "type" : "label"
  8716. }, {
  8717. "identifier" : "category",
  8718. "language" : "undefined",
  8719. "value" : "expanded",
  8720. "type" : "label"
  8721. } ]
  8722. },
  8723. "label" : {
  8724. "IRI-based" : "influenced",
  8725. "undefined" : "influenced"
  8726. },
  8727. "domain" : "99",
  8728. "subproperty" : [ "166", "60" ],
  8729. "attributes" : [ "object", "external" ],
  8730. "id" : "62"
  8731. }, {
  8732. "iri" : "http://www.w3.org/ns/prov#derivedByRemovalFrom",
  8733. "baseIri" : "http://www.w3.org/ns/prov",
  8734. "range" : "32",
  8735. "annotations" : {
  8736. "component" : [ {
  8737. "identifier" : "component",
  8738. "language" : "undefined",
  8739. "value" : "collections",
  8740. "type" : "label"
  8741. }, {
  8742. "identifier" : "component",
  8743. "language" : "undefined",
  8744. "value" : "collections",
  8745. "type" : "label"
  8746. } ],
  8747. "isDefinedBy" : [ {
  8748. "identifier" : "isDefinedBy",
  8749. "language" : "undefined",
  8750. "value" : "http://www.w3.org/ns/prov#",
  8751. "type" : "iri"
  8752. }, {
  8753. "identifier" : "isDefinedBy",
  8754. "language" : "undefined",
  8755. "value" : "http://www.w3.org/ns/prov#",
  8756. "type" : "iri"
  8757. } ],
  8758. "dm" : [ {
  8759. "identifier" : "dm",
  8760. "language" : "undefined",
  8761. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  8762. "type" : "label"
  8763. }, {
  8764. "identifier" : "dm",
  8765. "language" : "undefined",
  8766. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  8767. "type" : "label"
  8768. } ],
  8769. "definition" : [ {
  8770. "identifier" : "definition",
  8771. "language" : "undefined",
  8772. "value" : "The dictionary was derived from the other by removal. Can be qualified with prov:qualifiedRemoval, which shows details of the removal, in particular the removed keys.",
  8773. "type" : "label"
  8774. }, {
  8775. "identifier" : "definition",
  8776. "language" : "undefined",
  8777. "value" : "The dictionary was derived from the other by removal. Can be qualified with prov:qualifiedRemoval, which shows details of the removal, in particular the removed keys.",
  8778. "type" : "label"
  8779. } ],
  8780. "category" : [ {
  8781. "identifier" : "category",
  8782. "language" : "undefined",
  8783. "value" : "collections",
  8784. "type" : "label"
  8785. }, {
  8786. "identifier" : "category",
  8787. "language" : "undefined",
  8788. "value" : "collections",
  8789. "type" : "label"
  8790. } ],
  8791. "constraints" : [ {
  8792. "identifier" : "constraints",
  8793. "language" : "undefined",
  8794. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  8795. "type" : "label"
  8796. }, {
  8797. "identifier" : "constraints",
  8798. "language" : "undefined",
  8799. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  8800. "type" : "label"
  8801. } ],
  8802. "n" : [ {
  8803. "identifier" : "n",
  8804. "language" : "undefined",
  8805. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  8806. "type" : "label"
  8807. }, {
  8808. "identifier" : "n",
  8809. "language" : "undefined",
  8810. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  8811. "type" : "label"
  8812. } ]
  8813. },
  8814. "label" : {
  8815. "IRI-based" : "derivedByRemovalFrom",
  8816. "undefined" : "derivedByRemovalFrom"
  8817. },
  8818. "superproperty" : [ "39" ],
  8819. "domain" : "32",
  8820. "attributes" : [ "object", "external" ],
  8821. "id" : "81"
  8822. }, {
  8823. "iri" : "https://w3id.org/consent-mapping-jit#ofPurpose",
  8824. "baseIri" : "https://w3id.org/consent-mapping-jit",
  8825. "range" : "37",
  8826. "label" : {
  8827. "IRI-based" : "ofPurpose"
  8828. },
  8829. "domain" : "94",
  8830. "comment" : {
  8831. "undefined" : "Refers to the purpose of an inclusion."
  8832. },
  8833. "attributes" : [ "functional", "object" ],
  8834. "id" : "167"
  8835. }, {
  8836. "range" : "50",
  8837. "domain" : "45",
  8838. "attributes" : [ "object", "anonymous" ],
  8839. "id" : "168"
  8840. }, {
  8841. "range" : "32",
  8842. "domain" : "45",
  8843. "attributes" : [ "object", "anonymous" ],
  8844. "id" : "169"
  8845. }, {
  8846. "range" : "24",
  8847. "domain" : "52",
  8848. "attributes" : [ "object", "anonymous" ],
  8849. "id" : "170"
  8850. }, {
  8851. "range" : "24",
  8852. "domain" : "36",
  8853. "attributes" : [ "object", "anonymous" ],
  8854. "id" : "171"
  8855. }, {
  8856. "range" : "26",
  8857. "domain" : "27",
  8858. "attributes" : [ "object", "anonymous" ],
  8859. "id" : "172"
  8860. }, {
  8861. "iri" : "http://www.w3.org/ns/prov#qualifiedRemoval",
  8862. "baseIri" : "http://www.w3.org/ns/prov",
  8863. "range" : "69",
  8864. "annotations" : {
  8865. "component" : [ {
  8866. "identifier" : "component",
  8867. "language" : "undefined",
  8868. "value" : "collections",
  8869. "type" : "label"
  8870. }, {
  8871. "identifier" : "component",
  8872. "language" : "undefined",
  8873. "value" : "collections",
  8874. "type" : "label"
  8875. } ],
  8876. "isDefinedBy" : [ {
  8877. "identifier" : "isDefinedBy",
  8878. "language" : "undefined",
  8879. "value" : "http://www.w3.org/ns/prov#",
  8880. "type" : "iri"
  8881. }, {
  8882. "identifier" : "isDefinedBy",
  8883. "language" : "undefined",
  8884. "value" : "http://www.w3.org/ns/prov#",
  8885. "type" : "iri"
  8886. } ],
  8887. "dm" : [ {
  8888. "identifier" : "dm",
  8889. "language" : "undefined",
  8890. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  8891. "type" : "label"
  8892. }, {
  8893. "identifier" : "dm",
  8894. "language" : "undefined",
  8895. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal",
  8896. "type" : "label"
  8897. } ],
  8898. "definition" : [ {
  8899. "identifier" : "definition",
  8900. "language" : "undefined",
  8901. "value" : "prov:qualifiedRemoval shows the details of a removal, in particular the removed keys.",
  8902. "type" : "label"
  8903. }, {
  8904. "identifier" : "definition",
  8905. "language" : "undefined",
  8906. "value" : "prov:qualifiedRemoval shows the details of a removal, in particular the removed keys.",
  8907. "type" : "label"
  8908. } ],
  8909. "category" : [ {
  8910. "identifier" : "category",
  8911. "language" : "undefined",
  8912. "value" : "collections",
  8913. "type" : "label"
  8914. }, {
  8915. "identifier" : "category",
  8916. "language" : "undefined",
  8917. "value" : "collections",
  8918. "type" : "label"
  8919. } ],
  8920. "constraints" : [ {
  8921. "identifier" : "constraints",
  8922. "language" : "undefined",
  8923. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  8924. "type" : "label"
  8925. }, {
  8926. "identifier" : "constraints",
  8927. "language" : "undefined",
  8928. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  8929. "type" : "label"
  8930. } ],
  8931. "n" : [ {
  8932. "identifier" : "n",
  8933. "language" : "undefined",
  8934. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  8935. "type" : "label"
  8936. }, {
  8937. "identifier" : "n",
  8938. "language" : "undefined",
  8939. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal",
  8940. "type" : "label"
  8941. } ]
  8942. },
  8943. "label" : {
  8944. "IRI-based" : "qualifiedRemoval",
  8945. "undefined" : "qualifiedRemoval"
  8946. },
  8947. "superproperty" : [ "34" ],
  8948. "domain" : "32",
  8949. "attributes" : [ "object", "external" ],
  8950. "id" : "130"
  8951. }, {
  8952. "range" : "11",
  8953. "domain" : "15",
  8954. "attributes" : [ "object", "anonymous" ],
  8955. "id" : "173"
  8956. }, {
  8957. "range" : "26",
  8958. "domain" : "14",
  8959. "attributes" : [ "object", "anonymous" ],
  8960. "id" : "174"
  8961. }, {
  8962. "range" : "26",
  8963. "domain" : "13",
  8964. "attributes" : [ "object", "anonymous" ],
  8965. "id" : "175"
  8966. }, {
  8967. "iri" : "http://www.w3.org/ns/prov#qualifiedStartOf",
  8968. "inverse" : "84",
  8969. "baseIri" : "http://www.w3.org/ns/prov",
  8970. "range" : "9",
  8971. "annotations" : {
  8972. "isDefinedBy" : [ {
  8973. "identifier" : "isDefinedBy",
  8974. "language" : "undefined",
  8975. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  8976. "type" : "iri"
  8977. }, {
  8978. "identifier" : "isDefinedBy",
  8979. "language" : "undefined",
  8980. "value" : "http://www.w3.org/ns/prov#",
  8981. "type" : "iri"
  8982. } ]
  8983. },
  8984. "label" : {
  8985. "IRI-based" : "qualifiedStartOf",
  8986. "undefined" : "qualifiedStartOf"
  8987. },
  8988. "domain" : "15",
  8989. "attributes" : [ "object", "external" ],
  8990. "id" : "176"
  8991. }, {
  8992. "range" : "11",
  8993. "domain" : "8",
  8994. "attributes" : [ "object", "anonymous" ],
  8995. "id" : "177"
  8996. }, {
  8997. "iri" : "http://www.w3.org/ns/prov#revisedEntity",
  8998. "inverse" : "108",
  8999. "baseIri" : "http://www.w3.org/ns/prov",
  9000. "range" : "17",
  9001. "annotations" : {
  9002. "isDefinedBy" : [ {
  9003. "identifier" : "isDefinedBy",
  9004. "language" : "undefined",
  9005. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  9006. "type" : "iri"
  9007. }, {
  9008. "identifier" : "isDefinedBy",
  9009. "language" : "undefined",
  9010. "value" : "http://www.w3.org/ns/prov#",
  9011. "type" : "iri"
  9012. } ]
  9013. },
  9014. "label" : {
  9015. "IRI-based" : "revisedEntity",
  9016. "undefined" : "revisedEntity"
  9017. },
  9018. "domain" : "70",
  9019. "attributes" : [ "object", "external" ],
  9020. "id" : "178"
  9021. }, {
  9022. "range" : "11",
  9023. "domain" : "14",
  9024. "attributes" : [ "object", "anonymous" ],
  9025. "id" : "179"
  9026. }, {
  9027. "iri" : "http://www.w3.org/ns/prov#qualifiedDerivationOf",
  9028. "inverse" : "34",
  9029. "baseIri" : "http://www.w3.org/ns/prov",
  9030. "range" : "17",
  9031. "annotations" : {
  9032. "isDefinedBy" : [ {
  9033. "identifier" : "isDefinedBy",
  9034. "language" : "undefined",
  9035. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  9036. "type" : "iri"
  9037. }, {
  9038. "identifier" : "isDefinedBy",
  9039. "language" : "undefined",
  9040. "value" : "http://www.w3.org/ns/prov#",
  9041. "type" : "iri"
  9042. } ]
  9043. },
  9044. "label" : {
  9045. "IRI-based" : "qualifiedDerivationOf",
  9046. "undefined" : "qualifiedDerivationOf"
  9047. },
  9048. "domain" : "66",
  9049. "attributes" : [ "object", "external" ],
  9050. "id" : "180"
  9051. }, {
  9052. "iri" : "http://www.w3.org/ns/prov#generalizationOf",
  9053. "inverse" : "16",
  9054. "baseIri" : "http://www.w3.org/ns/prov",
  9055. "range" : "17",
  9056. "annotations" : {
  9057. "isDefinedBy" : [ {
  9058. "identifier" : "isDefinedBy",
  9059. "language" : "undefined",
  9060. "value" : "http://www.w3.org/ns/prov#",
  9061. "type" : "iri"
  9062. }, {
  9063. "identifier" : "isDefinedBy",
  9064. "language" : "undefined",
  9065. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  9066. "type" : "iri"
  9067. } ]
  9068. },
  9069. "label" : {
  9070. "IRI-based" : "generalizationOf",
  9071. "undefined" : "generalizationOf"
  9072. },
  9073. "domain" : "18",
  9074. "attributes" : [ "object", "external" ],
  9075. "id" : "181"
  9076. }, {
  9077. "iri" : "http://www.w3.org/ns/prov#hadDictionaryMember",
  9078. "baseIri" : "http://www.w3.org/ns/prov",
  9079. "range" : "22",
  9080. "annotations" : {
  9081. "component" : [ {
  9082. "identifier" : "component",
  9083. "language" : "undefined",
  9084. "value" : "collections",
  9085. "type" : "label"
  9086. }, {
  9087. "identifier" : "component",
  9088. "language" : "undefined",
  9089. "value" : "collections",
  9090. "type" : "label"
  9091. } ],
  9092. "isDefinedBy" : [ {
  9093. "identifier" : "isDefinedBy",
  9094. "language" : "undefined",
  9095. "value" : "http://www.w3.org/ns/prov#",
  9096. "type" : "iri"
  9097. }, {
  9098. "identifier" : "isDefinedBy",
  9099. "language" : "undefined",
  9100. "value" : "http://www.w3.org/ns/prov#",
  9101. "type" : "iri"
  9102. } ],
  9103. "dm" : [ {
  9104. "identifier" : "dm",
  9105. "language" : "undefined",
  9106. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership",
  9107. "type" : "label"
  9108. }, {
  9109. "identifier" : "dm",
  9110. "language" : "undefined",
  9111. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership",
  9112. "type" : "label"
  9113. } ],
  9114. "definition" : [ {
  9115. "identifier" : "definition",
  9116. "language" : "undefined",
  9117. "value" : "Describes the key-entity pair that was member of a prov:Dictionary. A dictionary can have multiple members.",
  9118. "type" : "label"
  9119. }, {
  9120. "identifier" : "definition",
  9121. "language" : "undefined",
  9122. "value" : "Describes the key-entity pair that was member of a prov:Dictionary. A dictionary can have multiple members.",
  9123. "type" : "label"
  9124. } ],
  9125. "category" : [ {
  9126. "identifier" : "category",
  9127. "language" : "undefined",
  9128. "value" : "collections",
  9129. "type" : "label"
  9130. }, {
  9131. "identifier" : "category",
  9132. "language" : "undefined",
  9133. "value" : "collections",
  9134. "type" : "label"
  9135. } ],
  9136. "constraints" : [ {
  9137. "identifier" : "constraints",
  9138. "language" : "undefined",
  9139. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  9140. "type" : "label"
  9141. }, {
  9142. "identifier" : "constraints",
  9143. "language" : "undefined",
  9144. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  9145. "type" : "label"
  9146. } ],
  9147. "n" : [ {
  9148. "identifier" : "n",
  9149. "language" : "undefined",
  9150. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership",
  9151. "type" : "label"
  9152. }, {
  9153. "identifier" : "n",
  9154. "language" : "undefined",
  9155. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership",
  9156. "type" : "label"
  9157. } ]
  9158. },
  9159. "label" : {
  9160. "IRI-based" : "hadDictionaryMember",
  9161. "undefined" : "hadDictionaryMember"
  9162. },
  9163. "domain" : "32",
  9164. "attributes" : [ "object", "external" ],
  9165. "id" : "182"
  9166. }, {
  9167. "range" : "11",
  9168. "domain" : "13",
  9169. "attributes" : [ "object", "anonymous" ],
  9170. "id" : "183"
  9171. }, {
  9172. "range" : "11",
  9173. "domain" : "12",
  9174. "attributes" : [ "object", "anonymous" ],
  9175. "id" : "184"
  9176. }, {
  9177. "iri" : "http://www.w3.org/ns/prov#influencer",
  9178. "baseIri" : "http://www.w3.org/ns/prov",
  9179. "range" : "148",
  9180. "annotations" : {
  9181. "inverse" : [ {
  9182. "identifier" : "inverse",
  9183. "language" : "undefined",
  9184. "value" : "hadInfluence",
  9185. "type" : "label"
  9186. }, {
  9187. "identifier" : "inverse",
  9188. "language" : "undefined",
  9189. "value" : "hadInfluence",
  9190. "type" : "label"
  9191. } ],
  9192. "editorialNote" : [ {
  9193. "identifier" : "editorialNote",
  9194. "language" : "en",
  9195. "value" : "This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple.",
  9196. "type" : "label"
  9197. }, {
  9198. "identifier" : "editorialNote",
  9199. "language" : "en",
  9200. "value" : "This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple.",
  9201. "type" : "label"
  9202. } ],
  9203. "isDefinedBy" : [ {
  9204. "identifier" : "isDefinedBy",
  9205. "language" : "undefined",
  9206. "value" : "http://www.w3.org/ns/prov-o#",
  9207. "type" : "iri"
  9208. }, {
  9209. "identifier" : "isDefinedBy",
  9210. "language" : "undefined",
  9211. "value" : "http://www.w3.org/ns/prov-o#",
  9212. "type" : "iri"
  9213. }, {
  9214. "identifier" : "isDefinedBy",
  9215. "language" : "undefined",
  9216. "value" : "http://www.w3.org/ns/prov-o#",
  9217. "type" : "iri"
  9218. } ],
  9219. "editorsDefinition" : [ {
  9220. "identifier" : "editorsDefinition",
  9221. "language" : "en",
  9222. "value" : "This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified.",
  9223. "type" : "label"
  9224. }, {
  9225. "identifier" : "editorsDefinition",
  9226. "language" : "en",
  9227. "value" : "This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified.",
  9228. "type" : "label"
  9229. } ],
  9230. "dm" : [ {
  9231. "identifier" : "dm",
  9232. "language" : "undefined",
  9233. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence",
  9234. "type" : "label"
  9235. }, {
  9236. "identifier" : "dm",
  9237. "language" : "undefined",
  9238. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence",
  9239. "type" : "label"
  9240. } ],
  9241. "category" : [ {
  9242. "identifier" : "category",
  9243. "language" : "undefined",
  9244. "value" : "qualified",
  9245. "type" : "label"
  9246. }, {
  9247. "identifier" : "category",
  9248. "language" : "undefined",
  9249. "value" : "qualified",
  9250. "type" : "label"
  9251. } ]
  9252. },
  9253. "label" : {
  9254. "IRI-based" : "influencer",
  9255. "undefined" : "influencer"
  9256. },
  9257. "domain" : "1",
  9258. "subproperty" : [ "44", "57", "185" ],
  9259. "comment" : {
  9260. "en" : "Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used."
  9261. },
  9262. "attributes" : [ "object", "external" ],
  9263. "id" : "149"
  9264. }, {
  9265. "iri" : "http://www.w3.org/ns/prov#hadGeneration",
  9266. "baseIri" : "http://www.w3.org/ns/prov",
  9267. "range" : "13",
  9268. "annotations" : {
  9269. "sharesDefinitionWith" : [ {
  9270. "identifier" : "sharesDefinitionWith",
  9271. "language" : "undefined",
  9272. "value" : "http://www.w3.org/ns/prov#Generation",
  9273. "type" : "iri"
  9274. }, {
  9275. "identifier" : "sharesDefinitionWith",
  9276. "language" : "undefined",
  9277. "value" : "http://www.w3.org/ns/prov#Generation",
  9278. "type" : "iri"
  9279. } ],
  9280. "inverse" : [ {
  9281. "identifier" : "inverse",
  9282. "language" : "undefined",
  9283. "value" : "generatedAsDerivation",
  9284. "type" : "label"
  9285. }, {
  9286. "identifier" : "inverse",
  9287. "language" : "undefined",
  9288. "value" : "generatedAsDerivation",
  9289. "type" : "label"
  9290. } ],
  9291. "component" : [ {
  9292. "identifier" : "component",
  9293. "language" : "undefined",
  9294. "value" : "derivations",
  9295. "type" : "label"
  9296. }, {
  9297. "identifier" : "component",
  9298. "language" : "undefined",
  9299. "value" : "derivations",
  9300. "type" : "label"
  9301. } ],
  9302. "isDefinedBy" : [ {
  9303. "identifier" : "isDefinedBy",
  9304. "language" : "undefined",
  9305. "value" : "http://www.w3.org/ns/prov-o#",
  9306. "type" : "iri"
  9307. }, {
  9308. "identifier" : "isDefinedBy",
  9309. "language" : "undefined",
  9310. "value" : "http://www.w3.org/ns/prov-o#",
  9311. "type" : "iri"
  9312. }, {
  9313. "identifier" : "isDefinedBy",
  9314. "language" : "undefined",
  9315. "value" : "http://www.w3.org/ns/prov-o#",
  9316. "type" : "iri"
  9317. } ],
  9318. "category" : [ {
  9319. "identifier" : "category",
  9320. "language" : "undefined",
  9321. "value" : "qualified",
  9322. "type" : "label"
  9323. }, {
  9324. "identifier" : "category",
  9325. "language" : "undefined",
  9326. "value" : "qualified",
  9327. "type" : "label"
  9328. } ]
  9329. },
  9330. "label" : {
  9331. "IRI-based" : "hadGeneration",
  9332. "undefined" : "hadGeneration"
  9333. },
  9334. "domain" : "66",
  9335. "comment" : {
  9336. "en" : "The _optional_ Generation involved in an Entity's Derivation."
  9337. },
  9338. "attributes" : [ "object", "external" ],
  9339. "id" : "187"
  9340. }, {
  9341. "iri" : "http://www.w3.org/ns/prov#startedAtTime",
  9342. "baseIri" : "http://www.w3.org/ns/prov",
  9343. "range" : "140",
  9344. "annotations" : {
  9345. "editorialNote" : [ {
  9346. "identifier" : "editorialNote",
  9347. "language" : "en",
  9348. "value" : "It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime.",
  9349. "type" : "label"
  9350. }, {
  9351. "identifier" : "editorialNote",
  9352. "language" : "en",
  9353. "value" : "It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime.",
  9354. "type" : "label"
  9355. } ],
  9356. "component" : [ {
  9357. "identifier" : "component",
  9358. "language" : "undefined",
  9359. "value" : "entities-activities",
  9360. "type" : "label"
  9361. }, {
  9362. "identifier" : "component",
  9363. "language" : "undefined",
  9364. "value" : "entities-activities",
  9365. "type" : "label"
  9366. } ],
  9367. "isDefinedBy" : [ {
  9368. "identifier" : "isDefinedBy",
  9369. "language" : "undefined",
  9370. "value" : "http://www.w3.org/ns/prov-o#",
  9371. "type" : "iri"
  9372. }, {
  9373. "identifier" : "isDefinedBy",
  9374. "language" : "undefined",
  9375. "value" : "http://www.w3.org/ns/prov-o#",
  9376. "type" : "iri"
  9377. } ],
  9378. "category" : [ {
  9379. "identifier" : "category",
  9380. "language" : "undefined",
  9381. "value" : "starting-point",
  9382. "type" : "label"
  9383. }, {
  9384. "identifier" : "category",
  9385. "language" : "undefined",
  9386. "value" : "starting-point",
  9387. "type" : "label"
  9388. } ],
  9389. "qualifiedForm" : [ {
  9390. "identifier" : "qualifiedForm",
  9391. "language" : "undefined",
  9392. "value" : "http://www.w3.org/ns/prov#Start",
  9393. "type" : "iri"
  9394. }, {
  9395. "identifier" : "qualifiedForm",
  9396. "language" : "undefined",
  9397. "value" : "http://www.w3.org/ns/prov#atTime",
  9398. "type" : "iri"
  9399. }, {
  9400. "identifier" : "qualifiedForm",
  9401. "language" : "undefined",
  9402. "value" : "http://www.w3.org/ns/prov#atTime",
  9403. "type" : "iri"
  9404. }, {
  9405. "identifier" : "qualifiedForm",
  9406. "language" : "undefined",
  9407. "value" : "http://www.w3.org/ns/prov#Start",
  9408. "type" : "iri"
  9409. } ]
  9410. },
  9411. "label" : {
  9412. "IRI-based" : "startedAtTime",
  9413. "undefined" : "startedAtTime"
  9414. },
  9415. "domain" : "9",
  9416. "comment" : {
  9417. "en" : "The time at which an activity started. See also prov:endedAtTime."
  9418. },
  9419. "attributes" : [ "datatype", "external" ],
  9420. "id" : "188"
  9421. }, {
  9422. "range" : "127",
  9423. "domain" : "139",
  9424. "attributes" : [ "object", "anonymous" ],
  9425. "id" : "189"
  9426. }, {
  9427. "range" : "17",
  9428. "domain" : "88",
  9429. "attributes" : [ "object", "anonymous" ],
  9430. "id" : "190"
  9431. }, {
  9432. "iri" : "http://www.w3.org/ns/prov#contributed",
  9433. "inverse" : "102",
  9434. "baseIri" : "http://www.w3.org/ns/prov",
  9435. "range" : "17",
  9436. "annotations" : {
  9437. "isDefinedBy" : [ {
  9438. "identifier" : "isDefinedBy",
  9439. "language" : "undefined",
  9440. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  9441. "type" : "iri"
  9442. }, {
  9443. "identifier" : "isDefinedBy",
  9444. "language" : "undefined",
  9445. "value" : "http://www.w3.org/ns/prov#",
  9446. "type" : "iri"
  9447. } ]
  9448. },
  9449. "label" : {
  9450. "IRI-based" : "contributed",
  9451. "undefined" : "contributed"
  9452. },
  9453. "domain" : "24",
  9454. "attributes" : [ "object", "external" ],
  9455. "id" : "191"
  9456. }, {
  9457. "range" : "1",
  9458. "domain" : "56",
  9459. "attributes" : [ "object", "anonymous" ],
  9460. "id" : "192"
  9461. }, {
  9462. "range" : "1",
  9463. "domain" : "43",
  9464. "attributes" : [ "object", "anonymous" ],
  9465. "id" : "193"
  9466. }, {
  9467. "iri" : "http://www.w3.org/ns/prov#has_provenance",
  9468. "baseIri" : "http://www.w3.org/ns/prov",
  9469. "range" : "5",
  9470. "annotations" : {
  9471. "aq" : [ {
  9472. "identifier" : "aq",
  9473. "language" : "undefined",
  9474. "value" : "http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html",
  9475. "type" : "label"
  9476. } ],
  9477. "inverse" : [ {
  9478. "identifier" : "inverse",
  9479. "language" : "undefined",
  9480. "value" : "provenanceOf",
  9481. "type" : "label"
  9482. } ],
  9483. "isDefinedBy" : [ {
  9484. "identifier" : "isDefinedBy",
  9485. "language" : "undefined",
  9486. "value" : "http://www.w3.org/ns/prov#",
  9487. "type" : "iri"
  9488. } ],
  9489. "category" : [ {
  9490. "identifier" : "category",
  9491. "language" : "undefined",
  9492. "value" : "access-and-query",
  9493. "type" : "label"
  9494. } ]
  9495. },
  9496. "label" : {
  9497. "IRI-based" : "has_provenance",
  9498. "undefined" : "has_provenance"
  9499. },
  9500. "domain" : "5",
  9501. "comment" : {
  9502. "en" : "Indicates a provenance-URI for a resource; the resource identified by this property presents a provenance record about its subject or anchor resource."
  9503. },
  9504. "attributes" : [ "object", "external" ],
  9505. "id" : "194"
  9506. }, {
  9507. "iri" : "http://www.w3.org/ns/prov#wasQuotedFrom",
  9508. "baseIri" : "http://www.w3.org/ns/prov",
  9509. "range" : "17",
  9510. "annotations" : {
  9511. "inverse" : [ {
  9512. "identifier" : "inverse",
  9513. "language" : "undefined",
  9514. "value" : "quotedAs",
  9515. "type" : "label"
  9516. }, {
  9517. "identifier" : "inverse",
  9518. "language" : "undefined",
  9519. "value" : "quotedAs",
  9520. "type" : "label"
  9521. } ],
  9522. "component" : [ {
  9523. "identifier" : "component",
  9524. "language" : "undefined",
  9525. "value" : "derivations",
  9526. "type" : "label"
  9527. }, {
  9528. "identifier" : "component",
  9529. "language" : "undefined",
  9530. "value" : "derivations",
  9531. "type" : "label"
  9532. } ],
  9533. "isDefinedBy" : [ {
  9534. "identifier" : "isDefinedBy",
  9535. "language" : "undefined",
  9536. "value" : "http://www.w3.org/ns/prov-o#",
  9537. "type" : "iri"
  9538. }, {
  9539. "identifier" : "isDefinedBy",
  9540. "language" : "undefined",
  9541. "value" : "http://www.w3.org/ns/prov-o#",
  9542. "type" : "iri"
  9543. }, {
  9544. "identifier" : "isDefinedBy",
  9545. "language" : "undefined",
  9546. "value" : "http://www.w3.org/ns/prov-o#",
  9547. "type" : "iri"
  9548. } ],
  9549. "category" : [ {
  9550. "identifier" : "category",
  9551. "language" : "undefined",
  9552. "value" : "expanded",
  9553. "type" : "label"
  9554. }, {
  9555. "identifier" : "category",
  9556. "language" : "undefined",
  9557. "value" : "expanded",
  9558. "type" : "label"
  9559. } ],
  9560. "qualifiedForm" : [ {
  9561. "identifier" : "qualifiedForm",
  9562. "language" : "undefined",
  9563. "value" : "http://www.w3.org/ns/prov#qualifiedQuotation",
  9564. "type" : "iri"
  9565. }, {
  9566. "identifier" : "qualifiedForm",
  9567. "language" : "undefined",
  9568. "value" : "http://www.w3.org/ns/prov#Quotation",
  9569. "type" : "iri"
  9570. }, {
  9571. "identifier" : "qualifiedForm",
  9572. "language" : "undefined",
  9573. "value" : "http://www.w3.org/ns/prov#Quotation",
  9574. "type" : "iri"
  9575. }, {
  9576. "identifier" : "qualifiedForm",
  9577. "language" : "undefined",
  9578. "value" : "http://www.w3.org/ns/prov#qualifiedQuotation",
  9579. "type" : "iri"
  9580. } ]
  9581. },
  9582. "label" : {
  9583. "IRI-based" : "wasQuotedFrom",
  9584. "undefined" : "wasQuotedFrom"
  9585. },
  9586. "superproperty" : [ "39" ],
  9587. "domain" : "17",
  9588. "comment" : {
  9589. "en" : "An entity is derived from an original entity by copying, or 'quoting', some or all of it."
  9590. },
  9591. "attributes" : [ "object", "external" ],
  9592. "id" : "80"
  9593. }, {
  9594. "range" : "17",
  9595. "domain" : "51",
  9596. "attributes" : [ "object", "anonymous" ],
  9597. "id" : "195"
  9598. }, {
  9599. "iri" : "http://www.w3.org/ns/prov#locationOf",
  9600. "inverse" : "28",
  9601. "baseIri" : "http://www.w3.org/ns/prov",
  9602. "range" : "29",
  9603. "annotations" : {
  9604. "isDefinedBy" : [ {
  9605. "identifier" : "isDefinedBy",
  9606. "language" : "undefined",
  9607. "value" : "http://www.w3.org/ns/prov#",
  9608. "type" : "iri"
  9609. }, {
  9610. "identifier" : "isDefinedBy",
  9611. "language" : "undefined",
  9612. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  9613. "type" : "iri"
  9614. } ]
  9615. },
  9616. "label" : {
  9617. "IRI-based" : "locationOf",
  9618. "undefined" : "locationOf"
  9619. },
  9620. "domain" : "30",
  9621. "attributes" : [ "object", "external" ],
  9622. "id" : "196"
  9623. }, {
  9624. "iri" : "http://www.w3.org/ns/prov#used",
  9625. "baseIri" : "http://www.w3.org/ns/prov",
  9626. "range" : "17",
  9627. "annotations" : {
  9628. "inverse" : [ {
  9629. "identifier" : "inverse",
  9630. "language" : "undefined",
  9631. "value" : "wasUsedBy",
  9632. "type" : "label"
  9633. }, {
  9634. "identifier" : "inverse",
  9635. "language" : "undefined",
  9636. "value" : "wasUsedBy",
  9637. "type" : "label"
  9638. } ],
  9639. "component" : [ {
  9640. "identifier" : "component",
  9641. "language" : "undefined",
  9642. "value" : "entities-activities",
  9643. "type" : "label"
  9644. }, {
  9645. "identifier" : "component",
  9646. "language" : "undefined",
  9647. "value" : "entities-activities",
  9648. "type" : "label"
  9649. } ],
  9650. "isDefinedBy" : [ {
  9651. "identifier" : "isDefinedBy",
  9652. "language" : "undefined",
  9653. "value" : "http://www.w3.org/ns/prov-o#",
  9654. "type" : "iri"
  9655. }, {
  9656. "identifier" : "isDefinedBy",
  9657. "language" : "undefined",
  9658. "value" : "http://www.w3.org/ns/prov-o#",
  9659. "type" : "iri"
  9660. }, {
  9661. "identifier" : "isDefinedBy",
  9662. "language" : "undefined",
  9663. "value" : "http://www.w3.org/ns/prov-o#",
  9664. "type" : "iri"
  9665. } ],
  9666. "category" : [ {
  9667. "identifier" : "category",
  9668. "language" : "undefined",
  9669. "value" : "starting-point",
  9670. "type" : "label"
  9671. }, {
  9672. "identifier" : "category",
  9673. "language" : "undefined",
  9674. "value" : "starting-point",
  9675. "type" : "label"
  9676. } ],
  9677. "qualifiedForm" : [ {
  9678. "identifier" : "qualifiedForm",
  9679. "language" : "undefined",
  9680. "value" : "http://www.w3.org/ns/prov#qualifiedUsage",
  9681. "type" : "iri"
  9682. }, {
  9683. "identifier" : "qualifiedForm",
  9684. "language" : "undefined",
  9685. "value" : "http://www.w3.org/ns/prov#qualifiedUsage",
  9686. "type" : "iri"
  9687. }, {
  9688. "identifier" : "qualifiedForm",
  9689. "language" : "undefined",
  9690. "value" : "http://www.w3.org/ns/prov#Usage",
  9691. "type" : "iri"
  9692. }, {
  9693. "identifier" : "qualifiedForm",
  9694. "language" : "undefined",
  9695. "value" : "http://www.w3.org/ns/prov#Usage",
  9696. "type" : "iri"
  9697. } ]
  9698. },
  9699. "label" : {
  9700. "IRI-based" : "used",
  9701. "undefined" : "used"
  9702. },
  9703. "superproperty" : [ "77" ],
  9704. "domain" : "9",
  9705. "comment" : {
  9706. "en" : "A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven ."
  9707. },
  9708. "attributes" : [ "object", "external" ],
  9709. "id" : "103"
  9710. }, {
  9711. "iri" : "http://www.w3.org/ns/prov#generatedAsDerivation",
  9712. "inverse" : "187",
  9713. "baseIri" : "http://www.w3.org/ns/prov",
  9714. "range" : "66",
  9715. "annotations" : {
  9716. "isDefinedBy" : [ {
  9717. "identifier" : "isDefinedBy",
  9718. "language" : "undefined",
  9719. "value" : "http://www.w3.org/ns/prov#",
  9720. "type" : "iri"
  9721. }, {
  9722. "identifier" : "isDefinedBy",
  9723. "language" : "undefined",
  9724. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  9725. "type" : "iri"
  9726. } ]
  9727. },
  9728. "label" : {
  9729. "IRI-based" : "generatedAsDerivation",
  9730. "undefined" : "generatedAsDerivation"
  9731. },
  9732. "domain" : "13",
  9733. "attributes" : [ "object", "external" ],
  9734. "id" : "197"
  9735. }, {
  9736. "iri" : "http://www.w3.org/ns/prov#hadUsage",
  9737. "baseIri" : "http://www.w3.org/ns/prov",
  9738. "range" : "12",
  9739. "annotations" : {
  9740. "sharesDefinitionWith" : [ {
  9741. "identifier" : "sharesDefinitionWith",
  9742. "language" : "undefined",
  9743. "value" : "http://www.w3.org/ns/prov#Usage",
  9744. "type" : "iri"
  9745. }, {
  9746. "identifier" : "sharesDefinitionWith",
  9747. "language" : "undefined",
  9748. "value" : "http://www.w3.org/ns/prov#Usage",
  9749. "type" : "iri"
  9750. } ],
  9751. "inverse" : [ {
  9752. "identifier" : "inverse",
  9753. "language" : "undefined",
  9754. "value" : "wasUsedInDerivation",
  9755. "type" : "label"
  9756. }, {
  9757. "identifier" : "inverse",
  9758. "language" : "undefined",
  9759. "value" : "wasUsedInDerivation",
  9760. "type" : "label"
  9761. } ],
  9762. "component" : [ {
  9763. "identifier" : "component",
  9764. "language" : "undefined",
  9765. "value" : "derivations",
  9766. "type" : "label"
  9767. }, {
  9768. "identifier" : "component",
  9769. "language" : "undefined",
  9770. "value" : "derivations",
  9771. "type" : "label"
  9772. } ],
  9773. "isDefinedBy" : [ {
  9774. "identifier" : "isDefinedBy",
  9775. "language" : "undefined",
  9776. "value" : "http://www.w3.org/ns/prov-o#",
  9777. "type" : "iri"
  9778. }, {
  9779. "identifier" : "isDefinedBy",
  9780. "language" : "undefined",
  9781. "value" : "http://www.w3.org/ns/prov#",
  9782. "type" : "iri"
  9783. }, {
  9784. "identifier" : "isDefinedBy",
  9785. "language" : "undefined",
  9786. "value" : "http://www.w3.org/ns/prov-o#",
  9787. "type" : "iri"
  9788. }, {
  9789. "identifier" : "isDefinedBy",
  9790. "language" : "undefined",
  9791. "value" : "http://www.w3.org/ns/prov-o#",
  9792. "type" : "iri"
  9793. } ],
  9794. "category" : [ {
  9795. "identifier" : "category",
  9796. "language" : "undefined",
  9797. "value" : "qualified",
  9798. "type" : "label"
  9799. }, {
  9800. "identifier" : "category",
  9801. "language" : "undefined",
  9802. "value" : "qualified",
  9803. "type" : "label"
  9804. } ]
  9805. },
  9806. "label" : {
  9807. "IRI-based" : "hadUsage",
  9808. "undefined" : "hadUsage"
  9809. },
  9810. "domain" : "66",
  9811. "comment" : {
  9812. "en" : "The _optional_ Usage involved in an Entity's Derivation."
  9813. },
  9814. "attributes" : [ "object", "external" ],
  9815. "id" : "92"
  9816. }, {
  9817. "iri" : "http://www.w3.org/ns/prov#agent",
  9818. "baseIri" : "http://www.w3.org/ns/prov",
  9819. "range" : "24",
  9820. "annotations" : {
  9821. "inverse" : [ {
  9822. "identifier" : "inverse",
  9823. "language" : "undefined",
  9824. "value" : "agentOfInfluence",
  9825. "type" : "label"
  9826. }, {
  9827. "identifier" : "inverse",
  9828. "language" : "undefined",
  9829. "value" : "agentOfInfluence",
  9830. "type" : "label"
  9831. } ],
  9832. "editorialNote" : [ {
  9833. "identifier" : "editorialNote",
  9834. "language" : "en",
  9835. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  9836. "type" : "label"
  9837. }, {
  9838. "identifier" : "editorialNote",
  9839. "language" : "en",
  9840. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  9841. "type" : "label"
  9842. } ],
  9843. "isDefinedBy" : [ {
  9844. "identifier" : "isDefinedBy",
  9845. "language" : "undefined",
  9846. "value" : "http://www.w3.org/ns/prov-o#",
  9847. "type" : "iri"
  9848. }, {
  9849. "identifier" : "isDefinedBy",
  9850. "language" : "undefined",
  9851. "value" : "http://www.w3.org/ns/prov-o#",
  9852. "type" : "iri"
  9853. }, {
  9854. "identifier" : "isDefinedBy",
  9855. "language" : "undefined",
  9856. "value" : "http://www.w3.org/ns/prov-o#",
  9857. "type" : "iri"
  9858. } ],
  9859. "editorsDefinition" : [ {
  9860. "identifier" : "editorsDefinition",
  9861. "language" : "en",
  9862. "value" : "The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  9863. "type" : "label"
  9864. }, {
  9865. "identifier" : "editorsDefinition",
  9866. "language" : "en",
  9867. "value" : "The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  9868. "type" : "label"
  9869. } ],
  9870. "category" : [ {
  9871. "identifier" : "category",
  9872. "language" : "undefined",
  9873. "value" : "qualified",
  9874. "type" : "label"
  9875. }, {
  9876. "identifier" : "category",
  9877. "language" : "undefined",
  9878. "value" : "qualified",
  9879. "type" : "label"
  9880. } ]
  9881. },
  9882. "label" : {
  9883. "IRI-based" : "agent",
  9884. "undefined" : "agent"
  9885. },
  9886. "superproperty" : [ "149" ],
  9887. "domain" : "43",
  9888. "attributes" : [ "object", "external" ],
  9889. "id" : "44"
  9890. }, {
  9891. "iri" : "http://www.w3.org/ns/prov#qualifiedDelegationOf",
  9892. "inverse" : "71",
  9893. "baseIri" : "http://www.w3.org/ns/prov",
  9894. "range" : "24",
  9895. "annotations" : {
  9896. "isDefinedBy" : [ {
  9897. "identifier" : "isDefinedBy",
  9898. "language" : "undefined",
  9899. "value" : "http://www.w3.org/ns/prov#",
  9900. "type" : "iri"
  9901. }, {
  9902. "identifier" : "isDefinedBy",
  9903. "language" : "undefined",
  9904. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  9905. "type" : "iri"
  9906. } ]
  9907. },
  9908. "label" : {
  9909. "IRI-based" : "qualifiedDelegationOf",
  9910. "undefined" : "qualifiedDelegationOf"
  9911. },
  9912. "domain" : "72",
  9913. "attributes" : [ "object", "external" ],
  9914. "id" : "198"
  9915. }, {
  9916. "range" : "17",
  9917. "domain" : "95",
  9918. "attributes" : [ "object", "anonymous" ],
  9919. "id" : "199"
  9920. }, {
  9921. "iri" : "http://www.w3.org/ns/prov#qualifiedAssociation",
  9922. "baseIri" : "http://www.w3.org/ns/prov",
  9923. "range" : "87",
  9924. "annotations" : {
  9925. "inverse" : [ {
  9926. "identifier" : "inverse",
  9927. "language" : "undefined",
  9928. "value" : "qualifiedAssociationOf",
  9929. "type" : "label"
  9930. }, {
  9931. "identifier" : "inverse",
  9932. "language" : "undefined",
  9933. "value" : "qualifiedAssociationOf",
  9934. "type" : "label"
  9935. } ],
  9936. "sharesDefinitionWith" : [ {
  9937. "identifier" : "sharesDefinitionWith",
  9938. "language" : "undefined",
  9939. "value" : "http://www.w3.org/ns/prov#Association",
  9940. "type" : "iri"
  9941. }, {
  9942. "identifier" : "sharesDefinitionWith",
  9943. "language" : "undefined",
  9944. "value" : "http://www.w3.org/ns/prov#Association",
  9945. "type" : "iri"
  9946. } ],
  9947. "component" : [ {
  9948. "identifier" : "component",
  9949. "language" : "undefined",
  9950. "value" : "agents-responsibility",
  9951. "type" : "label"
  9952. }, {
  9953. "identifier" : "component",
  9954. "language" : "undefined",
  9955. "value" : "agents-responsibility",
  9956. "type" : "label"
  9957. } ],
  9958. "isDefinedBy" : [ {
  9959. "identifier" : "isDefinedBy",
  9960. "language" : "undefined",
  9961. "value" : "http://www.w3.org/ns/prov-o#",
  9962. "type" : "iri"
  9963. }, {
  9964. "identifier" : "isDefinedBy",
  9965. "language" : "undefined",
  9966. "value" : "http://www.w3.org/ns/prov-o#",
  9967. "type" : "iri"
  9968. }, {
  9969. "identifier" : "isDefinedBy",
  9970. "language" : "undefined",
  9971. "value" : "http://www.w3.org/ns/prov-o#",
  9972. "type" : "iri"
  9973. } ],
  9974. "unqualifiedForm" : [ {
  9975. "identifier" : "unqualifiedForm",
  9976. "language" : "undefined",
  9977. "value" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  9978. "type" : "iri"
  9979. }, {
  9980. "identifier" : "unqualifiedForm",
  9981. "language" : "undefined",
  9982. "value" : "http://www.w3.org/ns/prov#wasAssociatedWith",
  9983. "type" : "iri"
  9984. } ],
  9985. "category" : [ {
  9986. "identifier" : "category",
  9987. "language" : "undefined",
  9988. "value" : "qualified",
  9989. "type" : "label"
  9990. }, {
  9991. "identifier" : "category",
  9992. "language" : "undefined",
  9993. "value" : "qualified",
  9994. "type" : "label"
  9995. } ]
  9996. },
  9997. "label" : {
  9998. "IRI-based" : "qualifiedAssociation",
  9999. "undefined" : "qualifiedAssociation"
  10000. },
  10001. "superproperty" : [ "3" ],
  10002. "domain" : "9",
  10003. "comment" : {
  10004. "en" : "If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association; prov:agent :ag; :foo :bar ]."
  10005. },
  10006. "attributes" : [ "object", "external" ],
  10007. "id" : "200"
  10008. }, {
  10009. "range" : "17",
  10010. "domain" : "37",
  10011. "attributes" : [ "object", "anonymous" ],
  10012. "id" : "201"
  10013. }, {
  10014. "range" : "17",
  10015. "domain" : "110",
  10016. "attributes" : [ "object", "anonymous" ],
  10017. "id" : "202"
  10018. }, {
  10019. "range" : "9",
  10020. "domain" : "35",
  10021. "attributes" : [ "object", "anonymous" ],
  10022. "id" : "203"
  10023. }, {
  10024. "range" : "17",
  10025. "domain" : "73",
  10026. "attributes" : [ "object", "anonymous" ],
  10027. "id" : "204"
  10028. }, {
  10029. "range" : "17",
  10030. "domain" : "94",
  10031. "attributes" : [ "object", "anonymous" ],
  10032. "id" : "205"
  10033. }, {
  10034. "range" : "9",
  10035. "domain" : "127",
  10036. "attributes" : [ "object", "anonymous" ],
  10037. "id" : "206"
  10038. }, {
  10039. "range" : "9",
  10040. "domain" : "65",
  10041. "attributes" : [ "object", "anonymous" ],
  10042. "id" : "207"
  10043. }, {
  10044. "range" : "9",
  10045. "domain" : "129",
  10046. "attributes" : [ "object", "anonymous" ],
  10047. "id" : "208"
  10048. }, {
  10049. "iri" : "http://www.w3.org/ns/prov#alternateOf",
  10050. "inverse" : "19",
  10051. "baseIri" : "http://www.w3.org/ns/prov",
  10052. "range" : "17",
  10053. "annotations" : {
  10054. "inverse" : [ {
  10055. "identifier" : "inverse",
  10056. "language" : "undefined",
  10057. "value" : "alternateOf",
  10058. "type" : "label"
  10059. }, {
  10060. "identifier" : "inverse",
  10061. "language" : "undefined",
  10062. "value" : "alternateOf",
  10063. "type" : "label"
  10064. } ],
  10065. "component" : [ {
  10066. "identifier" : "component",
  10067. "language" : "undefined",
  10068. "value" : "alternate",
  10069. "type" : "label"
  10070. }, {
  10071. "identifier" : "component",
  10072. "language" : "undefined",
  10073. "value" : "alternate",
  10074. "type" : "label"
  10075. } ],
  10076. "isDefinedBy" : [ {
  10077. "identifier" : "isDefinedBy",
  10078. "language" : "undefined",
  10079. "value" : "http://www.w3.org/ns/prov-o#",
  10080. "type" : "iri"
  10081. }, {
  10082. "identifier" : "isDefinedBy",
  10083. "language" : "undefined",
  10084. "value" : "http://www.w3.org/ns/prov#",
  10085. "type" : "iri"
  10086. }, {
  10087. "identifier" : "isDefinedBy",
  10088. "language" : "undefined",
  10089. "value" : "http://www.w3.org/ns/prov-o#",
  10090. "type" : "iri"
  10091. }, {
  10092. "identifier" : "isDefinedBy",
  10093. "language" : "undefined",
  10094. "value" : "http://www.w3.org/ns/prov-o#",
  10095. "type" : "iri"
  10096. }, {
  10097. "identifier" : "isDefinedBy",
  10098. "language" : "undefined",
  10099. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  10100. "type" : "iri"
  10101. } ],
  10102. "dm" : [ {
  10103. "identifier" : "dm",
  10104. "language" : "undefined",
  10105. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate",
  10106. "type" : "label"
  10107. }, {
  10108. "identifier" : "dm",
  10109. "language" : "undefined",
  10110. "value" : "http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate",
  10111. "type" : "label"
  10112. } ],
  10113. "definition" : [ {
  10114. "identifier" : "definition",
  10115. "language" : "en",
  10116. "value" : "Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.",
  10117. "type" : "label"
  10118. }, {
  10119. "identifier" : "definition",
  10120. "language" : "en",
  10121. "value" : "Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.",
  10122. "type" : "label"
  10123. } ],
  10124. "category" : [ {
  10125. "identifier" : "category",
  10126. "language" : "undefined",
  10127. "value" : "expanded",
  10128. "type" : "label"
  10129. }, {
  10130. "identifier" : "category",
  10131. "language" : "undefined",
  10132. "value" : "expanded",
  10133. "type" : "label"
  10134. } ],
  10135. "constraints" : [ {
  10136. "identifier" : "constraints",
  10137. "language" : "undefined",
  10138. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  10139. "type" : "label"
  10140. }, {
  10141. "identifier" : "constraints",
  10142. "language" : "undefined",
  10143. "value" : "http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig",
  10144. "type" : "label"
  10145. } ],
  10146. "n" : [ {
  10147. "identifier" : "n",
  10148. "language" : "undefined",
  10149. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate",
  10150. "type" : "label"
  10151. }, {
  10152. "identifier" : "n",
  10153. "language" : "undefined",
  10154. "value" : "http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate",
  10155. "type" : "label"
  10156. } ],
  10157. "seeAlso" : [ {
  10158. "identifier" : "seeAlso",
  10159. "language" : "undefined",
  10160. "value" : "http://www.w3.org/ns/prov#specializationOf",
  10161. "type" : "iri"
  10162. }, {
  10163. "identifier" : "seeAlso",
  10164. "language" : "undefined",
  10165. "value" : "http://www.w3.org/ns/prov#specializationOf",
  10166. "type" : "iri"
  10167. } ]
  10168. },
  10169. "label" : {
  10170. "IRI-based" : "alternateOf",
  10171. "undefined" : "alternateOf"
  10172. },
  10173. "domain" : "17",
  10174. "subproperty" : [ "16" ],
  10175. "attributes" : [ "object", "external" ],
  10176. "id" : "19"
  10177. }, {
  10178. "range" : "9",
  10179. "domain" : "128",
  10180. "attributes" : [ "object", "anonymous" ],
  10181. "id" : "209"
  10182. }, {
  10183. "iri" : "http://www.w3.org/ns/prov#invalidatedAtTime",
  10184. "baseIri" : "http://www.w3.org/ns/prov",
  10185. "range" : "141",
  10186. "annotations" : {
  10187. "editorialNote" : [ {
  10188. "identifier" : "editorialNote",
  10189. "language" : "en",
  10190. "value" : "It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime.",
  10191. "type" : "label"
  10192. }, {
  10193. "identifier" : "editorialNote",
  10194. "language" : "en",
  10195. "value" : "It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime.",
  10196. "type" : "label"
  10197. } ],
  10198. "component" : [ {
  10199. "identifier" : "component",
  10200. "language" : "undefined",
  10201. "value" : "entities-activities",
  10202. "type" : "label"
  10203. }, {
  10204. "identifier" : "component",
  10205. "language" : "undefined",
  10206. "value" : "entities-activities",
  10207. "type" : "label"
  10208. } ],
  10209. "isDefinedBy" : [ {
  10210. "identifier" : "isDefinedBy",
  10211. "language" : "undefined",
  10212. "value" : "http://www.w3.org/ns/prov-o#",
  10213. "type" : "iri"
  10214. }, {
  10215. "identifier" : "isDefinedBy",
  10216. "language" : "undefined",
  10217. "value" : "http://www.w3.org/ns/prov-o#",
  10218. "type" : "iri"
  10219. } ],
  10220. "category" : [ {
  10221. "identifier" : "category",
  10222. "language" : "undefined",
  10223. "value" : "expanded",
  10224. "type" : "label"
  10225. }, {
  10226. "identifier" : "category",
  10227. "language" : "undefined",
  10228. "value" : "expanded",
  10229. "type" : "label"
  10230. } ],
  10231. "qualifiedForm" : [ {
  10232. "identifier" : "qualifiedForm",
  10233. "language" : "undefined",
  10234. "value" : "http://www.w3.org/ns/prov#atTime",
  10235. "type" : "iri"
  10236. }, {
  10237. "identifier" : "qualifiedForm",
  10238. "language" : "undefined",
  10239. "value" : "http://www.w3.org/ns/prov#atTime",
  10240. "type" : "iri"
  10241. }, {
  10242. "identifier" : "qualifiedForm",
  10243. "language" : "undefined",
  10244. "value" : "http://www.w3.org/ns/prov#Invalidation",
  10245. "type" : "iri"
  10246. }, {
  10247. "identifier" : "qualifiedForm",
  10248. "language" : "undefined",
  10249. "value" : "http://www.w3.org/ns/prov#Invalidation",
  10250. "type" : "iri"
  10251. } ]
  10252. },
  10253. "label" : {
  10254. "IRI-based" : "invalidatedAtTime",
  10255. "undefined" : "invalidatedAtTime"
  10256. },
  10257. "domain" : "17",
  10258. "comment" : {
  10259. "en" : "The time at which an entity was invalidated (i.e., no longer usable)."
  10260. },
  10261. "attributes" : [ "datatype", "external" ],
  10262. "id" : "210"
  10263. }, {
  10264. "iri" : "http://www.w3.org/ns/prov#wasInformedBy",
  10265. "baseIri" : "http://www.w3.org/ns/prov",
  10266. "range" : "9",
  10267. "annotations" : {
  10268. "inverse" : [ {
  10269. "identifier" : "inverse",
  10270. "language" : "undefined",
  10271. "value" : "informed",
  10272. "type" : "label"
  10273. }, {
  10274. "identifier" : "inverse",
  10275. "language" : "undefined",
  10276. "value" : "informed",
  10277. "type" : "label"
  10278. } ],
  10279. "component" : [ {
  10280. "identifier" : "component",
  10281. "language" : "undefined",
  10282. "value" : "entities-activities",
  10283. "type" : "label"
  10284. }, {
  10285. "identifier" : "component",
  10286. "language" : "undefined",
  10287. "value" : "entities-activities",
  10288. "type" : "label"
  10289. } ],
  10290. "isDefinedBy" : [ {
  10291. "identifier" : "isDefinedBy",
  10292. "language" : "undefined",
  10293. "value" : "http://www.w3.org/ns/prov-o#",
  10294. "type" : "iri"
  10295. }, {
  10296. "identifier" : "isDefinedBy",
  10297. "language" : "undefined",
  10298. "value" : "http://www.w3.org/ns/prov-o#",
  10299. "type" : "iri"
  10300. }, {
  10301. "identifier" : "isDefinedBy",
  10302. "language" : "undefined",
  10303. "value" : "http://www.w3.org/ns/prov-o#",
  10304. "type" : "iri"
  10305. } ],
  10306. "category" : [ {
  10307. "identifier" : "category",
  10308. "language" : "undefined",
  10309. "value" : "starting-point",
  10310. "type" : "label"
  10311. }, {
  10312. "identifier" : "category",
  10313. "language" : "undefined",
  10314. "value" : "starting-point",
  10315. "type" : "label"
  10316. } ],
  10317. "qualifiedForm" : [ {
  10318. "identifier" : "qualifiedForm",
  10319. "language" : "undefined",
  10320. "value" : "http://www.w3.org/ns/prov#Communication",
  10321. "type" : "iri"
  10322. }, {
  10323. "identifier" : "qualifiedForm",
  10324. "language" : "undefined",
  10325. "value" : "http://www.w3.org/ns/prov#qualifiedCommunication",
  10326. "type" : "iri"
  10327. }, {
  10328. "identifier" : "qualifiedForm",
  10329. "language" : "undefined",
  10330. "value" : "http://www.w3.org/ns/prov#qualifiedCommunication",
  10331. "type" : "iri"
  10332. }, {
  10333. "identifier" : "qualifiedForm",
  10334. "language" : "undefined",
  10335. "value" : "http://www.w3.org/ns/prov#Communication",
  10336. "type" : "iri"
  10337. } ]
  10338. },
  10339. "label" : {
  10340. "IRI-based" : "wasInformedBy",
  10341. "undefined" : "wasInformedBy"
  10342. },
  10343. "superproperty" : [ "77" ],
  10344. "domain" : "9",
  10345. "comment" : {
  10346. "en" : "An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2."
  10347. },
  10348. "attributes" : [ "object", "external" ],
  10349. "id" : "105"
  10350. }, {
  10351. "iri" : "http://www.w3.org/ns/prov#qualifiedGeneration",
  10352. "baseIri" : "http://www.w3.org/ns/prov",
  10353. "range" : "13",
  10354. "annotations" : {
  10355. "inverse" : [ {
  10356. "identifier" : "inverse",
  10357. "language" : "undefined",
  10358. "value" : "qualifiedGenerationOf",
  10359. "type" : "label"
  10360. }, {
  10361. "identifier" : "inverse",
  10362. "language" : "undefined",
  10363. "value" : "qualifiedGenerationOf",
  10364. "type" : "label"
  10365. } ],
  10366. "sharesDefinitionWith" : [ {
  10367. "identifier" : "sharesDefinitionWith",
  10368. "language" : "undefined",
  10369. "value" : "http://www.w3.org/ns/prov#Generation",
  10370. "type" : "iri"
  10371. }, {
  10372. "identifier" : "sharesDefinitionWith",
  10373. "language" : "undefined",
  10374. "value" : "http://www.w3.org/ns/prov#Generation",
  10375. "type" : "iri"
  10376. } ],
  10377. "component" : [ {
  10378. "identifier" : "component",
  10379. "language" : "undefined",
  10380. "value" : "entities-activities",
  10381. "type" : "label"
  10382. }, {
  10383. "identifier" : "component",
  10384. "language" : "undefined",
  10385. "value" : "entities-activities",
  10386. "type" : "label"
  10387. } ],
  10388. "isDefinedBy" : [ {
  10389. "identifier" : "isDefinedBy",
  10390. "language" : "undefined",
  10391. "value" : "http://www.w3.org/ns/prov-o#",
  10392. "type" : "iri"
  10393. }, {
  10394. "identifier" : "isDefinedBy",
  10395. "language" : "undefined",
  10396. "value" : "http://www.w3.org/ns/prov-o#",
  10397. "type" : "iri"
  10398. }, {
  10399. "identifier" : "isDefinedBy",
  10400. "language" : "undefined",
  10401. "value" : "http://www.w3.org/ns/prov-o#",
  10402. "type" : "iri"
  10403. } ],
  10404. "unqualifiedForm" : [ {
  10405. "identifier" : "unqualifiedForm",
  10406. "language" : "undefined",
  10407. "value" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  10408. "type" : "iri"
  10409. }, {
  10410. "identifier" : "unqualifiedForm",
  10411. "language" : "undefined",
  10412. "value" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  10413. "type" : "iri"
  10414. } ],
  10415. "category" : [ {
  10416. "identifier" : "category",
  10417. "language" : "undefined",
  10418. "value" : "qualified",
  10419. "type" : "label"
  10420. }, {
  10421. "identifier" : "category",
  10422. "language" : "undefined",
  10423. "value" : "qualified",
  10424. "type" : "label"
  10425. } ]
  10426. },
  10427. "label" : {
  10428. "IRI-based" : "qualifiedGeneration",
  10429. "undefined" : "qualifiedGeneration"
  10430. },
  10431. "superproperty" : [ "3" ],
  10432. "domain" : "17",
  10433. "comment" : {
  10434. "en" : "If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation; prov:entity :e; :foo :bar ]."
  10435. },
  10436. "attributes" : [ "object", "external" ],
  10437. "id" : "211"
  10438. }, {
  10439. "iri" : "http://www.w3.org/ns/prov#insertedKeyEntityPair",
  10440. "baseIri" : "http://www.w3.org/ns/prov",
  10441. "range" : "22",
  10442. "annotations" : {
  10443. "component" : [ {
  10444. "identifier" : "component",
  10445. "language" : "undefined",
  10446. "value" : "collections",
  10447. "type" : "label"
  10448. }, {
  10449. "identifier" : "component",
  10450. "language" : "undefined",
  10451. "value" : "collections",
  10452. "type" : "label"
  10453. } ],
  10454. "isDefinedBy" : [ {
  10455. "identifier" : "isDefinedBy",
  10456. "language" : "undefined",
  10457. "value" : "http://www.w3.org/ns/prov#",
  10458. "type" : "iri"
  10459. }, {
  10460. "identifier" : "isDefinedBy",
  10461. "language" : "undefined",
  10462. "value" : "http://www.w3.org/ns/prov#",
  10463. "type" : "iri"
  10464. } ],
  10465. "dm" : [ {
  10466. "identifier" : "dm",
  10467. "language" : "undefined",
  10468. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  10469. "type" : "label"
  10470. }, {
  10471. "identifier" : "dm",
  10472. "language" : "undefined",
  10473. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion",
  10474. "type" : "label"
  10475. } ],
  10476. "definition" : [ {
  10477. "identifier" : "definition",
  10478. "language" : "undefined",
  10479. "value" : "An object property to refer to the prov:KeyEntityPair inserted into a prov:Dictionary.",
  10480. "type" : "label"
  10481. }, {
  10482. "identifier" : "definition",
  10483. "language" : "undefined",
  10484. "value" : "An object property to refer to the prov:KeyEntityPair inserted into a prov:Dictionary.",
  10485. "type" : "label"
  10486. } ],
  10487. "category" : [ {
  10488. "identifier" : "category",
  10489. "language" : "undefined",
  10490. "value" : "collections",
  10491. "type" : "label"
  10492. }, {
  10493. "identifier" : "category",
  10494. "language" : "undefined",
  10495. "value" : "collections",
  10496. "type" : "label"
  10497. } ],
  10498. "constraints" : [ {
  10499. "identifier" : "constraints",
  10500. "language" : "undefined",
  10501. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  10502. "type" : "label"
  10503. }, {
  10504. "identifier" : "constraints",
  10505. "language" : "undefined",
  10506. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints",
  10507. "type" : "label"
  10508. } ],
  10509. "n" : [ {
  10510. "identifier" : "n",
  10511. "language" : "undefined",
  10512. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  10513. "type" : "label"
  10514. }, {
  10515. "identifier" : "n",
  10516. "language" : "undefined",
  10517. "value" : "http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion",
  10518. "type" : "label"
  10519. } ]
  10520. },
  10521. "label" : {
  10522. "IRI-based" : "insertedKeyEntityPair",
  10523. "undefined" : "insertedKeyEntityPair"
  10524. },
  10525. "minCardinality" : "1",
  10526. "domain" : "33",
  10527. "attributes" : [ "object", "external" ],
  10528. "id" : "212"
  10529. }, {
  10530. "iri" : "http://www.w3.org/ns/prov#hadDerivation",
  10531. "inverse" : "39",
  10532. "baseIri" : "http://www.w3.org/ns/prov",
  10533. "range" : "17",
  10534. "annotations" : {
  10535. "isDefinedBy" : [ {
  10536. "identifier" : "isDefinedBy",
  10537. "language" : "undefined",
  10538. "value" : "http://www.w3.org/ns/prov#",
  10539. "type" : "iri"
  10540. }, {
  10541. "identifier" : "isDefinedBy",
  10542. "language" : "undefined",
  10543. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  10544. "type" : "iri"
  10545. } ]
  10546. },
  10547. "label" : {
  10548. "IRI-based" : "hadDerivation",
  10549. "undefined" : "hadDerivation"
  10550. },
  10551. "domain" : "17",
  10552. "attributes" : [ "object", "external" ],
  10553. "id" : "213"
  10554. }, {
  10555. "iri" : "http://www.w3.org/ns/prov#generated",
  10556. "inverse" : "101",
  10557. "baseIri" : "http://www.w3.org/ns/prov",
  10558. "range" : "17",
  10559. "annotations" : {
  10560. "inverse" : [ {
  10561. "identifier" : "inverse",
  10562. "language" : "undefined",
  10563. "value" : "wasGeneratedBy",
  10564. "type" : "label"
  10565. }, {
  10566. "identifier" : "inverse",
  10567. "language" : "undefined",
  10568. "value" : "wasGeneratedBy",
  10569. "type" : "label"
  10570. } ],
  10571. "editorialNote" : [ {
  10572. "identifier" : "editorialNote",
  10573. "language" : "en",
  10574. "value" : "prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.",
  10575. "type" : "label"
  10576. }, {
  10577. "identifier" : "editorialNote",
  10578. "language" : "en",
  10579. "value" : "prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.",
  10580. "type" : "label"
  10581. } ],
  10582. "sharesDefinitionWith" : [ {
  10583. "identifier" : "sharesDefinitionWith",
  10584. "language" : "undefined",
  10585. "value" : "http://www.w3.org/ns/prov#Generation",
  10586. "type" : "iri"
  10587. }, {
  10588. "identifier" : "sharesDefinitionWith",
  10589. "language" : "undefined",
  10590. "value" : "http://www.w3.org/ns/prov#Generation",
  10591. "type" : "iri"
  10592. } ],
  10593. "component" : [ {
  10594. "identifier" : "component",
  10595. "language" : "undefined",
  10596. "value" : "entities-activities",
  10597. "type" : "label"
  10598. }, {
  10599. "identifier" : "component",
  10600. "language" : "undefined",
  10601. "value" : "entities-activities",
  10602. "type" : "label"
  10603. } ],
  10604. "isDefinedBy" : [ {
  10605. "identifier" : "isDefinedBy",
  10606. "language" : "undefined",
  10607. "value" : "http://www.w3.org/ns/prov-o#",
  10608. "type" : "iri"
  10609. }, {
  10610. "identifier" : "isDefinedBy",
  10611. "language" : "undefined",
  10612. "value" : "http://www.w3.org/ns/prov-o#",
  10613. "type" : "iri"
  10614. }, {
  10615. "identifier" : "isDefinedBy",
  10616. "language" : "undefined",
  10617. "value" : "http://www.w3.org/ns/prov-o#",
  10618. "type" : "iri"
  10619. }, {
  10620. "identifier" : "isDefinedBy",
  10621. "language" : "undefined",
  10622. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  10623. "type" : "iri"
  10624. }, {
  10625. "identifier" : "isDefinedBy",
  10626. "language" : "undefined",
  10627. "value" : "http://www.w3.org/ns/prov#",
  10628. "type" : "iri"
  10629. } ],
  10630. "category" : [ {
  10631. "identifier" : "category",
  10632. "language" : "undefined",
  10633. "value" : "expanded",
  10634. "type" : "label"
  10635. }, {
  10636. "identifier" : "category",
  10637. "language" : "undefined",
  10638. "value" : "expanded",
  10639. "type" : "label"
  10640. } ]
  10641. },
  10642. "label" : {
  10643. "IRI-based" : "generated",
  10644. "undefined" : "generated"
  10645. },
  10646. "superproperty" : [ "62" ],
  10647. "domain" : "9",
  10648. "attributes" : [ "object", "external" ],
  10649. "id" : "166"
  10650. }, {
  10651. "range" : "9",
  10652. "domain" : "90",
  10653. "attributes" : [ "object", "anonymous" ],
  10654. "id" : "214"
  10655. }, {
  10656. "range" : "9",
  10657. "domain" : "125",
  10658. "attributes" : [ "object", "anonymous" ],
  10659. "id" : "215"
  10660. }, {
  10661. "iri" : "http://www.w3.org/ns/prov#actedOnBehalfOf",
  10662. "baseIri" : "http://www.w3.org/ns/prov",
  10663. "range" : "24",
  10664. "annotations" : {
  10665. "inverse" : [ {
  10666. "identifier" : "inverse",
  10667. "language" : "undefined",
  10668. "value" : "hadDelegate",
  10669. "type" : "label"
  10670. }, {
  10671. "identifier" : "inverse",
  10672. "language" : "undefined",
  10673. "value" : "hadDelegate",
  10674. "type" : "label"
  10675. } ],
  10676. "component" : [ {
  10677. "identifier" : "component",
  10678. "language" : "undefined",
  10679. "value" : "agents-responsibility",
  10680. "type" : "label"
  10681. }, {
  10682. "identifier" : "component",
  10683. "language" : "undefined",
  10684. "value" : "agents-responsibility",
  10685. "type" : "label"
  10686. } ],
  10687. "isDefinedBy" : [ {
  10688. "identifier" : "isDefinedBy",
  10689. "language" : "undefined",
  10690. "value" : "http://www.w3.org/ns/prov-o#",
  10691. "type" : "iri"
  10692. }, {
  10693. "identifier" : "isDefinedBy",
  10694. "language" : "undefined",
  10695. "value" : "http://www.w3.org/ns/prov-o#",
  10696. "type" : "iri"
  10697. }, {
  10698. "identifier" : "isDefinedBy",
  10699. "language" : "undefined",
  10700. "value" : "http://www.w3.org/ns/prov-o#",
  10701. "type" : "iri"
  10702. } ],
  10703. "category" : [ {
  10704. "identifier" : "category",
  10705. "language" : "undefined",
  10706. "value" : "starting-point",
  10707. "type" : "label"
  10708. }, {
  10709. "identifier" : "category",
  10710. "language" : "undefined",
  10711. "value" : "starting-point",
  10712. "type" : "label"
  10713. } ],
  10714. "qualifiedForm" : [ {
  10715. "identifier" : "qualifiedForm",
  10716. "language" : "undefined",
  10717. "value" : "http://www.w3.org/ns/prov#qualifiedDelegation",
  10718. "type" : "iri"
  10719. }, {
  10720. "identifier" : "qualifiedForm",
  10721. "language" : "undefined",
  10722. "value" : "http://www.w3.org/ns/prov#Delegation",
  10723. "type" : "iri"
  10724. }, {
  10725. "identifier" : "qualifiedForm",
  10726. "language" : "undefined",
  10727. "value" : "http://www.w3.org/ns/prov#Delegation",
  10728. "type" : "iri"
  10729. }, {
  10730. "identifier" : "qualifiedForm",
  10731. "language" : "undefined",
  10732. "value" : "http://www.w3.org/ns/prov#qualifiedDelegation",
  10733. "type" : "iri"
  10734. } ]
  10735. },
  10736. "label" : {
  10737. "IRI-based" : "actedOnBehalfOf",
  10738. "undefined" : "actedOnBehalfOf"
  10739. },
  10740. "superproperty" : [ "77" ],
  10741. "domain" : "24",
  10742. "comment" : {
  10743. "en" : "An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. "
  10744. },
  10745. "attributes" : [ "object", "external" ],
  10746. "id" : "25"
  10747. }, {
  10748. "range" : "9",
  10749. "domain" : "126",
  10750. "attributes" : [ "object", "anonymous" ],
  10751. "id" : "216"
  10752. }, {
  10753. "range" : "66",
  10754. "domain" : "68",
  10755. "attributes" : [ "object", "anonymous" ],
  10756. "id" : "217"
  10757. }, {
  10758. "range" : "66",
  10759. "domain" : "33",
  10760. "attributes" : [ "object", "anonymous" ],
  10761. "id" : "218"
  10762. }, {
  10763. "range" : "66",
  10764. "domain" : "70",
  10765. "attributes" : [ "object", "anonymous" ],
  10766. "id" : "219"
  10767. }, {
  10768. "range" : "66",
  10769. "domain" : "69",
  10770. "attributes" : [ "object", "anonymous" ],
  10771. "id" : "220"
  10772. }, {
  10773. "iri" : "http://www.w3.org/ns/prov#wasGeneratedBy",
  10774. "baseIri" : "http://www.w3.org/ns/prov",
  10775. "range" : "9",
  10776. "annotations" : {
  10777. "inverse" : [ {
  10778. "identifier" : "inverse",
  10779. "language" : "undefined",
  10780. "value" : "generated",
  10781. "type" : "label"
  10782. }, {
  10783. "identifier" : "inverse",
  10784. "language" : "undefined",
  10785. "value" : "generated",
  10786. "type" : "label"
  10787. } ],
  10788. "component" : [ {
  10789. "identifier" : "component",
  10790. "language" : "undefined",
  10791. "value" : "entities-activities",
  10792. "type" : "label"
  10793. }, {
  10794. "identifier" : "component",
  10795. "language" : "undefined",
  10796. "value" : "entities-activities",
  10797. "type" : "label"
  10798. } ],
  10799. "isDefinedBy" : [ {
  10800. "identifier" : "isDefinedBy",
  10801. "language" : "undefined",
  10802. "value" : "http://www.w3.org/ns/prov-o#",
  10803. "type" : "iri"
  10804. }, {
  10805. "identifier" : "isDefinedBy",
  10806. "language" : "undefined",
  10807. "value" : "http://www.w3.org/ns/prov-o#",
  10808. "type" : "iri"
  10809. }, {
  10810. "identifier" : "isDefinedBy",
  10811. "language" : "undefined",
  10812. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  10813. "type" : "iri"
  10814. }, {
  10815. "identifier" : "isDefinedBy",
  10816. "language" : "undefined",
  10817. "value" : "http://www.w3.org/ns/prov#",
  10818. "type" : "iri"
  10819. }, {
  10820. "identifier" : "isDefinedBy",
  10821. "language" : "undefined",
  10822. "value" : "http://www.w3.org/ns/prov-o#",
  10823. "type" : "iri"
  10824. } ],
  10825. "category" : [ {
  10826. "identifier" : "category",
  10827. "language" : "undefined",
  10828. "value" : "starting-point",
  10829. "type" : "label"
  10830. }, {
  10831. "identifier" : "category",
  10832. "language" : "undefined",
  10833. "value" : "starting-point",
  10834. "type" : "label"
  10835. } ],
  10836. "qualifiedForm" : [ {
  10837. "identifier" : "qualifiedForm",
  10838. "language" : "undefined",
  10839. "value" : "http://www.w3.org/ns/prov#qualifiedGeneration",
  10840. "type" : "iri"
  10841. }, {
  10842. "identifier" : "qualifiedForm",
  10843. "language" : "undefined",
  10844. "value" : "http://www.w3.org/ns/prov#qualifiedGeneration",
  10845. "type" : "iri"
  10846. }, {
  10847. "identifier" : "qualifiedForm",
  10848. "language" : "undefined",
  10849. "value" : "http://www.w3.org/ns/prov#Generation",
  10850. "type" : "iri"
  10851. }, {
  10852. "identifier" : "qualifiedForm",
  10853. "language" : "undefined",
  10854. "value" : "http://www.w3.org/ns/prov#Generation",
  10855. "type" : "iri"
  10856. } ]
  10857. },
  10858. "label" : {
  10859. "IRI-based" : "wasGeneratedBy",
  10860. "undefined" : "wasGeneratedBy"
  10861. },
  10862. "superproperty" : [ "77" ],
  10863. "domain" : "17",
  10864. "attributes" : [ "object", "external" ],
  10865. "id" : "101"
  10866. }, {
  10867. "iri" : "http://www.w3.org/ns/prov#entity",
  10868. "baseIri" : "http://www.w3.org/ns/prov",
  10869. "range" : "17",
  10870. "annotations" : {
  10871. "editorialNote" : [ {
  10872. "identifier" : "editorialNote",
  10873. "language" : "en",
  10874. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  10875. "type" : "label"
  10876. }, {
  10877. "identifier" : "editorialNote",
  10878. "language" : "en",
  10879. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  10880. "type" : "label"
  10881. } ],
  10882. "inverse" : [ {
  10883. "identifier" : "inverse",
  10884. "language" : "undefined",
  10885. "value" : "entityOfInfluence",
  10886. "type" : "label"
  10887. }, {
  10888. "identifier" : "inverse",
  10889. "language" : "undefined",
  10890. "value" : "entityOfInfluence",
  10891. "type" : "label"
  10892. } ],
  10893. "isDefinedBy" : [ {
  10894. "identifier" : "isDefinedBy",
  10895. "language" : "undefined",
  10896. "value" : "http://www.w3.org/ns/prov-o#",
  10897. "type" : "iri"
  10898. }, {
  10899. "identifier" : "isDefinedBy",
  10900. "language" : "undefined",
  10901. "value" : "http://www.w3.org/ns/prov-o#",
  10902. "type" : "iri"
  10903. }, {
  10904. "identifier" : "isDefinedBy",
  10905. "language" : "undefined",
  10906. "value" : "http://www.w3.org/ns/prov-o#",
  10907. "type" : "iri"
  10908. } ],
  10909. "editorsDefinition" : [ {
  10910. "identifier" : "editorsDefinition",
  10911. "language" : "undefined",
  10912. "value" : "The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  10913. "type" : "label"
  10914. }, {
  10915. "identifier" : "editorsDefinition",
  10916. "language" : "undefined",
  10917. "value" : "The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  10918. "type" : "label"
  10919. } ],
  10920. "category" : [ {
  10921. "identifier" : "category",
  10922. "language" : "undefined",
  10923. "value" : "qualified",
  10924. "type" : "label"
  10925. }, {
  10926. "identifier" : "category",
  10927. "language" : "undefined",
  10928. "value" : "qualified",
  10929. "type" : "label"
  10930. } ]
  10931. },
  10932. "label" : {
  10933. "IRI-based" : "entity",
  10934. "undefined" : "entity"
  10935. },
  10936. "superproperty" : [ "149" ],
  10937. "domain" : "56",
  10938. "subproperty" : [ "145" ],
  10939. "attributes" : [ "object", "external" ],
  10940. "id" : "57"
  10941. }, {
  10942. "range" : "11",
  10943. "domain" : "24",
  10944. "attributes" : [ "object", "anonymous" ],
  10945. "id" : "221"
  10946. }, {
  10947. "range" : "11",
  10948. "domain" : "17",
  10949. "attributes" : [ "object", "anonymous" ],
  10950. "id" : "222"
  10951. }, {
  10952. "range" : "53",
  10953. "domain" : "110",
  10954. "attributes" : [ "object", "anonymous" ],
  10955. "id" : "223"
  10956. }, {
  10957. "range" : "94",
  10958. "domain" : "110",
  10959. "attributes" : [ "object", "anonymous" ],
  10960. "id" : "224"
  10961. }, {
  10962. "range" : "95",
  10963. "domain" : "110",
  10964. "attributes" : [ "object", "anonymous" ],
  10965. "id" : "225"
  10966. }, {
  10967. "range" : "37",
  10968. "domain" : "110",
  10969. "attributes" : [ "object", "anonymous" ],
  10970. "id" : "226"
  10971. }, {
  10972. "iri" : "http://www.w3.org/ns/prov#activity",
  10973. "baseIri" : "http://www.w3.org/ns/prov",
  10974. "range" : "9",
  10975. "annotations" : {
  10976. "inverse" : [ {
  10977. "identifier" : "inverse",
  10978. "language" : "undefined",
  10979. "value" : "activityOfInfluence",
  10980. "type" : "label"
  10981. }, {
  10982. "identifier" : "inverse",
  10983. "language" : "undefined",
  10984. "value" : "activityOfInfluence",
  10985. "type" : "label"
  10986. } ],
  10987. "editorialNote" : [ {
  10988. "identifier" : "editorialNote",
  10989. "language" : "en",
  10990. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  10991. "type" : "label"
  10992. }, {
  10993. "identifier" : "editorialNote",
  10994. "language" : "en",
  10995. "value" : "This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.",
  10996. "type" : "label"
  10997. } ],
  10998. "isDefinedBy" : [ {
  10999. "identifier" : "isDefinedBy",
  11000. "language" : "undefined",
  11001. "value" : "http://www.w3.org/ns/prov-o#",
  11002. "type" : "iri"
  11003. }, {
  11004. "identifier" : "isDefinedBy",
  11005. "language" : "undefined",
  11006. "value" : "http://www.w3.org/ns/prov-o#",
  11007. "type" : "iri"
  11008. }, {
  11009. "identifier" : "isDefinedBy",
  11010. "language" : "undefined",
  11011. "value" : "http://www.w3.org/ns/prov-o#",
  11012. "type" : "iri"
  11013. } ],
  11014. "editorsDefinition" : [ {
  11015. "identifier" : "editorsDefinition",
  11016. "language" : "undefined",
  11017. "value" : "The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  11018. "type" : "label"
  11019. }, {
  11020. "identifier" : "editorsDefinition",
  11021. "language" : "undefined",
  11022. "value" : "The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.",
  11023. "type" : "label"
  11024. } ],
  11025. "category" : [ {
  11026. "identifier" : "category",
  11027. "language" : "undefined",
  11028. "value" : "qualified",
  11029. "type" : "label"
  11030. }, {
  11031. "identifier" : "category",
  11032. "language" : "undefined",
  11033. "value" : "qualified",
  11034. "type" : "label"
  11035. } ]
  11036. },
  11037. "label" : {
  11038. "IRI-based" : "activity",
  11039. "undefined" : "activity"
  11040. },
  11041. "superproperty" : [ "149" ],
  11042. "domain" : "26",
  11043. "attributes" : [ "object", "external" ],
  11044. "id" : "185"
  11045. }, {
  11046. "range" : "94",
  11047. "domain" : "53",
  11048. "attributes" : [ "object", "anonymous" ],
  11049. "id" : "227"
  11050. }, {
  11051. "iri" : "http://www.w3.org/ns/prov#hadMember",
  11052. "baseIri" : "http://www.w3.org/ns/prov",
  11053. "range" : "17",
  11054. "annotations" : {
  11055. "inverse" : [ {
  11056. "identifier" : "inverse",
  11057. "language" : "undefined",
  11058. "value" : "wasMemberOf",
  11059. "type" : "label"
  11060. }, {
  11061. "identifier" : "inverse",
  11062. "language" : "undefined",
  11063. "value" : "wasMemberOf",
  11064. "type" : "label"
  11065. } ],
  11066. "sharesDefinitionWith" : [ {
  11067. "identifier" : "sharesDefinitionWith",
  11068. "language" : "undefined",
  11069. "value" : "http://www.w3.org/ns/prov#Collection",
  11070. "type" : "iri"
  11071. }, {
  11072. "identifier" : "sharesDefinitionWith",
  11073. "language" : "undefined",
  11074. "value" : "http://www.w3.org/ns/prov#Collection",
  11075. "type" : "iri"
  11076. } ],
  11077. "component" : [ {
  11078. "identifier" : "component",
  11079. "language" : "undefined",
  11080. "value" : "expanded",
  11081. "type" : "label"
  11082. }, {
  11083. "identifier" : "component",
  11084. "language" : "undefined",
  11085. "value" : "expanded",
  11086. "type" : "label"
  11087. } ],
  11088. "isDefinedBy" : [ {
  11089. "identifier" : "isDefinedBy",
  11090. "language" : "undefined",
  11091. "value" : "http://www.w3.org/ns/prov-o#",
  11092. "type" : "iri"
  11093. }, {
  11094. "identifier" : "isDefinedBy",
  11095. "language" : "undefined",
  11096. "value" : "http://www.w3.org/ns/prov-o#",
  11097. "type" : "iri"
  11098. }, {
  11099. "identifier" : "isDefinedBy",
  11100. "language" : "undefined",
  11101. "value" : "http://www.w3.org/ns/prov-o#",
  11102. "type" : "iri"
  11103. } ],
  11104. "category" : [ {
  11105. "identifier" : "category",
  11106. "language" : "undefined",
  11107. "value" : "expanded",
  11108. "type" : "label"
  11109. }, {
  11110. "identifier" : "category",
  11111. "language" : "undefined",
  11112. "value" : "expanded",
  11113. "type" : "label"
  11114. } ]
  11115. },
  11116. "label" : {
  11117. "IRI-based" : "hadMember",
  11118. "undefined" : "hadMember"
  11119. },
  11120. "superproperty" : [ "77" ],
  11121. "domain" : "51",
  11122. "attributes" : [ "object", "external" ],
  11123. "id" : "106"
  11124. }, {
  11125. "iri" : "https://w3id.org/consent-mapping-jit#registeredOn",
  11126. "baseIri" : "https://w3id.org/consent-mapping-jit",
  11127. "range" : "137",
  11128. "label" : {
  11129. "IRI-based" : "registeredOn"
  11130. },
  11131. "domain" : "110",
  11132. "comment" : {
  11133. "undefined" : "Indicates when the consent instance was registered."
  11134. },
  11135. "attributes" : [ "functional", "datatype" ],
  11136. "id" : "228"
  11137. }, {
  11138. "range" : "95",
  11139. "domain" : "53",
  11140. "attributes" : [ "object", "anonymous" ],
  11141. "id" : "229"
  11142. }, {
  11143. "iri" : "http://www.w3.org/ns/prov#qualifiedGenerationOf",
  11144. "inverse" : "211",
  11145. "baseIri" : "http://www.w3.org/ns/prov",
  11146. "range" : "17",
  11147. "annotations" : {
  11148. "isDefinedBy" : [ {
  11149. "identifier" : "isDefinedBy",
  11150. "language" : "undefined",
  11151. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11152. "type" : "iri"
  11153. }, {
  11154. "identifier" : "isDefinedBy",
  11155. "language" : "undefined",
  11156. "value" : "http://www.w3.org/ns/prov#",
  11157. "type" : "iri"
  11158. } ]
  11159. },
  11160. "label" : {
  11161. "IRI-based" : "qualifiedGenerationOf",
  11162. "undefined" : "qualifiedGenerationOf"
  11163. },
  11164. "domain" : "13",
  11165. "attributes" : [ "object", "external" ],
  11166. "id" : "230"
  11167. }, {
  11168. "iri" : "http://www.w3.org/ns/prov#wasRoleIn",
  11169. "inverse" : "232",
  11170. "baseIri" : "http://www.w3.org/ns/prov",
  11171. "range" : "186",
  11172. "annotations" : {
  11173. "isDefinedBy" : [ {
  11174. "identifier" : "isDefinedBy",
  11175. "language" : "undefined",
  11176. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11177. "type" : "iri"
  11178. }, {
  11179. "identifier" : "isDefinedBy",
  11180. "language" : "undefined",
  11181. "value" : "http://www.w3.org/ns/prov#",
  11182. "type" : "iri"
  11183. } ]
  11184. },
  11185. "label" : {
  11186. "IRI-based" : "wasRoleIn",
  11187. "undefined" : "wasRoleIn"
  11188. },
  11189. "domain" : "144",
  11190. "attributes" : [ "object", "external" ],
  11191. "id" : "231"
  11192. }, {
  11193. "range" : "17",
  11194. "domain" : "9",
  11195. "attributes" : [ "object", "anonymous" ],
  11196. "id" : "233"
  11197. }, {
  11198. "iri" : "http://www.w3.org/ns/prov#asInBundle",
  11199. "baseIri" : "http://www.w3.org/ns/prov",
  11200. "range" : "73",
  11201. "annotations" : {
  11202. "sharesDefinitionWith" : [ {
  11203. "identifier" : "sharesDefinitionWith",
  11204. "language" : "undefined",
  11205. "value" : "http://www.w3.org/ns/prov#mentionOf",
  11206. "type" : "iri"
  11207. }, {
  11208. "identifier" : "sharesDefinitionWith",
  11209. "language" : "undefined",
  11210. "value" : "http://www.w3.org/ns/prov#mentionOf",
  11211. "type" : "iri"
  11212. } ],
  11213. "inverse" : [ {
  11214. "identifier" : "inverse",
  11215. "language" : "undefined",
  11216. "value" : "contextOf",
  11217. "type" : "label"
  11218. }, {
  11219. "identifier" : "inverse",
  11220. "language" : "undefined",
  11221. "value" : "contextOf",
  11222. "type" : "label"
  11223. } ],
  11224. "isDefinedBy" : [ {
  11225. "identifier" : "isDefinedBy",
  11226. "language" : "undefined",
  11227. "value" : "http://www.w3.org/ns/prov-links#",
  11228. "type" : "iri"
  11229. }, {
  11230. "identifier" : "isDefinedBy",
  11231. "language" : "undefined",
  11232. "value" : "http://www.w3.org/ns/prov-links#",
  11233. "type" : "iri"
  11234. } ]
  11235. },
  11236. "label" : {
  11237. "IRI-based" : "asInBundle",
  11238. "undefined" : "asInBundle"
  11239. },
  11240. "domain" : "17",
  11241. "comment" : {
  11242. "en" : "prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described.\n\nWhen :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described."
  11243. },
  11244. "attributes" : [ "object", "external" ],
  11245. "id" : "234"
  11246. }, {
  11247. "range" : "56",
  11248. "domain" : "26",
  11249. "attributes" : [ "object", "anonymous" ],
  11250. "id" : "235"
  11251. }, {
  11252. "iri" : "http://www.w3.org/ns/prov#activityOfInfluence",
  11253. "inverse" : "185",
  11254. "baseIri" : "http://www.w3.org/ns/prov",
  11255. "range" : "26",
  11256. "annotations" : {
  11257. "isDefinedBy" : [ {
  11258. "identifier" : "isDefinedBy",
  11259. "language" : "undefined",
  11260. "value" : "http://www.w3.org/ns/prov#",
  11261. "type" : "iri"
  11262. }, {
  11263. "identifier" : "isDefinedBy",
  11264. "language" : "undefined",
  11265. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11266. "type" : "iri"
  11267. } ]
  11268. },
  11269. "label" : {
  11270. "IRI-based" : "activityOfInfluence",
  11271. "undefined" : "activityOfInfluence"
  11272. },
  11273. "domain" : "9",
  11274. "attributes" : [ "object", "external" ],
  11275. "id" : "236"
  11276. }, {
  11277. "range" : "144",
  11278. "domain" : "143",
  11279. "attributes" : [ "object", "anonymous" ],
  11280. "id" : "237"
  11281. }, {
  11282. "range" : "51",
  11283. "domain" : "50",
  11284. "attributes" : [ "object", "anonymous" ],
  11285. "id" : "238"
  11286. }, {
  11287. "range" : "144",
  11288. "domain" : "157",
  11289. "attributes" : [ "object", "anonymous" ],
  11290. "id" : "239"
  11291. }, {
  11292. "range" : "144",
  11293. "domain" : "150",
  11294. "attributes" : [ "object", "anonymous" ],
  11295. "id" : "240"
  11296. }, {
  11297. "range" : "157",
  11298. "domain" : "158",
  11299. "attributes" : [ "object", "anonymous" ],
  11300. "id" : "241"
  11301. }, {
  11302. "range" : "56",
  11303. "domain" : "15",
  11304. "attributes" : [ "object", "anonymous" ],
  11305. "id" : "242"
  11306. }, {
  11307. "iri" : "http://www.w3.org/ns/prov#hadRole",
  11308. "baseIri" : "http://www.w3.org/ns/prov",
  11309. "range" : "144",
  11310. "annotations" : {
  11311. "inverse" : [ {
  11312. "identifier" : "inverse",
  11313. "language" : "undefined",
  11314. "value" : "wasRoleIn",
  11315. "type" : "label"
  11316. }, {
  11317. "identifier" : "inverse",
  11318. "language" : "undefined",
  11319. "value" : "wasRoleIn",
  11320. "type" : "label"
  11321. } ],
  11322. "sharesDefinitionWith" : [ {
  11323. "identifier" : "sharesDefinitionWith",
  11324. "language" : "undefined",
  11325. "value" : "http://www.w3.org/ns/prov#Role",
  11326. "type" : "iri"
  11327. }, {
  11328. "identifier" : "sharesDefinitionWith",
  11329. "language" : "undefined",
  11330. "value" : "http://www.w3.org/ns/prov#Role",
  11331. "type" : "iri"
  11332. } ],
  11333. "component" : [ {
  11334. "identifier" : "component",
  11335. "language" : "undefined",
  11336. "value" : "agents-responsibility",
  11337. "type" : "label"
  11338. }, {
  11339. "identifier" : "component",
  11340. "language" : "undefined",
  11341. "value" : "agents-responsibility",
  11342. "type" : "label"
  11343. } ],
  11344. "isDefinedBy" : [ {
  11345. "identifier" : "isDefinedBy",
  11346. "language" : "undefined",
  11347. "value" : "http://www.w3.org/ns/prov-o#",
  11348. "type" : "iri"
  11349. }, {
  11350. "identifier" : "isDefinedBy",
  11351. "language" : "undefined",
  11352. "value" : "http://www.w3.org/ns/prov-o#",
  11353. "type" : "iri"
  11354. }, {
  11355. "identifier" : "isDefinedBy",
  11356. "language" : "undefined",
  11357. "value" : "http://www.w3.org/ns/prov-o#",
  11358. "type" : "iri"
  11359. } ],
  11360. "editorsDefinition" : [ {
  11361. "identifier" : "editorsDefinition",
  11362. "language" : "en",
  11363. "value" : "prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end.",
  11364. "type" : "label"
  11365. }, {
  11366. "identifier" : "editorsDefinition",
  11367. "language" : "en",
  11368. "value" : "prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end.",
  11369. "type" : "label"
  11370. } ],
  11371. "category" : [ {
  11372. "identifier" : "category",
  11373. "language" : "undefined",
  11374. "value" : "qualified",
  11375. "type" : "label"
  11376. }, {
  11377. "identifier" : "category",
  11378. "language" : "undefined",
  11379. "value" : "qualified",
  11380. "type" : "label"
  11381. } ]
  11382. },
  11383. "label" : {
  11384. "IRI-based" : "hadRole",
  11385. "undefined" : "hadRole"
  11386. },
  11387. "domain" : "186",
  11388. "comment" : {
  11389. "en" : "The _optional_ Role that an Entity assumed in the context of an Activity. For example, :baking prov:used :spoon; prov:qualified [ a prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ].",
  11390. "undefined" : "This property has multiple RDFS domains to suit multiple OWL Profiles. See <a href=\"#owl-profile\">PROV-O OWL Profile</a>."
  11391. },
  11392. "attributes" : [ "object", "external" ],
  11393. "id" : "232"
  11394. }, {
  11395. "iri" : "http://www.w3.org/ns/prov#qualifiedUsingActivity",
  11396. "inverse" : "89",
  11397. "baseIri" : "http://www.w3.org/ns/prov",
  11398. "range" : "9",
  11399. "annotations" : {
  11400. "isDefinedBy" : [ {
  11401. "identifier" : "isDefinedBy",
  11402. "language" : "undefined",
  11403. "value" : "http://www.w3.org/ns/prov#",
  11404. "type" : "iri"
  11405. }, {
  11406. "identifier" : "isDefinedBy",
  11407. "language" : "undefined",
  11408. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11409. "type" : "iri"
  11410. } ]
  11411. },
  11412. "label" : {
  11413. "IRI-based" : "qualifiedUsingActivity",
  11414. "undefined" : "qualifiedUsingActivity"
  11415. },
  11416. "domain" : "12",
  11417. "attributes" : [ "object", "external" ],
  11418. "id" : "243"
  11419. }, {
  11420. "range" : "54",
  11421. "domain" : "76",
  11422. "attributes" : [ "object", "anonymous" ],
  11423. "id" : "244"
  11424. }, {
  11425. "iri" : "http://www.w3.org/ns/prov#qualifiedAssociationOf",
  11426. "inverse" : "200",
  11427. "baseIri" : "http://www.w3.org/ns/prov",
  11428. "range" : "9",
  11429. "annotations" : {
  11430. "isDefinedBy" : [ {
  11431. "identifier" : "isDefinedBy",
  11432. "language" : "undefined",
  11433. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11434. "type" : "iri"
  11435. }, {
  11436. "identifier" : "isDefinedBy",
  11437. "language" : "undefined",
  11438. "value" : "http://www.w3.org/ns/prov#",
  11439. "type" : "iri"
  11440. } ]
  11441. },
  11442. "label" : {
  11443. "IRI-based" : "qualifiedAssociationOf",
  11444. "undefined" : "qualifiedAssociationOf"
  11445. },
  11446. "domain" : "87",
  11447. "attributes" : [ "object", "external" ],
  11448. "id" : "245"
  11449. }, {
  11450. "range" : "54",
  11451. "domain" : "160",
  11452. "attributes" : [ "object", "anonymous" ],
  11453. "id" : "246"
  11454. }, {
  11455. "range" : "56",
  11456. "domain" : "8",
  11457. "attributes" : [ "object", "anonymous" ],
  11458. "id" : "247"
  11459. }, {
  11460. "range" : "56",
  11461. "domain" : "66",
  11462. "attributes" : [ "object", "anonymous" ],
  11463. "id" : "248"
  11464. }, {
  11465. "iri" : "http://www.w3.org/ns/prov#ended",
  11466. "inverse" : "100",
  11467. "baseIri" : "http://www.w3.org/ns/prov",
  11468. "range" : "9",
  11469. "annotations" : {
  11470. "isDefinedBy" : [ {
  11471. "identifier" : "isDefinedBy",
  11472. "language" : "undefined",
  11473. "value" : "http://www.w3.org/ns/prov#",
  11474. "type" : "iri"
  11475. }, {
  11476. "identifier" : "isDefinedBy",
  11477. "language" : "undefined",
  11478. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11479. "type" : "iri"
  11480. } ]
  11481. },
  11482. "label" : {
  11483. "IRI-based" : "ended",
  11484. "undefined" : "ended"
  11485. },
  11486. "domain" : "17",
  11487. "attributes" : [ "object", "external" ],
  11488. "id" : "249"
  11489. }, {
  11490. "iri" : "http://www.w3.org/ns/prov#wasUsedBy",
  11491. "inverse" : "103",
  11492. "baseIri" : "http://www.w3.org/ns/prov",
  11493. "range" : "9",
  11494. "annotations" : {
  11495. "isDefinedBy" : [ {
  11496. "identifier" : "isDefinedBy",
  11497. "language" : "undefined",
  11498. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11499. "type" : "iri"
  11500. }, {
  11501. "identifier" : "isDefinedBy",
  11502. "language" : "undefined",
  11503. "value" : "http://www.w3.org/ns/prov#",
  11504. "type" : "iri"
  11505. } ]
  11506. },
  11507. "label" : {
  11508. "IRI-based" : "wasUsedBy",
  11509. "undefined" : "wasUsedBy"
  11510. },
  11511. "domain" : "17",
  11512. "attributes" : [ "object", "external" ],
  11513. "id" : "250"
  11514. }, {
  11515. "iri" : "http://www.w3.org/ns/prov#qualifiedSourceOf",
  11516. "inverse" : "111",
  11517. "baseIri" : "http://www.w3.org/ns/prov",
  11518. "range" : "17",
  11519. "annotations" : {
  11520. "isDefinedBy" : [ {
  11521. "identifier" : "isDefinedBy",
  11522. "language" : "undefined",
  11523. "value" : "http://www.w3.org/ns/prov#",
  11524. "type" : "iri"
  11525. }, {
  11526. "identifier" : "isDefinedBy",
  11527. "language" : "undefined",
  11528. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11529. "type" : "iri"
  11530. } ]
  11531. },
  11532. "label" : {
  11533. "IRI-based" : "qualifiedSourceOf",
  11534. "undefined" : "qualifiedSourceOf"
  11535. },
  11536. "domain" : "68",
  11537. "attributes" : [ "object", "external" ],
  11538. "id" : "251"
  11539. }, {
  11540. "iri" : "http://www.w3.org/ns/prov#qualifiedInfluence",
  11541. "baseIri" : "http://www.w3.org/ns/prov",
  11542. "range" : "1",
  11543. "annotations" : {
  11544. "inverse" : [ {
  11545. "identifier" : "inverse",
  11546. "language" : "undefined",
  11547. "value" : "qualifiedInfluenceOf",
  11548. "type" : "label"
  11549. }, {
  11550. "identifier" : "inverse",
  11551. "language" : "undefined",
  11552. "value" : "qualifiedInfluenceOf",
  11553. "type" : "label"
  11554. } ],
  11555. "sharesDefinitionWith" : [ {
  11556. "identifier" : "sharesDefinitionWith",
  11557. "language" : "undefined",
  11558. "value" : "http://www.w3.org/ns/prov#Influence",
  11559. "type" : "iri"
  11560. }, {
  11561. "identifier" : "sharesDefinitionWith",
  11562. "language" : "undefined",
  11563. "value" : "http://www.w3.org/ns/prov#Influence",
  11564. "type" : "iri"
  11565. } ],
  11566. "component" : [ {
  11567. "identifier" : "component",
  11568. "language" : "undefined",
  11569. "value" : "derivations",
  11570. "type" : "label"
  11571. }, {
  11572. "identifier" : "component",
  11573. "language" : "undefined",
  11574. "value" : "derivations",
  11575. "type" : "label"
  11576. } ],
  11577. "isDefinedBy" : [ {
  11578. "identifier" : "isDefinedBy",
  11579. "language" : "undefined",
  11580. "value" : "http://www.w3.org/ns/prov-o#",
  11581. "type" : "iri"
  11582. }, {
  11583. "identifier" : "isDefinedBy",
  11584. "language" : "undefined",
  11585. "value" : "http://www.w3.org/ns/prov-o#",
  11586. "type" : "iri"
  11587. }, {
  11588. "identifier" : "isDefinedBy",
  11589. "language" : "undefined",
  11590. "value" : "http://www.w3.org/ns/prov-o#",
  11591. "type" : "iri"
  11592. } ],
  11593. "unqualifiedForm" : [ {
  11594. "identifier" : "unqualifiedForm",
  11595. "language" : "undefined",
  11596. "value" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  11597. "type" : "iri"
  11598. }, {
  11599. "identifier" : "unqualifiedForm",
  11600. "language" : "undefined",
  11601. "value" : "http://www.w3.org/ns/prov#wasInfluencedBy",
  11602. "type" : "iri"
  11603. } ],
  11604. "category" : [ {
  11605. "identifier" : "category",
  11606. "language" : "undefined",
  11607. "value" : "qualified",
  11608. "type" : "label"
  11609. }, {
  11610. "identifier" : "category",
  11611. "language" : "undefined",
  11612. "value" : "qualified",
  11613. "type" : "label"
  11614. } ]
  11615. },
  11616. "label" : {
  11617. "IRI-based" : "qualifiedInfluence",
  11618. "undefined" : "qualifiedInfluence"
  11619. },
  11620. "domain" : "2",
  11621. "subproperty" : [ "154", "34", "89", "119", "71", "84", "85", "211", "46", "10", "200", "108", "111" ],
  11622. "comment" : {
  11623. "en" : "Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable."
  11624. },
  11625. "attributes" : [ "object", "external" ],
  11626. "id" : "3"
  11627. }, {
  11628. "iri" : "http://www.w3.org/ns/prov#informed",
  11629. "inverse" : "105",
  11630. "baseIri" : "http://www.w3.org/ns/prov",
  11631. "range" : "9",
  11632. "annotations" : {
  11633. "isDefinedBy" : [ {
  11634. "identifier" : "isDefinedBy",
  11635. "language" : "undefined",
  11636. "value" : "http://www.w3.org/ns/prov#",
  11637. "type" : "iri"
  11638. }, {
  11639. "identifier" : "isDefinedBy",
  11640. "language" : "undefined",
  11641. "value" : "http://www.w3.org/ns/prov-o-inverses#",
  11642. "type" : "iri"
  11643. } ]
  11644. },
  11645. "label" : {
  11646. "IRI-based" : "informed",
  11647. "undefined" : "informed"
  11648. },
  11649. "domain" : "9",
  11650. "attributes" : [ "object", "external" ],
  11651. "id" : "252"
  11652. }, {
  11653. "range" : "56",
  11654. "domain" : "12",
  11655. "attributes" : [ "object", "anonymous" ],
  11656. "id" : "253"
  11657. }, {
  11658. "range" : "43",
  11659. "domain" : "112",
  11660. "attributes" : [ "object", "anonymous" ],
  11661. "id" : "254"
  11662. }, {
  11663. "range" : "1",
  11664. "domain" : "26",
  11665. "attributes" : [ "object", "anonymous" ],
  11666. "id" : "255"
  11667. }, {
  11668. "range" : "43",
  11669. "domain" : "72",
  11670. "attributes" : [ "object", "anonymous" ],
  11671. "id" : "256"
  11672. }, {
  11673. "range" : "43",
  11674. "domain" : "87",
  11675. "attributes" : [ "object", "anonymous" ],
  11676. "id" : "257"
  11677. } ]
  11678. }