foaf.json 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883
  1. {
  2. "_comment" : "Created with OWL2VOWL (version 0.3.5), http://vowl.visualdataweb.org",
  3. "header" : {
  4. "languages" : [ "undefined" ],
  5. "baseIris" : [ "http://schema.org", "http://www.w3.org/2000/01/rdf-schema", "http://www.w3.org/2003/01/geo/wgs84_pos", "http://purl.org/dc/terms", "http://www.w3.org/2001/XMLSchema", "http://xmlns.com/foaf/0.1", "http://www.w3.org/2000/10/swap/pim/contact", "http://www.w3.org/2004/02/skos/core" ],
  6. "title" : {
  7. "undefined" : "Friend of a Friend (FOAF) vocabulary"
  8. },
  9. "iri" : "http://xmlns.com/foaf/0.1/",
  10. "description" : {
  11. "undefined" : "The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language."
  12. },
  13. "other" : {
  14. "title" : [ {
  15. "identifier" : "title",
  16. "language" : "undefined",
  17. "value" : "Friend of a Friend (FOAF) vocabulary",
  18. "type" : "label"
  19. } ]
  20. }
  21. },
  22. "namespace" : [ ],
  23. "class" : [ {
  24. "id" : "3",
  25. "type" : "owl:Thing"
  26. }, {
  27. "id" : "9",
  28. "type" : "owl:Class"
  29. }, {
  30. "id" : "1",
  31. "type" : "owl:equivalentClass"
  32. }, {
  33. "id" : "18",
  34. "type" : "owl:Thing"
  35. }, {
  36. "id" : "19",
  37. "type" : "owl:Thing"
  38. }, {
  39. "id" : "5",
  40. "type" : "owl:Thing"
  41. }, {
  42. "id" : "20",
  43. "type" : "rdfs:Literal"
  44. }, {
  45. "id" : "8",
  46. "type" : "rdfs:Literal"
  47. }, {
  48. "id" : "11",
  49. "type" : "owl:Class"
  50. }, {
  51. "id" : "21",
  52. "type" : "owl:Thing"
  53. }, {
  54. "id" : "22",
  55. "type" : "rdfs:Literal"
  56. }, {
  57. "id" : "24",
  58. "type" : "rdfs:Literal"
  59. }, {
  60. "id" : "26",
  61. "type" : "rdfs:Literal"
  62. }, {
  63. "id" : "27",
  64. "type" : "rdfs:Literal"
  65. }, {
  66. "id" : "37",
  67. "type" : "owl:equivalentClass"
  68. }, {
  69. "id" : "46",
  70. "type" : "rdfs:Literal"
  71. }, {
  72. "id" : "6",
  73. "type" : "rdfs:Literal"
  74. }, {
  75. "id" : "53",
  76. "type" : "rdfs:Literal"
  77. }, {
  78. "id" : "56",
  79. "type" : "rdfs:Literal"
  80. }, {
  81. "id" : "52",
  82. "type" : "rdfs:Literal"
  83. }, {
  84. "id" : "59",
  85. "type" : "owl:Class"
  86. }, {
  87. "id" : "58",
  88. "type" : "rdfs:Literal"
  89. }, {
  90. "id" : "60",
  91. "type" : "rdfs:Literal"
  92. }, {
  93. "id" : "61",
  94. "type" : "rdfs:Literal"
  95. }, {
  96. "id" : "12",
  97. "type" : "owl:equivalentClass"
  98. }, {
  99. "id" : "45",
  100. "type" : "rdfs:Literal"
  101. }, {
  102. "id" : "68",
  103. "type" : "rdfs:Literal"
  104. }, {
  105. "id" : "70",
  106. "type" : "owl:Class"
  107. }, {
  108. "id" : "36",
  109. "type" : "owl:Class"
  110. }, {
  111. "id" : "76",
  112. "type" : "owl:Class"
  113. }, {
  114. "id" : "82",
  115. "type" : "owl:Class"
  116. }, {
  117. "id" : "92",
  118. "type" : "owl:Class"
  119. }, {
  120. "id" : "72",
  121. "type" : "rdfs:Literal"
  122. }, {
  123. "id" : "67",
  124. "type" : "rdfs:Literal"
  125. }, {
  126. "id" : "91",
  127. "type" : "rdfs:Literal"
  128. }, {
  129. "id" : "33",
  130. "type" : "owl:Thing"
  131. }, {
  132. "id" : "49",
  133. "type" : "rdfs:Literal"
  134. }, {
  135. "id" : "29",
  136. "type" : "owl:Thing"
  137. }, {
  138. "id" : "100",
  139. "type" : "rdfs:Literal"
  140. }, {
  141. "id" : "39",
  142. "type" : "owl:Thing"
  143. }, {
  144. "id" : "62",
  145. "type" : "owl:equivalentClass"
  146. }, {
  147. "id" : "63",
  148. "type" : "owl:equivalentClass"
  149. }, {
  150. "id" : "101",
  151. "type" : "owl:equivalentClass"
  152. }, {
  153. "id" : "77",
  154. "type" : "owl:Class"
  155. }, {
  156. "id" : "85",
  157. "type" : "owl:Class"
  158. }, {
  159. "id" : "13",
  160. "type" : "owl:equivalentClass"
  161. }, {
  162. "id" : "94",
  163. "type" : "rdfs:Literal"
  164. }, {
  165. "id" : "99",
  166. "type" : "rdfs:Literal"
  167. }, {
  168. "id" : "105",
  169. "type" : "rdfs:Literal"
  170. }, {
  171. "id" : "111",
  172. "type" : "rdfs:Literal"
  173. }, {
  174. "id" : "55",
  175. "type" : "rdfs:Literal"
  176. }, {
  177. "id" : "118",
  178. "type" : "rdfs:Literal"
  179. }, {
  180. "id" : "126",
  181. "type" : "owl:Class"
  182. }, {
  183. "id" : "2",
  184. "type" : "owl:equivalentClass"
  185. }, {
  186. "id" : "32",
  187. "type" : "owl:equivalentClass"
  188. }, {
  189. "id" : "10",
  190. "type" : "owl:Class"
  191. } ],
  192. "classAttribute" : [ {
  193. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  194. "baseIri" : "http://owl2vowl.de",
  195. "id" : "3",
  196. "label" : {
  197. "undefined" : "Thing"
  198. }
  199. }, {
  200. "iri" : "http://www.w3.org/2004/02/skos/core#Concept",
  201. "baseIri" : "http://www.w3.org/2004/02/skos/core",
  202. "instances" : 0,
  203. "label" : {
  204. "IRI-based" : "Concept",
  205. "undefined" : "Concept"
  206. },
  207. "attributes" : [ "external" ],
  208. "id" : "9"
  209. }, {
  210. "iri" : "http://xmlns.com/foaf/0.1/Agent",
  211. "equivalent" : [ "13" ],
  212. "baseIri" : "http://xmlns.com/foaf/0.1",
  213. "instances" : 0,
  214. "annotations" : {
  215. "term_status" : [ {
  216. "identifier" : "term_status",
  217. "language" : "undefined",
  218. "value" : "stable",
  219. "type" : "label"
  220. } ]
  221. },
  222. "label" : {
  223. "IRI-based" : "Agent",
  224. "undefined" : "Agent"
  225. },
  226. "subClasses" : [ "10", "11", "12" ],
  227. "comment" : {
  228. "undefined" : "An agent (eg. person, group, software or physical artifact)."
  229. },
  230. "attributes" : [ "equivalent" ],
  231. "id" : "1"
  232. }, {
  233. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  234. "baseIri" : "http://owl2vowl.de",
  235. "id" : "18",
  236. "label" : {
  237. "undefined" : "Thing"
  238. }
  239. }, {
  240. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  241. "baseIri" : "http://owl2vowl.de",
  242. "id" : "19",
  243. "label" : {
  244. "undefined" : "Thing"
  245. }
  246. }, {
  247. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  248. "baseIri" : "http://owl2vowl.de",
  249. "id" : "5",
  250. "label" : {
  251. "undefined" : "Thing"
  252. }
  253. }, {
  254. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  255. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  256. "id" : "20",
  257. "label" : {
  258. "IRI-based" : "Literal",
  259. "undefined" : "Literal"
  260. }
  261. }, {
  262. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  263. "id" : "8",
  264. "label" : {
  265. "IRI-based" : "Literal",
  266. "undefined" : "Literal"
  267. }
  268. }, {
  269. "iri" : "http://xmlns.com/foaf/0.1/Organization",
  270. "baseIri" : "http://xmlns.com/foaf/0.1",
  271. "instances" : 0,
  272. "annotations" : {
  273. "isDefinedBy" : [ {
  274. "identifier" : "isDefinedBy",
  275. "language" : "undefined",
  276. "value" : "http://xmlns.com/foaf/0.1/",
  277. "type" : "iri"
  278. } ],
  279. "term_status" : [ {
  280. "identifier" : "term_status",
  281. "language" : "undefined",
  282. "value" : "stable",
  283. "type" : "label"
  284. } ]
  285. },
  286. "label" : {
  287. "IRI-based" : "Organization",
  288. "undefined" : "Organization"
  289. },
  290. "comment" : {
  291. "undefined" : "An organization."
  292. },
  293. "id" : "11",
  294. "superClasses" : [ "1" ]
  295. }, {
  296. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  297. "baseIri" : "http://owl2vowl.de",
  298. "id" : "21",
  299. "label" : {
  300. "undefined" : "Thing"
  301. }
  302. }, {
  303. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  304. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  305. "id" : "22",
  306. "label" : {
  307. "IRI-based" : "Literal",
  308. "undefined" : "Literal"
  309. }
  310. }, {
  311. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  312. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  313. "id" : "24",
  314. "label" : {
  315. "IRI-based" : "Literal",
  316. "undefined" : "Literal"
  317. }
  318. }, {
  319. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  320. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  321. "id" : "26",
  322. "label" : {
  323. "IRI-based" : "Literal",
  324. "undefined" : "Literal"
  325. }
  326. }, {
  327. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  328. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  329. "id" : "27",
  330. "label" : {
  331. "IRI-based" : "Literal",
  332. "undefined" : "Literal"
  333. }
  334. }, {
  335. "iri" : "http://schema.org/CreativeWork",
  336. "baseIri" : "http://schema.org",
  337. "instances" : 0,
  338. "label" : {
  339. "IRI-based" : "CreativeWork"
  340. },
  341. "attributes" : [ "external", "equivalent" ],
  342. "id" : "37"
  343. }, {
  344. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  345. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  346. "id" : "46",
  347. "label" : {
  348. "IRI-based" : "Literal",
  349. "undefined" : "Literal"
  350. }
  351. }, {
  352. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  353. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  354. "id" : "6",
  355. "label" : {
  356. "IRI-based" : "Literal",
  357. "undefined" : "Literal"
  358. }
  359. }, {
  360. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  361. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  362. "id" : "53",
  363. "label" : {
  364. "IRI-based" : "Literal",
  365. "undefined" : "Literal"
  366. }
  367. }, {
  368. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  369. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  370. "id" : "56",
  371. "label" : {
  372. "IRI-based" : "Literal",
  373. "undefined" : "Literal"
  374. }
  375. }, {
  376. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  377. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  378. "id" : "52",
  379. "label" : {
  380. "IRI-based" : "Literal",
  381. "undefined" : "Literal"
  382. }
  383. }, {
  384. "iri" : "http://xmlns.com/foaf/0.1/Project",
  385. "baseIri" : "http://xmlns.com/foaf/0.1",
  386. "instances" : 0,
  387. "annotations" : {
  388. "isDefinedBy" : [ {
  389. "identifier" : "isDefinedBy",
  390. "language" : "undefined",
  391. "value" : "http://xmlns.com/foaf/0.1/",
  392. "type" : "iri"
  393. } ],
  394. "term_status" : [ {
  395. "identifier" : "term_status",
  396. "language" : "undefined",
  397. "value" : "testing",
  398. "type" : "label"
  399. } ]
  400. },
  401. "label" : {
  402. "IRI-based" : "Project",
  403. "undefined" : "Project"
  404. },
  405. "comment" : {
  406. "undefined" : "A project (a collective endeavour of some kind)."
  407. },
  408. "id" : "59"
  409. }, {
  410. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  411. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  412. "id" : "58",
  413. "label" : {
  414. "IRI-based" : "Literal",
  415. "undefined" : "Literal"
  416. }
  417. }, {
  418. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  419. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  420. "id" : "60",
  421. "label" : {
  422. "IRI-based" : "Literal",
  423. "undefined" : "Literal"
  424. }
  425. }, {
  426. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  427. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  428. "id" : "61",
  429. "label" : {
  430. "IRI-based" : "Literal",
  431. "undefined" : "Literal"
  432. }
  433. }, {
  434. "iri" : "http://xmlns.com/foaf/0.1/Person",
  435. "equivalent" : [ "62", "63" ],
  436. "baseIri" : "http://xmlns.com/foaf/0.1",
  437. "instances" : 0,
  438. "annotations" : {
  439. "isDefinedBy" : [ {
  440. "identifier" : "isDefinedBy",
  441. "language" : "undefined",
  442. "value" : "http://xmlns.com/foaf/0.1/",
  443. "type" : "iri"
  444. } ],
  445. "term_status" : [ {
  446. "identifier" : "term_status",
  447. "language" : "undefined",
  448. "value" : "stable",
  449. "type" : "label"
  450. } ]
  451. },
  452. "label" : {
  453. "IRI-based" : "Person",
  454. "undefined" : "Person"
  455. },
  456. "comment" : {
  457. "undefined" : "A person."
  458. },
  459. "attributes" : [ "equivalent" ],
  460. "id" : "12",
  461. "superClasses" : [ "1", "36" ]
  462. }, {
  463. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  464. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  465. "id" : "45",
  466. "label" : {
  467. "IRI-based" : "Literal",
  468. "undefined" : "Literal"
  469. }
  470. }, {
  471. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  472. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  473. "id" : "68",
  474. "label" : {
  475. "IRI-based" : "Literal",
  476. "undefined" : "Literal"
  477. }
  478. }, {
  479. "iri" : "http://xmlns.com/foaf/0.1/PersonalProfileDocument",
  480. "baseIri" : "http://xmlns.com/foaf/0.1",
  481. "instances" : 0,
  482. "annotations" : {
  483. "term_status" : [ {
  484. "identifier" : "term_status",
  485. "language" : "undefined",
  486. "value" : "testing",
  487. "type" : "label"
  488. } ]
  489. },
  490. "label" : {
  491. "IRI-based" : "PersonalProfileDocument",
  492. "undefined" : "PersonalProfileDocument"
  493. },
  494. "comment" : {
  495. "undefined" : "A personal profile RDF document."
  496. },
  497. "id" : "70",
  498. "superClasses" : [ "2" ]
  499. }, {
  500. "iri" : "http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing",
  501. "baseIri" : "http://www.w3.org/2003/01/geo/wgs84_pos",
  502. "instances" : 0,
  503. "label" : {
  504. "IRI-based" : "SpatialThing",
  505. "undefined" : "Spatial Thing"
  506. },
  507. "subClasses" : [ "12" ],
  508. "attributes" : [ "external" ],
  509. "id" : "36"
  510. }, {
  511. "iri" : "http://xmlns.com/foaf/0.1/OnlineChatAccount",
  512. "baseIri" : "http://xmlns.com/foaf/0.1",
  513. "instances" : 0,
  514. "annotations" : {
  515. "isDefinedBy" : [ {
  516. "identifier" : "isDefinedBy",
  517. "language" : "undefined",
  518. "value" : "http://xmlns.com/foaf/0.1/",
  519. "type" : "iri"
  520. } ],
  521. "term_status" : [ {
  522. "identifier" : "term_status",
  523. "language" : "undefined",
  524. "value" : "unstable",
  525. "type" : "label"
  526. } ]
  527. },
  528. "label" : {
  529. "IRI-based" : "OnlineChatAccount",
  530. "undefined" : "Online Chat Account"
  531. },
  532. "comment" : {
  533. "undefined" : "An online chat account."
  534. },
  535. "id" : "76",
  536. "superClasses" : [ "77" ]
  537. }, {
  538. "iri" : "http://xmlns.com/foaf/0.1/OnlineGamingAccount",
  539. "baseIri" : "http://xmlns.com/foaf/0.1",
  540. "instances" : 0,
  541. "annotations" : {
  542. "isDefinedBy" : [ {
  543. "identifier" : "isDefinedBy",
  544. "language" : "undefined",
  545. "value" : "http://xmlns.com/foaf/0.1/",
  546. "type" : "iri"
  547. } ],
  548. "term_status" : [ {
  549. "identifier" : "term_status",
  550. "language" : "undefined",
  551. "value" : "unstable",
  552. "type" : "label"
  553. } ]
  554. },
  555. "label" : {
  556. "IRI-based" : "OnlineGamingAccount",
  557. "undefined" : "Online Gaming Account"
  558. },
  559. "comment" : {
  560. "undefined" : "An online gaming account."
  561. },
  562. "id" : "82",
  563. "superClasses" : [ "77" ]
  564. }, {
  565. "iri" : "http://xmlns.com/foaf/0.1/LabelProperty",
  566. "baseIri" : "http://xmlns.com/foaf/0.1",
  567. "instances" : 0,
  568. "annotations" : {
  569. "isDefinedBy" : [ {
  570. "identifier" : "isDefinedBy",
  571. "language" : "undefined",
  572. "value" : "http://xmlns.com/foaf/0.1/",
  573. "type" : "iri"
  574. } ],
  575. "term_status" : [ {
  576. "identifier" : "term_status",
  577. "language" : "undefined",
  578. "value" : "unstable",
  579. "type" : "label"
  580. } ]
  581. },
  582. "label" : {
  583. "IRI-based" : "LabelProperty",
  584. "undefined" : "Label Property"
  585. },
  586. "comment" : {
  587. "undefined" : "A foaf:LabelProperty is any RDF property with texual values that serve as labels."
  588. },
  589. "id" : "92"
  590. }, {
  591. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  592. "id" : "72",
  593. "label" : {
  594. "IRI-based" : "Literal",
  595. "undefined" : "Literal"
  596. }
  597. }, {
  598. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  599. "id" : "67",
  600. "label" : {
  601. "IRI-based" : "Literal",
  602. "undefined" : "Literal"
  603. }
  604. }, {
  605. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  606. "id" : "91",
  607. "label" : {
  608. "IRI-based" : "Literal",
  609. "undefined" : "Literal"
  610. }
  611. }, {
  612. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  613. "baseIri" : "http://owl2vowl.de",
  614. "id" : "33",
  615. "label" : {
  616. "undefined" : "Thing"
  617. }
  618. }, {
  619. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  620. "id" : "49",
  621. "label" : {
  622. "IRI-based" : "Literal",
  623. "undefined" : "Literal"
  624. }
  625. }, {
  626. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  627. "baseIri" : "http://owl2vowl.de",
  628. "id" : "29",
  629. "label" : {
  630. "undefined" : "Thing"
  631. }
  632. }, {
  633. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  634. "id" : "100",
  635. "label" : {
  636. "IRI-based" : "Literal",
  637. "undefined" : "Literal"
  638. }
  639. }, {
  640. "iri" : "http://www.w3.org/2002/07/owl#Thing",
  641. "baseIri" : "http://owl2vowl.de",
  642. "id" : "39",
  643. "label" : {
  644. "undefined" : "Thing"
  645. }
  646. }, {
  647. "iri" : "http://www.w3.org/2000/10/swap/pim/contact#Person",
  648. "baseIri" : "http://www.w3.org/2000/10/swap/pim/contact",
  649. "instances" : 0,
  650. "label" : {
  651. "IRI-based" : "Person"
  652. },
  653. "attributes" : [ "external", "equivalent" ],
  654. "id" : "62"
  655. }, {
  656. "iri" : "http://schema.org/Person",
  657. "baseIri" : "http://schema.org",
  658. "instances" : 0,
  659. "label" : {
  660. "IRI-based" : "Person"
  661. },
  662. "attributes" : [ "external", "equivalent" ],
  663. "id" : "63"
  664. }, {
  665. "iri" : "http://schema.org/ImageObject",
  666. "baseIri" : "http://schema.org",
  667. "instances" : 0,
  668. "label" : {
  669. "IRI-based" : "ImageObject"
  670. },
  671. "attributes" : [ "external", "equivalent" ],
  672. "id" : "101"
  673. }, {
  674. "iri" : "http://xmlns.com/foaf/0.1/OnlineAccount",
  675. "baseIri" : "http://xmlns.com/foaf/0.1",
  676. "instances" : 0,
  677. "annotations" : {
  678. "isDefinedBy" : [ {
  679. "identifier" : "isDefinedBy",
  680. "language" : "undefined",
  681. "value" : "http://xmlns.com/foaf/0.1/",
  682. "type" : "iri"
  683. } ],
  684. "term_status" : [ {
  685. "identifier" : "term_status",
  686. "language" : "undefined",
  687. "value" : "testing",
  688. "type" : "label"
  689. } ]
  690. },
  691. "label" : {
  692. "IRI-based" : "OnlineAccount",
  693. "undefined" : "Online Account"
  694. },
  695. "subClasses" : [ "76", "85", "82" ],
  696. "comment" : {
  697. "undefined" : "An online account."
  698. },
  699. "id" : "77"
  700. }, {
  701. "iri" : "http://xmlns.com/foaf/0.1/OnlineEcommerceAccount",
  702. "baseIri" : "http://xmlns.com/foaf/0.1",
  703. "instances" : 0,
  704. "annotations" : {
  705. "isDefinedBy" : [ {
  706. "identifier" : "isDefinedBy",
  707. "language" : "undefined",
  708. "value" : "http://xmlns.com/foaf/0.1/",
  709. "type" : "iri"
  710. } ],
  711. "term_status" : [ {
  712. "identifier" : "term_status",
  713. "language" : "undefined",
  714. "value" : "unstable",
  715. "type" : "label"
  716. } ]
  717. },
  718. "label" : {
  719. "IRI-based" : "OnlineEcommerceAccount",
  720. "undefined" : "Online E-commerce Account"
  721. },
  722. "comment" : {
  723. "undefined" : "An online e-commerce account."
  724. },
  725. "id" : "85",
  726. "superClasses" : [ "77" ]
  727. }, {
  728. "iri" : "http://purl.org/dc/terms/Agent",
  729. "baseIri" : "http://purl.org/dc/terms",
  730. "instances" : 0,
  731. "label" : {
  732. "IRI-based" : "Agent"
  733. },
  734. "attributes" : [ "external", "equivalent" ],
  735. "id" : "13"
  736. }, {
  737. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  738. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  739. "id" : "94",
  740. "label" : {
  741. "IRI-based" : "Literal",
  742. "undefined" : "Literal"
  743. }
  744. }, {
  745. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  746. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  747. "id" : "99",
  748. "label" : {
  749. "IRI-based" : "Literal",
  750. "undefined" : "Literal"
  751. }
  752. }, {
  753. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  754. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  755. "id" : "105",
  756. "label" : {
  757. "IRI-based" : "Literal",
  758. "undefined" : "Literal"
  759. }
  760. }, {
  761. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  762. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  763. "id" : "111",
  764. "label" : {
  765. "IRI-based" : "Literal",
  766. "undefined" : "Literal"
  767. }
  768. }, {
  769. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  770. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  771. "id" : "55",
  772. "label" : {
  773. "IRI-based" : "Literal",
  774. "undefined" : "Literal"
  775. }
  776. }, {
  777. "iri" : "http://www.w3.org/2000/01/rdf-schema#Literal",
  778. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  779. "id" : "118",
  780. "label" : {
  781. "IRI-based" : "Literal",
  782. "undefined" : "Literal"
  783. }
  784. }, {
  785. "iri" : "http://www.w3.org/2000/01/rdf-schema#Class",
  786. "baseIri" : "http://www.w3.org/2000/01/rdf-schema",
  787. "instances" : 0,
  788. "label" : {
  789. "IRI-based" : "Class"
  790. },
  791. "attributes" : [ "external" ],
  792. "id" : "126"
  793. }, {
  794. "iri" : "http://xmlns.com/foaf/0.1/Document",
  795. "equivalent" : [ "37" ],
  796. "baseIri" : "http://xmlns.com/foaf/0.1",
  797. "instances" : 0,
  798. "annotations" : {
  799. "isDefinedBy" : [ {
  800. "identifier" : "isDefinedBy",
  801. "language" : "undefined",
  802. "value" : "http://xmlns.com/foaf/0.1/",
  803. "type" : "iri"
  804. } ],
  805. "term_status" : [ {
  806. "identifier" : "term_status",
  807. "language" : "undefined",
  808. "value" : "stable",
  809. "type" : "label"
  810. } ]
  811. },
  812. "label" : {
  813. "IRI-based" : "Document",
  814. "undefined" : "Document"
  815. },
  816. "subClasses" : [ "70", "32" ],
  817. "comment" : {
  818. "undefined" : "A document."
  819. },
  820. "attributes" : [ "equivalent" ],
  821. "id" : "2"
  822. }, {
  823. "iri" : "http://xmlns.com/foaf/0.1/Image",
  824. "equivalent" : [ "101" ],
  825. "baseIri" : "http://xmlns.com/foaf/0.1",
  826. "instances" : 0,
  827. "annotations" : {
  828. "isDefinedBy" : [ {
  829. "identifier" : "isDefinedBy",
  830. "language" : "undefined",
  831. "value" : "http://xmlns.com/foaf/0.1/",
  832. "type" : "iri"
  833. } ],
  834. "term_status" : [ {
  835. "identifier" : "term_status",
  836. "language" : "undefined",
  837. "value" : "stable",
  838. "type" : "label"
  839. } ]
  840. },
  841. "label" : {
  842. "IRI-based" : "Image",
  843. "undefined" : "Image"
  844. },
  845. "comment" : {
  846. "undefined" : "An image."
  847. },
  848. "attributes" : [ "equivalent" ],
  849. "id" : "32",
  850. "superClasses" : [ "2" ]
  851. }, {
  852. "iri" : "http://xmlns.com/foaf/0.1/Group",
  853. "baseIri" : "http://xmlns.com/foaf/0.1",
  854. "instances" : 0,
  855. "annotations" : {
  856. "term_status" : [ {
  857. "identifier" : "term_status",
  858. "language" : "undefined",
  859. "value" : "stable",
  860. "type" : "label"
  861. } ]
  862. },
  863. "label" : {
  864. "IRI-based" : "Group",
  865. "undefined" : "Group"
  866. },
  867. "comment" : {
  868. "undefined" : "A class of Agents."
  869. },
  870. "id" : "10",
  871. "superClasses" : [ "1" ]
  872. } ],
  873. "property" : [ {
  874. "id" : "0",
  875. "type" : "owl:objectProperty"
  876. }, {
  877. "id" : "4",
  878. "type" : "owl:datatypeProperty"
  879. }, {
  880. "id" : "7",
  881. "type" : "owl:datatypeProperty"
  882. }, {
  883. "id" : "14",
  884. "type" : "owl:objectProperty"
  885. }, {
  886. "id" : "16",
  887. "type" : "owl:objectProperty"
  888. }, {
  889. "id" : "17",
  890. "type" : "owl:objectProperty"
  891. }, {
  892. "id" : "23",
  893. "type" : "owl:objectProperty"
  894. }, {
  895. "id" : "25",
  896. "type" : "owl:objectProperty"
  897. }, {
  898. "id" : "28",
  899. "type" : "owl:objectProperty"
  900. }, {
  901. "id" : "30",
  902. "type" : "owl:objectProperty"
  903. }, {
  904. "id" : "31",
  905. "type" : "owl:objectProperty"
  906. }, {
  907. "id" : "35",
  908. "type" : "owl:objectProperty"
  909. }, {
  910. "id" : "38",
  911. "type" : "owl:objectProperty"
  912. }, {
  913. "id" : "44",
  914. "type" : "owl:datatypeProperty"
  915. }, {
  916. "id" : "47",
  917. "type" : "owl:objectProperty"
  918. }, {
  919. "id" : "48",
  920. "type" : "owl:datatypeProperty"
  921. }, {
  922. "id" : "50",
  923. "type" : "owl:objectProperty"
  924. }, {
  925. "id" : "51",
  926. "type" : "owl:datatypeProperty"
  927. }, {
  928. "id" : "54",
  929. "type" : "owl:datatypeProperty"
  930. }, {
  931. "id" : "57",
  932. "type" : "owl:datatypeProperty"
  933. }, {
  934. "id" : "64",
  935. "type" : "owl:datatypeProperty"
  936. }, {
  937. "id" : "65",
  938. "type" : "owl:datatypeProperty"
  939. }, {
  940. "id" : "66",
  941. "type" : "owl:datatypeProperty"
  942. }, {
  943. "id" : "69",
  944. "type" : "owl:datatypeProperty"
  945. }, {
  946. "id" : "71",
  947. "type" : "owl:datatypeProperty"
  948. }, {
  949. "id" : "15",
  950. "type" : "owl:objectProperty"
  951. }, {
  952. "id" : "73",
  953. "type" : "rdfs:SubClassOf"
  954. }, {
  955. "id" : "74",
  956. "type" : "rdfs:SubClassOf"
  957. }, {
  958. "id" : "75",
  959. "type" : "rdfs:SubClassOf"
  960. }, {
  961. "id" : "78",
  962. "type" : "rdfs:SubClassOf"
  963. }, {
  964. "id" : "79",
  965. "type" : "owl:objectProperty"
  966. }, {
  967. "id" : "80",
  968. "type" : "owl:objectProperty"
  969. }, {
  970. "id" : "81",
  971. "type" : "rdfs:SubClassOf"
  972. }, {
  973. "id" : "34",
  974. "type" : "owl:objectProperty"
  975. }, {
  976. "id" : "84",
  977. "type" : "rdfs:SubClassOf"
  978. }, {
  979. "id" : "86",
  980. "type" : "owl:datatypeProperty"
  981. }, {
  982. "id" : "87",
  983. "type" : "rdfs:SubClassOf"
  984. }, {
  985. "id" : "88",
  986. "type" : "rdfs:SubClassOf"
  987. }, {
  988. "id" : "89",
  989. "type" : "owl:objectProperty"
  990. }, {
  991. "id" : "90",
  992. "type" : "owl:datatypeProperty"
  993. }, {
  994. "id" : "93",
  995. "type" : "owl:datatypeProperty"
  996. }, {
  997. "id" : "95",
  998. "type" : "owl:objectProperty"
  999. }, {
  1000. "id" : "96",
  1001. "type" : "owl:datatypeProperty"
  1002. }, {
  1003. "id" : "97",
  1004. "type" : "rdfs:SubClassOf"
  1005. }, {
  1006. "id" : "98",
  1007. "type" : "owl:datatypeProperty"
  1008. }, {
  1009. "id" : "43",
  1010. "type" : "owl:objectProperty"
  1011. }, {
  1012. "id" : "41",
  1013. "type" : "owl:objectProperty"
  1014. }, {
  1015. "id" : "102",
  1016. "type" : "owl:datatypeProperty"
  1017. }, {
  1018. "id" : "103",
  1019. "type" : "owl:objectProperty"
  1020. }, {
  1021. "id" : "104",
  1022. "type" : "owl:datatypeProperty"
  1023. }, {
  1024. "id" : "106",
  1025. "type" : "owl:objectProperty"
  1026. }, {
  1027. "id" : "107",
  1028. "type" : "owl:datatypeProperty"
  1029. }, {
  1030. "id" : "108",
  1031. "type" : "owl:objectProperty"
  1032. }, {
  1033. "id" : "109",
  1034. "type" : "owl:objectProperty"
  1035. }, {
  1036. "id" : "40",
  1037. "type" : "owl:objectProperty"
  1038. }, {
  1039. "id" : "42",
  1040. "type" : "owl:objectProperty"
  1041. }, {
  1042. "id" : "83",
  1043. "type" : "owl:objectProperty"
  1044. }, {
  1045. "id" : "110",
  1046. "type" : "owl:datatypeProperty"
  1047. }, {
  1048. "id" : "112",
  1049. "type" : "owl:datatypeProperty"
  1050. }, {
  1051. "id" : "113",
  1052. "type" : "owl:datatypeProperty"
  1053. }, {
  1054. "id" : "114",
  1055. "type" : "owl:objectProperty"
  1056. }, {
  1057. "id" : "116",
  1058. "type" : "owl:disjointWith"
  1059. }, {
  1060. "id" : "117",
  1061. "type" : "owl:disjointWith"
  1062. }, {
  1063. "id" : "119",
  1064. "type" : "owl:datatypeProperty"
  1065. }, {
  1066. "id" : "120",
  1067. "type" : "owl:disjointWith"
  1068. }, {
  1069. "id" : "121",
  1070. "type" : "owl:disjointWith"
  1071. }, {
  1072. "id" : "122",
  1073. "type" : "owl:objectProperty"
  1074. }, {
  1075. "id" : "123",
  1076. "type" : "owl:datatypeProperty"
  1077. }, {
  1078. "id" : "124",
  1079. "type" : "owl:objectProperty"
  1080. }, {
  1081. "id" : "125",
  1082. "type" : "owl:datatypeProperty"
  1083. }, {
  1084. "id" : "127",
  1085. "type" : "owl:datatypeProperty"
  1086. }, {
  1087. "id" : "115",
  1088. "type" : "owl:objectProperty"
  1089. }, {
  1090. "id" : "128",
  1091. "type" : "owl:objectProperty"
  1092. }, {
  1093. "id" : "129",
  1094. "type" : "owl:objectProperty"
  1095. } ],
  1096. "propertyAttribute" : [ {
  1097. "iri" : "http://xmlns.com/foaf/0.1/interest",
  1098. "baseIri" : "http://xmlns.com/foaf/0.1",
  1099. "range" : "2",
  1100. "annotations" : {
  1101. "isDefinedBy" : [ {
  1102. "identifier" : "isDefinedBy",
  1103. "language" : "undefined",
  1104. "value" : "http://xmlns.com/foaf/0.1/",
  1105. "type" : "iri"
  1106. } ],
  1107. "term_status" : [ {
  1108. "identifier" : "term_status",
  1109. "language" : "undefined",
  1110. "value" : "testing",
  1111. "type" : "label"
  1112. } ]
  1113. },
  1114. "label" : {
  1115. "IRI-based" : "interest",
  1116. "undefined" : "interest"
  1117. },
  1118. "domain" : "1",
  1119. "comment" : {
  1120. "undefined" : "A page about a topic of interest to this person."
  1121. },
  1122. "attributes" : [ "object" ],
  1123. "id" : "0"
  1124. }, {
  1125. "iri" : "http://xmlns.com/foaf/0.1/mbox_sha1sum",
  1126. "baseIri" : "http://xmlns.com/foaf/0.1",
  1127. "range" : "6",
  1128. "annotations" : {
  1129. "isDefinedBy" : [ {
  1130. "identifier" : "isDefinedBy",
  1131. "language" : "undefined",
  1132. "value" : "http://xmlns.com/foaf/0.1/",
  1133. "type" : "iri"
  1134. } ],
  1135. "term_status" : [ {
  1136. "identifier" : "term_status",
  1137. "language" : "undefined",
  1138. "value" : "testing",
  1139. "type" : "label"
  1140. } ]
  1141. },
  1142. "label" : {
  1143. "IRI-based" : "mbox_sha1sum",
  1144. "undefined" : "sha1sum of a personal mailbox URI name"
  1145. },
  1146. "domain" : "5",
  1147. "comment" : {
  1148. "undefined" : "The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the first owner of the mailbox."
  1149. },
  1150. "attributes" : [ "datatype" ],
  1151. "id" : "4"
  1152. }, {
  1153. "iri" : "http://xmlns.com/foaf/0.1/nick",
  1154. "baseIri" : "http://xmlns.com/foaf/0.1",
  1155. "range" : "8",
  1156. "annotations" : {
  1157. "isDefinedBy" : [ {
  1158. "identifier" : "isDefinedBy",
  1159. "language" : "undefined",
  1160. "value" : "http://xmlns.com/foaf/0.1/",
  1161. "type" : "iri"
  1162. } ],
  1163. "term_status" : [ {
  1164. "identifier" : "term_status",
  1165. "language" : "undefined",
  1166. "value" : "testing",
  1167. "type" : "label"
  1168. } ]
  1169. },
  1170. "label" : {
  1171. "IRI-based" : "nick",
  1172. "undefined" : "nickname"
  1173. },
  1174. "domain" : "5",
  1175. "comment" : {
  1176. "undefined" : "A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames)."
  1177. },
  1178. "attributes" : [ "datatype" ],
  1179. "id" : "7"
  1180. }, {
  1181. "iri" : "http://xmlns.com/foaf/0.1/openid",
  1182. "baseIri" : "http://xmlns.com/foaf/0.1",
  1183. "range" : "2",
  1184. "annotations" : {
  1185. "isDefinedBy" : [ {
  1186. "identifier" : "isDefinedBy",
  1187. "language" : "undefined",
  1188. "value" : "http://xmlns.com/foaf/0.1/",
  1189. "type" : "iri"
  1190. } ],
  1191. "term_status" : [ {
  1192. "identifier" : "term_status",
  1193. "language" : "undefined",
  1194. "value" : "testing",
  1195. "type" : "label"
  1196. } ]
  1197. },
  1198. "label" : {
  1199. "IRI-based" : "openid",
  1200. "undefined" : "openid"
  1201. },
  1202. "superproperty" : [ "15" ],
  1203. "domain" : "1",
  1204. "comment" : {
  1205. "undefined" : "An OpenID for an Agent."
  1206. },
  1207. "attributes" : [ "object", "inverse functional" ],
  1208. "id" : "14"
  1209. }, {
  1210. "iri" : "http://xmlns.com/foaf/0.1/workInfoHomepage",
  1211. "baseIri" : "http://xmlns.com/foaf/0.1",
  1212. "range" : "2",
  1213. "annotations" : {
  1214. "isDefinedBy" : [ {
  1215. "identifier" : "isDefinedBy",
  1216. "language" : "undefined",
  1217. "value" : "http://xmlns.com/foaf/0.1/",
  1218. "type" : "iri"
  1219. } ],
  1220. "term_status" : [ {
  1221. "identifier" : "term_status",
  1222. "language" : "undefined",
  1223. "value" : "testing",
  1224. "type" : "label"
  1225. } ]
  1226. },
  1227. "label" : {
  1228. "IRI-based" : "workInfoHomepage",
  1229. "undefined" : "work info homepage"
  1230. },
  1231. "domain" : "12",
  1232. "comment" : {
  1233. "undefined" : "A work info homepage of some person; a page about their work for some organization."
  1234. },
  1235. "attributes" : [ "object" ],
  1236. "id" : "16"
  1237. }, {
  1238. "iri" : "http://xmlns.com/foaf/0.1/pastProject",
  1239. "baseIri" : "http://xmlns.com/foaf/0.1",
  1240. "range" : "3",
  1241. "annotations" : {
  1242. "isDefinedBy" : [ {
  1243. "identifier" : "isDefinedBy",
  1244. "language" : "undefined",
  1245. "value" : "http://xmlns.com/foaf/0.1/",
  1246. "type" : "iri"
  1247. } ],
  1248. "term_status" : [ {
  1249. "identifier" : "term_status",
  1250. "language" : "undefined",
  1251. "value" : "testing",
  1252. "type" : "label"
  1253. } ]
  1254. },
  1255. "label" : {
  1256. "IRI-based" : "pastProject",
  1257. "undefined" : "past project"
  1258. },
  1259. "domain" : "12",
  1260. "comment" : {
  1261. "undefined" : "A project this person has previously worked on."
  1262. },
  1263. "attributes" : [ "object" ],
  1264. "id" : "17"
  1265. }, {
  1266. "iri" : "http://xmlns.com/foaf/0.1/theme",
  1267. "baseIri" : "http://xmlns.com/foaf/0.1",
  1268. "range" : "19",
  1269. "annotations" : {
  1270. "isDefinedBy" : [ {
  1271. "identifier" : "isDefinedBy",
  1272. "language" : "undefined",
  1273. "value" : "http://xmlns.com/foaf/0.1/",
  1274. "type" : "iri"
  1275. } ],
  1276. "term_status" : [ {
  1277. "identifier" : "term_status",
  1278. "language" : "undefined",
  1279. "value" : "archaic",
  1280. "type" : "label"
  1281. } ]
  1282. },
  1283. "label" : {
  1284. "IRI-based" : "theme",
  1285. "undefined" : "theme"
  1286. },
  1287. "domain" : "19",
  1288. "comment" : {
  1289. "undefined" : "A theme."
  1290. },
  1291. "attributes" : [ "object" ],
  1292. "id" : "23"
  1293. }, {
  1294. "iri" : "http://xmlns.com/foaf/0.1/knows",
  1295. "baseIri" : "http://xmlns.com/foaf/0.1",
  1296. "range" : "12",
  1297. "annotations" : {
  1298. "isDefinedBy" : [ {
  1299. "identifier" : "isDefinedBy",
  1300. "language" : "undefined",
  1301. "value" : "http://xmlns.com/foaf/0.1/",
  1302. "type" : "iri"
  1303. } ],
  1304. "term_status" : [ {
  1305. "identifier" : "term_status",
  1306. "language" : "undefined",
  1307. "value" : "stable",
  1308. "type" : "label"
  1309. } ]
  1310. },
  1311. "label" : {
  1312. "IRI-based" : "knows",
  1313. "undefined" : "knows"
  1314. },
  1315. "domain" : "12",
  1316. "comment" : {
  1317. "undefined" : "A person known by this person (indicating some level of reciprocated interaction between the parties)."
  1318. },
  1319. "attributes" : [ "object" ],
  1320. "id" : "25"
  1321. }, {
  1322. "iri" : "http://xmlns.com/foaf/0.1/focus",
  1323. "baseIri" : "http://xmlns.com/foaf/0.1",
  1324. "range" : "29",
  1325. "annotations" : {
  1326. "isDefinedBy" : [ {
  1327. "identifier" : "isDefinedBy",
  1328. "language" : "undefined",
  1329. "value" : "http://xmlns.com/foaf/0.1/",
  1330. "type" : "iri"
  1331. } ],
  1332. "term_status" : [ {
  1333. "identifier" : "term_status",
  1334. "language" : "undefined",
  1335. "value" : "testing",
  1336. "type" : "label"
  1337. } ]
  1338. },
  1339. "label" : {
  1340. "IRI-based" : "focus",
  1341. "undefined" : "focus"
  1342. },
  1343. "domain" : "9",
  1344. "comment" : {
  1345. "undefined" : "The underlying or 'focal' entity associated with some SKOS-described concept."
  1346. },
  1347. "attributes" : [ "object" ],
  1348. "id" : "28"
  1349. }, {
  1350. "iri" : "http://xmlns.com/foaf/0.1/phone",
  1351. "baseIri" : "http://xmlns.com/foaf/0.1",
  1352. "range" : "19",
  1353. "annotations" : {
  1354. "isDefinedBy" : [ {
  1355. "identifier" : "isDefinedBy",
  1356. "language" : "undefined",
  1357. "value" : "http://xmlns.com/foaf/0.1/",
  1358. "type" : "iri"
  1359. } ],
  1360. "term_status" : [ {
  1361. "identifier" : "term_status",
  1362. "language" : "undefined",
  1363. "value" : "testing",
  1364. "type" : "label"
  1365. } ]
  1366. },
  1367. "label" : {
  1368. "IRI-based" : "phone",
  1369. "undefined" : "phone"
  1370. },
  1371. "domain" : "19",
  1372. "comment" : {
  1373. "undefined" : "A phone, specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel)."
  1374. },
  1375. "attributes" : [ "object" ],
  1376. "id" : "30"
  1377. }, {
  1378. "iri" : "http://xmlns.com/foaf/0.1/depicts",
  1379. "inverse" : "34",
  1380. "baseIri" : "http://xmlns.com/foaf/0.1",
  1381. "range" : "33",
  1382. "annotations" : {
  1383. "isDefinedBy" : [ {
  1384. "identifier" : "isDefinedBy",
  1385. "language" : "undefined",
  1386. "value" : "http://xmlns.com/foaf/0.1/",
  1387. "type" : "iri"
  1388. } ],
  1389. "term_status" : [ {
  1390. "identifier" : "term_status",
  1391. "language" : "undefined",
  1392. "value" : "testing",
  1393. "type" : "label"
  1394. } ]
  1395. },
  1396. "label" : {
  1397. "IRI-based" : "depicts",
  1398. "undefined" : "depicts"
  1399. },
  1400. "domain" : "32",
  1401. "comment" : {
  1402. "undefined" : "A thing depicted in this representation."
  1403. },
  1404. "attributes" : [ "object" ],
  1405. "id" : "31"
  1406. }, {
  1407. "iri" : "http://xmlns.com/foaf/0.1/based_near",
  1408. "baseIri" : "http://xmlns.com/foaf/0.1",
  1409. "range" : "36",
  1410. "annotations" : {
  1411. "isDefinedBy" : [ {
  1412. "identifier" : "isDefinedBy",
  1413. "language" : "undefined",
  1414. "value" : "http://xmlns.com/foaf/0.1/",
  1415. "type" : "iri"
  1416. } ],
  1417. "term_status" : [ {
  1418. "identifier" : "term_status",
  1419. "language" : "undefined",
  1420. "value" : "testing",
  1421. "type" : "label"
  1422. } ]
  1423. },
  1424. "label" : {
  1425. "IRI-based" : "based_near",
  1426. "undefined" : "based near"
  1427. },
  1428. "domain" : "36",
  1429. "comment" : {
  1430. "undefined" : "A location that something is based near, for some broadly human notion of near."
  1431. },
  1432. "attributes" : [ "object" ],
  1433. "id" : "35"
  1434. }, {
  1435. "iri" : "http://xmlns.com/foaf/0.1/page",
  1436. "inverse" : "40",
  1437. "baseIri" : "http://xmlns.com/foaf/0.1",
  1438. "range" : "2",
  1439. "annotations" : {
  1440. "isDefinedBy" : [ {
  1441. "identifier" : "isDefinedBy",
  1442. "language" : "undefined",
  1443. "value" : "http://xmlns.com/foaf/0.1/",
  1444. "type" : "iri"
  1445. } ],
  1446. "term_status" : [ {
  1447. "identifier" : "term_status",
  1448. "language" : "undefined",
  1449. "value" : "stable",
  1450. "type" : "label"
  1451. } ]
  1452. },
  1453. "label" : {
  1454. "IRI-based" : "page",
  1455. "undefined" : "page"
  1456. },
  1457. "domain" : "39",
  1458. "subproperty" : [ "15", "41", "42", "43" ],
  1459. "comment" : {
  1460. "undefined" : "A page or document about this thing."
  1461. },
  1462. "attributes" : [ "object" ],
  1463. "id" : "38"
  1464. }, {
  1465. "iri" : "http://xmlns.com/foaf/0.1/geekcode",
  1466. "baseIri" : "http://xmlns.com/foaf/0.1",
  1467. "range" : "45",
  1468. "annotations" : {
  1469. "isDefinedBy" : [ {
  1470. "identifier" : "isDefinedBy",
  1471. "language" : "undefined",
  1472. "value" : "http://xmlns.com/foaf/0.1/",
  1473. "type" : "iri"
  1474. } ],
  1475. "term_status" : [ {
  1476. "identifier" : "term_status",
  1477. "language" : "undefined",
  1478. "value" : "archaic",
  1479. "type" : "label"
  1480. } ]
  1481. },
  1482. "label" : {
  1483. "IRI-based" : "geekcode",
  1484. "undefined" : "geekcode"
  1485. },
  1486. "domain" : "12",
  1487. "comment" : {
  1488. "undefined" : "A textual geekcode for this person, see http://www.geekcode.com/geek.html"
  1489. },
  1490. "attributes" : [ "datatype" ],
  1491. "id" : "44"
  1492. }, {
  1493. "iri" : "http://xmlns.com/foaf/0.1/primaryTopic",
  1494. "inverse" : "15",
  1495. "baseIri" : "http://xmlns.com/foaf/0.1",
  1496. "range" : "39",
  1497. "annotations" : {
  1498. "isDefinedBy" : [ {
  1499. "identifier" : "isDefinedBy",
  1500. "language" : "undefined",
  1501. "value" : "http://xmlns.com/foaf/0.1/",
  1502. "type" : "iri"
  1503. } ],
  1504. "term_status" : [ {
  1505. "identifier" : "term_status",
  1506. "language" : "undefined",
  1507. "value" : "stable",
  1508. "type" : "label"
  1509. } ]
  1510. },
  1511. "label" : {
  1512. "IRI-based" : "primaryTopic",
  1513. "undefined" : "primary topic"
  1514. },
  1515. "domain" : "2",
  1516. "comment" : {
  1517. "undefined" : "The primary topic of some page or document."
  1518. },
  1519. "attributes" : [ "object", "functional" ],
  1520. "id" : "47"
  1521. }, {
  1522. "iri" : "http://xmlns.com/foaf/0.1/givenName",
  1523. "baseIri" : "http://xmlns.com/foaf/0.1",
  1524. "range" : "49",
  1525. "annotations" : {
  1526. "isDefinedBy" : [ {
  1527. "identifier" : "isDefinedBy",
  1528. "language" : "undefined",
  1529. "value" : "http://xmlns.com/foaf/0.1/",
  1530. "type" : "iri"
  1531. } ],
  1532. "term_status" : [ {
  1533. "identifier" : "term_status",
  1534. "language" : "undefined",
  1535. "value" : "testing",
  1536. "type" : "label"
  1537. } ]
  1538. },
  1539. "label" : {
  1540. "IRI-based" : "givenName",
  1541. "undefined" : "Given name"
  1542. },
  1543. "domain" : "19",
  1544. "comment" : {
  1545. "undefined" : "The given name of some person."
  1546. },
  1547. "attributes" : [ "datatype" ],
  1548. "id" : "48"
  1549. }, {
  1550. "iri" : "http://xmlns.com/foaf/0.1/schoolHomepage",
  1551. "baseIri" : "http://xmlns.com/foaf/0.1",
  1552. "range" : "2",
  1553. "annotations" : {
  1554. "isDefinedBy" : [ {
  1555. "identifier" : "isDefinedBy",
  1556. "language" : "undefined",
  1557. "value" : "http://xmlns.com/foaf/0.1/",
  1558. "type" : "iri"
  1559. } ],
  1560. "term_status" : [ {
  1561. "identifier" : "term_status",
  1562. "language" : "undefined",
  1563. "value" : "testing",
  1564. "type" : "label"
  1565. } ]
  1566. },
  1567. "label" : {
  1568. "IRI-based" : "schoolHomepage",
  1569. "undefined" : "schoolHomepage"
  1570. },
  1571. "domain" : "12",
  1572. "comment" : {
  1573. "undefined" : "A homepage of a school attended by the person."
  1574. },
  1575. "attributes" : [ "object" ],
  1576. "id" : "50"
  1577. }, {
  1578. "iri" : "http://xmlns.com/foaf/0.1/gender",
  1579. "baseIri" : "http://xmlns.com/foaf/0.1",
  1580. "range" : "52",
  1581. "annotations" : {
  1582. "isDefinedBy" : [ {
  1583. "identifier" : "isDefinedBy",
  1584. "language" : "undefined",
  1585. "value" : "http://xmlns.com/foaf/0.1/",
  1586. "type" : "iri"
  1587. } ],
  1588. "term_status" : [ {
  1589. "identifier" : "term_status",
  1590. "language" : "undefined",
  1591. "value" : "testing",
  1592. "type" : "label"
  1593. } ]
  1594. },
  1595. "label" : {
  1596. "IRI-based" : "gender",
  1597. "undefined" : "gender"
  1598. },
  1599. "domain" : "1",
  1600. "comment" : {
  1601. "undefined" : "The gender of this Agent (typically but not necessarily 'male' or 'female')."
  1602. },
  1603. "attributes" : [ "datatype", "functional" ],
  1604. "id" : "51"
  1605. }, {
  1606. "iri" : "http://xmlns.com/foaf/0.1/dnaChecksum",
  1607. "baseIri" : "http://xmlns.com/foaf/0.1",
  1608. "range" : "55",
  1609. "annotations" : {
  1610. "isDefinedBy" : [ {
  1611. "identifier" : "isDefinedBy",
  1612. "language" : "undefined",
  1613. "value" : "http://xmlns.com/foaf/0.1/",
  1614. "type" : "iri"
  1615. } ],
  1616. "term_status" : [ {
  1617. "identifier" : "term_status",
  1618. "language" : "undefined",
  1619. "value" : "archaic",
  1620. "type" : "label"
  1621. } ]
  1622. },
  1623. "label" : {
  1624. "IRI-based" : "dnaChecksum",
  1625. "undefined" : "DNA checksum"
  1626. },
  1627. "domain" : "19",
  1628. "comment" : {
  1629. "undefined" : "A checksum for the DNA of some thing. Joke."
  1630. },
  1631. "attributes" : [ "datatype" ],
  1632. "id" : "54"
  1633. }, {
  1634. "iri" : "http://xmlns.com/foaf/0.1/lastName",
  1635. "baseIri" : "http://xmlns.com/foaf/0.1",
  1636. "range" : "58",
  1637. "annotations" : {
  1638. "isDefinedBy" : [ {
  1639. "identifier" : "isDefinedBy",
  1640. "language" : "undefined",
  1641. "value" : "http://xmlns.com/foaf/0.1/",
  1642. "type" : "iri"
  1643. } ],
  1644. "term_status" : [ {
  1645. "identifier" : "term_status",
  1646. "language" : "undefined",
  1647. "value" : "testing",
  1648. "type" : "label"
  1649. } ]
  1650. },
  1651. "label" : {
  1652. "IRI-based" : "lastName",
  1653. "undefined" : "lastName"
  1654. },
  1655. "domain" : "12",
  1656. "comment" : {
  1657. "undefined" : "The last name of a person."
  1658. },
  1659. "attributes" : [ "datatype" ],
  1660. "id" : "57"
  1661. }, {
  1662. "iri" : "http://xmlns.com/foaf/0.1/status",
  1663. "baseIri" : "http://xmlns.com/foaf/0.1",
  1664. "range" : "27",
  1665. "annotations" : {
  1666. "isDefinedBy" : [ {
  1667. "identifier" : "isDefinedBy",
  1668. "language" : "undefined",
  1669. "value" : "http://xmlns.com/foaf/0.1/",
  1670. "type" : "iri"
  1671. } ],
  1672. "term_status" : [ {
  1673. "identifier" : "term_status",
  1674. "language" : "undefined",
  1675. "value" : "unstable",
  1676. "type" : "label"
  1677. } ]
  1678. },
  1679. "label" : {
  1680. "IRI-based" : "status",
  1681. "undefined" : "status"
  1682. },
  1683. "domain" : "1",
  1684. "comment" : {
  1685. "undefined" : "A string expressing what the user is happy for the general public (normally) to know about their current activity."
  1686. },
  1687. "attributes" : [ "datatype" ],
  1688. "id" : "64"
  1689. }, {
  1690. "iri" : "http://xmlns.com/foaf/0.1/yahooChatID",
  1691. "baseIri" : "http://xmlns.com/foaf/0.1",
  1692. "range" : "20",
  1693. "annotations" : {
  1694. "isDefinedBy" : [ {
  1695. "identifier" : "isDefinedBy",
  1696. "language" : "undefined",
  1697. "value" : "http://xmlns.com/foaf/0.1/",
  1698. "type" : "iri"
  1699. } ],
  1700. "term_status" : [ {
  1701. "identifier" : "term_status",
  1702. "language" : "undefined",
  1703. "value" : "testing",
  1704. "type" : "label"
  1705. } ]
  1706. },
  1707. "label" : {
  1708. "IRI-based" : "yahooChatID",
  1709. "undefined" : "Yahoo chat ID"
  1710. },
  1711. "domain" : "19",
  1712. "comment" : {
  1713. "undefined" : "A Yahoo chat ID"
  1714. },
  1715. "attributes" : [ "datatype" ],
  1716. "id" : "65"
  1717. }, {
  1718. "iri" : "http://xmlns.com/foaf/0.1/name",
  1719. "baseIri" : "http://xmlns.com/foaf/0.1",
  1720. "range" : "67",
  1721. "annotations" : {
  1722. "isDefinedBy" : [ {
  1723. "identifier" : "isDefinedBy",
  1724. "language" : "undefined",
  1725. "value" : "http://xmlns.com/foaf/0.1/",
  1726. "type" : "iri"
  1727. } ],
  1728. "term_status" : [ {
  1729. "identifier" : "term_status",
  1730. "language" : "undefined",
  1731. "value" : "testing",
  1732. "type" : "label"
  1733. } ]
  1734. },
  1735. "label" : {
  1736. "IRI-based" : "name",
  1737. "undefined" : "name"
  1738. },
  1739. "domain" : "19",
  1740. "comment" : {
  1741. "undefined" : "A name for some thing."
  1742. },
  1743. "attributes" : [ "datatype" ],
  1744. "id" : "66"
  1745. }, {
  1746. "iri" : "http://xmlns.com/foaf/0.1/icqChatID",
  1747. "baseIri" : "http://xmlns.com/foaf/0.1",
  1748. "range" : "56",
  1749. "annotations" : {
  1750. "isDefinedBy" : [ {
  1751. "identifier" : "isDefinedBy",
  1752. "language" : "undefined",
  1753. "value" : "http://xmlns.com/foaf/0.1/",
  1754. "type" : "iri"
  1755. } ],
  1756. "term_status" : [ {
  1757. "identifier" : "term_status",
  1758. "language" : "undefined",
  1759. "value" : "testing",
  1760. "type" : "label"
  1761. } ]
  1762. },
  1763. "label" : {
  1764. "IRI-based" : "icqChatID",
  1765. "undefined" : "ICQ chat ID"
  1766. },
  1767. "domain" : "19",
  1768. "comment" : {
  1769. "undefined" : "An ICQ chat ID"
  1770. },
  1771. "attributes" : [ "datatype" ],
  1772. "id" : "69"
  1773. }, {
  1774. "iri" : "http://xmlns.com/foaf/0.1/givenname",
  1775. "baseIri" : "http://xmlns.com/foaf/0.1",
  1776. "range" : "72",
  1777. "annotations" : {
  1778. "isDefinedBy" : [ {
  1779. "identifier" : "isDefinedBy",
  1780. "language" : "undefined",
  1781. "value" : "http://xmlns.com/foaf/0.1/",
  1782. "type" : "iri"
  1783. } ],
  1784. "term_status" : [ {
  1785. "identifier" : "term_status",
  1786. "language" : "undefined",
  1787. "value" : "archaic",
  1788. "type" : "label"
  1789. } ]
  1790. },
  1791. "label" : {
  1792. "IRI-based" : "givenname",
  1793. "undefined" : "Given name"
  1794. },
  1795. "domain" : "19",
  1796. "comment" : {
  1797. "undefined" : "The given name of some person."
  1798. },
  1799. "attributes" : [ "datatype" ],
  1800. "id" : "71"
  1801. }, {
  1802. "iri" : "http://xmlns.com/foaf/0.1/isPrimaryTopicOf",
  1803. "baseIri" : "http://xmlns.com/foaf/0.1",
  1804. "range" : "2",
  1805. "annotations" : {
  1806. "isDefinedBy" : [ {
  1807. "identifier" : "isDefinedBy",
  1808. "language" : "undefined",
  1809. "value" : "http://xmlns.com/foaf/0.1/",
  1810. "type" : "iri"
  1811. } ],
  1812. "term_status" : [ {
  1813. "identifier" : "term_status",
  1814. "language" : "undefined",
  1815. "value" : "stable",
  1816. "type" : "label"
  1817. } ]
  1818. },
  1819. "label" : {
  1820. "IRI-based" : "isPrimaryTopicOf",
  1821. "undefined" : "is primary topic of"
  1822. },
  1823. "superproperty" : [ "38" ],
  1824. "domain" : "39",
  1825. "subproperty" : [ "14", "43" ],
  1826. "comment" : {
  1827. "undefined" : "A document that this thing is the primary topic of."
  1828. },
  1829. "attributes" : [ "object", "inverse functional" ],
  1830. "id" : "15"
  1831. }, {
  1832. "range" : "2",
  1833. "domain" : "32",
  1834. "attributes" : [ "anonymous", "object" ],
  1835. "id" : "73"
  1836. }, {
  1837. "range" : "2",
  1838. "domain" : "70",
  1839. "attributes" : [ "anonymous", "object" ],
  1840. "id" : "74"
  1841. }, {
  1842. "range" : "77",
  1843. "domain" : "76",
  1844. "attributes" : [ "anonymous", "object" ],
  1845. "id" : "75"
  1846. }, {
  1847. "range" : "36",
  1848. "domain" : "12",
  1849. "attributes" : [ "anonymous", "object" ],
  1850. "id" : "78"
  1851. }, {
  1852. "iri" : "http://xmlns.com/foaf/0.1/accountServiceHomepage",
  1853. "baseIri" : "http://xmlns.com/foaf/0.1",
  1854. "range" : "2",
  1855. "annotations" : {
  1856. "isDefinedBy" : [ {
  1857. "identifier" : "isDefinedBy",
  1858. "language" : "undefined",
  1859. "value" : "http://xmlns.com/foaf/0.1/",
  1860. "type" : "iri"
  1861. } ],
  1862. "term_status" : [ {
  1863. "identifier" : "term_status",
  1864. "language" : "undefined",
  1865. "value" : "testing",
  1866. "type" : "label"
  1867. } ]
  1868. },
  1869. "label" : {
  1870. "IRI-based" : "accountServiceHomepage",
  1871. "undefined" : "account service homepage"
  1872. },
  1873. "domain" : "77",
  1874. "comment" : {
  1875. "undefined" : "Indicates a homepage of the service provide for this online account."
  1876. },
  1877. "attributes" : [ "object" ],
  1878. "id" : "79"
  1879. }, {
  1880. "iri" : "http://xmlns.com/foaf/0.1/logo",
  1881. "baseIri" : "http://xmlns.com/foaf/0.1",
  1882. "range" : "19",
  1883. "annotations" : {
  1884. "isDefinedBy" : [ {
  1885. "identifier" : "isDefinedBy",
  1886. "language" : "undefined",
  1887. "value" : "http://xmlns.com/foaf/0.1/",
  1888. "type" : "iri"
  1889. } ],
  1890. "term_status" : [ {
  1891. "identifier" : "term_status",
  1892. "language" : "undefined",
  1893. "value" : "testing",
  1894. "type" : "label"
  1895. } ]
  1896. },
  1897. "label" : {
  1898. "IRI-based" : "logo",
  1899. "undefined" : "logo"
  1900. },
  1901. "domain" : "19",
  1902. "comment" : {
  1903. "undefined" : "A logo representing some thing."
  1904. },
  1905. "attributes" : [ "object", "inverse functional" ],
  1906. "id" : "80"
  1907. }, {
  1908. "range" : "77",
  1909. "domain" : "82",
  1910. "attributes" : [ "anonymous", "object" ],
  1911. "id" : "81"
  1912. }, {
  1913. "iri" : "http://xmlns.com/foaf/0.1/depiction",
  1914. "baseIri" : "http://xmlns.com/foaf/0.1",
  1915. "range" : "32",
  1916. "annotations" : {
  1917. "isDefinedBy" : [ {
  1918. "identifier" : "isDefinedBy",
  1919. "language" : "undefined",
  1920. "value" : "http://xmlns.com/foaf/0.1/",
  1921. "type" : "iri"
  1922. } ],
  1923. "term_status" : [ {
  1924. "identifier" : "term_status",
  1925. "language" : "undefined",
  1926. "value" : "testing",
  1927. "type" : "label"
  1928. } ]
  1929. },
  1930. "label" : {
  1931. "IRI-based" : "depiction",
  1932. "undefined" : "depiction"
  1933. },
  1934. "domain" : "33",
  1935. "subproperty" : [ "83" ],
  1936. "comment" : {
  1937. "undefined" : "A depiction of some thing."
  1938. },
  1939. "attributes" : [ "object" ],
  1940. "id" : "34"
  1941. }, {
  1942. "range" : "77",
  1943. "domain" : "85",
  1944. "attributes" : [ "anonymous", "object" ],
  1945. "id" : "84"
  1946. }, {
  1947. "iri" : "http://xmlns.com/foaf/0.1/family_name",
  1948. "baseIri" : "http://xmlns.com/foaf/0.1",
  1949. "range" : "61",
  1950. "annotations" : {
  1951. "isDefinedBy" : [ {
  1952. "identifier" : "isDefinedBy",
  1953. "language" : "undefined",
  1954. "value" : "http://xmlns.com/foaf/0.1/",
  1955. "type" : "iri"
  1956. } ],
  1957. "term_status" : [ {
  1958. "identifier" : "term_status",
  1959. "language" : "undefined",
  1960. "value" : "archaic",
  1961. "type" : "label"
  1962. } ]
  1963. },
  1964. "label" : {
  1965. "IRI-based" : "family_name",
  1966. "undefined" : "family_name"
  1967. },
  1968. "domain" : "12",
  1969. "comment" : {
  1970. "undefined" : "The family name of some person."
  1971. },
  1972. "attributes" : [ "datatype" ],
  1973. "id" : "86"
  1974. }, {
  1975. "range" : "1",
  1976. "domain" : "12",
  1977. "attributes" : [ "anonymous", "object" ],
  1978. "id" : "87"
  1979. }, {
  1980. "range" : "1",
  1981. "domain" : "11",
  1982. "attributes" : [ "anonymous", "object" ],
  1983. "id" : "88"
  1984. }, {
  1985. "iri" : "http://xmlns.com/foaf/0.1/fundedBy",
  1986. "baseIri" : "http://xmlns.com/foaf/0.1",
  1987. "range" : "19",
  1988. "annotations" : {
  1989. "isDefinedBy" : [ {
  1990. "identifier" : "isDefinedBy",
  1991. "language" : "undefined",
  1992. "value" : "http://xmlns.com/foaf/0.1/",
  1993. "type" : "iri"
  1994. } ],
  1995. "term_status" : [ {
  1996. "identifier" : "term_status",
  1997. "language" : "undefined",
  1998. "value" : "archaic",
  1999. "type" : "label"
  2000. } ]
  2001. },
  2002. "label" : {
  2003. "IRI-based" : "fundedBy",
  2004. "undefined" : "funded by"
  2005. },
  2006. "domain" : "19",
  2007. "comment" : {
  2008. "undefined" : "An organization funding a project or person."
  2009. },
  2010. "attributes" : [ "object" ],
  2011. "id" : "89"
  2012. }, {
  2013. "iri" : "http://xmlns.com/foaf/0.1/title",
  2014. "baseIri" : "http://xmlns.com/foaf/0.1",
  2015. "range" : "91",
  2016. "annotations" : {
  2017. "isDefinedBy" : [ {
  2018. "identifier" : "isDefinedBy",
  2019. "language" : "undefined",
  2020. "value" : "http://xmlns.com/foaf/0.1/",
  2021. "type" : "iri"
  2022. } ],
  2023. "term_status" : [ {
  2024. "identifier" : "term_status",
  2025. "language" : "undefined",
  2026. "value" : "testing",
  2027. "type" : "label"
  2028. } ]
  2029. },
  2030. "label" : {
  2031. "IRI-based" : "title",
  2032. "undefined" : "title"
  2033. },
  2034. "domain" : "19",
  2035. "comment" : {
  2036. "undefined" : "Title (Mr, Mrs, Ms, Dr. etc)"
  2037. },
  2038. "attributes" : [ "datatype" ],
  2039. "id" : "90"
  2040. }, {
  2041. "iri" : "http://xmlns.com/foaf/0.1/accountName",
  2042. "baseIri" : "http://xmlns.com/foaf/0.1",
  2043. "range" : "94",
  2044. "annotations" : {
  2045. "isDefinedBy" : [ {
  2046. "identifier" : "isDefinedBy",
  2047. "language" : "undefined",
  2048. "value" : "http://xmlns.com/foaf/0.1/",
  2049. "type" : "iri"
  2050. } ],
  2051. "term_status" : [ {
  2052. "identifier" : "term_status",
  2053. "language" : "undefined",
  2054. "value" : "testing",
  2055. "type" : "label"
  2056. } ]
  2057. },
  2058. "label" : {
  2059. "IRI-based" : "accountName",
  2060. "undefined" : "account name"
  2061. },
  2062. "domain" : "77",
  2063. "comment" : {
  2064. "undefined" : "Indicates the name (identifier) associated with this online account."
  2065. },
  2066. "attributes" : [ "datatype" ],
  2067. "id" : "93"
  2068. }, {
  2069. "iri" : "http://xmlns.com/foaf/0.1/account",
  2070. "baseIri" : "http://xmlns.com/foaf/0.1",
  2071. "range" : "77",
  2072. "annotations" : {
  2073. "isDefinedBy" : [ {
  2074. "identifier" : "isDefinedBy",
  2075. "language" : "undefined",
  2076. "value" : "http://xmlns.com/foaf/0.1/",
  2077. "type" : "iri"
  2078. } ],
  2079. "term_status" : [ {
  2080. "identifier" : "term_status",
  2081. "language" : "undefined",
  2082. "value" : "testing",
  2083. "type" : "label"
  2084. } ]
  2085. },
  2086. "label" : {
  2087. "IRI-based" : "account",
  2088. "undefined" : "account"
  2089. },
  2090. "domain" : "1",
  2091. "comment" : {
  2092. "undefined" : "Indicates an account held by this agent."
  2093. },
  2094. "attributes" : [ "object" ],
  2095. "id" : "95"
  2096. }, {
  2097. "iri" : "http://xmlns.com/foaf/0.1/jabberID",
  2098. "baseIri" : "http://xmlns.com/foaf/0.1",
  2099. "range" : "60",
  2100. "annotations" : {
  2101. "isDefinedBy" : [ {
  2102. "identifier" : "isDefinedBy",
  2103. "language" : "undefined",
  2104. "value" : "http://xmlns.com/foaf/0.1/",
  2105. "type" : "iri"
  2106. } ],
  2107. "term_status" : [ {
  2108. "identifier" : "term_status",
  2109. "language" : "undefined",
  2110. "value" : "testing",
  2111. "type" : "label"
  2112. } ]
  2113. },
  2114. "label" : {
  2115. "IRI-based" : "jabberID",
  2116. "undefined" : "jabber ID"
  2117. },
  2118. "domain" : "19",
  2119. "comment" : {
  2120. "undefined" : "A jabber ID for something."
  2121. },
  2122. "attributes" : [ "datatype" ],
  2123. "id" : "96"
  2124. }, {
  2125. "range" : "1",
  2126. "domain" : "10",
  2127. "attributes" : [ "anonymous", "object" ],
  2128. "id" : "97"
  2129. }, {
  2130. "iri" : "http://xmlns.com/foaf/0.1/age",
  2131. "baseIri" : "http://xmlns.com/foaf/0.1",
  2132. "range" : "99",
  2133. "annotations" : {
  2134. "isDefinedBy" : [ {
  2135. "identifier" : "isDefinedBy",
  2136. "language" : "undefined",
  2137. "value" : "http://xmlns.com/foaf/0.1/",
  2138. "type" : "iri"
  2139. } ],
  2140. "term_status" : [ {
  2141. "identifier" : "term_status",
  2142. "language" : "undefined",
  2143. "value" : "unstable",
  2144. "type" : "label"
  2145. } ]
  2146. },
  2147. "label" : {
  2148. "IRI-based" : "age",
  2149. "undefined" : "age"
  2150. },
  2151. "domain" : "1",
  2152. "comment" : {
  2153. "undefined" : "The age in years of some agent."
  2154. },
  2155. "attributes" : [ "datatype", "functional" ],
  2156. "id" : "98"
  2157. }, {
  2158. "iri" : "http://xmlns.com/foaf/0.1/homepage",
  2159. "baseIri" : "http://xmlns.com/foaf/0.1",
  2160. "range" : "2",
  2161. "annotations" : {
  2162. "isDefinedBy" : [ {
  2163. "identifier" : "isDefinedBy",
  2164. "language" : "undefined",
  2165. "value" : "http://xmlns.com/foaf/0.1/",
  2166. "type" : "iri"
  2167. } ],
  2168. "term_status" : [ {
  2169. "identifier" : "term_status",
  2170. "language" : "undefined",
  2171. "value" : "stable",
  2172. "type" : "label"
  2173. } ]
  2174. },
  2175. "label" : {
  2176. "IRI-based" : "homepage",
  2177. "undefined" : "homepage"
  2178. },
  2179. "superproperty" : [ "15", "38" ],
  2180. "domain" : "39",
  2181. "comment" : {
  2182. "undefined" : "A homepage for some thing."
  2183. },
  2184. "attributes" : [ "object", "inverse functional" ],
  2185. "id" : "43"
  2186. }, {
  2187. "iri" : "http://xmlns.com/foaf/0.1/tipjar",
  2188. "baseIri" : "http://xmlns.com/foaf/0.1",
  2189. "range" : "2",
  2190. "annotations" : {
  2191. "isDefinedBy" : [ {
  2192. "identifier" : "isDefinedBy",
  2193. "language" : "undefined",
  2194. "value" : "http://xmlns.com/foaf/0.1/",
  2195. "type" : "iri"
  2196. } ],
  2197. "term_status" : [ {
  2198. "identifier" : "term_status",
  2199. "language" : "undefined",
  2200. "value" : "testing",
  2201. "type" : "label"
  2202. } ]
  2203. },
  2204. "label" : {
  2205. "IRI-based" : "tipjar",
  2206. "undefined" : "tipjar"
  2207. },
  2208. "superproperty" : [ "38" ],
  2209. "domain" : "1",
  2210. "comment" : {
  2211. "undefined" : "A tipjar document for this agent, describing means for payment and reward."
  2212. },
  2213. "attributes" : [ "object" ],
  2214. "id" : "41"
  2215. }, {
  2216. "iri" : "http://xmlns.com/foaf/0.1/msnChatID",
  2217. "baseIri" : "http://xmlns.com/foaf/0.1",
  2218. "range" : "46",
  2219. "annotations" : {
  2220. "isDefinedBy" : [ {
  2221. "identifier" : "isDefinedBy",
  2222. "language" : "undefined",
  2223. "value" : "http://xmlns.com/foaf/0.1/",
  2224. "type" : "iri"
  2225. } ],
  2226. "term_status" : [ {
  2227. "identifier" : "term_status",
  2228. "language" : "undefined",
  2229. "value" : "testing",
  2230. "type" : "label"
  2231. } ]
  2232. },
  2233. "label" : {
  2234. "IRI-based" : "msnChatID",
  2235. "undefined" : "MSN chat ID"
  2236. },
  2237. "domain" : "5",
  2238. "comment" : {
  2239. "undefined" : "An MSN chat ID"
  2240. },
  2241. "attributes" : [ "datatype" ],
  2242. "id" : "102"
  2243. }, {
  2244. "iri" : "http://xmlns.com/foaf/0.1/topic_interest",
  2245. "baseIri" : "http://xmlns.com/foaf/0.1",
  2246. "range" : "18",
  2247. "annotations" : {
  2248. "isDefinedBy" : [ {
  2249. "identifier" : "isDefinedBy",
  2250. "language" : "undefined",
  2251. "value" : "http://xmlns.com/foaf/0.1/",
  2252. "type" : "iri"
  2253. } ],
  2254. "term_status" : [ {
  2255. "identifier" : "term_status",
  2256. "language" : "undefined",
  2257. "value" : "testing",
  2258. "type" : "label"
  2259. } ]
  2260. },
  2261. "label" : {
  2262. "IRI-based" : "topic_interest",
  2263. "undefined" : "topic_interest"
  2264. },
  2265. "domain" : "1",
  2266. "comment" : {
  2267. "undefined" : "A thing of interest to this person."
  2268. },
  2269. "attributes" : [ "object" ],
  2270. "id" : "103"
  2271. }, {
  2272. "iri" : "http://xmlns.com/foaf/0.1/aimChatID",
  2273. "baseIri" : "http://xmlns.com/foaf/0.1",
  2274. "range" : "105",
  2275. "annotations" : {
  2276. "isDefinedBy" : [ {
  2277. "identifier" : "isDefinedBy",
  2278. "language" : "undefined",
  2279. "value" : "http://xmlns.com/foaf/0.1/",
  2280. "type" : "iri"
  2281. } ],
  2282. "term_status" : [ {
  2283. "identifier" : "term_status",
  2284. "language" : "undefined",
  2285. "value" : "testing",
  2286. "type" : "label"
  2287. } ]
  2288. },
  2289. "label" : {
  2290. "IRI-based" : "aimChatID",
  2291. "undefined" : "AIM chat ID"
  2292. },
  2293. "domain" : "19",
  2294. "comment" : {
  2295. "undefined" : "An AIM chat ID"
  2296. },
  2297. "attributes" : [ "datatype" ],
  2298. "id" : "104"
  2299. }, {
  2300. "iri" : "http://xmlns.com/foaf/0.1/currentProject",
  2301. "baseIri" : "http://xmlns.com/foaf/0.1",
  2302. "range" : "3",
  2303. "annotations" : {
  2304. "isDefinedBy" : [ {
  2305. "identifier" : "isDefinedBy",
  2306. "language" : "undefined",
  2307. "value" : "http://xmlns.com/foaf/0.1/",
  2308. "type" : "iri"
  2309. } ],
  2310. "term_status" : [ {
  2311. "identifier" : "term_status",
  2312. "language" : "undefined",
  2313. "value" : "testing",
  2314. "type" : "label"
  2315. } ]
  2316. },
  2317. "label" : {
  2318. "IRI-based" : "currentProject",
  2319. "undefined" : "current project"
  2320. },
  2321. "domain" : "12",
  2322. "comment" : {
  2323. "undefined" : "A current project this person works on."
  2324. },
  2325. "attributes" : [ "object" ],
  2326. "id" : "106"
  2327. }, {
  2328. "iri" : "http://xmlns.com/foaf/0.1/skypeID",
  2329. "baseIri" : "http://xmlns.com/foaf/0.1",
  2330. "range" : "22",
  2331. "annotations" : {
  2332. "isDefinedBy" : [ {
  2333. "identifier" : "isDefinedBy",
  2334. "language" : "undefined",
  2335. "value" : "http://xmlns.com/foaf/0.1/",
  2336. "type" : "iri"
  2337. } ],
  2338. "term_status" : [ {
  2339. "identifier" : "term_status",
  2340. "language" : "undefined",
  2341. "value" : "testing",
  2342. "type" : "label"
  2343. } ]
  2344. },
  2345. "label" : {
  2346. "IRI-based" : "skypeID",
  2347. "undefined" : "Skype ID"
  2348. },
  2349. "domain" : "1",
  2350. "comment" : {
  2351. "undefined" : "A Skype ID"
  2352. },
  2353. "attributes" : [ "datatype" ],
  2354. "id" : "107"
  2355. }, {
  2356. "iri" : "http://xmlns.com/foaf/0.1/holdsAccount",
  2357. "baseIri" : "http://xmlns.com/foaf/0.1",
  2358. "range" : "77",
  2359. "annotations" : {
  2360. "isDefinedBy" : [ {
  2361. "identifier" : "isDefinedBy",
  2362. "language" : "undefined",
  2363. "value" : "http://xmlns.com/foaf/0.1/",
  2364. "type" : "iri"
  2365. } ],
  2366. "term_status" : [ {
  2367. "identifier" : "term_status",
  2368. "language" : "undefined",
  2369. "value" : "archaic",
  2370. "type" : "label"
  2371. } ]
  2372. },
  2373. "label" : {
  2374. "IRI-based" : "holdsAccount",
  2375. "undefined" : "account"
  2376. },
  2377. "domain" : "1",
  2378. "comment" : {
  2379. "undefined" : "Indicates an account held by this agent."
  2380. },
  2381. "attributes" : [ "object" ],
  2382. "id" : "108"
  2383. }, {
  2384. "iri" : "http://xmlns.com/foaf/0.1/thumbnail",
  2385. "baseIri" : "http://xmlns.com/foaf/0.1",
  2386. "range" : "32",
  2387. "annotations" : {
  2388. "isDefinedBy" : [ {
  2389. "identifier" : "isDefinedBy",
  2390. "language" : "undefined",
  2391. "value" : "http://xmlns.com/foaf/0.1/",
  2392. "type" : "iri"
  2393. } ],
  2394. "term_status" : [ {
  2395. "identifier" : "term_status",
  2396. "language" : "undefined",
  2397. "value" : "testing",
  2398. "type" : "label"
  2399. } ]
  2400. },
  2401. "label" : {
  2402. "IRI-based" : "thumbnail",
  2403. "undefined" : "thumbnail"
  2404. },
  2405. "domain" : "32",
  2406. "comment" : {
  2407. "undefined" : "A derived thumbnail image."
  2408. },
  2409. "attributes" : [ "object" ],
  2410. "id" : "109"
  2411. }, {
  2412. "iri" : "http://xmlns.com/foaf/0.1/topic",
  2413. "baseIri" : "http://xmlns.com/foaf/0.1",
  2414. "range" : "39",
  2415. "annotations" : {
  2416. "isDefinedBy" : [ {
  2417. "identifier" : "isDefinedBy",
  2418. "language" : "undefined",
  2419. "value" : "http://xmlns.com/foaf/0.1/",
  2420. "type" : "iri"
  2421. } ],
  2422. "term_status" : [ {
  2423. "identifier" : "term_status",
  2424. "language" : "undefined",
  2425. "value" : "testing",
  2426. "type" : "label"
  2427. } ]
  2428. },
  2429. "label" : {
  2430. "IRI-based" : "topic",
  2431. "undefined" : "topic"
  2432. },
  2433. "domain" : "2",
  2434. "comment" : {
  2435. "undefined" : "A topic of some page or document."
  2436. },
  2437. "attributes" : [ "object" ],
  2438. "id" : "40"
  2439. }, {
  2440. "iri" : "http://xmlns.com/foaf/0.1/weblog",
  2441. "baseIri" : "http://xmlns.com/foaf/0.1",
  2442. "range" : "2",
  2443. "annotations" : {
  2444. "isDefinedBy" : [ {
  2445. "identifier" : "isDefinedBy",
  2446. "language" : "undefined",
  2447. "value" : "http://xmlns.com/foaf/0.1/",
  2448. "type" : "iri"
  2449. } ],
  2450. "term_status" : [ {
  2451. "identifier" : "term_status",
  2452. "language" : "undefined",
  2453. "value" : "stable",
  2454. "type" : "label"
  2455. } ]
  2456. },
  2457. "label" : {
  2458. "IRI-based" : "weblog",
  2459. "undefined" : "weblog"
  2460. },
  2461. "superproperty" : [ "38" ],
  2462. "domain" : "1",
  2463. "comment" : {
  2464. "undefined" : "A weblog of some thing (whether person, group, company etc.)."
  2465. },
  2466. "attributes" : [ "object", "inverse functional" ],
  2467. "id" : "42"
  2468. }, {
  2469. "iri" : "http://xmlns.com/foaf/0.1/img",
  2470. "baseIri" : "http://xmlns.com/foaf/0.1",
  2471. "range" : "32",
  2472. "annotations" : {
  2473. "isDefinedBy" : [ {
  2474. "identifier" : "isDefinedBy",
  2475. "language" : "undefined",
  2476. "value" : "http://xmlns.com/foaf/0.1/",
  2477. "type" : "iri"
  2478. } ],
  2479. "term_status" : [ {
  2480. "identifier" : "term_status",
  2481. "language" : "undefined",
  2482. "value" : "testing",
  2483. "type" : "label"
  2484. } ]
  2485. },
  2486. "label" : {
  2487. "IRI-based" : "img",
  2488. "undefined" : "image"
  2489. },
  2490. "superproperty" : [ "34" ],
  2491. "domain" : "12",
  2492. "comment" : {
  2493. "undefined" : "An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage)."
  2494. },
  2495. "attributes" : [ "object" ],
  2496. "id" : "83"
  2497. }, {
  2498. "iri" : "http://xmlns.com/foaf/0.1/birthday",
  2499. "baseIri" : "http://xmlns.com/foaf/0.1",
  2500. "range" : "111",
  2501. "annotations" : {
  2502. "isDefinedBy" : [ {
  2503. "identifier" : "isDefinedBy",
  2504. "language" : "undefined",
  2505. "value" : "http://xmlns.com/foaf/0.1/",
  2506. "type" : "iri"
  2507. } ],
  2508. "term_status" : [ {
  2509. "identifier" : "term_status",
  2510. "language" : "undefined",
  2511. "value" : "unstable",
  2512. "type" : "label"
  2513. } ]
  2514. },
  2515. "label" : {
  2516. "IRI-based" : "birthday",
  2517. "undefined" : "birthday"
  2518. },
  2519. "domain" : "1",
  2520. "comment" : {
  2521. "undefined" : "The birthday of this Agent, represented in mm-dd string form, eg. '12-31'."
  2522. },
  2523. "attributes" : [ "datatype", "functional" ],
  2524. "id" : "110"
  2525. }, {
  2526. "iri" : "http://xmlns.com/foaf/0.1/sha1",
  2527. "baseIri" : "http://xmlns.com/foaf/0.1",
  2528. "range" : "100",
  2529. "annotations" : {
  2530. "isDefinedBy" : [ {
  2531. "identifier" : "isDefinedBy",
  2532. "language" : "undefined",
  2533. "value" : "http://xmlns.com/foaf/0.1/",
  2534. "type" : "iri"
  2535. } ],
  2536. "term_status" : [ {
  2537. "identifier" : "term_status",
  2538. "language" : "undefined",
  2539. "value" : "unstable",
  2540. "type" : "label"
  2541. } ]
  2542. },
  2543. "label" : {
  2544. "IRI-based" : "sha1",
  2545. "undefined" : "sha1sum (hex)"
  2546. },
  2547. "domain" : "2",
  2548. "comment" : {
  2549. "undefined" : "A sha1sum hash, in hex."
  2550. },
  2551. "attributes" : [ "datatype" ],
  2552. "id" : "112"
  2553. }, {
  2554. "iri" : "http://xmlns.com/foaf/0.1/firstName",
  2555. "baseIri" : "http://xmlns.com/foaf/0.1",
  2556. "range" : "68",
  2557. "annotations" : {
  2558. "isDefinedBy" : [ {
  2559. "identifier" : "isDefinedBy",
  2560. "language" : "undefined",
  2561. "value" : "http://xmlns.com/foaf/0.1/",
  2562. "type" : "iri"
  2563. } ],
  2564. "term_status" : [ {
  2565. "identifier" : "term_status",
  2566. "language" : "undefined",
  2567. "value" : "testing",
  2568. "type" : "label"
  2569. } ]
  2570. },
  2571. "label" : {
  2572. "IRI-based" : "firstName",
  2573. "undefined" : "firstName"
  2574. },
  2575. "domain" : "12",
  2576. "comment" : {
  2577. "undefined" : "The first name of a person."
  2578. },
  2579. "attributes" : [ "datatype" ],
  2580. "id" : "113"
  2581. }, {
  2582. "iri" : "http://xmlns.com/foaf/0.1/made",
  2583. "inverse" : "115",
  2584. "baseIri" : "http://xmlns.com/foaf/0.1",
  2585. "range" : "18",
  2586. "annotations" : {
  2587. "isDefinedBy" : [ {
  2588. "identifier" : "isDefinedBy",
  2589. "language" : "undefined",
  2590. "value" : "http://xmlns.com/foaf/0.1/",
  2591. "type" : "iri"
  2592. } ],
  2593. "term_status" : [ {
  2594. "identifier" : "term_status",
  2595. "language" : "undefined",
  2596. "value" : "stable",
  2597. "type" : "label"
  2598. } ]
  2599. },
  2600. "label" : {
  2601. "IRI-based" : "made",
  2602. "undefined" : "made"
  2603. },
  2604. "domain" : "1",
  2605. "comment" : {
  2606. "undefined" : "Something that was made by this agent."
  2607. },
  2608. "attributes" : [ "object" ],
  2609. "id" : "114"
  2610. }, {
  2611. "range" : "12",
  2612. "domain" : "11",
  2613. "attributes" : [ "anonymous", "object" ],
  2614. "id" : "116"
  2615. }, {
  2616. "range" : "12",
  2617. "domain" : "59",
  2618. "attributes" : [ "anonymous", "object" ],
  2619. "id" : "117"
  2620. }, {
  2621. "iri" : "http://xmlns.com/foaf/0.1/familyName",
  2622. "baseIri" : "http://xmlns.com/foaf/0.1",
  2623. "range" : "118",
  2624. "annotations" : {
  2625. "isDefinedBy" : [ {
  2626. "identifier" : "isDefinedBy",
  2627. "language" : "undefined",
  2628. "value" : "http://xmlns.com/foaf/0.1/",
  2629. "type" : "iri"
  2630. } ],
  2631. "term_status" : [ {
  2632. "identifier" : "term_status",
  2633. "language" : "undefined",
  2634. "value" : "testing",
  2635. "type" : "label"
  2636. } ]
  2637. },
  2638. "label" : {
  2639. "IRI-based" : "familyName",
  2640. "undefined" : "familyName"
  2641. },
  2642. "domain" : "12",
  2643. "comment" : {
  2644. "undefined" : "The family name of some person."
  2645. },
  2646. "attributes" : [ "datatype" ],
  2647. "id" : "119"
  2648. }, {
  2649. "range" : "2",
  2650. "domain" : "11",
  2651. "attributes" : [ "anonymous", "object" ],
  2652. "id" : "120"
  2653. }, {
  2654. "range" : "59",
  2655. "domain" : "2",
  2656. "attributes" : [ "anonymous", "object" ],
  2657. "id" : "121"
  2658. }, {
  2659. "iri" : "http://xmlns.com/foaf/0.1/member",
  2660. "baseIri" : "http://xmlns.com/foaf/0.1",
  2661. "range" : "1",
  2662. "annotations" : {
  2663. "isDefinedBy" : [ {
  2664. "identifier" : "isDefinedBy",
  2665. "language" : "undefined",
  2666. "value" : "http://xmlns.com/foaf/0.1/",
  2667. "type" : "iri"
  2668. } ],
  2669. "term_status" : [ {
  2670. "identifier" : "term_status",
  2671. "language" : "undefined",
  2672. "value" : "stable",
  2673. "type" : "label"
  2674. } ]
  2675. },
  2676. "label" : {
  2677. "IRI-based" : "member",
  2678. "undefined" : "member"
  2679. },
  2680. "domain" : "10",
  2681. "comment" : {
  2682. "undefined" : "Indicates a member of a Group"
  2683. },
  2684. "attributes" : [ "object" ],
  2685. "id" : "122"
  2686. }, {
  2687. "iri" : "http://xmlns.com/foaf/0.1/plan",
  2688. "baseIri" : "http://xmlns.com/foaf/0.1",
  2689. "range" : "24",
  2690. "annotations" : {
  2691. "isDefinedBy" : [ {
  2692. "identifier" : "isDefinedBy",
  2693. "language" : "undefined",
  2694. "value" : "http://xmlns.com/foaf/0.1/",
  2695. "type" : "iri"
  2696. } ],
  2697. "term_status" : [ {
  2698. "identifier" : "term_status",
  2699. "language" : "undefined",
  2700. "value" : "testing",
  2701. "type" : "label"
  2702. } ]
  2703. },
  2704. "label" : {
  2705. "IRI-based" : "plan",
  2706. "undefined" : "plan"
  2707. },
  2708. "domain" : "12",
  2709. "comment" : {
  2710. "undefined" : "A .plan comment, in the tradition of finger and '.plan' files."
  2711. },
  2712. "attributes" : [ "datatype" ],
  2713. "id" : "123"
  2714. }, {
  2715. "iri" : "http://xmlns.com/foaf/0.1/mbox",
  2716. "baseIri" : "http://xmlns.com/foaf/0.1",
  2717. "range" : "18",
  2718. "annotations" : {
  2719. "isDefinedBy" : [ {
  2720. "identifier" : "isDefinedBy",
  2721. "language" : "undefined",
  2722. "value" : "http://xmlns.com/foaf/0.1/",
  2723. "type" : "iri"
  2724. } ],
  2725. "term_status" : [ {
  2726. "identifier" : "term_status",
  2727. "language" : "undefined",
  2728. "value" : "stable",
  2729. "type" : "label"
  2730. } ]
  2731. },
  2732. "label" : {
  2733. "IRI-based" : "mbox",
  2734. "undefined" : "personal mailbox"
  2735. },
  2736. "domain" : "1",
  2737. "comment" : {
  2738. "undefined" : "A personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that there is (across time and change) at most one individual that ever has any particular value for foaf:mbox."
  2739. },
  2740. "attributes" : [ "object", "inverse functional" ],
  2741. "id" : "124"
  2742. }, {
  2743. "iri" : "http://xmlns.com/foaf/0.1/surname",
  2744. "baseIri" : "http://xmlns.com/foaf/0.1",
  2745. "range" : "26",
  2746. "annotations" : {
  2747. "isDefinedBy" : [ {
  2748. "identifier" : "isDefinedBy",
  2749. "language" : "undefined",
  2750. "value" : "http://xmlns.com/foaf/0.1/",
  2751. "type" : "iri"
  2752. } ],
  2753. "term_status" : [ {
  2754. "identifier" : "term_status",
  2755. "language" : "undefined",
  2756. "value" : "archaic",
  2757. "type" : "label"
  2758. } ]
  2759. },
  2760. "label" : {
  2761. "IRI-based" : "surname",
  2762. "undefined" : "Surname"
  2763. },
  2764. "domain" : "12",
  2765. "comment" : {
  2766. "undefined" : "The surname of some person."
  2767. },
  2768. "attributes" : [ "datatype" ],
  2769. "id" : "125"
  2770. }, {
  2771. "iri" : "http://xmlns.com/foaf/0.1/myersBriggs",
  2772. "baseIri" : "http://xmlns.com/foaf/0.1",
  2773. "range" : "53",
  2774. "annotations" : {
  2775. "isDefinedBy" : [ {
  2776. "identifier" : "isDefinedBy",
  2777. "language" : "undefined",
  2778. "value" : "http://xmlns.com/foaf/0.1/",
  2779. "type" : "iri"
  2780. } ],
  2781. "term_status" : [ {
  2782. "identifier" : "term_status",
  2783. "language" : "undefined",
  2784. "value" : "testing",
  2785. "type" : "label"
  2786. } ]
  2787. },
  2788. "label" : {
  2789. "IRI-based" : "myersBriggs",
  2790. "undefined" : "myersBriggs"
  2791. },
  2792. "domain" : "12",
  2793. "comment" : {
  2794. "undefined" : "A Myers Briggs (MBTI) personality classification."
  2795. },
  2796. "attributes" : [ "datatype" ],
  2797. "id" : "127"
  2798. }, {
  2799. "iri" : "http://xmlns.com/foaf/0.1/maker",
  2800. "baseIri" : "http://xmlns.com/foaf/0.1",
  2801. "range" : "1",
  2802. "annotations" : {
  2803. "isDefinedBy" : [ {
  2804. "identifier" : "isDefinedBy",
  2805. "language" : "undefined",
  2806. "value" : "http://xmlns.com/foaf/0.1/",
  2807. "type" : "iri"
  2808. } ],
  2809. "term_status" : [ {
  2810. "identifier" : "term_status",
  2811. "language" : "undefined",
  2812. "value" : "stable",
  2813. "type" : "label"
  2814. } ]
  2815. },
  2816. "label" : {
  2817. "IRI-based" : "maker",
  2818. "undefined" : "maker"
  2819. },
  2820. "domain" : "18",
  2821. "comment" : {
  2822. "undefined" : "An agent that made this thing."
  2823. },
  2824. "attributes" : [ "object" ],
  2825. "id" : "115"
  2826. }, {
  2827. "iri" : "http://xmlns.com/foaf/0.1/publications",
  2828. "baseIri" : "http://xmlns.com/foaf/0.1",
  2829. "range" : "2",
  2830. "annotations" : {
  2831. "isDefinedBy" : [ {
  2832. "identifier" : "isDefinedBy",
  2833. "language" : "undefined",
  2834. "value" : "http://xmlns.com/foaf/0.1/",
  2835. "type" : "iri"
  2836. } ],
  2837. "term_status" : [ {
  2838. "identifier" : "term_status",
  2839. "language" : "undefined",
  2840. "value" : "testing",
  2841. "type" : "label"
  2842. } ]
  2843. },
  2844. "label" : {
  2845. "IRI-based" : "publications",
  2846. "undefined" : "publications"
  2847. },
  2848. "domain" : "12",
  2849. "comment" : {
  2850. "undefined" : "A link to the publications of this person."
  2851. },
  2852. "attributes" : [ "object" ],
  2853. "id" : "128"
  2854. }, {
  2855. "iri" : "http://xmlns.com/foaf/0.1/workplaceHomepage",
  2856. "baseIri" : "http://xmlns.com/foaf/0.1",
  2857. "range" : "2",
  2858. "annotations" : {
  2859. "isDefinedBy" : [ {
  2860. "identifier" : "isDefinedBy",
  2861. "language" : "undefined",
  2862. "value" : "http://xmlns.com/foaf/0.1/",
  2863. "type" : "iri"
  2864. } ],
  2865. "term_status" : [ {
  2866. "identifier" : "term_status",
  2867. "language" : "undefined",
  2868. "value" : "testing",
  2869. "type" : "label"
  2870. } ]
  2871. },
  2872. "label" : {
  2873. "IRI-based" : "workplaceHomepage",
  2874. "undefined" : "workplace homepage"
  2875. },
  2876. "domain" : "12",
  2877. "comment" : {
  2878. "undefined" : "A workplace homepage of some person; the homepage of an organization they work for."
  2879. },
  2880. "attributes" : [ "object" ],
  2881. "id" : "129"
  2882. } ]
  2883. }