1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488
|
aair http://xmlns.notu.be/aair# 20111028
aapi http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema# 20111028
abc http://www.metadata.net/harmony/ABCSchemaV5Commented.rdf# 20111028
ac http://umbel.org/umbel/ac/ 20111028
acc http://purl.org/NET/acc# 20111028
acl http://www.w3.org/ns/auth/acl# 20111028
acm http://www.rkbexplorer.com/ontologies/acm# 20111028
act http://www.w3.org/2007/rif-builtin-action# 20111028
ad http://schemas.talis.com/2005/address/schema# 20111028
address http://schemas.talis.com/2005/address/schema# 20111028
admin http://webns.net/mvcb/ 20111028
admingeo http://data.ordnancesurvey.co.uk/ontology/admingeo/ 20111028
af http://purl.org/ontology/af/ 20111028
affy http://www.affymetrix.com/community/publications/affymetrix/tmsplice# 20111028
afn http://jena.hpl.hp.com/ARQ/function# 20111028
agent http://eulersharp.sourceforge.net/2003/03swap/agent# 20111028
agents http://eulersharp.sourceforge.net/2003/03swap/agent# 20111028
agetec http://www.agetec.org/ 20111028
aifb http://www.aifb.kit.edu/id/ 20111028
aiiso http://purl.org/vocab/aiiso/schema# 20111028
aims http://aims.fao.org/aos/common/ 20111028
air http://dig.csail.mit.edu/TAMI/2007/amord/air# 20111028
airport http://www.daml.org/2001/10/html/airport-ont# 20111028
akt http://www.aktors.org/ontology/portal# 20111028
akts http://www.aktors.org/ontology/support# 20111028
am http://vocab.deri.ie/am# 20111028
anca http://users.utcluj.ro/~raluca/rdf_ontologies_ralu/ralu_modified_ontology_pizzas2_0# 20111028
aneo http://akonadi-project.org/ontologies/aneo# 20111028
ann http://www.w3.org/2000/10/annotation-ns# 20111028
ao http://purl.org/ontology/ao/core# 20111028
arch http://purl.org/archival/vocab/arch# 20111028
artstor http://simile.mit.edu/2003/10/ontologies/artstor# 20111028
ass http://uptheasset.org/ontology# 20111028
atom http://www.w3.org/2005/Atom/ 20111028
atomix http://buzzword.org.uk/rdf/atomix# 20111028
atomowl http://bblfish.net/work/atom-owl/2006-06-06/# 20111028
audio http://purl.org/media/audio# 20111028
awol http://bblfish.net/work/atom-owl/2006-06-06/# 20111028
b2rpubchem http://bio2rdf.org/ns/ns/ns/pubchem# 20111028
bcnbio http://datos.bcn.cl/ontologies/bcn-biographies# 20111028
bcncon http://datos.bcn.cl/ontologies/bcn-congress# 20111028
bcngeo http://datos.bcn.cl/ontologies/bcn-geographics# 20111028
bcnnorms http://datos.bcn.cl/ontologies/bcn-norms# 20111028
bib http://zeitkunst.org/bibtex/0.1/bibtex.owl# 20111028
biblio http://purl.org/net/biblio# 20111028
bibo http://purl.org/ontology/bibo/ 20111028
bibtex http://purl.oclc.org/NET/nknouf/ns/bibtex# 20111028
bill http://www.rdfabout.com/rdf/schema/usbill/ 20111028
bio http://purl.org/vocab/bio/0.1/ 20111028
bio2rdf http://bio2rdf.org/ 20111028
biocore http://bio2rdf.org/core: 20111028
biol http://purl.org/NET/biol/ns# 20111028
biordf http://purl.org/net/biordfmicroarray/ns# 20111028
bioskos http://eulersharp.sourceforge.net/2003/03swap/bioSKOSSchemes# 20111028
blt http://data.bl.uk/schema/bibliographic# 20111028
book http://purl.org/NET/book/vocab# 20111028
bookmark http://www.w3.org/2002/01/bookmark# 20111028
botany http://purl.org/NET/biol/botany# 20111028
bsbm http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/ 20111028
c4dm http://purl.org/NET/c4dm/event.owl# 20111028
c4n http://vocab.deri.ie/c4n# 20111028
c4o http://purl.org/spar/c4o/ 20111028
cal http://www.w3.org/2002/12/cal/ical# 20111028
campsite http://www.openlinksw.com/campsites/schema# 20111028
card http://www.ashutosh.com/test/ 20111028
care http://eulersharp.sourceforge.net/2003/03swap/care# 20111028
cbase http://ontologycentral.com/2010/05/cb/vocab# 20111028
cc http://creativecommons.org/ns# 20111028
ccard http://purl.org/commerce/creditcard# 20111028
cco http://purl.org/ontology/cco/core# 20111028
ccom http://purl.org/ontology/cco/mappings# 20111028
cdm http://purl.org/twc/ontology/cdm.owl# 20111028
ceo http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1# 20111028
cert http://www.w3.org/ns/auth/cert# 20111028
cfp http://sw.deri.org/2005/08/conf/cfp.owl# 20111028
chebi http://bio2rdf.org/chebi: 20111028
chord http://purl.org/ontology/chord/ 20111028
cito http://purl.org/net/cito/ 20111028
cld http://purl.org/cld/terms/ 20111028
climb http://climb.dataincubator.org/vocabs/climb/ 20111028
clineva http://www.agfa.com/w3c/2009/clinicalEvaluation# 20111028
clinproc http://www.agfa.com/w3c/2009/clinicalProcedure# 20111028
cmo http://purl.org/twc/ontologies/cmo.owl# 20111028
cmp http://www.ontologydesignpatterns.org/cp/owl/componency.owl# 20111028
cnt http://www.w3.org/2008/content# 20111028
co http://purl.org/ontology/co/core# 20111028
code http://telegraphis.net/ontology/measurement/code# 20111028
coeus http://bioinformatics.ua.pt/coeus/ 20111028
coin http://purl.org/court/def/2009/coin# 20111028
com http://purl.org/commerce# 20111028
commerce http://purl.org/commerce# 20111028
common http://www.w3.org/2007/uwa/context/common.owl# 20111028
commons http://commons.psi.enakting.org/def/ 20111028
compass http://purl.org/net/compass# 20111028
con http://www.w3.org/2000/10/swap/pim/contact# 20111028
conserv http://conserv.deri.ie/ontology# 20111028
contact http://www.w3.org/2000/10/swap/pim/contact# 20111028
content http://purl.org/rss/1.0/modules/content/ 20111028
conv http://purl.org/twc/vocab/conversion/ 20111028
conversion http://purl.org/twc/vocab/conversion/ 20111028
coo http://purl.org/coo/ns# 20111028
copyright http://rhizomik.net/ontologies/2008/05/copyrightonto.owl# 20111028
cordis http://www4.wiwiss.fu-berlin.de/cordis/resource/cordis/ 20111028
core http://vivoweb.org/ontology/core# 20111028
coref http://www.rkbexplorer.com/ontologies/coref# 20111028
cos http://www.inria.fr/acacia/corese# 20111028
countries http://eulersharp.sourceforge.net/2003/03swap/countries# 20111028
courseware http://courseware.rkbexplorer.com/ontologies/courseware# 20111028
cpm http://catalogus-professorum.org/cpm/ 20111028
cpv http://purl.org/weso/cpv/ 20111028
crm http://purl.org/NET/cidoc-crm/core# 20111028
crypto http://www.w3.org/2000/10/swap/crypto# 20111028
cs http://purl.org/vocab/changeset/schema# 20111028
ct http://data.linkedct.org/resource/linkedct/ 20111028
ctag http://commontag.org/ns# 20111028
cube http://purl.org/linked-data/cube# 20111028
custom http://www.openrdf.org/config/sail/custom# 20111028
cv http://rdfs.org/resume-rdf/ 20111028
cvbase http://purl.org/captsolo/resume-rdf/0.2/base# 20111028
cyc http://sw.opencyc.org/concept/ 20111028
cycann http://sw.cyc.com/CycAnnotations_v1# 20111028
d2rq http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1# 20111028
dady http://purl.org/NET/dady# 20111028
daia http://purl.org/ontology/daia/ 20111028
dailymed http://www4.wiwiss.fu-berlin.de/dailymed/resource/dailymed/ 20111028
daml http://www.daml.org/2001/03/daml+oil# 20111028
dawgt http://www.w3.org/2001/sw/DataAccess/tests/test-dawg# 20111028
days http://ontologi.es/days# 20111028
dayta http://dayta.me/resource# 20111028
dblp http://www4.wiwiss.fu-berlin.de/dblp/terms.rdf# 20111028
dbo http://dbpedia.org/ontology/ 20111028
dbp http://dbpedia.org/property/ 20111028
dbpedia http://dbpedia.org/resource/ 20111028
dbpediaowl http://dbpedia.org/ontology/ 20111028
dbpp http://dbpedia.org/property/ 20111028
dbpprop http://dbpedia.org/property/ 20111028
dbprop http://dbpedia.org/property/ 20111028
dbptmpl http://dbpedia.org/resource/Template: 20111028
dbr http://dbpedia.org/resource/ 20111028
dc http://purl.org/dc/elements/1.1/ 20111028
dc11 http://purl.org/dc/elements/1.1/ 20111028
dcam http://purl.org/dc/dcam/ 20111028
dcat http://www.w3.org/ns/dcat# 20111028
dcmit http://purl.org/dc/dcmitype/ 20111028
dcmitype http://purl.org/dc/dcmitype/ 20111028
dcn http://www.w3.org/2007/uwa/context/deliverycontext.owl# 20111028
dcq http://purl.org/dc/terms/ 20111028
dct http://purl.org/dc/terms/ 20111028
dcterm http://purl.org/dc/terms/ 20111028
dcterms http://purl.org/dc/terms/ 20111028
dctype http://purl.org/dc/dcmitype/ 20111028
ddc http://purl.org/NET/decimalised# 20111028
ddl http://purl.org/vocab/riro/ddl# 20111028
decl http://www.linkedmodel.org/1.0/schema/decl# 20111028
derecho http://purl.org/derecho# 20111028
dgfoaf http://west.uni-koblenz.de/ontologies/2010/07/dgfoaf.owl# 20111028
dgtwc http://data-gov.tw.rpi.edu/2009/data-gov-twc.rdf# 20111028
dir http://schemas.talis.com/2005/dir/schema# 20111028
disease http://www.agfa.com/w3c/2009/humanDisorder# 20111028
diseasome http://www4.wiwiss.fu-berlin.de/diseasome/resource/diseasome/ 20111028
dnr http://www.dotnetrdf.org/configuration# 20111028
doac http://ramonantonio.net/doac/0.1/# 20111028
doap http://usefulinc.com/ns/doap# 20111028
doc http://www.w3.org/2000/10/swap/pim/doc# 20111028
doclist http://www.junkwork.net/xml/DocumentList# 20111028
drug http://www.agfa.com/w3c/2009/drugTherapy# 20111028
drugbank http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugbank/ 20111028
dtype http://www.linkedmodel.org/schema/dtype# 20111028
dul http://www.loa-cnr.it/ontologies/DUL.owl# 20111028
dummy http://hello.com/ 20111028
dv http://rdf.data-vocabulary.org/# 20111028
ean http://openean.kaufkauf.net/id/ 20111028
earl http://www.w3.org/ns/earl# 20111028
eat http://www.awesomesauce.net/urmom/ 20111028
eco http://www.ebusiness-unibw.org/ontologies/eclass/5.1.4/# 20111028
ecs http://rdf.ecs.soton.ac.uk/ontology/ecs# 20111028
edam http://purl.bioontology.org/ontology/EDAM/ 20111028
edm http://www.europeana.eu/schemas/edm/ 20111028
eg http://eulergui.sourceforge.net/engine.owl# 20111028
elog http://eulersharp.sourceforge.net/2003/03swap/log-rules# 20111028
enc http://www.w3.org/2001/04/xmlenc# 20111028
environ http://eulersharp.sourceforge.net/2003/03swap/environment# 20111028
es http://eulersharp.sourceforge.net/2003/03swap/log-rules# 20111028
esd http://def.esd.org.uk/ 20111028
eu http://eulersharp.sourceforge.net/2003/03swap/log-rules# 20111028
eui http://institutions.publicdata.eu/# 20111028
event http://purl.org/NET/c4dm/event.owl# 20111028
events http://eulersharp.sourceforge.net/2003/03swap/event# 20111028
evopat http://ns.aksw.org/Evolution/ 20111028
evset http://dsnotify.org/vocab/eventset/0.1/ 20111028
ex http://example.com/ 20111028
exif http://www.w3.org/2003/12/exif/ns# 20111028
eye http://jena.hpl.hp.com/Eyeball# 20111028
ezcontext http://ontologies.ezweb.morfeo-project.org/ezcontext/ns# 20111028
eztag http://ontologies.ezweb.morfeo-project.org/eztag/ns# 20111028
fab http://purl.org/fab/ns# 20111028
fabio http://purl.org/spar/fabio# 20111028
factbook http://www4.wiwiss.fu-berlin.de/factbook/ns# 20111028
fb http://rdf.freebase.com/ns/ 20111028
fc http://www.freeclass.eu/freeclass_v1# 20111028
fct http://openlinksw.com/services/facets/1.0/ 20111028
fec http://www.rdfabout.com/rdf/schema/usfec/ 20111028
fed http://www.openrdf.org/config/sail/federation# 20111028
fingal http://vocab.deri.ie/fingal# 20111028
fn http://www.w3.org/2005/xpath-functions# 20111028
foaf http://xmlns.com/foaf/0.1/ 20111028
formats http://www.w3.org/ns/formats/ 20111028
frbr http://purl.org/vocab/frbr/core# 20111028
frbrcore http://purl.org/vocab/frbr/core# 20111028
frbre http://purl.org/vocab/frbr/extended# 20111028
freebase http://rdf.freebase.com/ns/ 20111028
fresnel http://www.w3.org/2004/09/fresnel# 20111028
frir http://purl.org/twc/ontology/frir.owl# 20111028
game http://data.totl.net/game/ 20111028
gazetteer http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/ 20111028
gbv http://purl.org/ontology/gbv/ 20111028
gc http://www.oegov.org/core/owl/gc# 20111028
gd http://rdf.data-vocabulary.org/# 20111028
gelo http://krauthammerlab.med.yale.edu/ontologies/gelo# 20111028
gen http://www.w3.org/2006/gen/ont# 20111028
genab http://eulersharp.sourceforge.net/2003/03swap/genomeAbnormality# 20111028
geo http://www.w3.org/2003/01/geo/wgs84_pos# 20111028
geodata http://sws.geonames.org/ 20111028
geoes http://geo.linkeddata.es/resource/ 20111028
geographis http://telegraphis.net/ontology/geography/geography# 20111028
geonames http://www.geonames.org/ontology# 20111028
geospecies http://rdf.geospecies.org/ont/geospecies# 20111028
geovocab http://geovocab.org/ 20111028
gesis http://lod.gesis.org/lodpilot/ALLBUS/vocab.rdf# 20111028
giving http://ontologi.es/giving# 20111028
gml http://www.opengis.net/gml/ 20111028
gn http://www.geonames.org/ontology# 20111028
go http://www.geneontology.org/go# 20111028
gob http://purl.org/ontology/last-fm/ 20111028
gold http://purl.org/linguistics/gold/ 20111028
govtrackus http://www.rdfabout.com/rdf/usgov/geo/us/ 20111028
govwild http://govwild.org/ontology/GWOntology.owl# 20111028
gpt http://purl.org/vocab/riro/gpt# 20111028
gr http://purl.org/goodrelations/v1# 20111028
granatum http://chem.deri.ie/granatum/ 20111028
grddl http://www.w3.org/2003/g/data-view# 20111028
greg http://kasei.us/about/foaf.xrdf# 20111028
gridworks http://purl.org/net/opmv/types/gridworks# 20111028
gv http://rdf.data-vocabulary.org/# 20111028
h5 http://buzzword.org.uk/rdf/h5# 20111028
hard http://www.w3.org/2007/uwa/context/hardware.owl# 20111028
harrisons http://harrisons.cc/ 20111028
hartigprov http://purl.org/net/provenance/ns# 20111028
hcard http://purl.org/uF/hCard/terms/ 20111028
hcterms http://purl.org/uF/hCard/terms/ 20111028
healthcare http://www.agfa.com/w3c/2009/healthCare# 20111028
hemogram http://www.agfa.com/w3c/2009/hemogram# 20111028
hints2005 http://purl.org/twc/cabig/model/HINTS2005-1.owl# 20111028
hlisting http://sindice.com/hlisting/0.1/ 20111028
hospital http://www.agfa.com/w3c/2009/hospital# 20111028
http http://www.w3.org/2006/http# 20111028
httph http://www.w3.org/2007/ont/httph# 20111028
httpvoc http://www.w3.org/2006/http# 20111028
human http://eulersharp.sourceforge.net/2003/03swap/human# 20111028
humanbody http://eulersharp.sourceforge.net/2003/03swap/humanBody# 20111028
iao http://purl.obolibrary.org/obo/iao.owl# 20111028
ibis http://purl.org/ibis# 20111028
ical http://www.w3.org/2002/12/cal/ical# 20111028
imm http://schemas.microsoft.com/imm/ 20111028
imreg http://www.w3.org/2004/02/image-regions# 20111028
infection http://www.agfa.com/w3c/2009/infectiousDisorder# 20111028
ir http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl# 20111028
ire http://www.ontologydesignpatterns.org/cpont/ire.owl# 20111028
iron http://purl.org/ontology/iron# 20111028
irrl http://www.ontologydesignpatterns.org/cp/owl/informationobjectsandrepresentationlanguages.owl# 20111028
irw http://www.ontologydesignpatterns.org/ont/web/irw.owl# 20111028
is http://purl.org/ontology/is/core# 20111028
isi http://purl.org/ontology/is/inst/ 20111028
isq http://purl.org/ontology/is/quality/ 20111028
ist http://purl.org/ontology/is/types/ 20111028
iswc http://annotation.semanticweb.org/2004/iswc# 20111028
java http://www.w3.org/2007/uwa/context/java.owl# 20111028
jdbc http://d2rq.org/terms/jdbc/ 20111028
kb http://deductions.sf.net/ontology/knowledge_base.owl# 20111028
kontakt http://richard.cyganiak.de/ 20111028
kw http://kwantu.net/kw/ 20111028
kwijibo http://kwijibo.talis.com/ 20111028
label http://purl.org/net/vocab/2004/03/label# 20111028
lang http://ontologi.es/lang/core# 20111028
languages http://eulersharp.sourceforge.net/2003/03swap/languages# 20111028
lark1 http://users.utcluj.ro/~raluca/ontology/Ontology1279614123500.owl# 20111028
lastfm http://purl.org/ontology/last-fm/ 20111028
ldap http://purl.org/net/ldap/ 20111028
lfm http://purl.org/ontology/last-fm/ 20111028
lfn http://www.dotnetrdf.org/leviathan# 20111028
lgd http://linkedgeodata.org/ontology/ 20111028
lgdo http://linkedgeodata.org/ontology/ 20111028
lgv http://linkedgeodata.org/ontology/ 20111028
lib http://schemas.talis.com/2005/library/schema# 20111028
lifecycle http://purl.org/vocab/lifecycle/schema# 20111028
like http://ontologi.es/like# 20111028
lingvoj http://www.lingvoj.org/ontology# 20111028
link http://www.w3.org/2006/link# 20111028
linkedct http://data.linkedct.org/resource/linkedct/ 20111028
linkedmdb http://data.linkedmdb.org/sparql/ 20111028
list http://www.w3.org/2000/10/swap/list# 20111028
loc http://www.w3.org/2007/uwa/context/location.owl# 20111028
lod2 http://lod2.eu/schema/ 20111028
lodac http://lod.ac/ns/lodac# 20111028
lode http://linkedevents.org/ontology/ 20111028
log http://www.w3.org/2000/10/swap/log# 20111028
lom http://ltsc.ieee.org/rdf/lomv1p0/lom# 20111028
lomvoc http://ltsc.ieee.org/rdf/lomv1p0/vocabulary# 20111028
lotico http://www.lotico.com/resource/ 20111028
loticoowl http://www.lotico.com/ontology/ 20111028
lp http://launchpad.net/rdf/launchpad# 20111028
lt http://diplomski.nelakolundzija.org/LTontology.rdf# 20111028
lvont http://lexvo.org/ontology# 20111028
lx http://purl.org/NET/lx# 20111028
ma http://www.w3.org/ns/ma-ont# 20111028
madsrdf http://www.loc.gov/mads/rdf/v1# 20111028
malignneo http://www.agfa.com/w3c/2009/malignantNeoplasm# 20111028
math http://www.w3.org/2000/10/swap/math# 20111028
media http://purl.org/media# 20111028
meetup http://www.lotico.com/meetup/ 20111028
mei http://www.music-encoding.org/ns/mei/ 20111028
memo http://ontologies.smile.deri.ie/2009/02/27/memo# 20111028
meta http://www.openrdf.org/rdf/2009/metadata# 20111028
meteo http://purl.org/ns/meteo# 20111028
mf http://poshrdf.org/ns/mf# 20111028
mit http://purl.org/ontology/mo/mit# 20111028
mo http://purl.org/ontology/mo/ 20111028
moat http://moat-project.org/ns# 20111028
money http://purl.org/net/rdf-money/ 20111028
movie http://data.linkedmdb.org/resource/movie/ 20111028
ms http://purl.org/obo/owl/MS# 20111028
mte http://nl.ijs.si/ME/owl/ 20111028
mtecore http://purl.org/olia/mte/multext-east.owl# 20111028
mu http://www.kanzaki.com/ns/music# 20111028
muo http://purl.oclc.org/NET/muo/muo# 20111028
music http://musicontology.com/ 20111028
musim http://purl.org/ontology/similarity/ 20111028
mygrid http://www.mygrid.org.uk/ontology# 20111028
myspace http://purl.org/ontology/myspace# 20111028
myspo http://purl.org/ontology/myspace# 20111028
mysql http://web-semantics.org/ns/mysql/ 20111028
name http://example.org/name# 20111028
nao http://www.semanticdesktop.org/ontologies/2007/08/15/nao# 20111028
ncal http://www.semanticdesktop.org/ontologies/2007/04/02/ncal# 20111028
nco http://www.semanticdesktop.org/ontologies/2007/03/22/nco# 20111028
ne http://umbel.org/umbel/ne/ 20111028
net http://www.w3.org/2007/uwa/context/network.owl# 20111028
nexif http://www.semanticdesktop.org/ontologies/2007/05/10/nexif# 20111028
nfo http://www.semanticdesktop.org/ontologies/2007/03/22/nfo# 20111028
ngeo http://geovocab.org/geometry# 20111028
nid3 http://www.semanticdesktop.org/ontologies/2007/05/10/nid3# 20111028
nie http://www.semanticdesktop.org/ontologies/2007/01/19/nie# 20111028
nmo http://www.semanticdesktop.org/ontologies/2007/03/22/nmo# 20111028
nndsr http://semanticdiet.com/schema/usda/nndsr/ 20111028
nocal http://vocab.deri.ie/nocal# 20111028
nrl http://www.semanticdesktop.org/ontologies/2007/08/15/nrl# 20111028
nsa http://multimedialab.elis.ugent.be/organon/ontologies/ninsuna# 20111028
nt http://ns.inria.fr/nicetag/2010/09/09/voc# 20111028
nuts http://nuts.psi.enakting.org/id/BE335/doc/ 20111028
nytimes http://data.nytimes.com/elements/ 20111028
oat http://openlinksw.com/schemas/oat/ 20111028
oauth http://demiblog.org/vocab/oauth# 20111028
obj http://www.openrdf.org/rdf/2009/object# 20111028
obo http://purl.obolibrary.org/obo/ 20111028
oboro http://obofoundry.org/ro/ro.owl# 20111028
oboso http://purl.org/obo/owl/SO# 20111028
oc http://opencoinage.org/rdf/ 20111028
odp http://ontologydesignpatterns.org/ 20111028
og http://opengraphprotocol.org/schema/ 20111028
ogp http://ogp.me/ns# 20111028
ok http://okkam.org/terms# 20111028
okkam http://models.okkam.org/ENS-core-vocabulary# 20111028
olia http://purl.org/olia/olia.owl# 20111028
olo http://purl.org/ontology/olo/core# 20111028
omb http://purl.org/ontomedia/ext/common/being# 20111028
omc http://purl.org/ontomedia/ext/common/bestiary# 20111028
ome http://purl.org/ontomedia/core/expression# 20111028
omm http://purl.org/ontomedia/core/media# 20111028
omp http://purl.org/ontomedia/ext/common/profession# 20111028
omt http://purl.org/ontomedia/ext/common/trait# 20111028
oo http://purl.org/openorg/ 20111028
openlinks http://www.openlinksw.com/schemas/virtrdf# 20111028
opensearch http://a9.com/-/spec/opensearch/1.1/ 20111028
oper http://sweet.jpl.nasa.gov/2.0/mathOperation.owl# 20111028
opm http://openprovenance.org/ontology# 20111028
opmv http://purl.org/net/opmv/ns# 20111028
opo http://online-presence.net/opo/ns# 20111028
opus http://lsdis.cs.uga.edu/projects/semdis/opus# 20111028
opwn http://www.ontologyportal.org/WordNet.owl# 20111028
ore http://www.openarchives.org/ore/terms/ 20111028
org http://www.w3.org/ns/org# 20111028
organism http://eulersharp.sourceforge.net/2003/03swap/organism# 20111028
organiz http://eulersharp.sourceforge.net/2003/03swap/organization# 20111028
os http://www.w3.org/2000/10/swap/os# 20111028
osag http://www.ordnancesurvey.co.uk/ontology/AdministrativeGeography/v2.0/AdministrativeGeography.rdf# 20111028
osgb http://data.ordnancesurvey.co.uk/id/ 20111028
osoc http://web-semantics.org/ns/opensocial# 20111028
osukdt http://www.ordnancesurvey.co.uk/ontology/Datatypes.owl# 20111028
out http://ontologies.hypios.com/out# 20111028
ov http://open.vocab.org/terms/ 20111028
overheid http://standaarden.overheid.nl/owms/ 20111028
owl http://www.w3.org/2002/07/owl# 20111028
owlim http://www.ontotext.com/trree/owlim# 20111028
owls http://www.daml.org/services/owl-s/1.2/Service.owl# 20111028
owlse http://www.daml.org/services/owl-s/1.2/generic/Expression.owl# 20111028
p20 http://zbw.eu/beta/p20/vocab/ 20111028
p3p http://www.w3.org/2002/01/p3prdfv1# 20111028
payment http://reference.data.gov.uk/def/payment# 20111028
pbo http://purl.org/ontology/pbo/core# 20111028
pc http://purl.org/opendata-cz/public-contracts# 20111028
pdo http://ontologies.smile.deri.ie/pdo# 20111028
pgterms http://www.gutenberg.org/2009/pgterms/ 20111028
phil http://philosurfical.open.ac.uk/ontology/philosurfical.owl/ 20111028
phss http://ns.poundhill.com/phss/1.0/ 20111028
pimo http://www.semanticdesktop.org/ontologies/2007/11/01/pimo# 20111028
ping http://purl.org/net/pingback/ 20111028
place http://purl.org/ontology/places/ 20111028
play http://uriplay.org/spec/ontology/# 20111028
plink http://buzzword.org.uk/rdf/personal-link-types# 20111028
pmlj http://inference-web.org/2.0/pml-justification.owl# 20111028
pmlp http://inference-web.org/2.0/pml-provenance.owl# 20111028
pmlr http://inference-web.org/2.0/pml-relation.owl# 20111028
pmlt http://inference-web.org/2.0/pml-trust.owl# 20111028
pmt http://tipsy.googlecode.com/svn/trunk/vocab/pmt# 20111028
pns http://data.press.net/ontology/stuff/ 20111028
po http://purl.org/ontology/po/ 20111028
pobo http://purl.obolibrary.org/obo/ 20111028
pois http://purl.oclc.org/POIS/vcblr# 20111028
politico http://www.rdfabout.com/rdf/schema/politico/ 20111028
pom http://maven.apache.org/POM/4.0.0# 20111028
pos http://www.w3.org/2003/01/geo/wgs84_pos# 20111028
posh http://poshrdf.org/ns/posh/ 20111028
postcode http://data.ordnancesurvey.co.uk/id/postcodeunit/ 20111028
powder http://www.w3.org/2007/05/powder# 20111028
ppo http://vocab.deri.ie/ppo# 20111028
pr http://ontologi.es/profiling# 20111028
prism http://prismstandard.org/namespaces/1.2/basic/ 20111028
prissma http://ns.inria.fr/prissma/v1# 20111028
prj http://purl.org/stuff/project/ 20111028
product http://purl.org/commerce/product# 20111028
profiling http://ontologi.es/profiling# 20111028
prog http://purl.org/prog/ 20111028
prot http://www.proteinontology.info/po.owl# 20111028
protege http://protege.stanford.edu/system# 20111028
protons http://proton.semanticweb.org/2005/04/protons# 20111028
prov http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/ProvenanceOntology.owl# 20111028
provenir http://knoesis.wright.edu/provenir/provenir.owl# 20111028
prv http://purl.org/net/provenance/ns# 20111028
prvr http://purl.org/ontology/prv/rules# 20111028
prvtypes http://purl.org/net/provenance/types# 20111028
ps http://purl.org/payswarm# 20111028
psh http://psh.techlib.cz/skos/ 20111028
psych http://purl.org/vocab/psychometric-profile/ 20111028
pto http://www.productontology.org/id/ 20111028
ptr http://www.w3.org/2009/pointers# 20111028
puc http://purl.org/NET/puc# 20111028
puelia http://kwijibo.talis.com/vocabs/puelia# 20111028
push http://www.w3.org/2007/uwa/context/push.owl# 20111028
qb http://purl.org/linked-data/cube# 20111028
qdoslf http://foaf.qdos.com/lastfm/schema/ 20111028
quak http://dev.w3.org/cvsweb/2000/quacken/vocab# 20111028
quantities http://eulersharp.sourceforge.net/2003/03swap/quantitiesExtension# 20111028
qudt http://qudt.org/1.1/schema/qudt# 20111028
r2r http://www4.wiwiss.fu-berlin.de/bizer/r2r/ 20111028
rail http://ontologi.es/rail/vocab# 20111028
rdacarrier http://rdvocab.info/termList/RDACarrierType/ 20111028
rdacontent http://rdvocab.info/termList/RDAContentType/ 20111028
rdamedia http://rdvocab.info/termList/RDAMediaType/ 20111028
rdb http://www.dbs.cs.uni-duesseldorf.de/RDF/relational# 20111028
rdf http://www.w3.org/1999/02/22-rdf-syntax-ns# 20111028
rdfa http://www.w3.org/ns/rdfa# 20111028
rdfdata http://rdf.data-vocabulary.org/rdf.xml# 20111028
rdfdf http://www.openlinksw.com/virtrdf-data-formats# 20111028
rdfg http://www.w3.org/2004/03/trix/rdfg-1/ 20111028
rdfs http://www.w3.org/2000/01/rdf-schema# 20111028
rdo http://purl.org/rdo/ns# 20111028
re http://www.w3.org/2000/10/swap/reason# 20111028
rec http://purl.org/ontology/rec/core# 20111028
reco http://purl.org/reco# 20111028
ref http://purl.org/vocab/relationship/ 20111028
rei http://www.w3.org/2004/06/rei# 20111028
rel http://purl.org/vocab/relationship/ 20111028
remus http://www.semanticweb.org/ontologies/2010/6/Ontology1279614123500.owl# 20111028
rep http://www.openrdf.org/config/repository# 20111028
req http://ns.softwiki.de/req/ 20111028
res http://www.w3.org/2005/sparql-results# 20111028
resex http://resex.rkbexplorer.com/ontologies/resex# 20111028
resist http://www.rkbexplorer.com/ontologies/resist# 20111028
resource http://purl.org/vocab/resourcelist/schema# 20111028
rev http://purl.org/stuff/rev# 20111028
rich http://rdf.data-vocabulary.org/ 20111028
rif http://www.w3.org/2007/rif# 20111028
rnews http://iptc.org/std/rNews/2011-10-07# 20111028
ro http://purl.org/obo/owl/ro# 20111028
room http://vocab.deri.ie/rooms# 20111028
rooms http://vocab.deri.ie/rooms# 20111028
rpubl http://rinfo.lagrummet.se/ns/2008/11/rinfo/publ# 20111028
rr http://www.w3.org/ns/r2rml# 20111028
rsa http://www.w3.org/ns/auth/rsa# 20111028
rss http://purl.org/rss/1.0/ 20111028
rulz http://purl.org/NET/rulz# 20111028
rv http://wifo-ravensburg.de/semanticweb.rdf# 20111028
s2s http://escience.rpi.edu/ontology/sesf/s2s/2/0/ 20111028
s3db http://www.s3db.org/core# 20111028
s4ac http://ns.inria.fr/s4ac/v1# 20111028
sail http://www.openrdf.org/config/sail# 20111028
sawsdl http://www.w3.org/ns/sawsdl# 20111028
saxon http://saxon.sf.net/ 20111028
sc http://umbel.org/umbel/sc/ 20111028
schema http://schema.org/ 20111028
sco http://purl.org/ontology/sco# 20111028
scot http://scot-project.org/scot/ns# 20111028
scovo http://purl.org/NET/scovo# 20111028
scowt http://purl.org/weso/ontologies/scowt# 20111028
scsv http://purl.org/NET/schema-org-csv# 20111028
scv http://purl.org/NET/scovo# 20111028
sd http://www.w3.org/ns/sparql-service-description# 20111028
sdl http://purl.org/vocab/riro/sdl# 20111028
sdmx http://purl.org/linked-data/sdmx# 20111028
sdmxdim http://purl.org/linked-data/sdmx/2009/dimension# 20111028
search http://sindice.com/vocab/search# 20111028
sec http://purl.org/security# 20111028
sede http://eventography.org/sede/0.1/ 20111028
semtweet http://semantictweet.com/ 20111028
sesame http://www.openrdf.org/schema/sesame# 20111028
session http://redfoot.net/2005/session# 20111028
shv http://ns.aksw.org/spatialHierarchy/ 20111028
sider http://www4.wiwiss.fu-berlin.de/sider/resource/sider/ 20111028
sig http://purl.org/signature# 20111028
sim http://purl.org/ontology/similarity/ 20111028
sindice http://vocab.sindice.net/ 20111028
sio http://semanticscience.org/resource/ 20111028
sioc http://rdfs.org/sioc/ns# 20111028
sioca http://rdfs.org/sioc/actions# 20111028
sioct http://rdfs.org/sioc/types# 20111028
sioctypes http://rdfs.org/sioc/types# 20111028
sism http://purl.oclc.org/NET/sism/0.1/ 20111028
sit http://www.ontologydesignpatterns.org/cp/owl/situation.owl# 20111028
skip http://skipforward.net/skipforward/resource/ 20111028
skiresort http://www.openlinksw.com/ski_resorts/schema# 20111028
skos http://www.w3.org/2004/02/skos/core# 20111028
skosxl http://www.w3.org/2008/05/skos-xl# 20111028
sl http://www.semanlink.net/2001/00/semanlink-schema# 20111028
sm http://topbraid.org/sparqlmotion# 20111028
smf http://topbraid.org/sparqlmotionfunctions# 20111028
smiley http://www.smileyontology.com/ns# 20111028
sml http://topbraid.org/sparqlmotionlib# 20111028
so http://purl.org/ontology/symbolic-music/ 20111028
soap http://www.w3.org/2003/05/soap-envelope/ 20111028
soft http://www.w3.org/2007/uwa/context/software.owl# 20111028
sp http://spinrdf.org/sp# 20111028
space http://purl.org/net/schemas/space/ 20111028
spacerel http://data.ordnancesurvey.co.uk/ontology/spatialrelations/ 20111028
span http://www.ifomis.org/bfo/1.1/span# 20111028
sparql http://www.openrdf.org/config/repository/sparql# 20111028
spatial http://geovocab.org/spatial# 20111028
spc http://purl.org/ontomedia/core/space# 20111028
spin http://spinrdf.org/spin# 20111028
spl http://spinrdf.org/spl# 20111028
sport http://www.bbc.co.uk/ontologies/sport/ 20111028
sr http://www.openrdf.org/config/repository/sail# 20111028
sso http://nlp2rdf.lod2.eu/schema/sso/ 20111028
states http://www.w3.org/2005/07/aaa# 20111028
status http://ontologi.es/status# 20111028
steel http://ontorule-project.eu/resources/steel-30# 20111028
str http://nlp2rdf.lod2.eu/schema/string/ 20111028
string http://www.w3.org/2000/10/swap/string# 20111028
sv http://schemas.talis.com/2005/service/schema# 20111028
swanag http://purl.org/swan/1.2/agents/ 20111028
swanci http://purl.org/swan/1.2/citations/ 20111028
swanco http://purl.org/swan/1.2/swan-commons/ 20111028
swande http://purl.org/swan/1.2/discourse-elements/ 20111028
swandr http://purl.org/swan/1.2/discourse-relationships/ 20111028
swanpav http://purl.org/swan/1.2/pav/ 20111028
swanq http://purl.org/swan/1.2/qualifiers/ 20111028
swanqs http://purl.org/swan/1.2/qualifiers/ 20111028
swc http://data.semanticweb.org/ns/swc/ontology# 20111028
swh http://plugin.org.uk/swh-plugins/ 20111028
swid http://semanticweb.org/id/ 20111028
swivt http://semantic-mediawiki.org/swivt/1.0# 20111028
swp http://www.w3.org/2004/03/trix/swp-2/ 20111028
swrc http://swrc.ontoware.org/ontology# 20111028
swrl http://www.w3.org/2003/11/swrl# 20111028
swrlb http://www.w3.org/2003/11/swrlb# 20111028
sysont http://ns.ontowiki.net/SysOnt/ 20111028
tag http://www.holygoat.co.uk/owl/redwood/0.1/tags/ 20111028
tags http://www.holygoat.co.uk/owl/redwood/0.1/tags/ 20111028
tarot http://data.totl.net/tarot/card/ 20111028
taxo http://purl.org/rss/1.0/modules/taxonomy/ 20111028
tblcard http://www.w3.org/People/Berners-Lee/card# 20111028
tdb http://jena.hpl.hp.com/2008/tdb# 20111028
teach http://linkedscience.org/teach/ns# 20111028
tei http://www.tei-c.org/ns/1.0/ 20111028
telix http://purl.org/telix# 20111028
telmap http://purl.org/telmap/ 20111028
test http://test2.example.com/ 20111028
test2 http://this.invalid/test2# 20111028
theatre http://purl.org/theatre# 20111028
ti http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl# 20111028
time http://www.w3.org/2006/time# 20111028
timeline http://purl.org/NET/c4dm/timeline.owl# 20111028
tio http://purl.org/tio/ns# 20111028
tl http://purl.org/NET/c4dm/timeline.owl# 20111028
tmo http://www.semanticdesktop.org/ontologies/2008/05/20/tmo# 20111028
tmpl http://purl.org/restdesc/http-template# 20111028
toby http://tobyinkster.co.uk/# 20111028
trackback http://madskills.com/public/xml/rss/module/trackback/ 20111028
transmed http://www.w3.org/2001/sw/hcls/ns/transmed/ 20111028
tripfs http://purl.org/tripfs/2010/02# 20111028
tripfs2 http://purl.org/tripfs/2010/06# 20111028
ttl http://www.w3.org/2008/turtle# 20111028
txn http://lod.taxonconcept.org/ontology/txn.owl# 20111028
tzont http://www.w3.org/2006/timezone# 20111028
ufmedia http://purl.org/microformat/hmedia/ 20111028
ui http://www.w3.org/ns/ui# 20111028
umbel http://umbel.org/umbel# 20111028
umbelrc http://umbel.org/umbel/rc/ 20111028
uni http://purl.org/weso/uni/uni.html# 20111028
uniprot http://purl.uniprot.org/core/ 20111028
unit http://qudt.org/vocab/unit# 20111028
units http://eulersharp.sourceforge.net/2003/03swap/unitsExtension# 20111028
urn http://fliqz.com/ 20111028
user http://schemas.talis.com/2005/user/schema# 20111028
usgov http://www.rdfabout.com/rdf/schema/usgovt/ 20111028
uta http://uptheasset.org/ontology# 20111028
vaem http://www.linkedmodel.org/schema/vaem# 20111028
vann http://purl.org/vocab/vann/ 20111028
vcard http://www.w3.org/2006/vcard/ns# 20111028
vcard2006 http://www.w3.org/2006/vcard/ns# 20111028
vcardx http://buzzword.org.uk/rdf/vcardx# 20111028
vdpp http://data.lirmm.fr/ontologies/vdpp# 20111028
video http://purl.org/media/video# 20111028
visko http://trust.utep.edu/visko/ontology/visko-operator-v3.owl# 20111028
viskoo http://trust.utep.edu/visko/ontology/visko-operator-v3.owl# 20111028
viskov http://trust.utep.edu/visko/ontology/visko-view-v3.owl# 20111028
vitro http://vitro.mannlib.cornell.edu/ns/vitro/public# 20111028
vivo http://vivoweb.org/ontology/core# 20111028
voaf http://mondeca.com/foaf/voaf# 20111028
voag http://voag.linkedmodel.org/schema/voag# 20111028
void http://rdfs.org/ns/void# 20111028
vote http://www.rdfabout.com/rdf/schema/vote/ 20111028
vs http://www.w3.org/2003/06/sw-vocab-status/ns# 20111028
vso http://purl.org/vso/ns# 20111028
vsto http://escience.rpi.edu/ontology/vsto/2/0/vsto.owl# 20111028
w3con http://www.w3.org/2000/10/swap/pim/contact# 20111028
w3p http://prov4j.org/w3p/ 20111028
wai http://purl.org/wai# 20111028
wairole http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy# 20111028
wao http://webtlab.it.uc3m.es/2010/10/WebAppsOntology# 20111028
water http://escience.rpi.edu/ontology/semanteco/2/0/water.owl# 20111028
wdr http://www.w3.org/2007/05/powder# 20111028
wdrs http://www.w3.org/2007/05/powder-s# 20111028
web http://www.w3.org/2007/uwa/context/web.owl# 20111028
webtlab http://webtlab.it.uc3m.es/ 20111028
wf http://www.w3.org/2005/01/wf/flow# 20111028
wgs http://www.w3.org/2003/01/geo/wgs84_pos# 20111028
wgs84 http://www.w3.org/2003/01/geo/wgs84_pos# 20111028
wgspos http://www.w3.org/2003/01/geo/wgs84_pos# 20111028
whois http://www.kanzaki.com/ns/whois# 20111028
wisski http://wiss-ki.eu/ 20111028
wlp http://weblab-project.org/core/model/property/processing/ 20111028
wm http://ns.inria.fr/webmarks# 20111028
wn http://xmlns.com/wordnet/1.6/ 20111028
wn20schema http://www.w3.org/2006/03/wn/wn20/schema/ 20111028
wnschema http://www.cogsci.princeton.edu/~wn/schema/ 20111028
wo http://purl.org/ontology/wo/ 20111028
wordmap http://purl.org/net/ns/wordmap# 20111028
wordnet http://purl.org/vocabularies/princeton/wordnet/schema# 20111028
wot http://xmlns.com/wot/0.1/ 20111028
wsc http://www.openk.org/wscaim.owl# 20111028
wv http://vocab.org/waiver/terms/ 20111028
xbrli http://www.xbrl.org/2003/instance# 20111028
xch http://oanda2rdf.appspot.com/xch/ 20111028
xds http://www.w3.org/2001/XMLSchema# 20111028
xen http://buzzword.org.uk/rdf/xen# 20111028
xesam http://freedesktop.org/standards/xesam/1.0/core# 20111028
xf http://www.w3.org/2002/xforms/ 20111028
xfn http://vocab.sindice.com/xfn# 20111028
xfnv http://vocab.sindice.com/xfn# 20111028
xforms http://www.w3.org/2002/xforms/ 20111028
xhe http://buzzword.org.uk/rdf/xhtml-elements# 20111028
xhtml http://www.w3.org/1999/xhtml/vocab# 20111028
xhtmlvocab http://www.w3.org/1999/xhtml/vocab/ 20111028
xhv http://www.w3.org/1999/xhtml/vocab# 20111028
xl http://langegger.at/xlwrap/vocab# 20111028
xlink http://www.w3.org/1999/xlink/ 20111028
xro http://www.stalsoft.com/ontologies/xro/ns# 20111028
xs http://www.w3.org/2001/XMLSchema# 20111028
xsd http://www.w3.org/2001/XMLSchema# 20111028
xsl http://www.w3.org/1999/XSL/Transform# 20111028
xt http://purl.org/twc/vocab/cross-topix# 20111028
xtypes http://purl.org/xtypes/ 20111028
ya http://blogs.yandex.ru/schema/foaf/ 20111028
yago http://dbpedia.org/class/yago/ 20111028
yoda http://purl.org/NET/yoda# 20111028
zbwext http://zbw.eu/namespaces/zbw-extensions/ 20111028
zem http://s.zemanta.com/ns# 20111028
zoology http://purl.org/NET/biol/zoology# 20111028
daiaserv http://purl.org/ontology/daia/service/ 20111031
vvo http://purl.org/vvo/ns# 20111031
vsw http://verticalsearchworks.com/ontology/ 20111102
commerce http://search.yahoo.com/searchmonkey/commerce/ 20111124
gnd http://d-nb.info/gnd/ 20111124
grs http://www.georss.org/georss/ 20111124
htir http://www.w3.org/2011/http# 20111124
infosys http://www.infosys.com/ 20111124
muto http://purl.org/muto/core# 20111124
omapi http://purl.org/omapi/0.2/# 20111124
prf http://www.openmobilealliance.org/tech/profiles/UAPROF/ccppschema-20021212# 20111124
webbox http://webbox.ecs.soton.ac.uk/ns# 20111124
calli http://callimachusproject.org/rdf/2009/framework# 20111208
dwc http://rs.tdwg.org/dwc/terms/ 20111208
eunis http://eunis.eea.europa.eu/rdf/species-schema.rdf# 20111208
georss http://www.georss.org/georss/ 20111208
pna http://data.press.net/ontology/asset/ 20111208
swpatho http://swpatho.ag-nbi.de/context/meta.owl# 20111208
voidp http://www.enakting.org/provenance/voidp/ 20111208
arecipe http://purl.org/amicroformat/arecipe/ 20120124
cis http://purl.org/NET/cloudisus# 20120124
daiaserv http://purl.org/ontology/daia/Service/ 20120124
datafaqs http://purl.org/twc/vocab/datafaqs# 20120124
db http://dbpedia.org/ 20120124
ends http://labs.mondeca.com/vocab/endpointStatus# 20120124
identity http://purl.org/twc/ontologies/identity.owl# 20120124
italy http://data.kasabi.com/dataset/italy/schema/ 20120124
jita http://aims.fao.org/aos/jita/ 20120124
media http://search.yahoo.com/searchmonkey/media/ 20120124
moby http://www.mygrid.org.uk/mygrid-moby-service# 20120124
nfo http://www.semanticdesktop.org/ontologies/nfo/# 20120124
np http://www.nanopub.org/nschema# 20120124
ocd http://dati.camera.it/ocd/ 20120124
places http://purl.org/ontology/places# 20120124
protegedc http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl# 20120124
transit http://vocab.org/transit/terms/ 20120124
vsr http://purl.org/twc/vocab/vsr# 20120124
wfdesc http://purl.org/wf4ever/wfdesc# 20120124
wikipedia http://www.systemone.at/2006/03/wikipedia# 20120124
aerols http://xmlns.com/aerols/0.1/ 20120426
carfo http://purl.org/carfo# 20120426
cerif http://spi-fm.uca.es/neologism/cerif# 20120426
cheminf http://www.semanticweb.org/ontologies/cheminf.owl# 20120426
cts2 http://schema.omg.org/spec/CTS2/1.0/ 20120426
example http://www.example.org/rdf# 20120426
func http://www.w3.org/2007/rif-builtin-function# 20120426
geom http://geovocab.org/geometry# 20120426
gldp http://www.w3.org/ns/people# 20120426
goef http://purl.org/twc/vocab/goef# 20120426
hg http://www.holygoat.co.uk/owl/redwood/0.1/tags/ 20120426
ipad http://www.padinthecity.com/ 20120426
isbd http://iflastandards.info/ns/isbd/elements/ 20120426
kupkb http://www.e-lico.eu/data/kupkb/ 20120426
lexvo http://lexvo.org/ontology# 20120426
linkedct http://data.linkedct.org/vocab/ 20120426
lr http://linkedrecipes.org/schema/ 20120426
lv http://lobid.org/vocab/lobid# 20120426
marcrel http://id.loc.gov/vocabulary/relators/ 20120426
metalex http://www.metalex.eu/metalex/2008-05-02# 20120426
mohammad http://manesht.ir/ 20120426
nfo http://www.semanticdesktop.org/ontologies/2007/03/22/nfo# 20120426
npg http://ns.nature.com/terms/ 20120426
nsogi http://prefix.cc/nsogi: 20120426
oac http://www.openannotation.org/ns/ 20120426
ogorg http://opengraph.org/schema/ 20120426
omv http://omv.ontoware.org/2005/05/ontology# 20120426
onssprel http://www.ordnancesurvey.co.uk/ontology/SpatialRelations/v0.2/SpatialRelations.owl# 20120426
ospost http://data.ordnancesurvey.co.uk/ontology/postcode/ 20120426
pay http://purl.org/commerce/payment# 20120426
pc http://purl.org/procurement/public-contracts# 20120426
pf http://jena.hpl.hp.com/ARQ/property# 20120426
pne http://data.press.net/ontology/event/ 20120426
prism21 http://prismstandard.org/namespaces/basic/2.1/ 20120426
pro http://purl.org/hpi/patchr# 20120426
prov http://www.w3.org/ns/prov# 20120426
prviv http://purl.org/net/provenance/integrity# 20120426
ql http://www.w3.org/2004/ql# 20120426
r2rml http://www.w3.org/ns/r2rml# 20120426
rating http://www.tvblob.com/ratings/# 20120426
recipe http://linkedrecipes.org/schema/ 20120426
scufl2 http://ns.taverna.org.uk/2010/scufl2# 20120426
ssn http://www.w3.org/2005/Incubator/ssn/ssnx/ssn# 20120426
vapour http://vapour.sourceforge.net/vocab.rdf# 20120426
vsws http://verticalsearchworks.com/ontology/synset# 20120426
wbc http://worldbank.270a.info/classification/ 20120426
wbp http://worldbank.270a.info/property/ 20120426
wkd http://schema.wolterskluwer.de/ 20120426
wp http://vocabularies.wikipathways.org/ 20120426
wscaim http://www.openk.org/wscaim.owl# 20120426
xhtml http://www.w3.org/1999/xhtml# 20120426
xkos http://purl.org/linked-data/xkos# 20120426
d2r http://sites.wiwiss.fu-berlin.de/suhl/bizer/d2r-server/config.rdf# 20120521
efo http://www.ebi.ac.uk/efo/ 20120521
enhancer http://stanbol.apache.org/ontology/enhancer/enhancer# 20120521
fcm http://eulersharp.sourceforge.net/2006/02swap/fcm# 20120521
fise http://fise.iks-project.eu/ontology/ 20120521
fl http://eulersharp.sourceforge.net/2003/03swap/fl-rules# 20120521
fls http://lukasblaho.sk/football_league_schema# 20120521
oboe http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl# 20120521
pccz http://purl.org/procurement/public-contracts-czech# 20120521
rdrel http://rdvocab.info/RDARelationshipsWEMI/ 20120521
rec54 http://www.w3.org/2001/02pd/rec54.rdf# 20120521
acco http://purl.org/acco/ns# 20120827
acm http://www.semanticweb.org/ontologies/2012/acm.owl# 20120827
admssw http://purl.org/adms/sw/ 20120827
aers http://aers.data2semantics.org/resource/ 20120827
arg http://rdfs.org/sioc/argument# 20120827
br http://purl.org/business-register# 20120827
cao http://purl.org/makolab/caont/ 20120827
cogs http://vocab.deri.ie/cogs# 20120827
crm http://erlangen-crm.org/current/ 20120827
dive http://scubadive.networld.to/dive.rdf# 20120827
dpl http://dbpedialite.org/things/ 20120827
eprints http://eprints.org/ontology/ 20120827
eumida http://data.kasabi.com/dataset/eumida/terms/ 20120827
germplasm http://purl.org/germplasm/terms# 20120827
intervals http://reference.data.gov.uk/def/intervals/ 20120827
lctr http://data.linkedct.org/vocab/resource/ 20120827
lemon http://www.monnet-project.eu/lemon# 20120827
library http://purl.org/library/ 20120827
life http://life.deri.ie/schema/ 20120827
marl http://purl.org/marl/ns# 20120827
muni http://purl.org/ontology/muni# 20120827
ncbitaxon http://purl.org/obo/owl/NCBITaxon# 20120827
no http://km.aifb.kit.edu/projects/numbers/number# 20120827
npgd http://ns.nature.com/datasets/ 20120827
npgg http://ns.nature.com/graphs/ 20120827
npgx http://ns.nature.com/extensions/ 20120827
open http://open.vocab.org/terms/ 20120827
pav http://purl.org/pav/ 20120827
pkmn http://pokedex.dataincubator.org/pkm/ 20120827
pml http://provenanceweb.org/ns/pml# 20120827
poder http://poderopedia.com/vocab/ 20120827
pol http://escience.rpi.edu/ontology/semanteco/2/0/pollution.owl# 20120827
prism http://prismstandard.org/namespaces/basic/2.0/ 20120827
prv http://purl.org/ontology/prv/core# 20120827
r4ta http://ns.inria.fr/ratio4ta/v1# 20120827
rda http://rdvocab.info/elements/ 20120827
rdagr1 http://rdvocab.info/Elements/ 20120827
rssynd http://web.resource.org/rss/1.0/modules/syndication/ 20120827
s4ac http://ns.inria.fr/s4ac/v2# 20120827
sdgp http://stats.data-gov.ie/property/ 20120827
set http://www.w3.org/2000/10/swap/set# 20120827
sgv http://www.w3.org/TR/SVG/ 20120827
spif http://spinrdf.org/spif# 20120827
tcga http://purl.org/tcga/core# 20120827
mpeg7 http://rhizomik.net/ontologies/2005/03/Mpeg7-2001.owl# 20120829
myprefix http://myprefix.org/ 20120829
ngeoi http://vocab.lenka.no/geo-deling# 20120829
okg http://openknowledgegraph.org/ontology/ 20120829
flow http://www.w3.org/2005/01/wf/flow# 20120905
osmsemnet http://spatial.ucd.ie/2012/08/osmsemnet/ 20120905
wfprov http://purl.org/wf4ever/wfprov# 20120905
category http://dbpedia.org/resource/Category: 20120917
ero http://purl.obolibrary.org/obo/ 20120917
interval http://reference.data.gov.uk/def/intervals/ 20120917
adms http://www.w3.org/ns/adms# 20130208
aersv http://aers.data2semantics.org/vocab/ 20130208
agg http://purl.org/twc/health/vocab/aggregate/ 20130208
apivc http://purl.org/linked-data/api/vocab# 20130208
arpfo http://vocab.ouls.ox.ac.uk/projectfunding# 20130208
asn http://purl.org/ASN/schema/core/ 20130208
atomrdf http://atomowl.org/ontologies/atomrdf# 20130208
b2bo http://purl.org/iig2/b2bo# 20130208
bd http://www.bigdata.com/rdf/search# 20130208
bing http://bing.com/schema/media/ 20130208
biopax http://bio2rdf.org/ns/biopax# 20130208
bne http://datos.bne.es/resource/ 20130208
bp http://open-services.net/ns/basicProfile# 20130208
bte http://purl.org/twc/vocab/between-the-edges/ 20130208
cidoccrm http://purl.org/NET/cidoc-crm/core# 20130208
cv http://purl.org/captsolo/resume-rdf/0.2/cv# 20130208
daisy http://www.daisy.org/z3998/2012/vocab/ 20130208
dce http://purl.org/dc/elements/1.1/ 20130208
dco http://deepcarbon.net/ 20130208
dcr http://www.isocat.org/ns/dcr.rdf# 20130208
disco http://vocab.ddialliance.org/discovery# 20130208
dita http://zebrana.net/dita/ditavoc.ttl# 20130208
dnb http://d-nb.info/gnd/ 20130208
dsp http://purl.org/metainfo/terms/dsp# 20130208
dssn http://purl.org/net/dssn/ 20130208
ekaw http://data.semanticweb.org/conference/ekaw/2012/complete/ 20130208
ens http://models.okkam.org/ENS-core-vocabulary.owl# 20130208
eseduc http://www.purl.org/ontologia/eseduc# 20130208
fd http://foodable.co/ns/ 20130208
food http://data.lirmm.fr/ontologies/food# 20130208
fos http://futurios.org/fos/spec/ 20130208
gawd http://gawd.atlantides.org/terms/ 20130208
genea http://www.owl-ontologies.com/generations.owl# 20130208
geocontext http://www.geocontext.org/publ/2013/vocab# 20130208
geoes http://geo.linkeddata.es/ontology/ 20130208
gsp http://www.opengis.net/ont/geosparql# 20130208
gxa http://www.ebi.ac.uk/gxa/ 20130208
health http://purl.org/twc/health/vocab/ 20130208
hgnc http://bio2rdf.org/hgnc: 20130208
icaltzd http://www.w3.org/2002/12/cal/icaltzd# 20130208
idemo http://rdf.insee.fr/graphes/def/demo# 20130208
igeo http://rdf.insee.fr/def/geo# 20130208
jjd http://www.joshuajeeson.com/ 20130208
kdo http://kdo.render-project.eu/kdo# 20130208
l4a http://labels4all.info/ns/ 20130208
laposte http://data.lirmm.fr/ontologies/laposte# 20130208
ldp http://www.w3.org/ns/ldp# 20130208
lex http://purl.org/lex# 20130208
lyou http://purl.org/linkingyou/ 20130208
marshall http://sites.google.com/site/xgmaitc/ 20130208
md http://www.w3.org/ns/md# 20130208
media http://purl.org/microformat/hmedia/ 20130208
metalex http://www.metalex.eu/schema/1.0# 20130208
nfo http://www.semanticdesktop.org/ontologies/nfo/# 20130208
nxp http://purl.org/nxp/schema/v1/ 20130208
oa http://www.w3.org/ns/openannotation/core/ 20130208
oarj http://opendepot.org/reference/linked/1.0/ 20130208
oax http://www.w3.org/ns/openannotation/extensions/ 20130208
osn http://spatial.ucd.ie/lod/osn/ 20130208
owltime http://www.w3.org/TR/owl-time# 20130208
particip http://purl.org/vocab/participation/schema# 20130208
person http://www.w3.org/ns/person# 20130208
photoshop http://ns.adobe.com/photoshop/1.0/ 20130208
pingback http://purl.org/net/pingback/ 20130208
prefix http://prefix.cc/ 20130208
pronom http://reference.data.gov.uk/technical-registry/ 20130208
prv http://purl.org/net/provenance/ns# 20130208
qa http://www.mit.jyu.fi/ai/TRUST_Ontologies/QA.owl# 20130208
qud http://qudt.org/1.1/schema/qudt# 20130208
rad http://www.w3.org/ns/rad# 20130208
rov http://www.w3.org/ns/regorg# 20130208
ssso http://purl.org/ontology/ssso# 20130208
strdf http://strdf.di.uoa.gr/ontology# 20130208
tisc http://observedchange.com/tisc/ns# 20130208
uco http://purl.org/uco/ns# 20130208
viaf http://viaf.org/ontology/1.1/# 20130208
visit http://purl.org/net/vocab/2004/07/visit# 20130208
w3po http://purl.org/provenance# 20130208
wn20 http://www.w3.org/2006/03/wn/wn20/ 20130208
xmls http://www.w3.org/2001/XMLSchema# 20130208
xro http://purl.org/xro/ns# 20130208
acm http://www.rkbexplorer.com/ontologies/acm# 20130327
agls http://www.agls.gov.au/agls/terms/ 20130327
agrelon http://d-nb.info/standards/elementset/agrelon.owl# 20130327
aigp http://swat.cse.lehigh.edu/resources/onto/aigp.owl# 20130327
aos http://rdf.muninn-project.org/ontologies/appearances# 20130327
api http://purl.org/linked-data/api/vocab# 20130327
being http://purl.org/ontomedia/ext/common/being# 20130327
bf http://bibframe.org/vocab/ 20130327
bif http://www.openlinksw.com/schema/sparql/extensions# 20130327
biotop http://purl.org/biotop/biotop.owl# 20130327
biro http://purl.org/spar/biro/ 20130327
br http://vocab.deri.ie/br# 20130327
cb http://cbasewrap.ontologycentral.com/vocab# 20130327
cgov http://reference.data.gov.uk/def/central-government/ 20130327
city http://datos.localidata.com/def/City# 20130327
cold http://purl.org/configurationontology# 20130327
coll http://purl.org/co/ 20130327
comm http://vocab.resc.info/communication# 20130327
coun http://www.daml.org/2001/09/countries/iso-3166-ont# 20130327
cpa http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl# 20130327
crm http://www.cidoc-crm.org/cidoc-crm/ 20130327
crsw http://courseware.rkbexplorer.com/ontologies/courseware# 20130327
csp http://vocab.deri.ie/csp# 20130327
ctorg http://purl.org/ctic/infraestructuras/organizacion# 20130327
dbtont http://dbtropes.org/ont/ 20130327
dcite http://purl.org/spar/datacite/ 20130327
dcndl http://ndl.go.jp/dcndl/terms/ 20130327
deo http://purl.org/spar/deo/ 20130327
disco http://rdf-vocabulary.ddialliance.org/discovery# 20130327
dita http://purl.org/ditavoc/schema/ 20130327
dl http://ontology.ip.rm.cnr.it/ontologies/DOLCE-Lite# 20130327
doco http://purl.org/spar/doco/ 20130327
dqm http://purl.org/dqm-vocabulary/v1/dqm# 20130327
dr http://purl.org/swan/2.0/discourse-relationships/ 20130327
drm http://vocab.data.gov/def/drm# 20130327
ds http://purl.org/ctic/dcat# 20130327
dso http://purl.org/ontology/dso# 20130327
ecos http://kmm.lboro.ac.uk/ecos/1.0# 20130327
edgar http://edgarwrap.ontologycentral.com/vocab/edgar# 20130327
elec http://purl.org/ctic/sector-publico/elecciones# 20130327
emp http://purl.org/ctic/empleo/oferta# 20130327
ep http://eprints.org/ontology/ 20130327
fcp http://www.newmedialab.at/fcp/ 20130327
food http://purl.org/foodontology# 20130327
fowl http://www.w3.org/TR/2003/PR-owl-guide-20031209/food# 20130327
gadm http://gadm.geovocab.org/ontology# 20130327
gastro http://www.ebsemantics.net/gastro# 20130327
geod http://vocab.lenka.no/geo-deling# 20130327
geosp http://rdf.geospecies.org/ont/geospecies# 20130327
gnm http://www.geonames.org/ontology/mappings/ 20130327
graffle http://purl.org/twc/vocab/vsr/graffle# 20130327
graves http://rdf.muninn-project.org/ontologies/graves# 20130327
gso http://www.w3.org/2006/gen/ont# 20130327
idemo http://rdf.insee.fr/def/demo# 20130327
infor http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl# 20130327
inno http://purl.org/innovation/ns# 20130327
iol http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl# 20130327
itsmo http://ontology.it/itsmo/v1# 20130327
lcy http://purl.org/vocab/lifecycle/schema# 20130327
lh http://vocab.inf.ed.ac.uk/library/holdings# 20130327
lib http://purl.org/library/ 20130327
lingvo http://www.lingvoj.org/ontology# 20130327
lmm1 http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl# 20130327
lmm2 http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl# 20130327
lsc http://linkedscience.org/lsc/ns# 20130327
mads http://www.loc.gov/mads/rdf/v1# 20130327
mds http://doc.metalex.eu/id/ 20130327
meb http://rdf.myexperiment.org/ontologies/base/ 20130327
mil http://rdf.muninn-project.org/ontologies/military# 20130327
mime http://purl.org/NET/mediatypes/ 20130327
moac http://observedchange.com/moac/ns# 20130327
mrel http://id.loc.gov/vocabulary/relators/ 20130327
msr http://www.telegraphis.net/ontology/measurement/measurement# 20130327
mvco http://purl.oclc.org/NET/mvco.owl# 20130327
ntag http://ns.inria.fr/nicetag/2010/09/09/voc# 20130327
nyt http://data.nytimes.com/element/ 20130327
obsm http://rdf.geospecies.org/methods/observationMethod# 20130327
odapp http://vocab.deri.ie/odapp# 20130327
odpart http://www.ontologydesignpatterns.org/cp/owl/participation.owl# 20130327
odv http://reference.data.gov.uk/def/organogram/ 20130327
oecc http://www.oegov.org/core/owl/cc# 20130327
ontopic http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl# 20130327
opl http://openlinksw.com/schema/attribution# 20130327
opmo http://openprovenance.org/model/opmo# 20130327
oprovo http://openprovenance.org/ontology# 20130327
ordf http://purl.org/NET/ordf/ 20130327
osadm http://data.ordnancesurvey.co.uk/ontology/admingeo/ 20130327
osgeom http://data.ordnancesurvey.co.uk/ontology/geometry/ 20130327
osp http://data.lirmm.fr/ontologies/osp# 20130327
osr http://purl.org/ontomedia/core/space# 20130327
osspr http://data.ordnancesurvey.co.uk/ontology/spatialrelations/ 20130327
ostop http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl# 20130327
part http://purl.org/vocab/participation/schema# 20130327
passim http://data.lirmm.fr/ontologies/passim# 20130327
prvt http://purl.org/net/provenance/types# 20130327
ps https://w3id.org/payswarm# 20130327
pso http://purl.org/spar/pso/ 20130327
ptop http://www.ontotext.com/proton/protontop# 20130327
pwo http://purl.org/spar/pwo/ 20130327
quty http://www.telegraphis.net/ontology/measurement/quantity# 20130327
raul http://vocab.deri.ie/raul# 20130327
rdafrbr http://rdvocab.info/uri/schema/FRBRentitiesRDA/ 20130327
rdag1 http://rdvocab.info/Elements/ 20130327
rdag3 http://rdvocab.info/ElementsGr3/ 20130327
rdarel http://rdvocab.info/RDARelationshipsWEMI/ 20130327
s2s http://escience.rpi.edu/ontology/sesf/s2s/4/0/ 20130327
sc http://purl.org/science/owl/sciencecommons/ 20130327
sec https://w3id.org/security# 20130327
semio http://www.lingvoj.org/semio# 20130327
seq http://www.ontologydesignpatterns.org/cp/owl/sequence.owl# 20130327
situ http://www.ontologydesignpatterns.org/cp/owl/situation.owl# 20130327
snarm http://rdf.myexperiment.org/ontologies/snarm/ 20130327
spt http://spitfire-project.eu/ontology/ns/ 20130327
swpo http://sw-portal.deri.org/ontologies/swportal# 20130327
tao http://vocab.deri.ie/tao# 20130327
te http://www.w3.org/2006/time-entry# 20130327
tis http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl# 20130327
trait http://contextus.net/ontology/ontomedia/ext/common/trait# 20130327
turismo http://idi.fundacionctic.org/cruzar/turismo# 20130327
tvc http://www.essepuntato.it/2012/04/tvc/ 20130327
vocab http://rdf.ontology2.com/vocab# 20130327
vrank http://purl.org/voc/vrank# 20130327
wlo http://purl.org/ontology/wo/ 20130327
wsl http://www.wsmo.org/ns/wsmo-lite# 20130327
xmp http://ns.adobe.com/xap/1.0/ 20130327
zoomaterms http://rdf.ebi.ac.uk/vocabulary/zooma/ 20130327
dcm http://dcm.com/ 20130402
gnvc http://purl.org/gc/ 20130402
occult http://data.totl.net/occult/ 20130402
pizza http://www.co-ode.org/ontologies/pizza/pizza.owl# 20130402
role http://purl.org/vocab/participation/schema# 20130402
w3po http://purl.org/provenance/w3p/w3po# 20130402
algo http://securitytoolbox.appspot.com/securityAlgorithms# 20130802
b2bo http://purl.org/b2bo# 20130802
biocore http://bio2rdf.org/core# 20130802
bsb http://lod.b3kat.de/title/ 20130802
centrifuge http://purl.org/twc/vocab/centrifuge# 20130802
cex http://purl.org/weso/ontology/computex# 20130802
cf http://mmisw.org/ont/cf/parameter/ 20130802
cidoc http://erlangen-crm.org/current/ 20130802
cito http://purl.org/spar/cito/ 20130802
crtv http://open-services.net/ns/crtv# 20130802
dbc http://dbpedia.org/resource/Category: 20130802
dbnary http://kaiko.getalp.org/dbnary# 20130802
dbpr http://dbpedia.org/resource/ 20130802
dbt http://dbpedia.org/resource/Template: 20130802
dctypes http://purl.org/dc/dcmitype/ 20130802
dis http://stanbol.apache.org/ontology/disambiguation/disambiguation# 20130802
dita http://purl.org/dita/ns# 20130802
dso http://inference-web.org/2.0/ds.owl# 20130802
dvia http://data.eurecom.fr/ontology/dvia# 20130802
ebu http://semantic.eurobau.com/eurobau-utility.owl# 20130802
ecb http://ecb.270a.info/dataset/ 20130802
ecpo http://purl.org/ontology/ecpo# 20130802
exterms http://www.example.org/terms/ 20130802
frapo http://purl.org/cerif/frapo/ 20130802
geof http://www.opengis.net/def/function/geosparql/ 20130802
geofla http://data.ign.fr/ontologies/geofla# 20130802
gfo http://www.onto-med.de/ontologies/gfo.owl# 20130802
hifm http://purl.org/net/hifm/data# 20130802
httpm http://www.w3.org/2011/http-methods# 20130802
iot http://www.linkedthings.com/iot/ 20130802
itsrdf http://www.w3.org/2005/11/its/rdf# 20130802
kbp http://tackbp.org/2013/ontology# 20130802
l4lod http://ns.inria.fr/l4lod/v2/ 20130802
laabs http://dbpedia.org/resource/ 20130802
lgd http://linkedgeodata.org/vocabulary# 20130802
locwd http://purl.org/locwd/schema# 20130802
lv http://purl.org/lobid/lv# 20130802
mods http://www.loc.gov/mods/v3# 20130802
namespaces https://vg.no/ 20130802
nif http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core# 20130802
nsl http://purl.org/ontology/storyline/ 20130802
oa http://www.w3.org/ns/oa# 20130802
odcs http://opendata.cz/infrastructure/odcleanstore/ 20130802
oecd http://oecd.270a.info/dataset/ 20130802
omn http://www.openmobilenetwork.org/resource/ 20130802
opmw http://www.opmw.org/ontology/ 20130802
oslc http://open-services.net/ns/core# 20130802
osr http://dati.senato.it/osr/ 20130802
pam http://prismstandard.org/namespaces/pam/2.0/ 20130802
penn http://purl.org/olia/penn.owl# 20130802
pkgsrc http://pkgsrc.co/schema# 20130802
ple http://pleiades.stoa.org/places/ 20130802
poste http://data.lirmm.fr/ontologies/poste# 20130802
pr http://purl.org/ontology/prv/core# 20130802
premis http://multimedialab.elis.ugent.be/users/samcoppe/ontologies/Premis/premis.owl# 20130802
prolog http://eulersharp.sourceforge.net/2003/03swap/prolog# 20130802
qrl http://www.aifb.kit.edu/project/ld-retriever/qrl# 20130802
qvoc http://mlode.nlp2rdf.org/quranvocab# 20130802
radion http://www.w3.org/ns/radion# 20130802
rdarole http://rdvocab.info/roles/ 20130802
rdf123 http://rdf123.umbc.edu/ns/ 20130802
req http://purl.org/req/ 20130802
reve http://data.eurecom.fr/ontology/reve# 20130802
rlno http://rdflivenews.aksw.org/ontology/ 20130802
rlnr http://rdflivenews.aksw.org/resource/ 20130802
rlog http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog# 20130802
ro http://purl.org/wf4ever/ro# 20130802
roevo http://purl.org/wf4ever/roevo# 20130802
roterms http://purl.org/wf4ever/roterms# 20130802
sci http://data.scientology.org/ns/ 20130802
sem http://semanticweb.cs.vu.nl/2009/11/sem/ 20130802
site http://ns.ontowiki.net/SysOnt/Site/ 20130802
stac http://securitytoolbox.appspot.com/stac# 20130802
stats http://purl.org/rdfstats/stats# 20130802
voaf http://purl.org/vocommons/voaf# 20130802
wf4ever http://purl.org/wf4ever/wf4ever# 20130802
wfm http://purl.org/net/wf-motifs# 20130802
wfs http://schemas.opengis.net/wfs/ 20130802
wikterms http://wiktionary.dbpedia.org/terms/ 20130802
wl http://www.wsmo.org/ns/wsmo-lite# 20130802
won http://purl.org/webofneeds/model# 20130802
worldbank http://worldbank.270a.info/dataset/ 20130802
copyright http://rhizomik.net/ontologies/copyrightonto.owl# 20130812
lldr http://purl.oclc.org/NET/lldr/ns# 20130812
up http://users.ugent.be/~tdenies/up/ 20130812
fea http://vocab.data.gov/def/fea# 20130816
penis http://penis.to/# 20130816
scms http://ns.aksw.org/scms/annotations/ 20130816
sdo http://schema.org/ 20130816
wapp http://ns.rww.io/wapp# 20130816
agrelon http://d-nb.info/standards/elementset/agrelon# 20130924
alchemy http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema# 20130924
archdesc http://archdesc.info/archEvent# 20130924
cnt http://www.w3.org/2011/content# 20130924
co http://rhizomik.net/ontologies/copyrightonto.owl# 20130924
cosmo http://purl.org/ontology/cosmo# 20130924
cro http://rhizomik.net/ontologies/copyrightonto.owl# 20130924
dbpo http://dbpedia.org/ontology/ 20130924
dt http://dbpedia.org/datatype/ 20130924
frbrer http://iflastandards.info/ns/fr/frbr/frbrer/ 20130924
frsad http://iflastandards.info/ns/fr/frad/ 20130924
gndo http://d-nb.info/standards/elementset/gnd# 20130924
icane http://www.icane.es/opendata/vocab# 20130924
ludo http://vocab.ox.ac.uk/ludo# 20130924
oj http://ontojob.at/ 20130924
oliasystem http://purl.org/olia/system.owl# 20130924
orca http://geni-orca.renci.org/owl/topology.owl# 20130924
saif http://wwwiti.cs.uni-magdeburg.de/~srahman/ 20130924
sdmxa http://purl.org/linked-data/sdmx/2009/attribute# 20130924
sdmxd http://purl.org/linked-data/sdmx/2009/dimension# 20130924
sdo http://salt.semanticauthoring.org/ontologies/sdo# 20130924
stream http://dbpedia.org/ontology/Stream/ 20130924
tsioc http://rdfs.org/sioc/types# 20130924
twaapi http://purl.org/twc/vocab/aapi-schema# 20130924
wd http://www.wikidata.org/entity/ 20130924
who http://www.who.int/vocab/ontology# 20130924
wikidata http://www.wikidata.org/entity/ 20130924
yago http://yago-knowledge.org/resource/ 20130924
cdtype http://purl.org/cld/cdtype/ 20131002
fincaselaw http://purl.org/finlex/schema/oikeus/ 20131002
finlaw http://purl.org/finlex/schema/laki/ 20131002
amalgame http://purl.org/vocabularies/amalgame# 20131115
camelot http://vocab.ox.ac.uk/camelot# 20131115
conf http://richard.cyganiak.de/2007/pubby/config.rdf# 20131115
crv http://purl.org/twc/vocab/datacarver# 20131115
csm http://purl.org/csm/1.0# 20131115
curr https://w3id.org/cc# 20131115
dbrc http://dbpedia.org/resource/Category: 20131115
dbyago http://dbpedia.org/class/yago/ 20131115
dso http://purl.org/ontology/dso# 20131115
frad http://iflastandards.info/ns/fr/frad/ 20131115
frsad http://iflastandards.info/ns/fr/frsad/ 20131115
gnd http://d-nb.info/standards/elementset/gnd# 20131115
gq http://genomequest.com/ 20131115
hxl http://hxl.humanitarianresponse.info/ns/# 20131115
mp http://jicamaro.info/mp# 20131115
ogbd http://www.ogbd.fr/2012/ontologie# 20131115
olad http://openlad.org/vocab# 20131115
ox http://vocab.ox.ac.uk/projectfunding# 20131115
pat http://purl.org/hpi/patchr# 20131115
pext http://www.ontotext.com/proton/protonext# 20131115
qb4o http://purl.org/olap# 20131115
refe http://orion.tw.rpi.edu/~xgmatwc/refe/ 20131115
swperson http://data.semanticweb.org/person/ 20131115
ub http://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl# 20131115
bbc http://www.bbc.co.uk/ontologies/news/ 20131205
bibframe http://bibframe.org/vocab/ 20131205
bm http://bio2rdf.org/ 20131205
emoca http://ns.inria.fr/emoca# 20131205
emotion http://ns.inria.fr/emoca# 20131205
limoo http://purl.org/LiMo/0.1/ 20131205
mged http://mged.sourceforge.net/ontologies/MGEDOntology.owl# 20131205
mocanal http://www.semanticweb.org/asow/ontologies/2013/9/untitled-ontology-36# 20131205
muldicat http://iflastandards.info/ns/muldicat# 20131205
nidm http://nidm.nidash.org/ 20131205
paia http://purl.org/ontology/paia# 20131205
pubmed http://bio2rdf.org/pubmed_vocabulary: 20131205
ro http://purl.org/obo/owl/ro# 20131205
sdo http://schema.org/ 20131205
service http://purl.org/ontology/service# 20131205
tr http://www.thomsonreuters.com/ 20131205
aat http://vocab.getty.edu/aat/ 20140901
accom http://purl.org/acco/ns# 20140901
acrt http://privatealpha.com/ontology/certification/1# 20140901
agrd http://agrinepaldata.com/ 20140901
agro http://agrinepaldata.com/vocab/ 20140901
app http://jmvanel.free.fr/ontology/software_applications.n3# 20140901
asgv http://aims.fao.org/aos/agrovoc/ 20140901
aws http://purl.oclc.org/NET/ssnx/meteo/aws# 20140901
babelnet http://babelnet.org/2.0/ 20140901
basic http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic# 20140901
bbccms http://www.bbc.co.uk/ontologies/cms/ 20140901
bbccore http://www.bbc.co.uk/ontologies/coreconcepts/ 20140901
bbcprov http://www.bbc.co.uk/ontologies/provenance/ 20140901
bco http://purl.obolibrary.org/obo/bco.owl# 20140901
bevon http://rdfs.co/bevon/ 20140901
bihap http://bihap.kb.gov.tr/ontology/ 20140901
bis http://bis.270a.info/dataset/ 20140901
bk http://www.provbook.org/ns/# 20140901
bwb http://doc.metalex.eu/bwb/ontology/ 20140901
call http://webofcode.org/wfn/call: 20140901
citof http://www.essepuntato.it/2013/03/cito-functions# 20140901
cjr http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/callejero# 20140901
cmd http://clarin.eu/cmd# 20140901
cmdi http://www.clarin.eu/cmd/ 20140901
cmdm http://infra.clarin.eu/cmd/ 20140901
contsem http://contsem.unizar.es/def/sector-publico/contratacion# 20140901
csv http://vocab.sindice.net/csv/ 20140901
dblp http://dblp.l3s.de/d2r/page/authors/ 20140901
dbpedia2 http://dbpedia.org/property/ 20140901
dbug http://ontologi.es/doap-bugs# 20140901
dco http://info.deepcarbon.net/schema# 20140901
dcoid http://dx.deepcarbon.net/ 20140901
dcq http://purl.org/dc/qualifiers/1.0/ 20140901
defns http://www.openarchives.org/OAI/2.0/ 20140901
delta http://www.w3.org/2004/delta# 20140901
diag http://www.loc.gov/zing/srw/diagnostic/ 20140901
dicom http://purl.org/healthcarevocab/v1# 20140901
dn http://purl.org/datanode/ns/ 20140901
dogont http://elite.polito.it/ontologies/dogont.owl# 20140901
dpd http://www.kanzaki.com/ns/dpd# 20140901
dq http://def.seegrid.csiro.au/isotc211/iso19115/2003/dataquality# 20140901
dsn http://purl.org/dsnotify/vocab/eventset/ 20140901
ebucore http://www.ebu.ch/metadata/ontologies/ebucore/ebucore# 20140901
ec http://eulergui.sourceforge.net/contacts.owl.n3# 20140901
ecb http://ecb.270a.info/class/1.0/ 20140901
ecrm http://erlangen-crm.org/current/ 20140901
employee http://www.employee.com/data# 20140901
erce http://xxefe.de/ 20140901
esadm http://vocab.linkeddata.es/datosabiertos/def/sector-publico/territorio# 20140901
escjr http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/callejero# 20140901
estatwrap http://ontologycentral.com/2009/01/eurostat/ns# 20140901
estrn http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/transporte# 20140901
eurlex http://eur-lex.publicdata.eu/ontology/ 20140901
evident http://purl.org/net/evident# 20140901
ext http://def.seegrid.csiro.au/isotc211/iso19115/2003/extent# 20140901
fabio http://purl.org/spar/fabio/ 20140901
fam http://vocab.fusepool.info/fam# 20140901
fao http://fao.270a.info/dataset/ 20140901
fbgeo http://rdf.freebase.com/ns/location/geocode/ 20140901
fcs http://clarin.eu/fcs/resource# 20140901
fma http://sig.uw.edu/fma# 20140901
form http://deductions-software.com/ontologies/forms.owl.ttl# 20140901
fp3 http://vocab.fusepool.info/fp3# 20140901
frb http://frb.270a.info/dataset/ 20140901
friends http://www.openarchives.org/OAI/2.0/friends/ 20140901
ftcontent http://www.ft.com/ontology/content/ 20140901
gaf http://groundedannotationframework.org/ 20140901
gcis http://data.globalchange.gov/gcis.owl# 20140901
geop http://aims.fao.org/aos/geopolitical.owl# 20140901
geos http://www.telegraphis.net/ontology/geography/geography# 20140901
geosparql http://www.opengis.net/ont/geosparql# 20140901
geovoid http://purl.org/geovocamp/ontology/geovoid/ 20140901
gf http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature# 20140901
gm http://def.seegrid.csiro.au/isotc211/iso19107/2003/geometry# 20140901
govwild http://govwild.org/0.6/GWOntology.rdf/ 20140901
gts http://resource.geosciml.org/ontology/timescale/gts# 20140901
gvp http://vocab.getty.edu/ontology# 20140901
h2o http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic# 20140901
hdo http://www.samos.gr/ontologies/helpdeskOnto.owl# 20140901
hlygt http://www.holygoat.co.uk/owl/redwood/0.1/tags/ 20140901
hr http://iserve.kmi.open.ac.uk/ns/hrests# 20140901
http http://www.w3.org/2011/http# 20140901
hydra http://www.w3.org/ns/hydra/core# 20140901
ignf http://data.ign.fr/def/ignf# 20140901
ilap http://data.posccaesar.org/ilap/ 20140901
imf http://imf.270a.info/dataset/ 20140901
irstea http://ontology.irstea.fr/ 20140901
irsteaont http://ontology.irstea.fr/weather/ontology# 20140901
iso http://purl.org/iso25964/skos-thes# 20140901
isothes http://purl.org/iso25964/skos-thes# 20140901
itm http://spi-fm.uca.es/spdef/models/genericTools/itm/1.0# 20140901
jp1 http://rdf.muninn-project.org/ontologies/jp1/ 20140901
kai http://kai.uni-kiel.de/ 20140901
keys http://purl.org/NET/c4dm/keys.owl# 20140901
kml http://www.opengis.net/kml/2.2# 20140901
koly http://www.ensias.ma/ 20140901
l2sp http://www.linked2safety-project.eu/properties/ 20140901
language http://id.loc.gov/vocabulary/iso639-1/ 20140901
lda http://purl.org/linked-data/api/vocab# 20140901
ldr http://purl.oclc.org/NET/ldr/ns# 20140901
lemon http://www.lemon-model.net/lemon# 20140901
lexcz http://purl.org/lex/cz# 20140901
lexicon http://www.example.org/lexicon# 20140901
lexinfo http://www.lexinfo.net/ontology/2.0/lexinfo# 20140901
lfov https://w3id.org/legal_form# 20140901
li http://def.seegrid.csiro.au/isotc211/iso19115/2003/lineage# 20140901
lime http://art.uniroma2.it/ontologies/lime# 20140901
limo http://www.purl.org/limo-ontology/limo# 20140901
ling http://purl.org/voc/ling/ 20140901
lio http://purl.org/net/lio# 20140901
lmf http://www.lexinfo.net/lmf# 20140901
locah http://data.archiveshub.ac.uk/def/ 20140901
location http://sw.deri.org/2006/07/location/loc# 20140901
locn http://www.w3.org/ns/locn# 20140901
lofv http://purl.org/legal_form/vocab# 20140901
loted http://loted.eu/ontology# 20140901
mammal http://lod.taxonconcept.org/ontology/p01/Mammalia/index.owl# 20140901
marl http://www.gsi.dit.upm.es/ontologies/marl/ns# 20140901
maso http://securitytoolbox.appspot.com/MASO# 20140901
mb http://dbtune.org/musicbrainz/resource/instrument/ 20140901
metadata http://purl.oreilly.com/ns/meta/ 20140901
mf http://www.w3.org/2001/sw/DataAccess/tests/test-manifest# 20140901
mm http://linkedmultimedia.org/sparql-mm/functions# 20140901
mmt http://linkedmultimedia.org/sparql-mm/functions/temporal# 20140901
msm http://iserve.kmi.open.ac.uk/ns/msm# 20140901
mt http://www.w3.org/2001/sw/DataAccess/tests/test-manifest# 20140901
muni http://vocab.linkeddata.es/urbanismo-infraestructuras/territorio# 20140901
my http://www.mobile.com/model/ 20140901
naval http://rdf.muninn-project.org/ontologies/naval# 20140901
navm https://w3id.org/navigation_menu# 20140901
ndl http://schemas.ogf.org/nml/2013/05/base# 20140901
nxs http://www.neclimateus.org/ 20140901
nyt http://data.nytimes.com/ 20140901
oad http://lod.xdams.org/reload/oad/ 20140901
oan http://data.lirmm.fr/ontologies/oan/ 20140901
od http://purl.org/twc/vocab/opendap# 20140901
odapps http://semweb.mmlab.be/ns/odapps# 20140901
odrl http://www.w3.org/ns/odrl/2/ 20140901
odrs http://schema.theodi.org/odrs# 20140901
of http://owlrep.eu01.aws.af.cm/fridge# 20140901
oh http://semweb.mmlab.be/ns/oh# 20140901
oils http://lemon-model.net/oils# 20140901
olac http://www.language-archives.org/OLAC/1.0/ 20140901
olac11 http://www.language-archives.org/OLAC/1.1/ 20140901
olca http://www.lingvoj.org/olca# 20140901
om http://opendata.caceres.es/def/ontomunicipio# 20140901
omdoc http://omdoc.org/ontology/ 20140901
onisep http://rdf.onisep.fr/resource/ 20140901
ont http://purl.org/net/ns/ontology-annot# 20140901
ontosec http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl# 20140901
onyx http://www.gsi.dit.upm.es/ontologies/onyx/ns# 20140901
op http://environment.data.gov.au/def/op# 20140901
openskos http://openskos.org/xmlns# 20140901
oplacl http://www.openlinksw.com/ontology/acl# 20140901
oplprod http://www.openlinksw.com/ontology/products# 20140901
oplres http://www.openlinksw.com/ontology/restrictions# 20140901
origins http://origins.link/ 20140901
oslo http://purl.org/oslo/ns/localgov# 20140901
parl http://reference.data.gov.uk/def/parliament/ 20140901
pattern http://www.essepuntato.it/2008/12/pattern# 20140901
pco http://purl.org/procurement/public-contracts# 20140901
physo http://merlin.phys.uni.lodz.pl/onto/physo/physo.owl# 20140901
pic http://www.ipaw.info/ns/picaso# 20140901
pkm http://www.ontotext.com/proton/protonkm# 20140901
plo http://purl.org/net/po# 20140901
pnc http://data.press.net/ontology/classification/ 20140901
pni http://data.press.net/ontology/identifier/ 20140901
pnt http://data.press.net/ontology/tag/ 20140901
pproc http://contsem.unizar.es/def/sector-publico/pproc# 20140901
provone http://purl.org/provone# 20140901
psys http://www.ontotext.com/proton/protonsys# 20140901
purl http://purl.org/dc/terms/ 20140901
pvcs http://purl.org/twc/vocab/pvcs# 20140901
qu http://purl.oclc.org/NET/ssnx/qu/qu# 20140901
rdaa http://rdaregistry.info/Elements/a/ 20140901
rdac http://rdaregistry.info/Elements/c/ 20140901
rdae http://rdaregistry.info/Elements/e/ 20140901
rdag2 http://rdvocab.info/ElementsGr2/ 20140901
rdai http://rdaregistry.info/Elements/i/ 20140901
rdam http://rdaregistry.info/Elements/m/ 20140901
rdarel2 http://metadataregistry.org/uri/schema/RDARelationshipsGR2/ 20140901
rdau http://rdaregistry.info/Elements/u/ 20140901
rdaw http://rdaregistry.info/Elements/w/ 20140901
rdl http://data.posccaesar.org/rdl/ 20140901
reegle http://reegle.info/schema# 20140901
roadmap http://mappings.roadmap.org/ 20140901
rso http://www.researchspace.org/ontology/ 20140901
ru http://purl.org/imbi/ru-meta.owl# 20140901
ruto http://rdfunit.aksw.org/ns/core# 20140901
rvl http://purl.org/rvl/ 20140901
sad http://vocab.deri.ie/sad# 20140901
sam http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling# 20140901
sao http://salt.semanticauthoring.org/ontologies/sao# 20140901
sbench http://swat.cse.lehigh.edu/onto/univ-bench.owl# 20140901
scip http://lod.taxonconcept.org/ontology/sci_people.owl# 20140901
scoro http://purl.org/spar/scoro/ 20140901
sdo http://salt.semanticauthoring.org/ontologies/sdo# 20140901
security http://securitytoolbox.appspot.com/securityMain# 20140901
ses http://lod.taxonconcept.org/ses/ 20140901
sf http://www.opengis.net/ont/sf# 20140901
shex http://www.w3.org/2013/ShEx/ns# 20140901
shw http://paul.staroch.name/thesis/SmartHomeWeather.owl# 20140901
siocserv http://rdfs.org/sioc/services# 20140901
skos08 http://www.w3.org/2008/05/skos# 20140901
sparql http://ontologi.es/sparql# 20140901
spcm http://spi-fm.uca.es/spdef/models/deployment/spcm/1.0# 20140901
spdx http://spdx.org/rdf/terms# 20140901
spfood http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl# 20140901
sql http://ns.inria.fr/ast/sql# 20140901
sro http://salt.semanticauthoring.org/ontologies/sro# 20140901
sru http://www.loc.gov/zing/srw/ 20140901
ssn http://purl.oclc.org/NET/ssnx/ssn# 20140901
stanford http://purl.org/olia/stanford.owl# 20140901
static http://vocab-ld.org/vocab/static-ld# 20140901
stories http://purl.org/ontology/stories/ 20140901
swpm http://spi-fm.uca.es/spdef/models/deployment/swpm/1.0# 20140901
swrcfe http://www.morelab.deusto.es/ontologies/swrcfe# 20140901
tac http://ns.bergnet.org/tac/0.1/triple-access-control# 20140901
tavprov http://ns.taverna.org.uk/2012/tavernaprov/ 20140901
taxon http://purl.org/biodiversity/taxon/ 20140901
tddo http://databugger.aksw.org/ns/core# 20140901
tgn http://vocab.getty.edu/tgn/ 20140901
thors http://resource.geosciml.org/ontology/timescale/thors# 20140901
tm http://def.seegrid.csiro.au/isotc211/iso19108/2002/temporal# 20140901
topo http://data.ign.fr/def/topo# 20140901
travel http://www.co-ode.org/roberts/travel.owl# 20140901
trig http://www.w3.org/2004/03/trix/rdfg-1/ 20140901
tw http://tw.rpi.edu/schema/ 20140901
uis http://uis.270a.info/dataset/ 20140901
ulan http://vocab.getty.edu/ulan/ 20140901
un http://www.w3.org/2007/ont/unit# 20140901
unspsc http://ontoview.org/schema/unspsc/1# 20140901
uri4uri http://uri4uri.net/vocab# 20140901
va http://code-research.eu/ontology/visual-analytics# 20140901
vext http://ldf.fi/void-ext# 20140901
vgo http://purl.org/net/vgo# 20140901
videogame http://purl.org/net/vgo# 20140901
vin http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine# 20140901
viso http://purl.org/viso/ 20140901
vmm http://spi-fm.uca.es/spdef/models/genericTools/vmm/1.0# 20140901
voidext http://rdfs.org/ns/void-ext# 20140901
voidwh http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl# 20140901
vra http://simile.mit.edu/2003/10/ontologies/vraCore3# 20140901
wfn http://webofcode.org/wfn/ 20140901
whisky http://vocab.org/whisky/terms/ 20140901
wi http://purl.org/ontology/wi/core# 20140901
wiki http://en.wikipedia.org/wiki/ 20140901
wikim http://spi-fm.uca.es/spdef/models/genericTools/wikim/1.0# 20140901
wikimedia http://upload.wikimedia.org/wikipedia/commons/f/f6/ 20140901
wn30 http://purl.org/vocabularies/princeton/wn30/ 20140901
xml http://www.w3.org/XML/1998/namespace/ 20140901
xsi http://www.w3.org/2001/XMLSchema-instance# 20140901
xslopm http://purl.org/net/opmv/types/xslt# 20140901
zr http://explain.z3950.org/dtd/2.0/ 20140901
abs http://abs.270a.info/dataset/ 20140908
article http://ogp.me/ns/article# 20140908
cdc http://www.contextdatacloud.org/resource/ 20140908
opencyc http://sw.opencyc.org/concept/ 20140908
smg http://ns.cerise-project.nl/energy/def/cim-smartgrid# 20140908
opllic http://www.openlinksw.com/ontology/licenses# 20140909
|