swls-core 0.1.1

Core LSP infrastructure for the Semantic Web Language Server
Documentation
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
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
madsrdf http://www.loc.gov/mads/rdf/v1#
bflc http://id.loc.gov/ontologies/bflc/
foaf http://xmlns.com/foaf/0.1/
rdf http://www.w3.org/1999/02/22-rdf-syntax-ns#
dbo http://dbpedia.org/ontology/
rdfs http://www.w3.org/2000/01/rdf-schema#
yago http://yago-knowledge.org/resource/
dc http://purl.org/dc/elements/1.1/
dbp http://dbpedia.org/property/
owl http://www.w3.org/2002/07/owl#
gr http://purl.org/goodrelations/v1#
skos http://www.w3.org/2004/02/skos/core#
geo http://www.opengis.net/ont/geosparql#
spacerel http://data.ordnancesurvey.co.uk/ontology/spatialrelations/
ex http://example.org/
xsd http://www.w3.org/2001/XMLSchema#
dcat http://www.w3.org/ns/dcat#
org http://www.w3.org/ns/org#
dct http://purl.org/dc/terms/
dcterms http://purl.org/dc/terms/
qb http://purl.org/linked-data/cube#
prov http://www.w3.org/ns/prov#
sioc http://rdfs.org/sioc/ns#
xtypes http://purl.org/xtypes/
dbpedia http://dbpedia.org/resource/
void http://rdfs.org/ns/void#
ont http://purl.org/net/ns/ontology-annot#
onto http://www.ontotext.com/
sio http://semanticscience.org/resource/
obo http://purl.obolibrary.org/obo/
dcterm http://purl.org/dc/terms/
schema http://schema.org/
bf http://id.loc.gov/ontologies/bibframe/
search http://sindice.com/vocab/search#
sd https://w3id.org/okn/o/sd#
frbr http://purl.org/vocab/frbr/core#
stat http://www.w3.org/ns/posix/stat#
vcard http://www.w3.org/2006/vcard/ns#
commerce http://purl.org/commerce#
dbr http://dbpedia.org/resource/
bibo http://purl.org/ontology/bibo/
pto http://www.productontology.org/id/
rss http://purl.org/rss/1.0/
gldp http://www.w3.org/ns/people#
oo http://purl.org/openorg/
geonames http://www.geonames.org/ontology#
content http://purl.org/rss/1.0/modules/content/
fb http://rdf.freebase.com/ns/
event http://purl.org/NET/c4dm/event.owl#
vann http://purl.org/vocab/vann/
wd http://www.wikidata.org/entity/
gen http://purl.org/gen/0.1#
dcmit http://purl.org/dc/dcmitype/
cc http://creativecommons.org/ns#
http http://www.w3.org/2011/http#
dbpprop http://dbpedia.org/property/
doap http://usefulinc.com/ns/doap#
tag http://www.holygoat.co.uk/owl/redwood/0.1/tags/
rr http://www.w3.org/ns/r2rml#
swrc http://swrc.ontoware.org/ontology#
nie http://www.semanticdesktop.org/ontologies/2007/01/19/nie#
md http://www.w3.org/ns/md#
sc https://schema.org/
drugbank http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugbank/
as https://www.w3.org/ns/activitystreams#
cv http://rdfs.org/resume-rdf/
fn http://www.w3.org/2005/xpath-functions#
prog http://purl.org/prog/
wot http://xmlns.com/wot/0.1/
aiiso http://purl.org/vocab/aiiso/schema#
ma http://www.w3.org/ns/ma-ont#
leaks https://onlyfans.com/chelxie/
akt http://www.aktors.org/ontology/portal#
tl http://purl.org/NET/c4dm/timeline.owl#
swc http://data.semanticweb.org/ns/swc/ontology#
daia http://purl.org/ontology/daia/
crm http://www.cidoc-crm.org/cidoc-crm/
ical http://www.w3.org/2002/12/cal/ical#
xhtml http://www.w3.org/1999/xhtml#
rel http://purl.org/vocab/relationship/
bio http://purl.org/vocab/bio/0.1/
ov http://open.vocab.org/terms/
earl http://www.w3.org/ns/earl#
mo http://purl.org/ontology/mo/
dv http://rdf.data-vocabulary.org/#
rdfg http://www.w3.org/2004/03/trix/rdfg-1/
marcrel http://id.loc.gov/vocabulary/relators/
vs http://www.w3.org/2003/06/sw-vocab-status/ns#
unit http://qudt.org/vocab/unit/
xhv http://www.w3.org/1999/xhtml/vocab#
cs http://purl.org/vocab/changeset/schema#
ad http://schemas.talis.com/2005/address/schema#
co http://purl.org/ontology/co/core#
afn http://jena.apache.org/ARQ/function#
dc11 http://purl.org/dc/elements/1.1/
og http://opengraphprotocol.org/schema/
air http://dig.csail.mit.edu/TAMI/2007/amord/air#
bill http://www.rdfabout.com/rdf/schema/usbill/
xs http://www.w3.org/2001/XMLSchema#
mu http://mu.semte.ch/vocabularies/core/
test2 http://this.invalid/test2#
musim http://purl.org/ontology/similarity/
factbook http://wifo5-04.informatik.uni-mannheim.de/factbook/ns#
book http://purl.org/NET/book/vocab#
log http://www.w3.org/2000/10/swap/log#
xfn http://gmpg.org/xfn/11#
prop http://dbpedia.org/property/
media http://search.yahoo.com/searchmonkey/media/
dcq http://purl.org/dc/qualifiers/1.0/
d2rq http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#
xf http://www.w3.org/2002/xforms/
ir http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#
ome http://purl.org/ontomedia/core/expression#
biblio http://purl.org/net/biblio#
cal http://www.w3.org/2002/12/cal/ical#
cld http://purl.org/cld/terms/
reco http://purl.org/reco#
dbowl http://ontology.cybershare.utep.edu/dbowl/relational-to-ontology-mapping-primitive.owl#
rev http://purl.org/stuff/rev#
qudt http://qudt.org/schema/qudt/
sism http://purl.oclc.org/NET/sism/0.1/
botany http://purl.org/NET/biol/botany#
days http://ontologi.es/days#
af http://purl.org/ontology/af/
dir http://schemas.talis.com/2005/dir/schema#
ctag http://commontag.org/ns#
rif http://www.w3.org/2007/rif#
osag http://www.ordnancesurvey.co.uk/ontology/AdministrativeGeography/v2.0/AdministrativeGeography.rdf#
tzont http://www.w3.org/2006/timezone#
ok http://okkam.org/terms#
cmp http://www.ontologydesignpatterns.org/cp/owl/componency.owl#
admin http://webns.net/mvcb/
sr http://www.openrdf.org/config/repository/sail#
math http://www.w3.org/2000/10/swap/math#
pc http://purl.org/procurement/public-contracts#
myspace http://purl.org/ontology/myspace#
memo http://ontologies.smile.deri.ie/2009/02/27/memo#
xmp http://ns.adobe.com/xap/1.0/
giving http://ontologi.es/giving#
dcn http://www.w3.org/2007/uwa/context/deliverycontext.owl#
cfp http://sw.deri.org/2005/08/conf/cfp.owl#
lomvoc http://ltsc.ieee.org/rdf/lomv1p0/vocabulary#
time http://www.w3.org/2006/time#
sdmx http://purl.org/linked-data/sdmx#
jdbc http://d2rq.org/terms/jdbc/
swanq http://purl.org/swan/1.2/qualifiers/
omn http://open-multinet.info/ontology/omn#
dcam http://purl.org/dc/dcam/
owlim http://www.ontotext.com/trree/owlim#
lyou http://purl.org/linkingyou/
swande http://purl.org/swan/1.2/discourse-elements/
gn http://www.geonames.org/ontology#
skosxl http://www.w3.org/2008/05/skos-xl#
nif http://persistence.uni-leipzig.org/nlp2rdf/ontologies/nif-core#
con http://www.w3.org/2000/10/swap/pim/contact#
cyc http://sw.opencyc.org/concept/
adms http://www.w3.org/ns/adms#
oa http://www.w3.org/ns/oa#
cdm http://publications.europa.eu/ontology/cdm#
openlinks http://www.openlinksw.com/schemas/virtrdf#
ontology http://dbpedia.org/ontology/
db http://dbpedia.org/
sdmxdim http://purl.org/linked-data/sdmx/2009/dimension#
gvp http://vocab.getty.edu/ontology#
type https://webiomed.ai/blog/obzor-rossiiskikh-sistem-podderzhki-priniatiia-vrachebnykh-reshenii/
sh http://www.w3.org/ns/shacl#
om http://opendata.caceres.es/def/ontomunicipio#
lemon http://lemon-model.net/lemon#
photoshop http://ns.adobe.com/photoshop/1.0/
isbd http://iflastandards.info/ns/isbd/elements/
wfs http://schemas.opengis.net/wfs/
aat http://vocab.getty.edu/aat/
exif http://www.w3.org/2003/12/exif/ns#
wdt http://www.wikidata.org/prop/direct/
ac http://umbel.org/umbel/ac/
fabio http://purl.org/spar/fabio/
room http://vocab.deri.ie/rooms#
tgn http://vocab.getty.edu/tgn/
xsi http://www.w3.org/2001/XMLSchema-instance#
test https://test4.example.com/
sdmxa http://purl.org/linked-data/sdmx/2009/attribute#
cert http://www.w3.org/ns/auth/cert#
ore http://www.openarchives.org/ore/terms/
ulan http://vocab.getty.edu/ulan/
prism http://prismstandard.org/namespaces/basic/2.0/
cnt http://www.w3.org/2011/content#
eat http://www.eat.rl.ac.uk/#
sf http://www.opengis.net/ont/sf#
dul http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#
core http://vivoweb.org/ontology/core#
nsogi http://prefix.cc/nsogi:
itsrdf http://www.w3.org/2005/11/its/rdf#
uniprot http://purl.uniprot.org/uniprot/
fise http://fise.iks-project.eu/ontology/
swrl http://www.w3.org/2003/11/swrl#
voaf http://purl.org/vocommons/voaf#
urn http://fliqz.com/
eg http://www.example.org/
edm http://www.europeana.eu/schemas/edm/
swrcfe http://www.morelab.deusto.es/ontologies/swrcfe#
gtfs http://vocab.gtfs.org/terms#
lv http://purl.org/lobid/lv#
gndo http://d-nb.info/standards/elementset/gnd#
dbc http://dbpedia.org/resource/Category:
nfo http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#
swrlb http://www.w3.org/2003/11/swrlb#
ro http://purl.org/wf4ever/ro#
ssn http://www.w3.org/ns/ssn/
xml http://www.w3.org/XML/1998/namespace/
movie http://data.linkedmdb.org/resource/movie/
music http://musicontology.com/
bif http://www.openlinksw.com/schemas/bif#
go http://purl.obolibrary.org/obo/GO_
wikidata http://www.wikidata.org/entity/
dbprop http://dbpedia.org/property/
ceo https://linkeddata.cultureelerfgoed.nl/def/ceo#
wp http://vocabularies.wikipathways.org/
sp http://spinrdf.org/sp#
pat http://purl.org/hpi/patchr#
ping https://namso-gen.com/
leak http://maco.com/
cco http://www.ontologyrepository.com/CommonCoreOntologies/
loc http://purl.org/ontomedia/core/space#
ldp http://www.w3.org/ns/ldp#
lexinfo http://www.lexinfo.net/ontology/3.0/lexinfo#
nmo http://www.semanticdesktop.org/ontologies/2007/03/22/nmo#
am http://vocab.deri.ie/am#
geoes http://geo.linkeddata.es/ontology/
mods http://www.loc.gov/mods/v3#
dblp http://dblp.uni-trier.de/rdf/schema-2015-01-26#
dbkwik http://dbkwik.webdatacommons.org/
siocserv http://rdfs.org/sioc/services#
chebi http://purl.obolibrary.org/obo/CHEBI_
sioct http://rdfs.org/sioc/types#
gnd http://d-nb.info/gnd/
penn http://purl.org/olia/penn.owl#
nao http://www.semanticdesktop.org/ontologies/2007/08/15/nao#
sec https://w3id.org/security#
sdo https://schema.org/
scovo http://purl.org/NET/scovo#
dce http://purl.org/dc/elements/1.1/
imm http://schemas.microsoft.com/imm/
bd http://www.bigdata.com/rdf#
st http://ns.inria.fr/sparql-template/
example http://www.example.org/rdf#
sparql http://www.w3.org/ns/sparql#
product http://purl.org/commerce/product#
ptr http://www.w3.org/2009/pointers#
coref http://www.rkbexplorer.com/ontologies/coref#
rec http://purl.org/ontology/rec/core#
up http://purl.uniprot.org/core/
gd http://rdf.data-vocabulary.org/#
acc http://purl.org/NET/acc#
cerif http://spi-fm.uca.es/neologism/cerif#
list http://www.w3.org/2000/10/swap/list#
spin http://spinrdf.org/spin#
whois http://www.kanzaki.com/ns/whois#
mf http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#
doc http://www.w3.org/2000/10/swap/pim/doc#
java http://www.w3.org/2007/uwa/context/java.owl#
pmlj http://inference-web.org/2.0/pml-justification.owl#
meta https://krr.triply.cc/krr/sameas-meta/def/
cube https://cube.link/
gold http://purl.org/linguistics/gold/
opm https://w3id.org/opm#
sirext http://t.me/sirextt/247:
ms http://purl.org/obo/owl/MS#
space http://www.w3.org/ns/pim/space#
wiki http://en.wikipedia.org/wiki/
xlink https://es.scribd.com/doc/79794476/05-Ejercicios-Resueltos-Caja-Negra-y-Recapitulacion/
olia http://purl.org/olia/olia.owl#
ti http://www.ontologydesignpatterns.org/cp/owl/timeinterval.owl#
lgd http://linkedgeodata.org/triplify/
geof http://www.opengis.net/def/function/geosparql/
georss http://www.georss.org/georss/
rsa http://www.w3.org/ns/auth/rsa#
pext http://www.ontotext.com/proton/protonext#
dbnary http://kaiko.getalp.org/dbnary#
cro http://rhizomik.net/ontologies/copyrightonto.owl#
nco http://www.semanticdesktop.org/ontologies/2007/03/22/nco#
vivo http://vivoweb.org/ontology/core#
rdfsharp https://rdfsharp.codeplex.com/
sim http://www.w3id.org/simulation/ontology/
bp http://www.biopax.org/release/biopax-level3.owl#
hg http://rdf.histograph.io/
iot http://iotschema.org/
nt http://ns.inria.fr/nicetag/2010/09/09/voc#
akts http://www.aktors.org/ontology/support#
geosparql http://www.opengis.net/ont/geosparql#
acl http://www.w3.org/ns/auth/acl#
po http://purl.org/ontology/po/
kb http://deductions.sf.net/ontology/knowledge_base.owl#
api http://purl.org/linked-data/api/vocab#
pim http://www.w3.org/ns/pim/space#
cito http://purl.org/spar/cito/
xl http://langegger.at/xlwrap/vocab#
bing http://bing.com/schema/media/
video http://purl.org/ontology/video#
cgov http://reference.data.gov.uk/def/central-government/
seas https://w3id.org/seas/
resource http://dbpedia.org/resource/
wgs http://www.w3.org/2003/01/geo/wgs84_pos#
cidoc http://www.cidoc-crm.org/cidoc-crm/
httph http://www.w3.org/2007/ont/httph#
dbpediaowl http://dbpedia.org/owl/
exterms http://www.example.org/terms/
bag https://bag2.basisregistraties.overheid.nl/bag/def/
pr http://purl.org/ontology/prv/core#
role https://w3id.org/role/
name http://example.org/name#
ean http://openean.kaufkauf.net/id/
pav http://purl.org/pav/
dco http://info.deepcarbon.net/schema#
wikipedia https://en.wikipedia.org/wiki/
acm http://www.rkbexplorer.com/ontologies/acm#
postcode http://data.ordnancesurvey.co.uk/id/postcodeunit/
web http://www.w3.org/2007/uwa/context/web.owl#
wn http://xmlns.com/wordnet/1.6/
sosa http://www.w3.org/ns/sosa/
gist https://ontologies.semanticarts.com/o/gistCore#
eu http://eulersharp.sourceforge.net/2003/03swap/log-rules#
ontolex http://www.w3.org/ns/lemon/ontolex#
pgterms http://www.gutenberg.org/2009/pgterms/
prv http://purl.org/net/provenance/ns#
overheid http://standaarden.overheid.nl/owms/
purl http://purl.org/dc/terms/
lu http://www.ontologydesignpatterns.org/ont/framenet/abox/lu/
dcm http://purl.org/dc/dcmitype/
ocd http://dati.camera.it/ocd/
dcatapit http://dati.gov.it/onto/dcatapit#
rdfdf http://www.openlinksw.com/virtrdf-data-formats#
sider http://www4.wiwiss.fu-berlin.de/sider/resource/sider/
iso http://purl.org/iso25964/skos-thes#
wdrs http://www.w3.org/2007/05/powder-s#
ero http://purl.obolibrary.org/obo/
lime http://www.w3.org/ns/lemon/lime#
greg http://kasei.us/about/foaf.xrdf#
formats http://www.w3.org/ns/formats/
euvoc http://publications.europa.eu/ontology/euvoc#
atom http://www.w3.org/2005/Atom/
ass http://uptheasset.org/ontology#
service http://purl.org/ontology/service#
abc http://www.metadata.net/harmony/ABCSchemaV5Commented.rdf#
smf http://topbraid.org/sparqlmotionfunctions#
daml http://www.daml.org/2001/03/daml+oil#
admingeo http://data.ordnancesurvey.co.uk/ontology/admingeo/
wo http://purl.org/ontology/wo/
ndl http://schemas.ogf.org/nml/2013/05/base#
lode http://linkedevents.org/ontology/
stanford http://purl.org/olia/stanford.owl#
ps https://w3id.org/payswarm#
inno http://purl.org/innovation/ns#
gsp http://www.opengis.net/ont/geosparql#
edam http://edamontology.org/
iao http://purl.obolibrary.org/obo/IAO_
zoology http://purl.org/NET/biol/zoology#
bmo http://collection.britishmuseum.org/id/ontology/
cpa http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#
wn20schema http://www.w3.org/2006/03/wn/wn20/schema/
premis http://www.loc.gov/premis/rdf/v3/
es http://eulersharp.sourceforge.net/2003/03swap/log-rules#
swid http://semanticweb.org/id/
saref https://saref.etsi.org/core/
xkos http://rdf-vocabulary.ddialliance.org/xkos#
mm http://linkedmultimedia.org/sparql-mm/ns/2.0.0/function#
irw http://www.ontologydesignpatterns.org/ont/web/irw.owl#
hydra http://www.w3.org/ns/hydra/core#
res http://dbpedia.org/resource/
agg http://purl.org/twc/health/vocab/aggregate/
won https://w3id.org/won/core#
so http://schema.org/
myspo http://purl.org/ontology/myspace#
scot http://rdfs.org/scot/ns#
blt http://www.bl.uk/schemas/bibliographic/blterms#
resist http://www.rkbexplorer.com/ontologies/resist#
hp http://pictogram.tokyo/vocabulary#
omt http://purl.org/ontomedia/ext/common/trait#
ecs http://rdf.ecs.soton.ac.uk/ontology/ecs#
sdl http://purl.org/vocab/riro/sdl#
ya http://blogs.yandex.ru/schema/foaf/
pmt http://tipsy.googlecode.com/svn/trunk/vocab/pmt#
omp http://purl.org/ontomedia/ext/common/profession#
ignf http://data.ign.fr/def/ignf#
tmo http://www.semanticdesktop.org/ontologies/2008/05/20/tmo#
spl http://spinrdf.org/spl#
bfo http://purl.obolibrary.org/obo/
site http://ns.ontowiki.net/SysOnt/Site/
ses http://lod.taxonconcept.org/ses/
fed http://www.openrdf.org/config/sail/federation#
cheminf http://www.semanticweb.org/ontologies/cheminf.owl#
orges http://datos.gob.es/def/sector-publico/organizacion#
dt http://w3id.org/dt#
rov http://www.w3.org/ns/regorg#
bibframe http://id.loc.gov/ontologies/bibframe/
oad http://lod.xdams.org/reload/oad/
faldo http://biohackathon.org/resource/faldo#
user http://schemas.talis.com/2005/user/schema#
sml https://w3id.org/sml/def#
label http://purl.org/net/vocab/2004/03/label#
cpm http://catalogus-professorum.org/cpm/2/
link http://www.w3.org/2007/ont/link#
ref http://purl.org/vocab/relationship/
cordis http://cordis.europa.eu/projects/
prj http://purl.org/stuff/project/
rdau http://rdaregistry.info/Elements/u/
swp http://www.w3.org/2004/03/trix/swp-2/
ub http://www.lehigh.edu/~zhp2/2004/0401/univ-bench.owl#
isothes http://purl.org/iso25964/skos-thes#
eco http://www.ebusiness-unibw.org/ontologies/eclass/5.1.4/#
food http://purl.org/foodontology#
fresnel http://www.w3.org/2004/09/fresnel#
sit http://www.ontologydesignpatterns.org/cp/owl/situation.owl#
airport http://www.daml.org/2001/10/html/airport-ont#
audio http://purl.org/media/audio#
phil http://philosurfical.open.ac.uk/ontology/philosurfical.owl#
acco http://purl.org/acco/ns#
umbelrc http://umbel.org/umbel/rc/
npg http://ns.nature.com/terms/
sesame http://www.openrdf.org/schema/sesame#
biocore http://bio2rdf.org/core#
library http://purl.org/library/
efo http://www.ebi.ac.uk/efo/
act http://www.w3.org/2007/rif-builtin-action#
rnews http://iptc.org/std/rNews/2011-10-07#
ludo http://ns.inria.fr/ludo/v1#
taxon http://purl.uniprot.org/taxonomy/
organism http://eulersharp.sourceforge.net/2003/03swap/organism#
wordnet http://wordnet-rdf.princeton.edu/ontology#
linkedmdb http://data.linkedmdb.org/
sport http://purl.org/ontology/sport/
awol http://bblfish.net/work/atom-owl/2006-06-06/#
taxo http://purl.org/rss/1.0/modules/taxonomy/
opensearch http://a9.com/-/spec/opensearch/1.1/
uco http://purl.org/uco/ns#
wv http://vocab.org/waiver/terms/
omb http://purl.org/ontomedia/ext/common/being#
net http://www.w3.org/2007/uwa/context/network.owl#
lom http://ltsc.ieee.org/rdf/lomv1p0/lom#
xhe http://buzzword.org.uk/rdf/xhtml-elements#
conversion http://purl.org/twc/vocab/conversion/
rs http://rightsstatements.org/vocab/
doac http://ramonantonio.net/doac/0.1/#
granatum http://chem.deri.ie/granatum/
bne http://datos.bne.es/resource/
mime https://www.iana.org/assignments/media-types/
asn http://purl.org/ASN/schema/core/
meteo http://purl.org/ns/meteo#
conv http://purl.org/twc/vocab/conversion/
ao http://purl.org/ontology/ao/core#
fbgeo http://rdf.freebase.com/ns/location/geocode/
oc http://opencoinage.org/rdf/
lx http://purl.org/NET/lx#
lgdo http://linkedgeodata.org/ontology/
vra http://purl.org/vra/
rail http://ontologi.es/rail/vocab#
city http://datos.localidata.com/def/City#
spc http://purl.org/ontomedia/core/space#
protege http://protege.stanford.edu/system#
os http://www.w3.org/2000/10/swap/os#
pbo http://purl.org/ontology/pbo/core#
disco http://rdf-vocabulary.ddialliance.org/discovery#
wgs84 http://www.w3.org/2003/01/geo/wgs84_pos#
dctype http://purl.org/dc/dcmitype/
dwc http://rs.tdwg.org/dwc/terms/
tdb http://jena.hpl.hp.com/2008/tdb#
umbel http://umbel.org/umbel#
bio2rdf http://bio2rdf.org/
arg http://spinrdf.org/arg#
compass http://purl.org/net/compass#
lfm http://purl.org/ontology/last-fm/
rep http://www.openrdf.org/config/repository#
code http://telegraphis.net/ontology/measurement/code#
txn http://lod.taxonconcept.org/ontology/txn.owl#
sco http://purl.org/ontology/sco#
frir http://purl.org/twc/ontology/frir.owl#
powder http://www.w3.org/2007/05/powder#
vocab http://rdf.ontology2.com/vocab#
ct http://data.linkedct.org/resource/linkedct/
crypto http://www.w3.org/2000/10/swap/crypto#
custom http://www.openrdf.org/config/sail/custom#
money http://purl.org/net/rdf-money/
affy http://www.affymetrix.com/community/publications/affymetrix/tmsplice#
fec http://www.rdfabout.com/rdf/schema/usfec/
ire http://www.ontologydesignpatterns.org/cpont/ire.owl#
rdrel http://rdvocab.info/RDARelationshipsWEMI/
nrl http://www.semanticdesktop.org/ontologies/2007/08/15/nrl#
omm http://purl.org/ontomedia/core/media#
bibtex http://purl.org/net/nknouf/ns/bibtex#
pom http://maven.apache.org/POM/4.0.0#
biol http://purl.org/NET/biol/ns#
cdt https://w3id.org/cdt/
cmo http://purl.org/twc/ontologies/cmo.owl#
obj http://www.openrdf.org/rdf/2009/object#
atomix http://buzzword.org.uk/rdf/atomix#
lang http://ontologi.es/lang/core#
coo http://purl.org/coo/ns#
ic http://imi.go.jp/ns/core/rdf#
muto http://purl.org/muto/core#
rei http://www.w3.org/2004/06/rei#
vsr http://purl.org/twc/vocab/vsr#
mit http://purl.org/ontology/mo/mit#
gso http://www.w3.org/2006/gen/ont#
gpt http://purl.org/vocab/riro/gpt#
bl https://w3id.org/biolink/vocab/
swh http://plugin.org.uk/swh-plugins/
pro http://purl.org/hpi/patchr#
isq http://purl.org/ontology/is/quality/
xds http://www.w3.org/2001/XMLSchema#
aos http://rdf.muninn-project.org/ontologies/appearances#
ddc http://purl.org/NET/decimalised#
bbc http://www.bbc.co.uk/ontologies/news/
interval http://reference.data.gov.uk/def/intervals/
ngeo http://geovocab.org/geometry#
soc http://purl.org/net/hdlipcores/ontology/soc#
arch http://purl.org/archival/vocab/arch#
pay http://reference.data.gov.uk/def/payment#
rdac http://rdaregistry.info/Elements/c/
locn http://www.w3.org/ns/locn#
hard http://www.w3.org/2007/uwa/context/hardware.owl#
deo http://purl.org/spar/deo/
apivc http://purl.org/linked-data/api/vocab#
yoda http://purl.org/NET/yoda#
worldbank http://worldbank.270a.info/dataset/
contact http://www.w3.org/2000/10/swap/pim/contact#
doclist http://www.junkwork.net/xml/DocumentList#
bib http://zeitkunst.org/bibtex/0.1/bibtex.owl#
ppo http://vocab.deri.ie/ppo#
person http://www.w3.org/ns/person#
frame http://www.ontologydesignpatterns.org/ont/framenet/abox/frame/
mysql http://web-semantics.org/ns/mysql/
rlog http://persistence.uni-leipzig.org/nlp2rdf/ontologies/rlog#
zem http://s.zemanta.com/ns#
ui http://www.w3.org/ns/ui#
xen http://buzzword.org.uk/rdf/xen#
fe http://www.ontologydesignpatterns.org/ont/framenet/abox/fe/
gob http://purl.org/ontology/last-fm/
aifb http://www.aifb.kit.edu/id/
vso http://purl.org/vso/ns#
usgov http://www.rdfabout.com/rdf/schema/usgovt/
xro http://purl.org/xro/ns#
soft http://www.w3.org/2007/uwa/context/software.owl#
game http://data.totl.net/game/
climb http://climb.dataincubator.org/vocabs/climb/
is http://purl.org/ontology/is/core#
freebase http://rdf.freebase.com/ns/
mp http://jicamaro.info/mp#
oauth http://demiblog.org/vocab/oauth#
pos http://www.w3.org/2003/01/geo/wgs84_pos#
gml http://www.opengis.net/ont/gml#
prot http://www.proteinontology.info/po.owl#
eli http://data.europa.eu/eli/ontology#
bsb http://opacplus.bsb-muenchen.de/title/
omc http://purl.org/ontomedia/ext/common/bestiary#
states http://www.w3.org/2005/07/aaa#
dso http://purl.org/ontology/dso#
politico http://www.rdfabout.com/rdf/schema/politico/
courseware http://courseware.rkbexplorer.com/ontologies/courseware#
pdo http://ontologies.smile.deri.ie/pdo#
muo http://purl.oclc.org/NET/muo/muo#
cycann http://sw.cyc.com/CycAnnotations_v1#
pmlr http://inference-web.org/2.0/pml-relation.owl#
cpv http://purl.org/weso/cpv/
sem http://semanticweb.cs.vu.nl/2009/11/sem/
r2rml http://www.w3.org/ns/r2rml#
nexif http://www.semanticdesktop.org/ontologies/2007/05/10/nexif#
uri http://purl.org/NET/uri#
address http://schemas.talis.com/2005/address/schema#
swanco http://purl.org/swan/1.2/swan-commons/
nuts http://dd.eionet.europa.eu/vocabulary/common/nuts/
bridge http://purl.org/vocommons/bridge#
bsbm http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/
cex http://purl.org/weso/ontology/computex#
viaf http://viaf.org/viaf/
rda http://www.rdaregistry.info/
dailymed http://www4.wiwiss.fu-berlin.de/dailymed/resource/dailymed/
odrl http://www.w3.org/ns/odrl/2/
oac https://w3id.org/oac#
ttl http://www.w3.org/2008/turtle#
string http://www.w3.org/2000/10/swap/string#
lfn http://www.dotnetrdf.org/leviathan#
scv http://purl.org/NET/scovo#
payment http://reference.data.gov.uk/def/payment#
psys http://proton.semanticweb.org/protonsys#
biopax http://www.biopax.org/release/biopax-level3.owl#
xforms http://www.w3.org/2002/xforms/
dbpp http://dbpedia.org/property/
meetup http://www.lotico.com/meetup/
article http://ogp.me/ns/article#
fea http://vocab.data.gov/def/fea#
conserv http://conserv.deri.ie/ontology#
com http://purl.org/commerce#
rv https://data.elsevier.com/research/schema/rv/
chord http://purl.org/ontology/chord/
coin http://purl.org/court/def/2009/coin#
lp http://launchpad.net/rdf/launchpad#
sv http://schemas.talis.com/2005/service/schema#
vote http://www.rdfabout.com/rdf/schema/vote/
cdc https://w3id.org/cdc#
agro http://purl.obolibrary.org/obo/agro.owl#
fo http://www.w3.org/1999/XSL/Format#
puc http://purl.org/NET/puc#
dcmitype http://purl.org/dc/dcmitype/
wi http://purl.org/ontology/wi/core#
wdr http://www.w3.org/2007/05/powder#
moat http://moat-project.org/ns#
lvont http://lexvo.org/ontology#
lifecycle http://purl.org/vocab/lifecycle/schema#
ebucore http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#
teach http://linkedscience.org/teach/ns#
sede http://eventography.org/sede/0.1/
wnschema http://www.cogsci.princeton.edu/~wn/schema/
voag http://voag.linkedmodel.org/schema/voag#
toby http://tobyinkster.co.uk/#
dnr http://www.dotnetrdf.org/configuration#
oboinowl http://www.geneontology.org/formats/oboInOwl#
vitro http://vitro.mannlib.cornell.edu/ns/vitro/public#
rooms http://vocab.deri.ie/rooms#
push http://www.w3.org/2007/uwa/context/push.owl#
ist http://purl.org/ontology/is/types/
isi http://purl.org/ontology/is/inst/
resex http://resex.rkbexplorer.com/ontologies/resex#
opo http://online-presence.net/opo/ns#
cogs http://vocab.deri.ie/cogs#
enc http://www.w3.org/2001/04/xmlenc#
dady http://purl.org/NET/dady#
eclap http://www.eclap.eu/schema/eclap/
lex http://purl.org/lex#
dcr http://www.isocat.org/ns/dcr.rdf#
cos http://www.inria.fr/acacia/corese#
wlp http://weblab-project.org/core/model/property/processing/
h5 http://buzzword.org.uk/rdf/h5#
br http://vocab.deri.ie/br#
kwijibo http://kwijibo.talis.com/
posh http://poshrdf.org/ns/posh/
ldap http://purl.org/net/ldap/
oboe http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#
swanqs http://purl.org/swan/1.2/qualifiers/
recipe http://linkedrecipes.org/schema/
sdm https://w3id.org/okn/o/sdm#
lingvoj http://www.lingvoj.org/ontology#
evset http://dsnotify.org/vocab/eventset/0.1/
oslc http://open-services.net/ns/core#
ncbitaxon http://purl.obolibrary.org/obo/NCBITaxon_
wgspos http://www.w3.org/2003/01/geo/wgs84_pos#
play http://uriplay.org/spec/ontology/#
lotico http://www.lotico.com/resource/
bte http://purl.org/twc/vocab/between-the-edges/
vaem http://www.linkedmodel.org/schema/vaem#
tio http://purl.org/tio/ns#
sail http://www.openrdf.org/config/sail#
card http://www.ashutosh.com/test/
osn http://spatial.ucd.ie/lod/osn/
hlisting http://sindice.com/hlisting/0.1/
mygrid http://www.mygrid.org.uk/ontology#
fls http://lukasblaho.sk/football_league_schema#
rdapo http://rdaregistry.info/Elements/p/object/
wai http://purl.org/wai#
meb http://rdf.myexperiment.org/ontologies/base/
html http://www.w3.org/1999/xhtml/
b2bo http://purl.org/b2bo#
anca http://users.utcluj.ro/~raluca/rdf_ontologies_ralu/ralu_modified_ontology_pizzas2_0#
countries http://eulersharp.sourceforge.net/2003/03swap/countries#
pobo http://purl.obolibrary.org/obo/
data http://data.odw.tw/
uni http://purl.org/weso/uni/uni.html#
swivt http://semantic-mediawiki.org/swivt/1.0#
ann http://www.w3.org/2000/10/annotation-ns#
p3p http://www.w3.org/2002/01/p3prdfv1#
hospital http://www.agfa.com/w3c/2009/hospital#
profiling http://ontologi.es/profiling#
lastfm http://purl.org/ontology/last-fm/
hcterms http://purl.org/uF/hCard/terms/
pubmed http://bio2rdf.org/pubmed_vocabulary:
pol http://escience.rpi.edu/ontology/semanteco/2/0/pollution.owl#
like http://ontologi.es/like#
calli http://callimachusproject.org/rdf/2009/framework#
marl http://www.gsi.dit.upm.es/ontologies/marl/ns#
csvw http://www.w3.org/ns/csvw#
geospecies http://rdf.geospecies.org/ont/geospecies#
provone http://purl.org/provone#
ddl http://purl.org/vocab/riro/ddl#
oat http://openlinksw.com/schemas/oat/
swandr http://purl.org/swan/1.2/discourse-relationships/
algo http://securitytoolbox.appspot.com/securityAlgorithms#
grddl http://www.w3.org/2003/g/data-view#
tarot http://data.totl.net/tarot/card/
nsa http://multimedialab.elis.ugent.be/organon/ontologies/ninsuna#
rdaa http://rdaregistry.info/Elements/a/
ext http://mu.semte.ch/vocabularies/ext/
irrl http://www.ontologydesignpatterns.org/cp/owl/informationobjectsandrepresentationlanguages.owl#
rdfa http://www.w3.org/ns/rdfa#
tr http://www.thomsonreuters.com/
esdir http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/direccion-postal#
care http://eulersharp.sourceforge.net/2003/03swap/care#
fno https://w3id.org/function/ontology#
ops https://w3id.org/ops#
xmls http://www.w3.org/2001/XMLSchema#
phss http://ns.poundhill.com/phss/1.0/
icaltzd http://www.w3.org/2002/12/cal/icaltzd#
common http://www.w3.org/2007/uwa/context/common.owl#
wbp http://worldbank.270a.info/property/
geom http://data.ign.fr/def/geometrie#
remus http://www.semanticweb.org/ontologies/2010/6/Ontology1279614123500.owl#
psych http://purl.org/vocab/psychometric-profile/
shv http://ns.aksw.org/spatialHierarchy/
esd http://def.esd.org.uk/
places http://purl.org/ontology/places#
fab http://purl.org/fab/ns#
datafaqs http://purl.org/twc/vocab/datafaqs#
sysont http://ns.ontowiki.net/SysOnt/
prissma http://ns.inria.fr/prissma/v1#
scsv http://purl.org/NET/schema-org-csv#
fd http://foodable.co/ns/
parl https://id.parliament.uk/schema/
dnb http://d-nb.info/gnd/
archdesc http://archdesc.info/archEvent#
ogp http://ogp.me/ns#
httpvoc http://www.w3.org/2006/http#
infosys http://www.infosys.com/
wl http://www.wsmo.org/ns/wsmo-lite#
tags http://www.holygoat.co.uk/owl/redwood/0.1/tags/
ezcontext http://ontologies.ezweb.morfeo-project.org/ezcontext/ns#
sioca http://rdfs.org/sioc/actions#
okkam http://models.okkam.org/ENS-core-vocabulary#
drug http://www.agfa.com/w3c/2009/drugTherapy#
wsc http://www.openk.org/wscaim.owl#
reve http://data.eurecom.fr/ontology/reve#
opwn http://www.ontologyportal.org/WordNet.owl#
osr http://dati.senato.it/osr/
nex http://www.nexml.org/2009/
cb http://cbasewrap.ontologycentral.com/vocab#
cao http://purl.org/makolab/caont/
psh http://ns.inria.fr/probabilistic-shacl/
wfm http://purl.org/net/wf-motifs#
np http://www.nanopub.org/nschema#
pml http://provenanceweb.org/ns/pml#
sl http://www.semanlink.net/2001/00/semanlink-schema#
prf http://www.openmobilealliance.org/tech/profiles/UAPROF/ccppschema-20021212#
ple http://pleiades.stoa.org/places/
status http://www.w3.org/2003/06/sw-vocab-status/ns#
grel http://users.ugent.be/~bjdmeest/function/grel.ttl#
san http://www.irit.fr/recherches/MELODI/ontologies/SAN#
gridworks http://purl.org/net/opmv/types/gridworks#
smiley http://www.smileyontology.com/ns#
td https://www.w3.org/2019/wot/td#
ecb http://ecb.270a.info/class/1.0/
eztag http://ontologies.ezweb.morfeo-project.org/eztag/ns#
session http://redfoot.net/2005/session#
agent http://eulersharp.sourceforge.net/2003/03swap/agent#
xt http://purl.org/twc/vocab/cross-topix#
wisski http://wiss-ki.eu/
lr http://linkedrecipes.org/schema/
lark1 http://users.utcluj.ro/~raluca/ontology/Ontology1279614123500.owl#
pmlp http://inference-web.org/2.0/pml-provenance.owl#
units http://eulersharp.sourceforge.net/2003/03swap/units#
mei http://www.music-encoding.org/ns/mei/
dbt http://dbpedia.org/resource/Template:
hxl http://hxl.humanitarianresponse.info/ns/#
iswc http://annotation.semanticweb.org/2004/iswc#
dita http://purl.org/dita/ns#
lt http://diplomski.nelakolundzija.org/LTontology.rdf#
rulz http://purl.org/NET/rulz#
ecc https://ns.eccenca.com/
pimo http://www.semanticdesktop.org/ontologies/2007/11/01/pimo#
osoc http://web-semantics.org/ns/opensocial#
ecos http://purl.org/ecos#
olo http://purl.org/ontology/olo/core#
ec http://eulergui.sourceforge.net/contacts.owl.n3#
human http://eulersharp.sourceforge.net/2003/03swap/human#
ibis http://purl.org/ibis#
ne http://umbel.org/umbel/ne/
geofla http://data.ign.fr/ontologies/geofla#
foo http://filmontology.org/ontology/1.0/
copyright http://rhizomik.net/ontologies/copyrightonto.owl#
omv http://omv.ontoware.org/2005/05/ontology#
eprints http://eprints.org/ontology/
sindice http://vocab.sindice.net/
pam http://prismstandard.org/namespaces/pam/2.0/
cmd https://w3id.org/cmd#
sm http://topbraid.org/sparqlmotion#
fowl http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#
dsp http://purl.org/metainfo/terms/dsp#
wordmap http://purl.org/net/ns/wordmap#
wbc http://worldbank.270a.info/classification/
span http://www.ifomis.org/bfo/1.1/span#
imreg http://www.w3.org/2004/02/image-regions#
pccz http://purl.org/procurement/public-contracts-czech#
rdo http://purl.org/rdo/ns#
xsl http://www.w3.org/1999/XSL/Transform#
dis http://stanbol.apache.org/ontology/disambiguation/disambiguation#
admssw http://purl.org/adms/sw/
tp https://triplydb.com/Triply/tp/def/
elog http://eulersharp.sourceforge.net/2003/03swap/log-rules#
c4n http://vocab.deri.ie/c4n#
visit http://purl.org/net/vocab/2004/07/visit#
gs1 https://ref.gs1.org/voc/
life http://life.deri.ie/schema/
arpfo http://vocab.ouls.ox.ac.uk/projectfunding#
sql http://ns.inria.fr/ast/sql#
pns http://data.press.net/ontology/stuff/
geographis http://telegraphis.net/ontology/geography/geography#
provenir http://knoesis.wright.edu/provenir/provenir.owl#
gv http://rdf.data-vocabulary.org/#
json https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf#
vf https://w3id.org/valueflows/ont/vf#
sawsdl http://www.w3.org/ns/sawsdl#
ncal http://www.semanticdesktop.org/ontologies/2007/04/02/ncal#
doco http://purl.org/spar/doco/
zbwext http://zbw.eu/namespaces/zbw-extensions/
exo https://w3id.org/example#
identity http://purl.org/twc/ontologies/identity.owl#
aapi http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#
odp http://ontologydesignpatterns.org/
timeline http://purl.org/NET/c4dm/timeline.owl#
fl http://eulersharp.sourceforge.net/2003/03swap/fl-rules#
visko http://trust.utep.edu/visko/ontology/visko-operator-v3.owl#
osgb http://data.ordnancesurvey.co.uk/id/
swanci http://purl.org/swan/1.2/citations/
geop http://aims.fao.org/aos/geopolitical.owl#
un http://www.w3.org/2007/ont/unit#
skip http://skipforward.net/skipforward/resource/
spatial http://geovocab.org/spatial#
muni http://vocab.linkeddata.es/urbanismo-infraestructuras/territorio#
soap http://www.w3.org/2003/05/soap-envelope/
dbpedia2 http://dbpedia.org/property/
mesh http://id.nlm.nih.gov/mesh/
quantity http://qudt.org/schema/quantity#
out http://ontologies.hypios.com/out#
webtlab http://webtlab.it.uc3m.es/
decl http://www.linkedmodel.org/1.0/schema/decl#
rdagr1 http://rdvocab.info/Elements/
carfo http://purl.org/carfo#
func http://www.w3.org/2007/rif-builtin-function#
pmlt http://inference-web.org/2.0/pml-trust.owl#
set http://www.w3.org/2000/10/swap/set#
ipad http://www.padinthecity.com/
nsl http://purl.org/ontology/storyline/
ling http://purl.org/voc/ling/
cl http://advene.org/ns/cinelab/
ens http://models.okkam.org/ENS-core-vocabulary.owl#
gc http://www.oegov.org/core/owl/gc#
prefix http://prefix.cc/
dgtwc http://data-gov.tw.rpi.edu/2009/data-gov-twc.rdf#
nxp http://purl.org/nxp/schema/v1/
prvtypes http://purl.org/net/provenance/types#
agents http://eulersharp.sourceforge.net/2003/03swap/agent#
open http://open.vocab.org/terms/
fcm http://eulersharp.sourceforge.net/2006/02swap/fcm#
qa http://www.mit.jyu.fi/ai/TRUST_Ontologies/QA.owl#
myprefix http://myprefix.org/
opus http://lsdis.cs.uga.edu/projects/semdis/opus#
dtype http://www.linkedmodel.org/schema/dtype#
trackback http://madskills.com/public/xml/rss/module/trackback/
orca http://geni-orca.renci.org/owl/topology.owl#
wao http://webtlab.it.uc3m.es/2010/10/WebAppsOntology#
spif http://spinrdf.org/spif#
eye http://jena.hpl.hp.com/Eyeball#
comm http://vocab.resc.info/communication#
atomowl http://bblfish.net/work/atom-owl/2006-06-06/#
prolog http://eulersharp.sourceforge.net/2003/03swap/prolog#
dummy http://hello.com/
swanpav http://purl.org/swan/1.2/pav/
req http://purl.org/req/
dgfoaf http://west.uni-koblenz.de/ontologies/2010/07/dgfoaf.owl#
tvc http://www.essepuntato.it/2012/04/tvc/
rad http://www.w3.org/ns/rad#
gelo http://krauthammerlab.med.yale.edu/ontologies/gelo#
xhtmlvocab http://www.w3.org/1999/xhtml/vocab/
derecho http://purl.org/derecho#
frbre http://purl.org/vocab/frbr/extended#
r2r http://www4.wiwiss.fu-berlin.de/bizer/r2r/
wairole http://www.w3.org/2005/01/wai-rdf/GUIRoleTaxonomy#
dossier https://data.omgeving.vlaanderen.be/ns/dossier#
oboro http://obofoundry.org/ro/ro.owl#
organiz http://eulersharp.sourceforge.net/2003/03swap/organization#
enhancer http://stanbol.apache.org/ontology/enhancer/enhancer#
nid3 http://www.semanticdesktop.org/ontologies/2007/05/10/nid3#
wapp http://ns.rww.io/wapp#
evopat http://ns.aksw.org/Evolution/
pne http://data.press.net/ontology/event/
ecpo http://purl.org/ontology/ecpo#
agetec http://www.agetec.org/
agrelon http://d-nb.info/standards/elementset/agrelon#
qdoslf http://foaf.qdos.com/lastfm/schema/
semtweet http://semantictweet.com/
sad http://vocab.deri.ie/sad#
dpd http://www.kanzaki.com/ns/dpd#
aigp http://swat.cse.lehigh.edu/resources/onto/aigp.owl#
rdam http://rdaregistry.info/Elements/m/
gazetteer http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/
rlno http://rdflivenews.aksw.org/ontology/
sdgp http://stats.data-gov.ie/property/
wf http://www.w3.org/2005/01/wf/flow#
hemogram http://www.agfa.com/w3c/2009/hemogram#
oj http://ontojob.at/
sw http://linkedwidgets.org/statisticalwidget/ontology/
hgnc http://bio2rdf.org/hgnc:
geodata http://sws.geonames.org/
httpm http://www.w3.org/2011/http-methods#
luc http://www.ontotext.com/owlim/lucene#
pna http://data.press.net/ontology/asset/
fc http://www.freeclass.eu/freeclass_v1#
bioskos http://eulersharp.sourceforge.net/2003/03swap/bioSKOSSchemes#
tripfs http://purl.org/tripfs/2010/02#
transit http://vocab.org/transit/terms/
w3p http://prov4j.org/w3p/
ls http://linkedspending.aksw.org/instance/
xbrli http://www.xbrl.org/2003/instance#
emotion http://ns.inria.fr/emoca#
sor http://purl.org/net/soron/
moby http://www.mygrid.org.uk/mygrid-moby-service#
aneo http://akonadi-project.org/ontologies/aneo#
xesam http://freedesktop.org/standards/xesam/1.0/core#
linkedct http://data.linkedct.org/vocab/
nyt http://data.nytimes.com/
gxa http://www.ebi.ac.uk/gxa/
xfnv http://vocab.sindice.com/xfn#
plink http://buzzword.org.uk/rdf/personal-link-types#
commons http://commons.psi.enakting.org/def/
kw http://kwantu.net/kw/
metalex http://www.metalex.eu/schema/1.0#
cidoccrm http://purl.org/NET/cidoc-crm/core#
govtrackus http://www.rdfabout.com/rdf/usgov/geo/us/
rdaw http://rdaregistry.info/Elements/w/
xch http://oanda2rdf.appspot.com/xch/
oboso http://purl.org/obo/owl/SO#
aims http://aims.fao.org/aos/common/
owltime http://www.w3.org/TR/owl-time#
rso http://www.researchspace.org/ontology/
pf http://jena.hpl.hp.com/ARQ/property#
owls http://www.daml.org/services/owl-s/1.2/Service.owl#
kdo http://kdo.render-project.eu/kdo#
rkd http://data.rkd.nl/def#
aair http://xmlns.notu.be/aair#
ospost http://data.ordnancesurvey.co.uk/ontology/postcode/
aersv http://aers.data2semantics.org/vocab/
theatre http://purl.org/theatre#
dqv http://www.w3.org/ns/dqv#
dbpo http://dbpedia.org/ontology/
oax http://www.w3.org/ns/openannotation/extensions/
estrn http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/transporte#
steel https://w3id.org/steel/ProcessOntology/
kontakt http://richard.cyganiak.de/
opl http://openlinksw.com/schema/attribution#
dl http://ontology.ip.rm.cnr.it/ontologies/DOLCE-Lite#
swpo http://sw-portal.deri.org/ontologies/swportal#
quak http://dev.w3.org/cvsweb/2000/quacken/vocab#
oper http://sweet.jpl.nasa.gov/2.0/mathOperation.owl#
qu http://purl.oclc.org/NET/ssnx/qu/qu#
htir http://www.w3.org/2011/http#
languages http://eulersharp.sourceforge.net/2003/03swap/languages#
opmv http://purl.org/net/opmv/ns#
tcga http://purl.org/tcga/core#
nytimes http://data.nytimes.com/elements/
sgv http://www.w3.org/TR/SVG/
nndsr http://semanticdiet.com/schema/usda/nndsr/
eseduc http://www.purl.org/ontologia/eseduc#
protons http://proton.semanticweb.org/2005/04/protons#
c4o http://purl.org/spar/c4o/
sro http://salt.semanticauthoring.org/ontologies/sro#
solid http://www.w3.org/ns/solid/terms#
vcardx http://buzzword.org.uk/rdf/vcardx#
dive http://scubadive.networld.to/dive.rdf#
fct http://openlinksw.com/services/facets/1.0/
scowt http://purl.org/weso/ontologies/scowt#
lgv http://linkedgeodata.org/ontology/
oecd http://oecd.270a.info/dataset/
abs http://abs.270a.info/dataset/
ttp http://eample.com/test#
italy http://data.kasabi.com/dataset/italy/schema/
tripfs2 http://purl.org/tripfs/2010/06#
re http://www.w3.org/2000/10/swap/reason#
flow http://www.w3.org/2005/01/wf/flow#
rml http://w3id.org/rml/
frbrcore http://purl.org/vocab/frbr/core#
ianarel https://www.w3.org/ns/iana/link-relations/relation#
ifc http://ifcowl.openbimstandards.org/IFC2X3_Final#
wfdesc http://purl.org/wf4ever/wfdesc#
rpubl http://rinfo.lagrummet.se/ns/2008/11/rinfo/publ#
wm http://ns.inria.fr/webmarks#
gbv http://purl.org/ontology/gbv/
wikibase http://wikiba.se/ontology#
swanag http://purl.org/swan/1.2/agents/
emp http://purl.org/ctic/empleo/oferta#
dssn http://purl.org/net/dssn/
sig http://purl.org/signature#
igeo http://rdf.insee.fr/def/geo#
intervals http://reference.data.gov.uk/def/intervals/
no http://km.aifb.kit.edu/projects/numbers/number#
iron http://purl.org/ontology/iron#
plo http://purl.org/net/po#
atlas http://rdf.ebi.ac.uk/resource/atlas/
bm http://bio2rdf.org/
jita http://aims.fao.org/aos/jita/
rich http://rdf.data-vocabulary.org/
lindt http://purl.org/NET/lindt#
shex http://www.w3.org/ns/shex#
dayta http://dayta.me/resource#
coeus http://bioinformatics.ua.pt/coeus/
frad http://iflastandards.info/ns/fr/frad/
ru http://purl.org/imbi/ru-meta.owl#
mte http://nl.ijs.si/ME/owl/
va http://code-research.eu/ontology/visual-analytics#
gfo http://www.onto-med.de/ontologies/gfo.owl#
environ http://eulersharp.sourceforge.net/2003/03swap/environment#
tei http://www.tei-c.org/ns/1.0/
humanbody http://eulersharp.sourceforge.net/2003/03swap/humanBody#
health http://purl.org/twc/health/vocab/
skiresort http://www.openlinksw.com/ski_resorts/schema#
crtv http://open-services.net/ns/crtv#
crmdig http://www.ics.forth.gr/isl/CRMdig/
ccom http://purl.org/ontology/cco/mappings#
kupkb http://www.e-lico.eu/data/kupkb/
ogorg http://opengraph.org/schema/
dctypes http://purl.org/dc/dcmitype/
bookmark http://www.w3.org/2002/01/bookmark#
tmpl http://purl.org/restdesc/http-template#
npgd http://ns.nature.com/datasets/
opmw http://www.opmw.org/ontology/
hcard http://purl.org/uF/hCard/terms/
cdtype http://purl.org/cld/cdtype/
telix http://purl.org/telix#
goef http://purl.org/twc/vocab/goef#
frapo http://purl.org/cerif/frapo/
ipo http://purl.org/ipo/core#
events http://eulersharp.sourceforge.net/2003/03swap/event#
govwild http://govwild.org/0.6/GWOntology.rdf/
ccard http://purl.org/commerce/creditcard#
cf http://mmisw.org/ont/cf/parameter/
d2r http://sites.wiwiss.fu-berlin.de/suhl/bizer/d2r-server/config.rdf#
grs http://www.georss.org/georss/
mmo http://purl.org/momayo/mmo/
artstor http://simile.mit.edu/2003/10/ontologies/artstor#
hartigprov http://purl.org/net/provenance/ns#
transmed http://www.w3.org/2001/sw/hcls/ns/transmed/
clineva http://www.agfa.com/w3c/2009/clinicalEvaluation#
arecipe http://purl.org/amicroformat/arecipe/
coun http://www.daml.org/2001/09/countries/iso-3166-ont#
osmsemnet http://spatial.ucd.ie/2012/08/osmsemnet/
ufmedia http://purl.org/microformat/hmedia/
fingal http://vocab.deri.ie/fingal#
cold http://purl.org/configurationontology#
bdd https://api.bloomberg.com/eap/catalogs/bbg/fields/
daiaserv http://purl.org/ontology/daia/Service/
npgg http://ns.nature.com/graphs/
rating http://www.tvblob.com/ratings/#
ends http://labs.mondeca.com/vocab/endpointStatus#
pso http://purl.org/spar/pso/
swo http://www.ebi.ac.uk/swo/
rankrage https://rankrage.de/
ldr http://purl.oclc.org/NET/ldr/ns#
daq http://purl.org/eis/vocab/daq#
loticoowl http://www.lotico.com/ontology/
penis http://penis.to/#
occult http://data.totl.net/occult/
str http://nlp2rdf.lod2.eu/schema/string/
paia http://purl.org/ontology/paia#
mohammad http://manesht.ir/
poder http://poderopedia.com/vocab/
dannet http://www.wordnet.dk/owl/instance/2009/03/instances/
p20 http://zbw.eu/beta/p20/vocab/
protegedc http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl#
stac http://securitytoolbox.appspot.com/stac#
diseasome http://www4.wiwiss.fu-berlin.de/diseasome/resource/diseasome/
genab http://eulersharp.sourceforge.net/2003/03swap/genomeAbnormality#
openskos http://openskos.org/xmlns#
ncit http://purl.obolibrary.org/obo/NCIT_
lod2 http://lod2.eu/schema/
prism21 http://prismstandard.org/namespaces/basic/2.1/
odo http://ocean-data.org/schema/
wscaim http://www.openk.org/wscaim.owl#
bcncon http://datos.bcn.cl/ontologies/bcn-congress#
bk http://www.provbook.org/ns/#
s2s http://escience.rpi.edu/ontology/sesf/s2s/4/0/
marshall http://sites.google.com/site/xgmaitc/
itsmo http://ontology.it/itsmo/v1#
genea http://www.owl-ontologies.com/generations.owl#
adr http://kg.artsdata.ca/resource/
prvr http://purl.org/ontology/prv/rules#
kbp http://tackbp.org/2013/ontology#
l4a http://labels4all.info/ns/
nocal http://vocab.deri.ie/nocal#
harrisons http://harrisons.cc/
clinic http://example.com/clinic#
lso http://linkedspending.aksw.org/ontology/
hasco http://hadatac.org/ont/hasco/
osp http://data.lirmm.fr/ontologies/osp#
date http://contextus.net/ontology/ontomedia/misc/date#
skos08 http://www.w3.org/2008/05/skos#
wno http://wordnet-rdf.princeton.edu/ontology#
curr https://w3id.org/cc#
doas http://deductions.github.io/doas.owl.ttl#
ql http://www.w3.org/2004/ql#
sci http://data.scientology.org/ns/
gesis http://lod.gesis.org/lodpilot/ALLBUS/vocab.rdf#
ev http://www.w3.org/2001/xml-events/
csm http://purl.org/csm/1.0#
atomrdf http://atomowl.org/ontologies/atomrdf#
mod http://www.isibang.ac.in/ns/mod#
smg http://ns.cerise-project.nl/energy/def/cim-smartgrid#
wfprov http://purl.org/wf4ever/wfprov#
property http://fr.dbpedia.org/property/
osukdt http://www.ordnancesurvey.co.uk/ontology/Datatypes.owl#
decision https://decision-ontology.googlecode.com/svn/trunk/decision.owl#
ds http://purl.org/ctic/dcat#
verb https://w3id.org/verb/
ost http://w3id.org/ost/ns#
vgo http://purl.org/net/VideoGameOntology#
fma http://sig.uw.edu/fma#
shacl http://www.w3.org/ns/shacl#
pizza http://www.co-ode.org/ontologies/pizza/pizza.owl#
sam http://def.seegrid.csiro.au/isotc211/iso19156/2011/sampling#
lio http://purl.org/net/lio#
wro http://purl.org/net/wf4ever/ro#
insdc http://ddbj.nig.ac.jp/ontologies/sequence#
sbench http://swat.cse.lehigh.edu/onto/univ-bench.owl#
mads http://www.loc.gov/mads/rdf/v1#
bco http://purl.obolibrary.org/obo/bco.owl#
dpl http://dbpedialite.org/things/
oslo http://purl.org/oslo/ns/localgov#
of http://owlrep.eu01.aws.af.cm/fridge#
lh http://vocab.inf.ed.ac.uk/library/holdings#
camelot http://vocab.ox.ac.uk/camelot#
scor http://purl.org/eis/vocab/scor#
b2rpubchem http://bio2rdf.org/ns/ns/ns/pubchem#
ngeoi http://vocab.lenka.no/geo-deling#
prvt http://purl.org/net/provenance/types#
tao http://pubannotation.org/ontology/tao.owl#
tac http://ns.bergnet.org/tac/0.1/triple-access-control#
scms http://ns.aksw.org/scms/annotations/
centrifuge http://purl.org/twc/vocab/centrifuge#
rdacarrier http://rdvocab.info/termList/RDACarrierType/
okg http://openknowledgegraph.org/ontology/
opllic http://www.openlinksw.com/ontology/licenses#
category http://dbpedia.org/resource/Category:
pco http://purl.org/procurement/public-contracts#
idemo http://rdf.insee.fr/def/demo#
gov http://gov.genealogy.net/ontology.owl#
omnlife http://open-multinet.info/ontology/omn-lifecycle#
pod https://project-open-data.cio.gov/v1.1/schema/#
art http://w3id.org/art/terms/1.0/
wsl http://www.wsmo.org/ns/wsmo-lite#
mpeg7 http://rhizomik.net/ontologies/2005/03/Mpeg7-2001.owl#
cis http://purl.org/NET/cloudisus#
dn http://purl.org/datanode/ns/
refe http://orion.tw.rpi.edu/~xgmatwc/refe/
shw http://paul.staroch.name/thesis/SmartHomeWeather.owl#
campsite http://www.openlinksw.com/campsites/schema#
shoah http://dati.cdec.it/lod/shoah/
aerols http://xmlns.com/aerols/0.1/
cpsv http://purl.org/vocab/cpsv#
biordf http://purl.org/net/biordfmicroarray/ns#
opencyc http://sw.opencyc.org/concept/
rec54 http://www.w3.org/2001/02pd/rec54.rdf#
bv http://purl.org/vocommons/bv#
mmd http://musicbrainz.org/ns/mmd-1.0#
vsto http://escience.rpi.edu/ontology/vsto/2/0/vsto.owl#
sso http://nlp2rdf.lod2.eu/schema/sso/
healthcare http://www.agfa.com/w3c/2009/healthCare#
clinproc http://www.agfa.com/w3c/2009/clinicalProcedure#
ottr http://ns.ottr.xyz/templates#
lc http://semweb.mmlab.be/ns/linkedconnections#
ebu http://semantic.eurobau.com/eurobau-utility.owl#
ptop http://www.ontotext.com/proton/protontop#
dbyago http://dbpedia.org/class/yago/
chembl http://rdf.ebi.ac.uk/terms/chembl#
faq http://www.openlinksw.com/ontology/faq#
dpc http://hospee.org/ontologies/dpc/
te http://www.w3.org/2006/time-entry#
tisc http://observedchange.com/tisc/ns#
ssso http://purl.org/ontology/ssso#
latitude https://www.w3.org/2006/vcard/ns#
mtecore http://purl.org/olia/mte/multext-east.owl#
pronom http://reference.data.gov.uk/technical-registry/
l4lod http://ns.inria.fr/l4lod/v2/
cts2 http://schema.omg.org/spec/CTS2/1.0/
hifm http://purl.org/net/hifm/data#
jpo http://rdf.jpostdb.org/ontology/jpost.owl#
odcs http://opendata.cz/infrastructure/odcleanstore/
thors http://resource.geosciml.org/ontology/timescale/thors#
iol http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl#
sao http://salt.semanticauthoring.org/ontologies/sao#
lctr http://data.linkedct.org/vocab/resource/
cart http://purl.org/net/cartCoord#
yo http://yovisto.com/
s4ac http://ns.inria.fr/s4ac/v2#
alchemy http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#
saxon http://saxon.sf.net/
crv http://purl.org/twc/vocab/datacarver#
stream http://dbpedia.org/ontology/Stream/
trait http://contextus.net/ontology/ontomedia/ext/common/trait#
bcnnorms http://datos.bcn.cl/ontologies/bcn-norms#
sioctypes http://rdfs.org/sioc/types#
antenne https://data.zendantennes.omgeving.vlaanderen.be/ns/zendantenne#
qrl http://www.aifb.kit.edu/project/ld-retriever/qrl#
ecrm http://erlangen-crm.org/current/
security http://securitytoolbox.appspot.com/securityMain#
geovocab http://geovocab.org/
rdamt http://rdaregistry.info/termList/RDAMediaType/
bihap http://bihap.kb.gov.tr/ontology/
cpant http://purl.org/NET/cpan-uri/terms#
germplasm http://purl.org/germplasm/terms#
lsc http://linkedscience.org/lsc/ns#
malignneo http://www.agfa.com/w3c/2009/malignantNeoplasm#
pkmn http://pokedex.dataincubator.org/pkm/
fao http://fao.270a.info/dataset/
strdf http://strdf.di.uoa.gr/ontology#
msr http://www.telegraphis.net/ontology/measurement/measurement#
cosmo http://purl.org/ontology/cosmo#
esco http://data.europa.eu/esco/model#
guo http://purl.org/hpi/guo#
who http://www.who.int/vocab/ontology#
goog http://schema.googleapis.com/
webbox http://webbox.ecs.soton.ac.uk/ns#
wkd http://schema.wolterskluwer.de/
zoomaterms http://rdf.ebi.ac.uk/vocabulary/zooma/
gf http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature#
wlo http://purl.org/ontology/wo/
dash http://datashapes.org/dash#
oarj http://opendepot.org/reference/linked/1.0/
mico http://www.mico-project.eu/ns/platform/1.0/schema#
puelia http://kwijibo.talis.com/vocabs/puelia#
ekaw http://data.semanticweb.org/conference/ekaw/2012/complete/
rmo http://eatld.et.tu-dresden.de/rmo#
xlime http://xlime-project.org/vocab/
ccrel http://creativecommons.org/ns#
c4dm http://purl.org/NET/c4dm/event.owl#
bn http://babelnet.org/rdf/
laposte http://data.lirmm.fr/ontologies/laposte#
oml http://def.seegrid.csiro.au/ontology/om/om-lite#
qud http://qudt.org/1.1/schema/qudt#
dcndl http://ndl.go.jp/dcndl/terms/
tw http://tw.rpi.edu/schema/
seokoeln http://rankrage.de/
semio http://www.lingvoj.org/semio#
dawgt http://www.w3.org/2001/sw/DataAccess/tests/test-dawg#
hints2005 http://purl.org/twc/cabig/model/HINTS2005-1.owl#
ep http://eprints.org/ontology/
obsm http://rdf.geospecies.org/methods/observationMethod#
vin http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#
li http://def.seegrid.csiro.au/isotc211/iso19115/2003/lineage#
oan http://data.lirmm.fr/ontologies/oan/
part http://purl.org/vocab/participation/schema#
onssprel http://www.ordnancesurvey.co.uk/ontology/SpatialRelations/v0.2/SpatialRelations.owl#
conf http://richard.cyganiak.de/2007/pubby/config.rdf#
dr http://purl.org/swan/2.0/discourse-relationships/
scoro http://purl.org/spar/scoro/
fos http://futurios.org/fos/spec/
quantities http://eulersharp.sourceforge.net/2003/03swap/quantitiesExtension#
twaapi http://purl.org/twc/vocab/aapi-schema#
pattern http://www.essepuntato.it/2008/12/pattern#
seq http://www.ontologydesignpatterns.org/cp/owl/sequence.owl#
namespaces https://vg.no/
rdae http://rdaregistry.info/Elements/e/
mv http://schema.mobivoc.org/
xrd http://docs.oasis-open.org/ns/xri/xrd-1.0#
gastro http://www.ebsemantics.net/gastro#
emtr http://purl.org/NET/ssnext/electricmeters#
rdarel2 http://metadataregistry.org/uri/schema/RDARelationshipsGR2/
rdafr http://rdaregistry.info/termList/frequency/
w3con http://www.w3.org/2000/10/swap/pim/contact#
op http://environment.data.gov.au/def/op#
rssynd http://web.resource.org/rss/1.0/modules/syndication/
holding http://purl.org/ontology/holding#
ll http://lodlaundromat.org/resource/
brick https://brickschema.org/schema/Brick#
dcs http://ontologi.es/doap-changeset#
my http://www.mobile.com/model/
odrs http://schema.theodi.org/odrs#
bgdbp http://bg.dbpedia.org/property/
rdasoi http://rdaregistry.info/termList/statIdentification/
bgt https://bgt.basisregistraties.overheid.nl/bgt/def/
dpv http://www.w3.org/ns/dpv#
mmf http://linkedmultimedia.org/sparql-mm/ns/1.0.0/function#
pnt http://data.press.net/ontology/tag/
oae http://www.ics.forth.gr/isl/oae/core#
kbv https://id.kb.se/vocab/
osgeom http://data.ordnancesurvey.co.uk/ontology/geometry/
rdamedia http://rdvocab.info/termList/RDAMediaType/
sdmxd http://purl.org/linked-data/sdmx/2009/dimension#
lsqv http://lsq.aksw.org/vocab#
xcql http://docs.oasis-open.org/ns/search-ws/xcql#
lsmap http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#
stories http://purl.org/ontology/stories/
cvbase http://purl.org/captsolo/resume-rdf/0.2/base#
vartrans http://www.w3.org/ns/lemon/vartrans#
raul http://vocab.deri.ie/raul#
rdafnm http://rdaregistry.info/termList/FormNoteMus/
pv https://piveau.eu/ns/voc#
daisy http://www.daisy.org/z3998/2012/vocab/
cbo http://comicmeta.org/cbo/
bgn http://bibliograph.net/schemas/
gl http://schema.geolink.org/
d2d http://rdfns.org/d2d/
vsso http://automotive.eurecom.fr/vsso#
moac http://observedchange.com/moac/ns#
dbcat http://dbpedia.org/resource/Category:
omapi http://purl.org/omapi/0.2/#
telmap http://purl.org/telmap/
oplcert http://www.openlinksw.com/schemas/cert#
dvia http://data.eurecom.fr/ontology/dvia#
wikterms http://wiktionary.dbpedia.org/terms/
lodac http://lod.ac/ns/lodac#
finlaw http://purl.org/finlex/schema/laki/
mged http://mged.sourceforge.net/ontologies/MGEDOntology.owl#
nerd http://nerd.eurecom.fr/ontology#
tm http://def.seegrid.csiro.au/isotc211/iso19108/2002/temporal#
wb http://data.worldbank.org/
doi https://doi.org/
spt http://spitfire-project.eu/ontology/ns/
mt http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#
delta http://www.w3.org/2004/delta#
ox http://vocab.ox.ac.uk/projectfunding#
lcy http://purl.org/vocab/lifecycle/schema#
lldr http://purl.oclc.org/NET/lldr/ns#
ljkl http://teste.com/
pnc http://data.press.net/ontology/classification/
auto http://auto.schema.org/
eui http://institutions.publicdata.eu/#
oss http://opendata.caceres.es/def/ontosemanasanta#
dbpr http://dbpedia.org/resource/
dqm http://purl.org/dqm-vocabulary/v1/dqm#
sg http://name.scigraph.com/ontologies/core/
nidm http://nidm.nidash.org/
ogc http://www.opengis.net/def/
bgcat http://bg.dbpedia.org/resource/?????????:
mb http://dbtune.org/musicbrainz/resource/instrument/
tblcard http://www.w3.org/People/Berners-Lee/card#
od http://purl.org/twc/vocab/opendap#
accom http://purl.org/acco/ns#
disease http://www.agfa.com/w3c/2009/humanDisorder#
pingback http://purl.org/net/pingback/
vsws http://verticalsearchworks.com/ontology/synset#
swperson http://data.semanticweb.org/person/
activity https://www.w3.org/TR/activitystreams-vocabulary/
fam http://vocab.fusepool.info/fam#
kees http://linkeddata.center/kees/v1#
affymetrix http://bio2rdf.org/affymetrix_vocabulary:
rdacct http://rdaregistry.info/termList/CollTitle/
tg https://triplydb.com/Triply/tg/def/
cbase http://ontologycentral.com/2010/05/cb/vocab#
mvco http://purl.oclc.org/NET/mvco.owl#
im http://imgpedia.dcc.uchile.cl/resource/
onc http://www.ics.forth.gr/isl/oncm/core#
pni http://data.press.net/ontology/identifier/
onyx http://www.gsi.dit.upm.es/ontologies/onyx/ns#
bcnbio http://datos.bcn.cl/ontologies/bcn-biographies#
rvdata http://data.rvdata.us/
scip http://lod.taxonconcept.org/ontology/sci_people.owl#
crml http://semweb.mmlab.be/ns/rml/condition#
allot https://w3id.org/akn/ontology/allot#
snarm http://rdf.myexperiment.org/ontologies/snarm/
npgx http://ns.nature.com/extensions/
tsioc http://rdfs.org/sioc/types#
stats http://purl.org/rdfstats/stats#
rdacontent http://rdvocab.info/termList/RDAContentType/
app http://jmvanel.free.fr/ontology/software_applications.n3#
xapi https://w3id.org/xapi/ontology#
turismo http://idi.fundacionctic.org/cruzar/turismo#
friends http://www.openarchives.org/OAI/2.0/friends/
rdarel http://rdvocab.info/RDARelationshipsWEMI/
lsweb http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-data.owl#
fincaselaw http://purl.org/finlex/schema/oikeus/
c9d http://purl.org/twc/vocab/conversion/
cwrc http://sparql.cwrc.ca/ontology/cwrc#
fog https://w3id.org/fog#
gm http://def.seegrid.csiro.au/isotc211/iso19107/2003/geometry#
emoca http://ns.inria.fr/emoca#
lmo http://linkedmultimedia.org/sparql-mm/ns/2.0.0/ontology#
deps http://ontologi.es/doap-deps#
isocat http://www.isocat.org/datcat/
quty http://www.telegraphis.net/ontology/measurement/quantity#
infor http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#
osspr http://data.ordnancesurvey.co.uk/ontology/spatialrelations/
mrel http://id.loc.gov/vocabulary/relators/
spfood http://kmi.open.ac.uk/projects/smartproducts/ontologies/food.owl#
esaloj http://vocab.linkeddata.es/datosabiertos/def/turismo/alojamiento#
particip http://purl.org/vocab/participation/schema#
origins http://origins.link/
qvoc http://mlode.nlp2rdf.org/quranvocab#
call http://webofcode.org/wfn/call:
eumida http://data.kasabi.com/dataset/eumida/terms/
drm http://vocab.data.gov/def/drm#
llo http://lodlaundromat.org/ontology/
pkm http://www.ontotext.com/proton/protonkm#
mil http://rdf.muninn-project.org/ontologies/military#
rdagd http://rdaregistry.info/termList/gender/
aers http://aers.data2semantics.org/resource/
gcis http://data.globalchange.gov/gcis.owl#
fcs http://clarin.eu/fcs/resource#
gpml http://vocabularies.wikipathways.org/gpml#
ctorg http://purl.org/ctic/infraestructuras/organizacion#
bot https://w3id.org/bot#
ostop http://www.ordnancesurvey.co.uk/ontology/Topography/v0.1/Topography.owl#
icane http://www.icane.es/opendata/vocab#
evident http://purl.org/net/evident#
dogont http://elite.polito.it/ontologies/dogont.owl#
viso http://purl.org/viso/
orth http://purl.org/net/orth#
employee http://www.employee.com/data#
foam https://www.koerperfettwaage-test.de/
saws http://purl.org/saws/ontology#
esequip http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/equipamiento#
prof http://www.w3.org/ns/dx/prof/
rdatc http://rdaregistry.info/termList/trackConfig/
kai http://kai.uni-kiel.de/
biro http://purl.org/spar/biro/
salad https://w3id.org/cwl/salad#
rdami http://rdaregistry.info/termList/modeIssue/
voidp http://www.enakting.org/provenance/voidp/
oh http://semweb.mmlab.be/ns/oh#
mtlo http://www.ics.forth.gr/isl/MarineTLO/v4/marinetlo.owl#
dao http://purl.org/dao#
radion http://www.w3.org/ns/radion#
odapp http://vocab.deri.ie/odapp#
wn31 http://wordnet-rdf.princeton.edu/wn31/
driver http://deductions.github.io/drivers.owl.ttl#
add https://mre.zcu.cz/ontology/stroke.owl#
dbtont http://dbtropes.org/ont/
lexcz http://purl.org/lex/cz#
graffle http://purl.org/twc/vocab/vsr/graffle#
agls http://www.agls.gov.au/agls/terms/
olad http://openlad.org/vocab#
pois http://purl.oclc.org/POIS/vcblr#
gawd http://gawd.atlantides.org/terms/
agr http://promsns.org/def/agr#
viskov http://trust.utep.edu/visko/ontology/visko-view-v3.owl#
pair http://virtual-assembly.org/ontologies/pair#
pvcs http://purl.org/twc/vocab/pvcs#
bwb http://doc.metalex.eu/bwb/ontology/
rdagw http://rdaregistry.info/termList/grooveWidth/
sct http://snomed.info/id/
rdabm http://rdaregistry.info/termList/RDABaseMaterial/
lpeu http://purl.org/linkedpolitics/vocabulary/eu/plenary/
mml http://www.w3.org/1998/Math/MathML/
gadm http://gadm.geovocab.org/ontology#
pmd https://w3id.org/pmd/co/
pic http://www.ipaw.info/ns/picaso#
dbptmpl http://dbpedia.org/resource/Template:
s3db http://www.s3db.org/core#
lden http://www.linklion.org/lden/
ids https://w3id.org/idsa/core/
company http://intellimind.io/ns/company#
dcite http://purl.org/spar/datacite/
dcoid http://dx.deepcarbon.net/
ftcontent http://www.ft.com/ontology/content/
ramon http://rdfdata.eionet.europa.eu/ramon/ontology/
cmdm http://infra.clarin.eu/cmd/
odpart http://www.ontologydesignpatterns.org/cp/owl/participation.owl#
roevo http://purl.org/wf4ever/roevo#
poste http://data.lirmm.fr/ontologies/poste#
eunis http://eunis.eea.europa.eu/rdf/species-schema.rdf#
w3po http://purl.org/provenance/w3p/w3po#
eurostat http://dd.eionet.europa.eu/vocabulary/eurostat/
lmdb http://data.linkedmdb.org/
lsd http://linkedwidgets.org/statisticaldata/ontology/
ontopic http://www.ontologydesignpatterns.org/ont/dul/ontopic.owl#
lexicon http://www.example.org/lexicon#
ws http://www.w3.org/ns/pim/space#
lw http://linkedwidgets.org/ontologies/
rdl http://data.posccaesar.org/rdl/
d0 http://ontologydesignpatterns.org/ont/wikipedia/d0.owl#
pato http://purl.obolibrary.org/obo/
hico http://purl.org/emmedi/hico/
lmm2 http://www.ontologydesignpatterns.org/ont/lmm/LMM_L2.owl#
tddo http://databugger.aksw.org/ns/core#
samfl http://def.seegrid.csiro.au/ontology/om/sam-lite#
geocontext http://www.geocontext.org/publ/2013/vocab#
frb http://frb.270a.info/dataset/
bbcprov http://www.bbc.co.uk/ontologies/provenance/
coll http://purl.org/co/
lda http://purl.org/linked-data/api/vocab#
uc http://ucuenca.edu.ec/ontology#
bgdbr http://bg.dbpedia.org/resource/
galaksiya http://ontoloji.galaksiya.com/vocab/
geos http://www.telegraphis.net/ontology/geography/geography#
language http://id.loc.gov/vocabulary/iso639-1/
merge http://jazz.net/ns/lqe/merge/
fcp http://www.newmedialab.at/fcp/
elec http://purl.org/ctic/sector-publico/elecciones#
webservice http://www.openlinksw.com/ontology/webservices#
geojson https://purl.org/geojson/vocab#
imo http://imgpedia.dcc.uchile.cl/ontology#
vext http://ldf.fi/void-ext#
dbrc http://dbpedia.org/resource/Category:
dot https://w3id.org/dot#
hto http://project-haystack.org/hto#
situ http://www.ontologydesignpatterns.org/cp/owl/situation.owl#
prviv http://purl.org/net/provenance/integrity#
cdao http://purl.obolibrary.org/obo/
vmm http://spi-fm.uca.es/spdef/models/genericTools/vmm/1.0#
lmm1 http://www.ontologydesignpatterns.org/ont/lmm/LMM_L1.owl#
rdact http://rdaregistry.info/termList/RDACarrierType/
msm http://iserve.kmi.open.ac.uk/ns/msm#
vapour http://vapour.sourceforge.net/vocab.rdf#
swpm http://spi-fm.uca.es/spdef/models/deployment/swpm/1.0#
s4envi https://w3id.org/def/saref4envi#
waarde https://lod.milieuinfo.be/ns/waarde#
jolux http://data.legilux.public.lu/resource/ontology/jolux#
vvo http://purl.org/vvo/ns#
biotop http://purl.org/biotop/biotop.owl#
ou https://opendata.unex.es/def/ontouniversidad#
dq http://def.seegrid.csiro.au/isotc211/iso19115/2003/dataquality#
ldt https://www.w3.org/ns/ldt#
being http://purl.org/ontomedia/ext/common/being#
vag http://www.essepuntato.it/2013/10/vagueness/
fire http://tldp.org/HOWTO/XML-RPC-HOWTO/xmlrpc-howto-java.html#
wikim http://spi-fm.uca.es/spdef/models/genericTools/wikim/1.0#
bioc http://deductions.github.io/biological-collections.owl.ttl#
agrd http://agrinepaldata.com/
opengov http://www.w3.org/opengov#
gnvc http://purl.org/gc/
wfn http://webofcode.org/wfn/
olac http://www.language-archives.org/OLAC/1.0/
uis http://uis.270a.info/dataset/
qb4o http://purl.org/olap#
ceterms http://purl.org/ctdl/terms/
year http://www.w3.org/year/
gaf http://groundedannotationframework.org/
sylld http://www.semanticweb.org/syllabus/data/
npdv http://sws.ifi.uio.no/vocab/npd#
ppn http://parliament.uk/ontologies/person-name/
vsw http://verticalsearchworks.com/ontology/
amalgame http://purl.org/vocabularies/amalgame#
zr http://explain.z3950.org/dtd/2.0/
phdd http://rdf-vocabulary.ddialliance.org/phdd#
scufl2 http://ns.taverna.org.uk/2010/scufl2#
geosp http://rdf.geospecies.org/ont/geospecies#
viskoo http://trust.utep.edu/visko/ontology/visko-operator-v3.owl#
omdoc http://omdoc.org/ontology/
pcdt http://purl.org/procurement/public-contracts-datatypes#
wf4ever http://purl.org/wf4ever/wf4ever#
rdai http://rdaregistry.info/Elements/i/
saif http://wwwiti.cs.uni-magdeburg.de/~srahman/
static http://vocab-ld.org/vocab/static-ld#
step http://purl.org/net/step#
gt https://vocab.eccenca.com/geniustex/
roar https://w3id.org/roar#
dcx http://dublincore.org/dcx/
graves http://rdf.muninn-project.org/ontologies/graves#
aws http://purl.oclc.org/NET/ssnx/meteo/aws#
tis http://www.ontologydesignpatterns.org/cp/owl/timeindexedsituation.owl#
rdarole http://rdvocab.info/roles/
trig http://www.w3.org/2004/03/trix/rdfg-1/
location http://sw.deri.org/2006/07/location/loc#
jp1 http://rdf.muninn-project.org/ontologies/jp1/
ns1 http://www.w3.org/1999/xhtml/vocab#
pwo http://purl.org/spar/pwo/
opmo http://openprovenance.org/model/opmo#
bnf http://www.w3.org/2000/10/swap/grammar/bnf#
citof http://www.essepuntato.it/2013/03/cito-functions#
si https://si-digital-framework.org/SI#
acrt http://privatealpha.com/ontology/certification/1#
ecglview http://schema.geolink.org/view/
pmc http://identifiers.org/pmc/
ccp http://cookingbigdata.com/linkeddata/ccpricing#
locwd http://purl.org/locwd/schema#
mammal http://lod.taxonconcept.org/ontology/p01/Mammalia/index.owl#
rlnr http://rdflivenews.aksw.org/resource/
wn20 http://www.w3.org/2006/03/wn/wn20/
oplprod http://www.openlinksw.com/ontology/products#
oecc http://www.oegov.org/core/owl/cc#
beth http://www.google.com/
vrank http://purl.org/voc/vrank#
rut http://rdfunit.aksw.org/ns/core#
frbrer http://iflastandards.info/ns/fr/frbr/frbrer/
ldvm http://linked.opendata.cz/ontology/ldvm/
lido http://www.lido-schema.org/
lexvo http://lexvo.org/ontology#
swpatho http://swpatho.ag-nbi.de/context/meta.owl#
imf http://imf.270a.info/dataset/
rdf123 http://rdf123.umbc.edu/ns/
crime http://purl.org/vocab/reloc/
mocanal http://www.semanticweb.org/asow/ontologies/2013/9/untitled-ontology-36#
gci http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl#
locah http://data.archiveshub.ac.uk/def/
cd http://citydata.wu.ac.at/ns#
genre http://sparql.cwrc.ca/ontologies/genre#
topo http://data.ign.fr/def/topo#
rvz http://rdfvizler.dyreriket.xyz/vocabulary/core#
frsad http://iflastandards.info/ns/fr/frsad/
rdagrp http://rdaregistry.info/termList/groovePitch/
obeu http://data.openbudgets.eu/ontology/
edgar http://edgarwrap.ontologycentral.com/vocab/edgar#
dsn http://purl.org/dsnotify/vocab/eventset/
bner http://datos.bne.es/resource/
osadm http://data.ordnancesurvey.co.uk/ontology/admingeo/
llm http://lodlaundromat.org/metrics/ontology/
rdafs http://rdaregistry.info/termList/fontSize/
regorg http://www.w3.org/ns/regorg#
csv http://vocab.sindice.net/csv/
puml http://plantuml.com/ontology#
bcngeo http://datos.bcn.cl/ontologies/bcn-geographics#
ordf http://purl.org/NET/ordf/
led http://led.kmi.open.ac.uk/term/
pkgsrc http://pkgsrc.co/schema#
vdpp http://data.lirmm.fr/ontologies/vdpp#
hlygt http://www.holygoat.co.uk/owl/redwood/0.1/tags/
ldl https://w3id.org/ldpdl/ns#
water http://escience.rpi.edu/ontology/semanteco/2/0/water.owl#
nxs http://www.neclimateus.org/
omnfed http://open-multinet.info/ontology/omn-federation#
odbc http://www.openlinksw.com/ontology/odbc#
reegle http://reegle.info/schema#
plg http://parliament.uk/ontologies/legislation/
csp http://vocab.deri.ie/csp#
limoo http://purl.org/LiMo/0.1/
passim http://data.lirmm.fr/ontologies/passim#
aktivesa http://sa.aktivespace.org/ontologies/aktivesa#
fnabox http://www.ontologydesignpatterns.org/ont/framenet/abox/
moo http://www.movieontology.org/2009/11/09/movieontology.owl#
fuseki http://jena.apache.org/fuseki#
jpost http://rdf.jpostdb.org/ontology/jpost.owl#
text http://jena.apache.org/text#
dio https://w3id.org/dio#
lingvo http://www.lingvoj.org/ontology#
vir http://w3id.org/vir#
limo http://www.purl.org/limo-ontology/limo#
teamwork http://topbraid.org/teamwork#
voc http://voc.odw.tw/
owl2xml http://www.w3.org/2006/12/owl2-xml#
babelnet http://babelnet.org/2.0/
pproc http://contsem.unizar.es/def/sector-publico/pproc#
lcdr http://ns.lucid-project.org/revision/
owlse http://www.daml.org/services/owl-s/1.2/generic/Expression.owl#
ontosec http://www.semanticweb.org/ontologies/2008/11/OntologySecurity.owl#
omg https://w3id.org/omg#
eurlex http://eur-lex.publicdata.eu/ontology/
cpack http://cliopatria.swi-prolog.org/schema/cpack#
odv http://reference.data.gov.uk/def/organogram/
defns http://www.openarchives.org/OAI/2.0/
eccauth https://vocab.eccenca.com/auth/
pid http://permid.org/ontology/organization/
bpo https://w3id.org/bpo#
roterms http://purl.org/wf4ever/roterms#
laabs http://dbpedia.org/resource/
incident http://vocab.resc.info/incident#
r3d http://www.re3data.org/schema/3-0#
proms http://promsns.org/def/proms#
rdatr http://rdaregistry.info/termList/typeRec/
ali http://www.niso.org/schemas/ali/1.0/
sru http://www.loc.gov/zing/srw/
asgv http://aims.fao.org/aos/agrovoc/
airs https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#
studiop http://purl.org/resource/pilatesstudio/
ecgl http://schema.geolink.org/
contsem http://contsem.unizar.es/def/sector-publico/contratacion#
rdafmn http://rdaregistry.info/termList/MusNotation/
sx http://shex.io/ns/shex#
fred http://www.ontologydesignpatterns.org/ont/fred/domain.owl#
condition http://www.kinjal.com/condition:
ssno http://www.w3.org/ns/ssn/
jjd http://www.joshuajeeson.com/
sto https://w3id.org/i40/sto#
reg http://purl.org/linked-data/registry#
mmoon http://mmoon.org/mmoon/
agrovoc http://aims.fao.org/aos/agrovoc/
infection http://www.agfa.com/w3c/2009/infectiousDisorder#
basic http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#
eem http://purl.org/eem#
cjr http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/callejero#
rdafrbr http://rdvocab.info/uri/schema/FRBRentitiesRDA/
caplibacl http://schemas.capita-libraries.co.uk/2015/acl/schema#
logies https://data.vlaanderen.be/ns/logies#
crowd http://purl.org/crowd/
oils http://lemon-model.net/oils#
rdacc http://rdaregistry.info/termList/RDAColourContent/
muldicat http://iflastandards.info/ns/muldicat#
glview http://schema.geolink.org/dev/view/
form http://deductions-software.com/ontologies/forms.owl.ttl#
tui http://data.ifs.tuwien.ac.at/study/resource/
lofv http://purl.org/legal_form/vocab#
ln https://w3id.org/ln#
output http://volt-name.space/vocab/output#
afr http://purl.allotrope.org/ontologies/result#
gq http://genomequest.com/
cmdi http://www.clarin.eu/cmd/
gdc https://portal.gdc.cancer.gov/cases/
kegg http://bio2rdf.org/ns/kegg#
owsom https://onlinesocialmeasures.wordpress.com/
rdaftn http://rdaregistry.info/termList/TacNotation/
oplecrm http://www.openlinksw.com/ontology/ecrm#
rdarm http://registry.info/termList/recMedium/
bb http://www.snik.eu/ontology/bb/
pdf http://ns.adobe.com/pdf/1.3/
tb https://w3id.org/timebank#
ruian https://data.cssz.cz/ontology/ruian/
orcid http://orcid.org/
webac http://fedora.info/definitions/v4/webac#
iana http://www.iana.org/assignments/relation/
eccrev https://vocab.eccenca.com/revision/
rdaterm http://rdaregistry.info/termList/RDATerms/
keys http://purl.org/NET/c4dm/keys.owl#
mds http://doc.metalex.eu/id/
sirene https://sireneld.io/vocab/sirene#
munc http://ns.inria.fr/munc#
fr https://w3id.org/fr/def/core#
iati http://purl.org/collections/iati/
mdi http://w3id.org/multidimensional-interface/ontology#
oplcb http://www.openlinksw.com/schemas/crunchbase#
rdaco http://rdaregistry.info/termList/RDAContentType/
ogbd http://www.ogbd.fr/2012/ontologie#
spdx http://spdx.org/rdf/terms#
hva http://www.ebusiness-unibw.org/ontologies/hva/ontology#
oprovo http://openprovenance.org/ontology#
lawd http://lawd.info/ontology/
task http://deductions.github.io/task-management.owl.ttl#
dicom http://purl.org/healthcarevocab/v1#
soch http://kulturarvsdata.se/ksamsok#
fntbox http://www.ontologydesignpatterns.org/ont/framenet/tbox/
clirio http://clirio.kaerle.com/clirio.owl#
crsw http://courseware.rkbexplorer.com/ontologies/courseware#
lyon http://dbpedia.org/resource/Lyon/
rofch http://rdaregistry.info/termList/rofch/
ha http://sensormeasurement.appspot.com/ont/home/homeActivity#
olca http://www.lingvoj.org/olca#
ntag http://ns.inria.fr/nicetag/2010/09/09/voc#
dsv https://w3id.org/dsv#
bis http://bis.270a.info/dataset/
kml http://www.opengis.net/kml/2.2#
afm http://purl.allotrope.org/ontologies/material/
cwlprov https://w3id.org/cwl/prov#
rdarr http://rdaregistry.info/termList/RDAReductionRatio/
essglobal http://purl.org/essglobal/vocab/v1.0/
cocoon https://w3id.org/cocoon/v1.0#
mmt http://linkedmultimedia.org/sparql-mm/functions/temporal#
lmx http://www.w3.org/XML/1998/namespace/
nlon http://lod.nl.go.kr/ontology/
gnm http://www.geonames.org/ontology/mappings/
qms http://data.europa.eu/esco/qms#
eepsa https://w3id.org/eepsa#
ubiq http://server.ubiqore.com/ubiq/core#
ago http://awesemantic-geo.link/ontology/
organ http://www.univalle.edu.co/ontologies/Organ#
yd https://yodata.io/
umls http://bioportal.bioontology.org/ontologies/umls/
tsn http://purl.org/net/tsn#
csdbp http://cs.dbpedia.org/
meeting http://www.w3.org/2002/07/meeting#
td5 http://td5.org/#
roadmap http://mappings.roadmap.org/
dpn http://purl.org/dpn#
gts http://resource.geosciml.org/ontology/timescale/gts#
cim http://iec.ch/TC57/2013/CIM-schema-cim16#
apf http://jena.apache.org/ARQ/property#
mls http://www.w3.org/ns/mls#
hr http://iserve.kmi.open.ac.uk/ns/hrests#
maso http://securitytoolbox.appspot.com/MASO#
sfd http://semantic-forms.cc:9112/ldp/
diag http://www.loc.gov/zing/srw/diagnostic/
bbccms http://www.bbc.co.uk/ontologies/cms/
bevon http://rdfs.co/bevon/
lswpm http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper-parameters.owl#
pep https://w3id.org/pep/
rdag2 http://rdvocab.info/ElementsGr2/
demlab http://www.demcare.eu/ontologies/demlab.owl#
figigii http://www.omg.org/spec/FIGI/GlobalInstrumentIdentifiers/
oxi http://omerxi.com/ontologies/core.owl.ttl#
videogame http://purl.org/net/vgo#
customer http://www.valuelabs.com/
oplmkt http://www.openlinksw.com/ontology/market#
lswmo http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-modelling.owl#
shui https://vocab.eccenca.com/shui/
faostat http://reference.eionet.europa.eu/faostat/schema/
conference https://w3id.org/scholarlydata/ontology/conference-ontology.owl#
rls https://w3id.org/lovcube/ns/relovstats#
volt http://volt-name.space/ontology/
conll http://ufal.mff.cuni.cz/conll2009-st/task-description.html#
efrbroo http://erlangen-crm.org/efrbroo/
sdmxcode http://purl.org/linked-data/sdmx/2009/code#
ja http://jena.hpl.hp.com/2005/11/Assembler#
datacite http://purl.org/spar/datacite/
scco http://rdf.ebi.ac.uk/terms/surechembl#
bsym http://bsym.bloomberg.com/sym/
aprov http://purl.org/a-proc#
numbers http://km.aifb.kit.edu/projects/numbers/
cbim http://www.coinsweb.nl/cbim-2.0.rdf#
erce http://xxefe.de/
sakthi http://infotech.nitk.ac.in/research-scholars/sakthi-murugan-r/
voidext http://rdfs.org/ns/void-ext#
rofer http://rdaregistry.info/termList/rofer/
tree https://w3id.org/tree#
espresup http://vocab.linkeddata.es/datosabiertos/def/hacienda/presupuestos#
audit http://fedora.info/definitions/v4/audit#
az https://w3id.org/people/az/
uom http://www.opengis.net/def/uom/OGC/1.0/
escom http://vocab.linkeddata.es/datosabiertos/def/comercio/tejidoComercial#
county http://myexample.org/county#
geod http://vocab.lenka.no/geo-deling#
r4ta http://ns.inria.fr/ratio4ta/v1#
cwl https://w3id.org/cwl/cwl#
rdasco http://rdaregistry.info/termList/soundCont/
vstoi http://hadatac.org/ont/vstoi#
doacc http://purl.org/net/bel-epa/doacc#
ruto http://rdfunit.aksw.org/ns/core#
opa https://w3id.org/laas-iot/adream#
drk http://drakon.su/
owms http://standaarden.overheid.nl/owms/terms/
sdt http://statisticaldata.linkedwidgets.org/terms/
whisky http://vocab.org/whisky/terms/
radar http://www.radar-projekt.org/display/
sgg http://www.springernature.com/scigraph/graphs/
lslife http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-lifemapper.owl#
oplres http://www.openlinksw.com/ontology/restrictions#
open311 http://ontology.eil.utoronto.ca/open311#
datex http://vocab.datex.org/terms#
rdapmt http://rdaregistry.info/termList/prodTactile/
bdc http://dbpedia.org/resource/Category:
bdo http://purl.bdrc.io/ontology/core/
navm https://w3id.org/navigation_menu#
mexv http://mex.aksw.org/mex-algo#
mandaat http://data.vlaanderen.be/ns/mandaat#
door http://kannel.open.ac.uk/ontology#
itm http://spi-fm.uca.es/spdef/models/genericTools/itm/1.0#
rdalay http://rdaregistry.info/termList/layout/
yaco https://www.irit.fr/recherches/MELODI/ontologies/cinema#
uta http://uptheasset.org/ontology#
tix http://toptix.com/2010/esro/
amt http://academic-meta-tool.xyz/vocab#
trao http://linkeddata.finki.ukim.mk/lod/ontology/tao#
wimpo http://rdfex.org/withImports?uri=
composer http://dbpedia.org/ontology/composer/
scho http://www.scholarlydata.org/ontology/conference-ontology.owl#
esadm http://vocab.linkeddata.es/datosabiertos/def/sector-publico/territorio#
vogd http://ogd.ifs.tuwien.ac.at/vienna/geo/
memento http://mementoweb.org/ns#
rofem http://rdaregistry.info/termList/rofem/
ndnp http://chroniclingamerica.loc.gov/terms#
oliasystem http://purl.org/olia/system.owl#
assoc https://w3id.org/associations/vocab#
cwork http://www.bbc.co.uk/ontologies/creativework/
pp http://peoplesplaces.de/ontology#
oplweb http://www.openlinksw.com/schemas/oplweb#
rpath https://w3id.org/lodsight/rdf-path#
chear http://hadatac.org/ont/chear#
adf http://purl.allotrope.org/ontologies/datapackage#
bob http://good.dad/meaning/bob#
pfeepsa https://w3id.org/pfeepsa#
wdtn http://www.wikidata.org/prop/direct-normalized/
fun http://w3id.org/sparql-generate/fn/
jerm http://jermontology.org/ontology/JERMOntology#
markus http://www.markus.com/
rofrr http://rdaregistry.info/termList/rofrr/
eol http://purl.org/biodiversity/eol/
svcs http://rdfs.org/sioc/services#
one https://bioportal.bioontology.org/ontologies/ONE/
lheo http://www.conjecto.com/ontology/2015/lheo#
ver https://w3id.org/version/ontology#
vcard2006 http://www.w3.org/2006/vcard/ns#
spcm http://spi-fm.uca.es/spdef/models/deployment/spcm/1.0#
hello https://www.youtube.com/user/SuperTellAFriend/featured/
rdaemm http://rdaregistry.info/termList/emulsionMicro/
planet http://dbpedia.org/
ctrl https://w3id.org/ibp/CTRLont#
seeds http://deductions.github.io/seeds.owl.ttl#
qkdv http://qudt.org/vocab/dimensionvector/
onisep http://rdf.onisep.fr/resource/
newsevents http://www.aifb.uni-karlsruhe.de/WBS/uhe/ontologies#
cpov http://data.europa.eu/m8g/
bds http://www.bigdata.com/rdf/search#
timex http://data.wu.ac.at/ns/timex#
fdbp http://fr.dbpedia.org/property/
lgdm http://linkedgeodata.org/meta/
rdag1 http://rdvocab.info/Elements/
literal http://www.essepuntato.it/2010/06/literalreification/
bblfish http://bblfish.net/people/henry/card#
emergelm http://purl.org/emergel/modules#
llont http://www.linklion.org/ontology#
eccdi https://vocab.eccenca.com/di/
mexalgo http://mex.aksw.org/mex-algo#
fhir http://hl7.org/fhir/
physo http://merlin.phys.uni.lodz.pl/onto/physo/physo.owl#
esapar http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/aparcamiento#
dbug http://ontologi.es/doap-bugs#
dk http://www.data-knowledge.org/dk/schema/rdf/latest/
lovc https://w3id.org/lovcube/ns/lovcube#
vidont http://vidont.org/
bbccore http://www.bbc.co.uk/ontologies/coreconcepts/
url http://schema.org/
ecore http://www.eclipse.org/emf/2002/Ecore#
dcosample http://info.deepcarbon.net/sample/schema#
frgeo http://rdf.insee.fr/geo/
edr https://w3id.org/laas-iot/edr#
gbol http://gbol.life/0.1#
gg http://www.gemeentegeschiedenis.nl/gg-schema#
ofrd http://purl.org/opdm/refrigerator#
odf http://docs.oasis-open.org/ns/office/1.2/meta/odf#
its http://www.w3.org/2005/11/its/rdf#
rofid http://rdaregistry.info/termList/rofid/
minim http://purl.org/minim/minim#
cue http://www.clarin.eu/cmdi/cues/display/1.0#
sdshare http://www.sdshare.org/2012/extension/
traffic http://www.sensormeasurement.appspot.com/ont/transport/traffic#
glycan http://purl.jp/bio/12/glyco/glycan#
rdabf http://rdaregistry.info/termList/bookFormat/
mem http://mementoweb.org/ns#
vocnet http://schema.vocnet.org/
bld http://biglinkeddata.com/
eame http://www.semanticweb.org/ontologia_EA#
biml http://schemas.varigence.com/biml.xsd#
opllog http://www.openlinksw.com/ontology/logging#
religion http://rdf.muninn-project.org/ontologies/religion#
lemonuby http://lemon-model.net/lexica/uby/
hdo http://www.samos.gr/ontologies/helpdeskOnto.owl#
rdaz http://rdaregistry.info/Elements/z/
h2o http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#
travel http://www.co-ode.org/roberts/travel.owl#
pmo http://premon.fbk.eu/ontology/core#
vehma http://deductions.github.io/vehicule-management.owl.ttl#
mwapi https://www.mediawiki.org/ontology#API/
physics http://www.astro.umd.edu/~eshaya/astro-onto/owl/physics.owl#
ecoll http://purl.org/ceu/eco/1.0#
lmf http://www.lexinfo.net/lmf#
osd http://a9.com/-/spec/opensearch/1.1/
oplli http://www.openlinksw.com/schemas/linkedin#
gont https://gont.ch/
tx http://swtmp.gitlab.io/vocabulary/templates.owl#
rdag3 http://rdvocab.info/ElementsGr3/
frappe http://streamreasoning.org/ontologies/frappe#
esservicio http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#
lg https://purl.org/lg/
semiot http://w3id.org/semiot/ontologies/semiot#
escjr http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/callejero#
id http://identifiers.org/
ioto http://www.irit.fr/recherches/MELODI/ontologies/IoT-O#
otl https://w3id.org/opentrafficlights#
ims http://www.imsglobal.org/xsd/imsmd_v1p2/
rdaar http://rdaregistry.info/termList/AspectRatio/
rofrt http://rdaregistry.info/termList/rofrt/
duv http://www.w3.org/ns/duv#
lfov https://w3id.org/legal_form#
lmu https://w3id.org/laas-iot/lmu#
summa http://purl.org/voc/summa/
mexcore http://mex.aksw.org/mex-core#
pmhb http://pmhb.org/
ido http://purl.obolibrary.org/obo/ido.owl#
nobel http://data.nobelprize.org/terms/
rdacarx http://rdaregistry.info/termList/RDACarrierEU/
rdapm http://rdaregistry.info/termList/RDAproductionMethod/
bdr http://purl.bdrc.io/resource/
system http://www.univalle.edu.co/ontologies/System#
fp3 http://vocab.fusepool.info/fp3#
iter http://w3id.org/sparql-generate/iter/
nih http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
nkos http://w3id.org/nkos#
besluit http://data.vlaanderen.be/ns/besluit#
hasneto http://hadatac.org/ont/hasneto#
ensembl http://rdf.ebi.ac.uk/resource/ensembl/
huto http://ns.inria.fr/huto/
gns http://sws.geonames.org/
meshv http://id.nlm.nih.gov/mesh/vocab#
rdafnv http://rdaregistry.info/termList/noteForm/
wde http://www.wikidata.org/entity/
sfn http://semweb.datasciencelab.be/ns/sfn#
cubeont http://ontology.cube.global/
vacseen1 http://www.semanticweb.org/parthasb/ontologies/2014/6/vacseen1/
provinsi http://provinsi.com/
da https://www.wowman.org/index.php?id=1&type=get#
rofin http://rdaregistry.info/termList/rofin/
oplacl http://www.openlinksw.com/ontology/acl#
persee http://data.persee.fr/ontology/persee_ontology/
cpi http://www.ebusiness-unibw.org/ontologies/cpi/ns#
irsteaont http://ontology.irstea.fr/weather/ontology#
oup http://purl.org/ontology-use-patterns#
ipsv http://id.esd.org.uk/list/
mydb http://mydb.org/
pcit http://public-contracts.nexacenter.org/id/propertiesRole/
odapps http://semweb.mmlab.be/ns/odapps#
oplstocks http://www.openlinksw.com/ontology/stocks#
dicera http://semweb.mmlab.be/ns/dicera#
swrc2 https://www.cs.vu.nl/~mcaklein/onto/swrc_ext/2005/05#
fnom https://w3id.org/function/vocabulary/mapping#
tgm http://id.loc.gov/vocabulary/graphicMaterials/
geovoid http://purl.org/geovocamp/ontology/geovoid/
vplan http://www.ifs.tuwien.ac.at/~miksa/ontologies/VPlan.owl#
vam http://www.metmuseum.org/
ttla https://w3id.org/ttla/
aml https://w3id.org/i40/aml#
veo http://linkeddata.finki.ukim.mk/lod/ontology/veo#
voidex http://www.swi-prolog.org/rdf/library/
brk http://brk.basisregistraties.overheid.nl/def/brk#
rdabs http://rdaregistry.info/termList/broadcastStand/
tosh http://topbraid.org/tosh#
dsw http://purl.org/dsw/
tarql http://tarql.github.io/tarql#
foaffff http://gogl.com/
nno https://w3id.org/nno/ontology#
dwciri http://rs.tdwg.org/dwc/iri/
cog http://purl.org/ontology/cco/core#
nature http://deductions.github.io/nature_observation.owl.ttl#
ucum http://purl.oclc.org/NET/muo/ucum/
s4syst https://saref.etsi.org/saref4syst/
sorg http://schema.org/
bsh https://brickschema.org/schema/1.1.0/BrickShape#
iiif http://iiif.io/api/image/2#
uby http://purl.org/olia/ubyCat.owl#
sgfn http://w3id.org/sparql-generate/fn/
uneskos http://purl.org/voc/uneskos#
oplwebsrv http://www.openlinksw.com/ontology/webservices#
mmm http://www.mico-project.eu/ns/mmm/2.0/schema#
pcdm http://pcdm.org/models#
yso http://www.yso.fi/onto/yso/
l2sp http://www.linked2safety-project.eu/properties/
devuan https://devuan.net.br/
alice http://example.org/
rdaspc http://rdaregistry.info/termList/specPlayback/
legal http://www.w3.org/ns/legal#
ilap http://data.posccaesar.org/ilap/
eccpubsub https://vocab.eccenca.com/pubsub/
lgt http://linkedgadget.com/wiki/Property:
ca http://complyadvantage.com/
rdacdt http://rdaregistry.info/termList/RDACartoDT/
literature http://purl.org/net/cnyt-literature#
spvqa https://bmake.th-brandenburg.de/spv#
dbms http://www.openlinksw.com/ontology/dbms-app-ontology#
beer http://beer.com/
phy https://w3id.org/skgo/phy#
ethc http://ethoinformatics.org/ethocore/
esair http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#
rofsm http://rdaregistry.info/termList/rofsm/
bkb https://budayakb.cs.ui.ac.id/ns#
naval http://rdf.muninn-project.org/ontologies/naval#
w3cgeo http://www.w3.org/2003/01/geo/wgs84_pos#
roc https://w3id.org/ro/curate#
ppr http://purl.org/datanode/ppr/ns/
rdfp https://w3id.org/rdfp/
mbgd http://mbgd.genome.ad.jp/owl/mbgd.owl#
fluidops http://www.fluidops.com/
semsur http://purl.org/SemSur/
gobierno http://www.gobierno.es/gobierno/
koly http://www.ensias.ma/
mus http://data.doremus.org/ontology#
rvl http://purl.org/rvl/
rgml http://purl.org/puninj/2001/05/rgml-schema#
rdfdata http://rdf.data-vocabulary.org/rdf.xml#
gvoith http://assemblee-virtuelle.github.io/grands-voisins-v2/thesaurus.ttl#
sdmxm http://purl.org/linked-data/sdmx/2009/measure#
oplbenefit http://www.openlinksw.com/ontology/benefits#
wsdl http://www.w3.org/ns/wsdl-rdf#
rofit http://rdaregistry.info/termList/rofit/
dead http://utpl.edu.ec/sbc/data/
geor http://www.opengis.net/def/rule/geosparql/
dto http://www.datatourisme.fr/ontology/core/1.0#
dbfo http://dbpedia.org/facts/ontology#
vocals http://w3id.org/rsp/vocals#
or http://openresearch.org/vocab/
mobivoc http://schema.mobivoc.org/
dby http://dbpedia.org/class/yago/
s4ee https://w3id.org/saref4ee#
rdaft http://rdaregistry.info/termList/fileType/
tadirah http://tadirah.dariah.eu/vocab/
swcomp https://github.com/ali1k/ld-reactor/blob/master/vocabulary/index.ttl#
dcap http://purl.org/ws-mmi-dc/terms/
dataid http://dataid.dbpedia.org/ns/core#
number http://km.aifb.kit.edu/projects/numbers/number#
modsci https://w3id.org/skgo/modsci#
aksw http://aksw.org/
piero http://reactionontology.org/piero/
spv http://completeness.inf.unibz.it/sp-vocab#
uri4uri http://uri4uri.net/vocab#
itcat http://th-brandenburg.de/ns/itcat#
ldq http://www.linkeddata.es/ontology/ldq#
edg http://edg.topbraid.solutions/model/
qbe http://citydata.wu.ac.at/qb-equations#
rdacpc http://rdaregistry.info/termList/configPlayback/
xslopm http://purl.org/net/opmv/types/xslt#
km4c http://www.disit.org/km4city/schema#
alethio http://aleth.io/
ul http://underlay.mit.edu/ns/
um http://intelleo.eu/ontologies/user-model/ns/
ldqm http://linkeddata.es/resource/ldqm/
rofhf http://rdaregistry.info/termList/rofhf/
pmonb http://premon.fbk.eu/ontology/nb#
atlasterms http://rdf.ebi.ac.uk/terms/atlas/
neotecbib http://neotec.rc.unesp.br/resource/NeotectonicsBibliography/
juso http://rdfs.co/juso/
srx http://www.w3.org/2005/sparql-results#
swa http://topbraid.org/swa#
ldn https://www.w3.org/TR/ldn/#
alg http://drakon.su/ADF#
it http://www.influencetracker.com/ontology#
ontoneo http://purl.obolibrary.org/obo/ontoneo/
input http://volt-name.space/vocab/input#
b3kat http://lod.b3kat.de/title/
rofrm http://rdaregistry.info/termList/rofrm/
bibrm http://vocab.ub.uni-leipzig.de/bibrm/
oop http://w3id.org/oop#
halyard http://merck.github.io/Halyard/ns#
ncicp http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#
docker http://www.w3.org/ns/bde/docker/
imind http://schema.intellimind.ns/symbology#
brt http://brt.basisregistraties.overheid.nl/def/top10nl#
apb http://www.analysispartners.org/businessmodel/
crmeh http://purl.org/crmeh#
undata http://citydata.wu.ac.at/Linked-UNData/data/
rdare http://rdaregistry.info/termList/RDARegionalEncoding/
nosql http://purl.org/db/nosql#
cff http://purl.oclc.org/NET/ssnx/cf/cf-feature#
pand http://bag.basisregistraties.overheid.nl/bag/id/pand/
remetca http://www.purl.org/net/remetca#
globalcube http://kalmar32.fzi.de/triples/global-cube.ttl#
amsl http://vocab.ub.uni-leipzig.de/amsl/
neotec http://neotec.rc.unesp.br/resource/Neotectonics/
lsq http://lsq.aksw.org/vocab#
ifcowl http://www.buildingsmart-tech.org/ifcOWL/IFC4_ADD2#
smxm http://smxm.ga/
ocds http://purl.org/onto-ocds/ocds#
rm http://jazz.net/ns/rm#
edac http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#
ods http://lod.xdams.org/ontologies/ods/
cska http://pfclitex.com/
rdax http://rdaregistry.info/Elements/x/
elod http://linkedeconomy.org/ontology#
isbdu http://iflastandards.info/ns/isbd/unc/elements/
dcodt http://info.deepcarbon.net/datatype/schema#
occ http://w3id.org/occ#
dnbt http://d-nb.info/standards/elementset/dnb#
pm http://premon.fbk.eu/resource/
lgdt http://linkedgeodata.org/triplify/
pmofn http://premon.fbk.eu/ontology/fn#
ontop https://w3id.org/ontop/
geoloc http://deductions.github.io/geoloc.owl.ttl#
connard https://mail.google.com/mail/u/1/#
ogdl4m https://github.com/martynui/OGDL4M/
iso37120 http://ontology.eil.utoronto.ca/ISO37120.owl#
d3s http://vocbench.solidaridad.cloud/taxonomies#
maeco http://edg.topbraid.solutions/maeco/
rdapf http://rdaregistry.info/termList/presFormat/
ondc http://www.semanticweb.org/ontologies/2012/1/Ontology1329913965202.owl#
wab http://wab.uib.no/cost-a32_philospace/wittgenstein.owl#
ns2 http://ogp.me/ns#video:
sdterms http://statisticaldata.linkedwidgets.org/terms/
beo https://w3id.org/beo#
olac11 http://www.language-archives.org/OLAC/1.1/
geo7 https://www.geo7.ch/
sdmxc http://purl.org/linked-data/sdmx/2009/concept#
sohukd http://sweetontology.net/humanKnowledgeDomain/
soma http://sweetontology.net/matr/
sgiter http://w3id.org/sparql-generate/iter/
seo http://sda.tech/SEOontology/SEO/
idot http://identifiers.org/idot/
nas https://data.nasa.gov/ontologies/atmonto/NAS#
loted http://loted.eu/ontology#
sciprov http://sweetontology.net/reprSciProvenance/
ksam http://kulturarvsdata.se/ksamsok#
esproc http://vocab.linkeddata.es/datosabiertos/def/sector-publico/procedimientos#
metadata http://purl.oreilly.com/ns/meta/
ispra http://dati.isprambiente.it/ontology/core#
refexo http://purl.jp/bio/01/refexo#
tavprov http://ns.taverna.org.uk/2012/tavernaprov/
imjv https://data.imjv.omgeving.vlaanderen.be/ns/imjv#
ctxdesc http://www.demcare.eu/ontologies/contextdescriptor.owl#
datacron http://www.datacron-project.eu/datAcron#
pbody http://reference.data.gov.uk/def/public-body/
kmgeo http://km.aifb.kit.edu/services/geo/ontology#
scholl http://menemeneml.com/school#
rofim http://rdaregistry.info/termList/rofim/
ii http://sparql.cwrc.ca/ontologies/ii#
decprov http://promsns.org/def/decprov#
iotlite http://purl.oclc.org/NET/UNIS/fiware/iot-lite#
pop http://wiki.dbpedia.org/
eproc http://10.0.3.120/download/eproc_FORN_v02.owl#
manto http://com.vortic3.MANTO/
rami http://iais.fraunhofer.de/vocabs/rami#
edgarcik http://edgarwrap.ontologycentral.com/cik/
pmovn http://premon.fbk.eu/ontology/vn#
tissue http://www.univalle.edu.co/ontologies/Tissue#
rico https://www.ica.org/standards/RiC/ontology#
dcodata http://info.deepcarbon.net/data/schema#
crminf http://www.cidoc-crm.org/cidoc-crm/CRMinf/
rfd http://com.intrinsec//ontology#
ncbigene http://identifiers.org/ncbigene/
vsearch http://vocab.sti2.at/vsearch#
aozora http://purl.org/net/aozora/
gdpr https://vocab.eccenca.com/gdpr/
irstea http://ontology.irstea.fr/
isidore http://www.rechercheisidore.fr/class/
clapit http://dati.gov.it/onto/clapit/
imas https://sparql.crssnky.xyz/imasrdf/URIs/imas-schema.ttl#
bioentity http://bioentity.io/vocab/
asawoo http://liris.cnrs.fr/asawoo/
master1 http://idl.u-grenoble3.fr/
aseonto http://requirement.ase.ru/requirements_ontology#
wn30 http://purl.org/vocabularies/princeton/wn30/
llalg http://www.linklion.org/algorithm/
eustd http://eurostat.linked-statistics.org/data#
fnml http://semweb.mmlab.be/ns/fnml#
hosp http://health.data.gov/def/hospital/
dm2e http://onto.dm2e.eu/schemas/dm2e/
noise http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/contaminacion-acustica#
valueflows https://w3id.org/valueflows/
bci https://w3id.org/BCI-ontology#
unspsc http://ontoview.org/schema/unspsc/1#
efd http://data.foodanddrinkeurope.eu/ontology#
rofsf http://rdaregistry.info/termList/rofsf/
ermrk http://www.essepuntato.it/2008/12/earmark#
loci http://linked.data.gov.au/def/loci#
wail http://www.eyrie.org/~zednenem/2002/wail/
estatwrap http://ontologycentral.com/2009/01/eurostat/ns#
dpla http://dp.la/info/developers/map/
provoc http://ns.inria.fr/provoc/
cbb https://data.cbb.omgeving.vlaanderen.be/ns/cbb#
geofabric http://linked.data.gov.au/def/geofabric#
tikag https://www.tikag.com/
rsctx http://softeng.polito.it/rsctx#
xbrll https://w3id.org/vocab/xbrll#
changeset http://purl.org/vocab/changeset/schema#
rdaill http://rdaregistry.info/termList/IllusContent/
sorepsf http://sweetontology.net/reprSciFunction/
rdagen http://rdaregistry.info/termList/RDAGeneration/
goaf http://goaf.fr/goaf#
biolink https://w3id.org/biolink/vocab/
emergel http://purl.org/emergel/core#
dmp http://www.sysresearch.org/rda-common-dmp#
marcrole http://id.loc.gov/vocabulary/relators/
psv http://www.wikidata.org/prop/statement/value/
dsfv http://sws.ifi.uio.no/vocab/dsf/henriwi/dsf#
vss http://automotive.eurecom.fr/vsso#
gdprtext https://w3id.org/GDPRtEXT#
rdavf http://rdaregistry.info/termList/videoFormat/
smartapi http://smart-api.io/ontology/1.0/smartapi#
iab https://www.iab.com/guidelines/taxonomy/
soproptg http://sweetontology.net/propTemperatureGradient/
tsnchange http://purl.org/net/tsnchange#
powla http://purl.org/powla/powla.owl#
llr http://lodlaundromat.org/resource/
m3 http://sensormeasurement.appspot.com/m3#
s3n http://w3id.org/s3n/
scra http://purl.org/net/schemarama#
qk http://qudt.org/vocab/quantitykind/
maet http://edg.topbraid.solutions/taxonomy/macroeconomics/
pham https://w3id.org/skgo/pham#
dgfr http://colin.maudry.com/ontologies/dgfr#
sopropsdis http://sweetontology.net/propSpaceDistance/
isoadr http://reference.data.gov.au/def/ont/iso19160-1-address#
fel http://w3id.org/vcb/fel#
ordo http://www.orpha.net/ORDO/
bitl http://lib.bit.edu.cn/ontology/1.0/
somaoc http://sweetontology.net/matrOrganicCompound/
rdaad http://rdaregistry.info/Elements/a/datatype/
soprocsc http://sweetontology.net/procStateChange/
rimmf http://rimmf.com/vocab/
m3lite http://purl.org/iot/vocab/m3-lite#
sopropp http://sweetontology.net/propPressure/
jsonschema https://www.w3.org/2019/wot/json-schema#
prohow https://w3id.org/prohow#
sophatmowm https://sweetontology.net/phenAtmoWindMesoscale/
gnaf http://linked.data.gov.au/def/gnaf#
s4bldg https://w3id.org/def/saref4bldg#
pq http://www.wikidata.org/prop/qualifier/
stencila http://schema.stenci.la/
oplangel http://www.openlinksw.com/schemas/angel#
cwlgit https://w3id.org/cwl/view/git/
dm http://datamusee.givingsense.eu/onto/
gdprov https://w3id.org/GDPRov#
oplp http://www.openlinksw.com/ontology/purchases#
sophatmow http://sweetontology.net/phenAtmoWind/
daap http://daap.dsi.universite-paris-saclay.fr/wiki/
wdv http://www.wikidata.org/value/
sostc http://sweetontology.net/stateChemical/
eqp https://data.nasa.gov/ontologies/atmonto/equipment#
pmopb http://premon.fbk.eu/ontology/pb#
wikimedia http://upload.wikimedia.org/wikipedia/commons/f/f6/
esagen http://vocab.ciudadesabiertas.es/def/sector-publico/agenda-municipal#
pplan http://purl.org/net/p-plan#
lesa http://hadatac.org/ont/lesa#
sorepmo http://sweetontology.net/reprMathOperation/
sorepsrs http://sweetontology.net/reprSpaceReferenceSystem/
dcatnl http://standaarden.overheid.nl/dcatnl/terms/
eproc2 http://10.0.3.120/download/eproc_FORN_v04.owl#
chemsci https://w3id.org/skgo/chemsci#
omnlc http://open-multinet.info/ontology/omn-lifecycle#
soproptf http://sweetontology.net/propTimeFrequency/
terms http://purl.org/dc/terms/
soreaofl http://sweetontology.net/realmOceanFloor/
sopropsl http://sweetontology.net/propSpaceLocation/
place http://purl.org/ontology/places/
linkrel https://www.w3.org/ns/iana/link-relations/relation#
r4r http://guava.iis.sinica.edu.tw/r4r/
osys http://purl.org/olia/system.owl#
mdont http://ont.matchdeck.com/
gcon https://w3id.org/GConsent#
wild http://purl.org/wild/vocab#
obws http://delicias.dia.fi.upm.es/ontologies/ObjectWithStates.owl#
cwmo http://purl.org/cwmo/#
sostv http://sweetontology.net/stateVisibility/
gmo http://purl.jp/bio/10/gmo/
snac http://socialarchive.iath.virginia.edu/
nrv http://ns.inria.fr/nrv#
voidwh http://www.ics.forth.gr/isl/VoIDWarehouse/VoID_Extension_Schema.owl#
capes http://vocab.capes.gov.br/def/vcav#
extech https://w3id.org/executionTechnique/ontology/
soprocp http://sweetontology.net/procPhysical/
gvoi http://assemblee-virtuelle.github.io/grands-voisins-v2/gv.owl.ttl#
sopropsp http://sweetontology.net/propSpeed/
sosttf http://sweetontology.net/stateTimeFrequency/
sopropcat http://sweetontology.net/propCategorical/
sopropsh http://sweetontology.net/propSpaceHeight/
earth http://linked.earth/ontology#
esgs https://w3id.org/edwin/ontology/
sweet http://sweetontology.net/
theme http://voc.odw.tw/theme/
isaterms http://purl.org/isaterms/
sorepmso http://sweetontology.net/reprMathSolution/
esdbpr http://es.dbpedia.org/resource/
orgesv2 http://datos.gob.es/sites/default/files/OntologiaDIR3/orges.owl#
ideotalex http://www.ideotalex.eu/datos/recurso/
soreaa http://sweetontology.net/realmAtmo/
sorepsl http://sweetontology.net/reprSciLaw/
vort http://rockets.topbraid.solutions/vort/
rofet http://rdaregistry.info/termList/rofet/
fssp http://linkeddata.fssprus.ru/resource/
soprops http://sweetontology.net/propSpace/
sophsy http://sweetontology.net/phenSystem/
lblodlg http://data.lblod.info/vocabularies/leidinggevenden/
shema http://schema.org/
skoslex https://bp4mc2.org/def/skos-lex#
sorept http://sweetontology.net/reprTime/
sohut http://sweetontology.net/humanTransportation/
sopropti http://sweetontology.net/propTime/
sorepsc http://sweetontology.net/reprSciComponent/
dqc http://semwebquality.org/ontologies/dq-constraints#
sorepmfo http://sweetontology.net/reprMathFunctionOrthogonal/
losp http://sparql.sstu.ru:3030/speciality/
soproc http://sweetontology.net/proc/
sopropcap http://sweetontology.net/propCapacity/
skosthes http://purl.org/iso25964/skos-thes#
mexperf http://mex.aksw.org/mex-perf#
sohuecons http://sweetontology.net/humanEnvirConservation/
sopropsdir http://sweetontology.net/propSpaceDirection/
lcsh http://id.loc.gov/authorities/subjects/
estrf http://vocab.linkeddata.es/datosabiertos/def/transporte/trafico#
hctl https://www.w3.org/2019/wot/hypermedia#
jup http://w3id.org/charta77/jup/
constant http://qudt.org/vocab/constant/
dentsci https://w3id.org/skgo/dentsci#
sorepdsr http://sweetontology.net/reprDataServiceReduction/
sorepscd http://sweetontology.net/reprSpaceCoordinate/
sorelm http://sweetontology.net/relaMath/
sorepsu http://sweetontology.net/reprSciUnits/
medred http://w3id.org/medred/medred#
stx http://purl.org/cyber/stix#
soreacz http://sweetontology.net/realmClimateZone/
estatgph http://estatwrap.ontologycentral.com/id/nama_aux_gph#
eppl https://w3id.org/ep-plan#
sorepdp http://sweetontology.net/reprDataProduct/
epplan https://w3id.org/ep-plan#
odw http://odw.tw/
sorep http://sweetontology.net/repr/
pineapple http://hexananas.com/pineapple#
sorepdsa http://sweetontology.net/reprDataServiceAnalysis/
wotsec https://www.w3.org/2019/wot/security#
soprope http://sweetontology.net/propEnergy/
iaph http://www.juntadeandalucia.es/datosabiertos/portal/iaph/dataset/dataset/6c199ca2-8d2e-4c12-833c-f28
ddb http://www.deutsche-digitale-bibliothek.de/edm/
sophfd http://sweetontology.net/phenFluidDynamics/
sophatmopc http://sweetontology.net/phenAtmoPrecipitation/
sorepmst http://sweetontology.net/reprMathStatistics/
sophoc http://sweetontology.net/phenOceanCoastal/
sopropcou http://sweetontology.net/propCount/
sorepdf http://sweetontology.net/reprDataFormat/
ecowlim http://ecowlim.tfri.gov.tw/lode/resource/
yandex http://yandex.ru/
sorepsme http://sweetontology.net/reprSciMethodology/
sfl http://data.finlex.fi/schema/sfl/
atts https://data.nasa.gov/ontologies/atmonto/general#
sophso http://sweetontology.net/phenSolid/
country http://eulersharp.sourceforge.net/2003/03swap/countries#
sorepdsv http://sweetontology.net/reprDataServiceValidation/
sorelpr http://sweetontology.net/relaProvenance/
sophec http://sweetontology.net/phenEcology/
sopropsm http://sweetontology.net/propSpaceMultidimensional/
sophatmofo http://sweetontology.net/phenAtmoFog/
sopropef http://sweetontology.net/propEnergyFlux/
sopropmf http://sweetontology.net/propMassFlux/
iospress http://ld.iospress.nl/rdf/ontology/
sostb http://sweetontology.net/stateBiological/
sorepmf http://sweetontology.net/reprMathFunction/
sosto http://sweetontology.net/stateOrdinal/
loupe http://ont-loupe.linkeddata.es/def/core/
dprov http://promsns.org/def/do#
vehman http://deductions.github.io/vehicule-management.owl.ttl#
sorepmg http://sweetontology.net/reprMathGraph/
somamin http://sweetontology.net/matrMineral/
somaae http://sweetontology.net/matrAerosol/
sostth http://sweetontology.net/stateThermodynamic/
sohutr http://sweetontology.net/humanTechReadiness/
sopropb http://sweetontology.net/propBinary/
ingredient http://www.owl-ontologies.com/test.owl/ingredient/
sopropq http://sweetontology.net/propQuantity/
sorepm http://sweetontology.net/reprMath/
sorelcl http://sweetontology.net/relaClimate/
sorelh http://sweetontology.net/relaHuman/
sostrr http://sweetontology.net/stateRoleRepresentative/
sopropcha http://sweetontology.net/propCharge/
sorealc http://sweetontology.net/realmLandCoastal/
sopropr http://sweetontology.net/propRotation/
sopropdifu http://sweetontology.net/propDiffusivity/
sostri http://sweetontology.net/stateRoleImpact/
dave http://theme-e.adaptcentre.ie/dave#
sopropo http://sweetontology.net/propOrdinal/
frbroo http://iflastandards.info/ns/fr/frbr/frbroo/
inchikey https://identifiers.org/inchikey:
bs https://w3id.org/bs#
sophatmoc http://sweetontology.net/phenAtmoCloud/
ldc https://tac.nist.gov/tracks/SM-KBP/2018/ontologies/SeedlingOntology#
foio https://w3id.org/seas/FeatureOfInterestOntology/
sophatmos http://sweetontology.net/phenAtmoSky/
sopropi http://sweetontology.net/propIndex/
sorepsp http://sweetontology.net/reprSciProvenance/
sopropm http://sweetontology.net/propMass/
sohur http://sweetontology.net/humanResearch/
sopropcon http://sweetontology.net/propConductivity/
soreaas http://sweetontology.net/realmAstroStar/
esagm http://vocab.ciudadesabiertas.es/def/sector-publico/agenda-municipal#
eccf http://data.europa.eu/54i/
d2s https://w3id.org/d2s/
sorepsd http://sweetontology.net/reprSpaceDirection/
pcdmuse http://pcdm.org/use#
proton http://www.ontotext.com/proton/
somains http://sweetontology.net/matrInstrument/
sorepdsg http://sweetontology.net/reprDataServiceGeospatial/
sorel http://sweetontology.net/rela/
asgs http://linked.data.gov.au/def/asgs#
sostso http://sweetontology.net/stateSolid/
sorelph http://sweetontology.net/relaPhysical/
trek https://w3id.org/trek/
osmm https://www.openstreetmap.org/meta/
taxref http://taxref.mnhn.fr/lod/taxon/
soreps http://sweetontology.net/reprSpace/
sopropfr http://sweetontology.net/propFraction/
sorealo http://sweetontology.net/realmLandOrographic/
sopropdr http://sweetontology.net/propDimensionlessRatio/
soreao http://sweetontology.net/realmOcean/
lprov http://id.learning-provider.data.ac.uk/terms#
soreac http://sweetontology.net/realmCryo/
sophatmofr http://sweetontology.net/phenAtmoFront/
somac http://sweetontology.net/matrCompound/
somanr http://sweetontology.net/matrNaturalResource/
sophcr http://sweetontology.net/phenCryo/
sohuj http://sweetontology.net/humanJurisdiction/
soreaabl http://sweetontology.net/realmAtmoBoundaryLayer/
sorealp http://sweetontology.net/realmLandProtected/
soprocw http://sweetontology.net/procWave/
sophst http://sweetontology.net/phenStar/
hdgi https://w3id.org/hdgi#
sopropfu http://sweetontology.net/propFunction/
sohues http://sweetontology.net/humanEnvirStandards/
cci http://cookingbigdata.com/linkeddata/ccinstances#
sorepts http://sweetontology.net/reprTimeSeason/
sorear http://sweetontology.net/realmRegion/
sost http://sweetontology.net/state/
biogrid http://thebiogrid.org/
soreahb http://sweetontology.net/realmHydroBody/
sosttg http://sweetontology.net/stateTimeGeologic/
cfrl http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#
sophpc http://sweetontology.net/phenPlanetClimate/
sorelsc http://sweetontology.net/relaSci/
sophel http://sweetontology.net/phenElecMag/
sostrg http://sweetontology.net/stateRoleGeographic/
sopropdife http://sweetontology.net/propDifference/
soreas http://sweetontology.net/realmSoil/
soreaaw http://sweetontology.net/realmAtmoWeather/
misp http://purl.org/cyber/misp#
ggbn http://data.ggbn.org/schemas/ggbn/terms/
sophatmops http://sweetontology.net/phenAtmoPressure/
sophatmol http://sweetontology.net/phenAtmoLightning/
sorepdm http://sweetontology.net/reprDataModel/
sopropche http://sweetontology.net/propChemical/
somapl http://sweetontology.net/matrPlant/
somarocki http://sweetontology.net/matrRockIgneous/
somaem http://sweetontology.net/matrElementalMolecule/
probont http://www.probonto.org/ontology#
sorelsp http://sweetontology.net/relaSpace/
somarock http://sweetontology.net/matrRock/
somaen http://sweetontology.net/matrEnergy/
somaf http://sweetontology.net/matrFacility/
phto http://rhizomik.net/ontologies/PlantHealthThreats.owl.ttl#
donto http://reference.data.gov.au/def/ont/dataset#
sostrt http://sweetontology.net/stateRoleTrust/
sorelt http://sweetontology.net/relaTime/
sophcm http://sweetontology.net/phenCycleMaterial/
sosttc http://sweetontology.net/stateTimeCycle/
sorepsg3 http://sweetontology.net/reprSpaceGeometry3D/
somaind http://sweetontology.net/matrIndustrial/
soph http://sweetontology.net/phen/
sostrc http://sweetontology.net/stateRoleChemical/
sorelch http://sweetontology.net/relaChemical/
mccv http://purl.jp/bio/10/mccv#
sophwn http://sweetontology.net/phenWaveNoise/
somab http://sweetontology.net/matrBiomass/
sopropst http://sweetontology.net/propSpaceThickness/
edupro http://ns.inria.fr/semed/eduprogression#
sophm http://sweetontology.net/phenMixing/
sophsyc http://sweetontology.net/phenSystemComplexity/
soreabb http://sweetontology.net/realmBiolBiome/
bldont http://ont.biglinkeddata.com/
soreptd http://sweetontology.net/reprTimeDay/
osmt https://wiki.openstreetmap.org/wiki/Key:
mmms http://ldf.fi/schema/mmm/
sostdp http://sweetontology.net/stateDataProcessing/
sophei http://sweetontology.net/phenEnvirImpact/
wds http://www.wikidata.org/entity/statement/
sophft http://sweetontology.net/phenFluidTransport/
sostsy http://sweetontology.net/stateSystem/
sohu http://sweetontology.net/human/
somais http://sweetontology.net/matrIsotope/
soreal http://sweetontology.net/realmLandform/
sophcy http://sweetontology.net/phenCycle/
twitter http://stocktwits.com/
sophatmot http://sweetontology.net/phenAtmoTransport/
sorepds http://sweetontology.net/reprDataService/
lv2 http://lv2plug.in/ns/lv2core/
sophr http://sweetontology.net/phenReaction/
soprocc http://sweetontology.net/procChemical/
sophb http://sweetontology.net/phenBiol/
pnv https://w3id.org/pnv#
sostsb http://sweetontology.net/stateSpectralBand/
soreaah http://sweetontology.net/realmAstroHelio/
sophatmo http://sweetontology.net/phenAtmo/
somaw http://sweetontology.net/matrWater/
esbici http://vocab.ciudadesabiertas.es/def/transporte/bicicleta-publica#
somaeq http://sweetontology.net/matrEquipment/
dbm http://purl.org/net/dbm/ontology#
soreaer http://sweetontology.net/realmEarthReference/
ciao http://ciao.it/
mbkeys https://pastebin.com/ThBfphb8#
somaio http://sweetontology.net/matrIon/
sostsp http://sweetontology.net/stateSpace/
soprop http://sweetontology.net/prop/
say https://say.data.gift/ns/
rank http://www.ontotext.com/owlim/RDFRank#
snomedct http://purl.bioontology.org/ontology/SNOMEDCT/
sophod http://sweetontology.net/phenOceanDynamics/
omop http://api.ohdsi.org/WebAPI/vocabulary/concept/
sopropt http://sweetontology.net/propTemperature/
oco https://w3id.org/oc/ontology/
cbs http://betalinkeddata.cbs.nl/def/cbs#
sostf http://sweetontology.net/stateFluid/
sophw http://sweetontology.net/phenWave/
idsc https://w3id.org/idsa/code/
sohueccont http://sweetontology.net/humanEnvirControl/
sostre http://sweetontology.net/stateRealm/
she http://shacleditor.org/
schoi https://w3id.org/scholarlydata/ontology/indicators-ontology.owl#
sohuc http://sweetontology.net/humanCommerce/
ccomid http://www.ontologyrepository.com/CommonCoreOntologies/Mid/
somael http://sweetontology.net/matrElement/
somas http://sweetontology.net/matrSediment/
sostrb http://sweetontology.net/stateRoleBiological/
cto https://w3id.org/cto#
sostp http://sweetontology.net/statePhysical/
matvoc http://stream-ontology.com/matvoc/
soall http://sweetontology.net/sweetAll/
soreaofe http://sweetontology.net/realmOceanFeature/
compub https://sireneld.io/vocab/compub#
atd https://data.nasa.gov/ontologies/atmonto/data#
gleio http://lei.info/gleio/
sorealg http://sweetontology.net/realmLandGlacial/
eupont http://elite.polito.it/ontologies/eupont.owl#
sorepsmo http://sweetontology.net/reprSciModel/
omim http://purl.bioontology.org/ontology/OMIM/
istex https://data.istex.fr/ontology/istex#
ocsw http://data.diekb.org/def/ocsw#
sophhy http://sweetontology.net/phenHydro/
sophen http://sweetontology.net/phenEnergy/
s4city https://saref.etsi.org/saref4city/
sostss http://sweetontology.net/stateSpaceScale/
sophfi http://sweetontology.net/phenFluidInstability/
sostro http://sweetontology.net/stateRole/
sorealf http://sweetontology.net/realmLandFluvial/
mobiliteit https://data.vlaanderen.be/ns/mobiliteit#
sostef http://sweetontology.net/stateEnergyFlux/
gas http://www.bigdata.com/rdf/gas#
sophhe http://sweetontology.net/phenHelio/
sohuea http://sweetontology.net/humanEnvirAssessment/
soman http://sweetontology.net/matrAnimal/
dfc http://datafoodconsortium.org/ontologies/DFC_FullModel.owl#
sostti http://sweetontology.net/stateTime/
gx https://graphite.synaptica.net/extension/
birthdate http://schema.org/birthDate/
sophgs http://sweetontology.net/phenGeolSeismicity/
asio http://purl.org/hercules/asio/core#
sostsc http://sweetontology.net/stateSpaceConfiguration/
oplsoft http://www.openlinksw.com/ontology/software#
sophgt http://sweetontology.net/phenGeolTectonic/
somapa http://sweetontology.net/matrParticle/
malaka http://george.gr/
wasa http://vocab.sti2.at/wasa/
taxrefprop http://taxref.mnhn.fr/lod/property/
dd http://example.org/dummydata/
sophgg http://sweetontology.net/phenGeolGeomorphology/
brot https://w3id.org/brot#
atm https://data.nasa.gov/ontologies/atmonto/ATM#
persoon http://data.vlaanderen.be/ns/persoon#
sorealt http://sweetontology.net/realmLandTectonic/
somamic http://sweetontology.net/matrMicrobiota/
soreaab http://sweetontology.net/realmAstroBody/
sopho http://sweetontology.net/phenOcean/
sorealv http://sweetontology.net/realmLandVolcanic/
osmrel https://www.openstreetmap.org/relation/
fibo https://spec.edmcouncil.org/fibo/ontology/master/latest/
io https://iaco.me/
docam https://www.docam.ca/glossaurus/
ldes https://w3id.org/ldes#
sohud http://sweetontology.net/humanDecision/
iaco https://iaco.me/
ccsla http://cookingbigdata.com/linkeddata/ccsla#
s4agri https://saref.etsi.org/saref4agri/
soreala http://sweetontology.net/realmLandAeolian/
sostsl http://sweetontology.net/stateSpectralLine/
sostst http://sweetontology.net/stateStorm/
sohua http://sweetontology.net/humanAgriculture/
ccr http://cookingbigdata.com/linkeddata/ccregions#
trak https://purl.org/trak/elements/
arp http://www.arpenteur.org/ontology/Arpenteur.owl#
osmnode https://www.openstreetmap.org/node/
waa http://purl.oclc.org/NET/WebApiAuthentication#
s4ener https://saref.etsi.org/saref4ener/
ci https://privatealpha.com/ontology/content-inventory/1#
ogura https://sparql.crssnky.xyz/Ogura_Hyakunin_Isshu_LinkedRDF/URIs/Ogura_Hyakunin_Isshu_schema.ttl#
sophg http://sweetontology.net/phenGeol/
dfcb http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#
sophgv http://sweetontology.net/phenGeolVolcano/
uimo http://vocab.sti2.at/uimo/
rl http://rl.com/resources/
sophgf http://sweetontology.net/phenGeolFault/
osmway https://www.openstreetmap.org/way/
oplfeat http://www.openlinksw.com/ontology/features#
eppo https://gd.eppo.int/taxon/
toaru https://metadata.moe/toaru-sparql/elements/
bperson http://data.vlaanderen.be/ns/persoon#
ei2a http://opendata.aragon.es/def/ei2a#
fernanda http://fernanda.nl/
mr http://marineregions.org/ns/ontology#
knows http://semantic.komc/usu/2020/knows#
kko http://kbpedia.org/kko/rc/
sorea http://sweetontology.net/realm/
dbonto http://dbepedia.org/ontology/
saref4envi https://saref.etsi.org/saref4envi/
fx http://sparql.xyz/facade-x/ns/
ld http://linkeddata.ru/
jur http://sweet.jpl.nasa.gov/2.3/humanJurisdiction.owl#
lexicog http://www.w3.org/ns/lemon/lexicog#
wotc http://purl.org/wot-catalogue#
movieo http://movie.com/ontology/
mgv http://mangaview.fr/mgv#
cts http://rdf.cdisc.org/ct/schema#
ebg http://data.businessgraph.io/ontology#
gco http://purl.jp/bio/12/glyco/conjugate#
vlueprint https://vlueprint.org/schema/
rdasource http://rdaregistry.info/termList/RDARecordingSources/
bao http://www.bioassayontology.org/bao#
gom https://w3id.org/gom#
maroc http://fr.dbpedia.org/page/Maroc/
prismdb https://prismdb.takanakahiko.me/prism-schema.ttl#
univ http://univ.io/
ble http://vocab.rapidthings.eu/ns/ble.ttl#
karstlink https://ontology.uis-speleo.org/ontology/#
xyz http://sparql.xyz/facade-x/data/
srv http://www.daml.org/services/owl-s/1.2/Service.owl#
cso http://cso.kmi.open.ac.uk/schema/cso/
mpg123 https://devuan.net.br/wiki/mpg123/
estraf http://vocab.ciudadesabiertas.es/def/transporte/trafico#
meat http://example.com/
ams http://data.amadeus.com/
rdapol http://rdaregistry.info/termList/RDAPolarity/
la https://linked.art/ns/terms/
ibeacon http://vocab.rapidthings.eu/ns/apple/ibeacon.ttl#
contry http://dbpedia.org/resource/Lyon#
mag https://makg.org/property/
accid http://pid.accurids.com/
hpont https://w3id.org/hpont#
mltd https://mltd.pikopikopla.net/mltd-schema#
marcgt https://id.loc.gov/vocabulary/marcgt/
motogp http://www.motogp.com/
bop https://w3id.org/bop#
tso https://w3id.org/tso#
i18n https://www.w3.org/ns/i18n#
quran http://khalidaloufi.sa/quran#
hola https://moodle.insa-lyon.fr/course/view.php?id=
esconv http://vocab.ciudadesabiertas.es/def/sector-publico/convenio#
srr https://w3id.org/srr#
vr https://www.w3.org/2018/credentials/v1/
textgrid https://textgridrep.org/
epcis https://ns.gs1.org/epcis/
oeso http://www.opensilex.org/vocabularies/oeso#
rdaut http://rdaregistry.info/termList/RDAUnitOfTime/
w3id https://w3id.org/
dom https://html.spec.whatwg.org/#
freq http://purl.org/cld/freq/
rofchrda http://rdaregistry.info/termList/rofchrda/
pgxo http://pgxo.loria.fr/
rdat http://rdaregistry.info/Elements/t/
bdg http://data.bigdatagrapes.eu/resource/ontology/
vph http://purl.org/ozo/vph.owl#
geodcat http://data.europa.eu/930/
contax https://w3id.org/con-tax#
w3geo http://www.w3.org/2003/01/geo/wgs84_pos#
mesh2021 http://id.nlm.nih.gov/mesh/2021/
nsg https://neuroshapes.org/
bleadapter http://vocab.rapidthings.eu/ns/ble/adapter.ttl#
smithy https://awslabs.github.io/smithy/rdf-1.0#
sty http://purl.bioontology.org/ontology/STY/
mnx https://rdf.metanetx.org/schema/
samian http://lod.archaeology.link/data/samian/
bcom https://w3id.org/bcom#
mdcs https://mdcs.monumentenkennis.nl/damageatlas/ontology#
melding http://lblod.data.gift/vocabularies/automatische-melding/
hops https://rdf.ag/o/hops#
slm http://urn.fi/URN:NBN:fi:au:slm:
rpg http://rpg.data.is4.site/
rdaao http://rdaregistry.info/Elements/a/object/
seasd https://w3id.org/seas/
ssnx http://purl.oclc.org/NET/ssnx/ssn#
datagc https://data.grottocenter.org/ldp/
check http://pornhub.com/
aspect http://purl.org/aspect/
cbv https://ns.gs1.org/cbv/
kpd http://purl.org/kpd/
rdaio http://rdaregistry.info/Elements/i/object/
esautob http://vocab.ciudadesabiertas.es/def/transporte/autobus#
rdaep http://rdaregistry.info/termList/RDAExtensionPlan/
oghamonto http://ontology.ogham.link/
rdaxd http://rdaregistry.info/Elements/x/datatype/
idpo https://w3id.org/idpo#
spec http://www.w3.org/ns/spec#
comp http://semweb.mmlab.be/ns/rml-compression#
sou http://qudt.org/vocab/sou/
faas http://semantic-faas.com/ontology#
esempleo http://vocab.ciudadesabiertas.es/def/sector-publico/empleo#
rdano http://rdaregistry.info/Elements/n/object/
matrycs http://matrycs.com/
lado http://archaeology.link/ontology#
folio http://IBCNServices.github.io/Folio-Ontology/Folio.owl#
oidc http://www.w3.org/ns/solid/oidc#
itops https://vocab.eccenca.com/itops/
signify http://purl.org/signify/ns#
rdatb http://rdaregistry.info/termList/RDATypeOfBinding/
rdato http://rdaregistry.info/Elements/t/object/
rdamo http://rdaregistry.info/Elements/m/object/
ofn http://www.ontotext.com/sparql/functions/
rofsfrda http://rdaregistry.info/termList/rofsfrda/
memorix http://memorix.io/ontology#
rdaid http://rdaregistry.info/Elements/i/datatype/
rdan http://rdaregistry.info/Elements/n/
rdamd http://rdaregistry.info/Elements/m/datatype/
roffgrda http://rdaregistry.info/termList/roffgrda/
cerealstoo http://rdf.ag/o/cerealstoo#
react https://w3id.org/react#
citedcat https://w3id.org/citedcat-ap/
rdatd http://rdaregistry.info/Elements/t/datatype/
m8g http://data.europa.eu/m8g/
rdatask http://rdaregistry.info/termList/RDATasks/
mrk http://www.mydomain.org/Mrk-ns#
arena https://solid.ti.rw.fau.de/public/ns/arena#
rdaxo http://rdaregistry.info/Elements/x/object/
cinema http://www.semanticweb.org/julien/morgann/cinema#
rdaed http://rdaregistry.info/Elements/e/datatype/
ch https://schema.ld.admin.ch/
ogham http://lod.ogham.link/data/
xmlns http://www.w3.org/2021/XMLSchema#
luigiusai https://www.luigiusai.it/wp#
rofitrda http://rdaregistry.info/termList/rofitrda/
nanopub http://www.nanopub.org/nschema#
rdapd http://rdaregistry.info/Elements/p/datatype/
cpc https://data.epo.org/linked-data/def/cpc/
eurio http://data.europa.eu/s66#
tci https://w3id.org/lbs/tci#
mrt http://marineregions.org/ns/placetypes#
rdawo http://rdaregistry.info/Elements/w/object/
cgo https://www.tno.nl/agrifood/ontology/common-greenhouse-ontology#
m4i http://w3id.org/nfdi4ing/metadata4ing#
edu https://schema.edu.ee/
paf https://paf.link/
rdamat http://rdaregistry.info/termList/RDAMaterial/
encargado http://semRAT.edu/
hqdmontol http://www.semanticweb.org/magma-core/ontologies/hqdm#
bcfowl http://lbd.arch.rwth-aachen.de/bcfOWL#
biocrm http://ldf.fi/schema/bioc/
rdaim http://rdaregistry.info/termList/RDAInteractivityMode/
djo http://purl.org/datajourneys/
rdap http://rdaregistry.info/Elements/p/
rdasca http://rdaregistry.info/termList/scale/
nbo http://data.bioontology.org/ontologies/NBO/
rdand http://rdaregistry.info/Elements/n/datatype/
oeo https://openenergyplatform.org/ontology/oeo/
eep https://w3id.org/eep#
ewg http://ethoinformatics.org/
kdsf https://kerndatensatz-forschung.de/version1/technisches_datenmodell/owl/kdsf.owl#
cpg http://modellingdh.github.io/ont/odp/pgc/
rdapath http://rdaregistry.info/termList/RDARecordingMethods/
aff https://w3id.org/affectedBy#
bau https://terminology.fraunhofer.de/voc/bau#
gax http://w3id.org/gaia-x/core#
ea http://eaontology.protect.linkeddata.es/def/
magmauser http://www.semanticweb.org/magma-core/user#
poke https://pokemonkg.org/ontology#
rc https://w3id.org/rc#
rdawd http://rdaregistry.info/Elements/w/datatype/
feed https://www.feedipedia.org/
olias http://purl.org/olia/system.owl#
stax https://w3id.org/stax/ontology#
s223 http://data.ashrae.org/standard223#
uberon http://purl.obolibrary.org/obo/UBERON_
interop http://www.w3.org/ns/solid/interop#
nsd https://w3id.org/nsd#
esc https://solid.ti.rw.fau.de/public/ns/event-sourcing-containers#
quid https://w3id.org/quid/
srtun https://www.inf.bi.rub.de/srtun#
srmo https://w3id.org/srmo#
eb https://w3id.org/eb#
caso http://www.w3id.org/def/caso#
asf https://www.stm-assoc.org/asf/
chameo https://w3id.org/emmo/domain/characterisation-methodology/chameo#
dsd https://w3id.org/dsd#
archivo https://archivo.dbpedia.org/onto#
srt http://w3id.org/srt#
sds https://w3id.org/sds#
lds https://solid.ti.rw.fau.de/public/ns/linked-data-structures#
opltw http://www.openlinksw.com/schemas/twitter#
hqdm http://www.semanticweb.org/hqdm#
ghga http://w3id.org/ghga/
ontobras http://www.semanticweb.org/fefar/ontologies/ontobras#
generiek https://data.vlaanderen.be/ns/generiek#
ldpsc https://solid.ti.rw.fau.de/public/ns/stream-containers#
ppeer http://parliament.uk/ontologies/peerage/
tro https://w3id.org/TRO/
stix http://purl.org/cyber/stix#
wdno http://www.wikidata.org/prop/novalue/
walmart https://www.amazon.de/
nprl http://data.nobelprize.org/resource/laureate/
magmardl http://www.semanticweb.org/magma-core/rdl#
rmlt http://semweb.mmlab.be/ns/rml-target#
wfont https://w3id.org/wfont#
rsx http://rdf4j.org/shacl-extensions#
godaddy https://sso.godaddy.com/
lbds https://w3id.org/lbdserver#
bdsubj https://purl.org/fidbaudigital/subjects#
bag2 http://bag.basisregistraties.overheid.nl/def/bag#
lsqr http://lsq.aksw.org/
ofo https://w3id.org/ofo#
paam https://lod.mediathek-tanz-theater.de/schema/paam/
hni https://collectiedata.hetnieuweinstituut.nl/
setl http://purl.org/twc/vocab/setl/
jsonld http://www.w3.org/ns/json-ld#
rto https://w3id.org/rail/topo#
tern http://w3id.org/tern/ontologies/tern/
lbdserver https://w3id.org/lbdserver#
nomo https://nomenclature.info/nom/ontology/
conllu https://universaldependencies.org/format.html#
marc http://www.loc.gov/MARC21/slim/
rsp http://www.researchspace.org/resource/
osdu https://w3id.org/OSDU#
rro http://semanticweb.org/patricia/ontologies/rro#
rdaeo http://rdaregistry.info/Elements/e/object/
express https://w3id.org/express#
linkml https://w3id.org/linkml/
diso https://purls.helmholtz-metadaten.de/diso#
dmo https://w3id.org/dmo#
fso https://w3id.org/fso#
stirdata https://w3id.org/stirdata/vocabulary/
raum https://terminology.fraunhofer.de/voc/raum#
fpr http://www.filmstandards.org/schemas/filmportal_relations#
experts http://emmo.info/emmo/application/maeo/experts#
itcrdf http://www.w3.org/2005/11/its/rdf#
pgo http://ii.uwb.edu.pl/pgo#
kgi http://ns.inria.fr/kg/index#
gufo http://purl.org/nemo/gufo#
chemrof https://w3id.org/chemrof/
cido http://purl.obolibrary.org/obo/cido.owl/
covido https://w3id.org/CovidO#
nom https://nomenclature.info/nom/
respond https://w3id.org/respond#
crmsci http://www.cidoc-crm.org/extensions/crmsci/
rism http://rism.online/
tempo http://purl.org/tempo/
lrcommon http://landregistry.data.gov.uk/def/common/
roh http://w3id.org/roh#
rnce https://data.cultureelerfgoed.nl/id/rnce#
weki https://en.wikipedia.org/wiki/
linkedart https://linked.art/ns/terms/
value http://gfgfd.vs/
besluitvor https://data.vlaanderen.be/ns/besluitvorming#
dsi https://data.dsi.omgeving.vlaanderen.be/ns/dsi#
vntourism http://www.semanticweb.org/minhn/ontologies/2021/0/vntourism#
vl https://version.link/
gql http://www.openlinksw.com/schemas/graphql#
ultragaz https://ultragaz24horas.com/
osmo https://purl.org/vimmp/osmo#
robotarm https://solid.ti.rw.fau.de/public/ns/robotArm#
chess http://purl.org/NET/rdfchess/ontology/
icon https://w3id.org/icon/ontology/
veelana http://onlyfans.com/veelana/
iddo https://w3id.org/iddo#
bp3 http://www.biopax.org/release/biopax-level3.owl#
consolid https://w3id.org/consolid#
rtedurp http://purl.org/eduo/rtedurp/
perscido https://perscido.univ-grenoble-alpes.fr/
dbd http://dbpedia.org/datatype/
ttrpg https://w3id.org/TTRpg#
peco https://w3id.org/peco#
dqvno https://data.norge.no/vocabulary/dqvno#
raad https://raadzaam.nl/schema/
film http://semantics.id/ns/example/film/
grscicoll https://www.gbif.org/grscicoll/collection/
rcgs https://collection.rcgs.jp/terms/
kokot http://www.koko.t/
pubchem https://pubchem.ncbi.nlm.nih.gov/
era http://data.europa.eu/949/
mondo http://purl.obolibrary.org/obo/
relation http://www.iana.org/assignments/relation/
apods http://activitypods.org/ns/core#
cvb http://rdfs.org/resume-rdf/base.rdfs#
coy https://schema.coypu.org/global#
nen2660 https://w3id.org/nen2660/def#
fdp https://w3id.org/fdp/fdp-o#
skosm http://www.w3.org/2004/02/skos/mapping#
aec3po https://w3id.org/lbd/aec3po/
yanice http://yanice-boady.webflow.io/
ufo http://ufo.com/#
iottta https://w3id.org/iot-tta#
epo http://data.europa.eu/a4g/ontology#
nalt https://lod.nal.usda.gov/nalt/
version https://version.link/
vhbieo https://w3id.org/vhbieo#
dcb http://dbpedia.org/resource/Category:
bmp http://w3id.org/bmp#
lis http://rds.posccaesar.org/ontology/lis14/rdl/
spatialf http://jena.apache.org/function/spatial#
bto http://w3id.org/emmo-bto/bto#
lol https://sbalot.github.io/lol/
dick http://pornhub.com/
thub http://vocabularis.crai.ub.edu/thub/
plant http://example.org/plant/
ammo http://ldf.fi/schema/ammo/
vcs https://data.vlaanderen.be/ns/chemische_stof#
hmas https://purl.org/hmas/
nutscode http://data.europa.eu/nuts/code/
dcatno https://data.norge.no/vocabulary/dcatno#
ntp https://schema.finto.fi/ntp#
hyr https://w3id.org/simulation/data/
docbook http://docbook.org/ns/docbook/
ecfo https://w3id.org/ecfo#
fdof https://w3id.org/fdof/ontology#
emmo https://w3id.org/emmo#
mi http://www.marineinfo.org/ns/ontology#
dcatap http://data.europa.eu/r5r/
ags https://id.agschemas.org/
to http://purl.obolibrary.org/obo/TO_
acp http://www.w3.org/ns/solid/acp#
ontouml https://w3id.org/ontouml#
threat https://cve.mitre.org/
fs https://www.compliancequest.com/training-management-software-system-solutions/
goavoc http://bio2rdf.org/goa_vocabulary:
dbpg http://dbpedia.org/page/
egdo http://example.org/
cur http://qudt.org/2.1/vocab/currency/
wrroc https://w3id.org/ro/terms/workflow-run#
risk https://www.w3id.org/risk#
coreo http://purl.org/coreo#
lcnaf http://id.loc.gov/authorities/names/
atcc https://www.atcc.org/products/
asb https://w3id.org/asbingowl/core#
bcgo http://purl.obolibrary.org/obo/ZP_
iop https://w3id.org/iadopt/ont/
tsso https://scch.org/technical_standards#
coos http://id.unece.org/def/coos#
ksamsok http://kulturarvsdata.se/ksamsok#
koko https://seznam.cz/
mindat https://www.mindat.org/
ceox https://linkeddata.cultureelerfgoed.nl/def/ceox#
baf https://w3id.org/baf#
coda http://art.uniroma2.it/coda/contracts/
databus https://dataid.dbpedia.org/databus#
matmine http://materialsmine.org/ns/
rb https://w3id.org/riverbench/schema/metadata#
ncbi https://www.ncbi.nlm.nih.gov/
imbor https://data.crow.nl/imbor/def/
hu https://mail.google.com/
bsdd http://bsdd.buildingsmart.org/def#
mibc http://marineinfo.org/ns/library/bibcodes#
bacnet http://data.ashrae.org/bacnet/2020#
uio https://www.mitre.org/mparmelee/ontologies/2023/6/UserIntentOntology/
fisa https://ifitkau.github.io/fisa/
sense https://w3id.org/sense#
quest https://rb.gy/ntg7l/
doce http://purl.org/nemo/doce#
ocmv https://w3id.org/ontouml-models/vocabulary#
keyon http://keyelements.ltd/ontologies/keyon/#
ind https://w3id.org/inesdata#
bioschemas https://bioschemas.org/
notify http://www.w3.org/ns/solid/notifications#
cpsvno http://data.norge.no/vocabulary/cpsvno#
pit http://data.elsevier.com/vocabulary/ElsevierPubItemTypes/
mibt https://marineinfo.org/ns/library/bibtypes#
p2po https://purl.org/p2p-o#
into https://app.korfin.de/ontology/into/
ontologia http://ub.edu/dades/ontologia/Cinema#Cinemes#
cercabib https://cercabib.ub.edu/
ogcf http://www.opengis.net/def/function/geosparql/
dde https://www.ddeworld.org/
sssom https://w3id.org/sssom/
skosno http://data.norge.no/skosno#
rbdoc https://w3id.org/riverbench/schema/documentation#
doam http://emmo.info/doam#
pico https://personsincontext.org/model#
semapv https://w3id.org/semapv/vocab/
sure http://ns.inria.fr/sure#
pbac https://w3id.org/pbac#
hy https://api.hyprdia.com/
oav http://lod.openaire.eu/vocab/
oplben http://www.openlinksw.com/ontology/benefits#
ioc http://w3id.org/ioc#
plasma https://w3id.org/plasma#
mifesto https://w3id.org/mifesto#
quit http://quit.aksw.org/vocab/
batmanont http://emmo.info/emmo/application/bmo#
w3 http://www.w3.org/
przecieki http://onlyfans.com/emiliaszymanska/
cp http://schemas.openxmlformats.org/package/2006/metadata/core-properties/
ies4 http://ies.data.gov.uk/ontology/ies4#
pcp https://pcp-on-web.de/ontology/0.2/index-en.html#
top http://w3id.org/topologicpy#
exekg https://raw.githubusercontent.com/nsai-uio/ExeKGOntology/main/ds_exeKGOntology.ttl#
mpio http://purl.obolibrary.org/obo/ZP_
eurovoc http://eurovoc.europa.eu/
ohd http://purl.obolibrary.org/obo/ZP_
maeo http://w3id.org/emmo-maeo/maeo#
mir http://marineinfo.org/ns/person/roles#
sri https://w3id.org/sri#
lpwc https://linkedpaperswithcode.com/property/
coswot https://w3id.org/coswot/
ontohgis https://onto.kul.pl/ontohgis/
ies http://ies.data.gov.uk/ontology/ies4#
hsapdv http://purl.obolibrary.org/obo/HsapDv_
interpro https://www.ebi.ac.uk/interpro/entry/InterPro/
chpaf https://ch.paf.link/
pdumdv http://purl.obolibrary.org/obo/PdumDv_
mfo http://purl.obolibrary.org/obo/ZP_
olis http://olis.dev/
nmr https://www.ebi.ac.uk/ols4/ontologies/nmrcv/terms?short_form=NMR:
htv http://www.w3.org/2011/http#
isoprops https://w3id.org/isoprops#
lpwcc https://linkedpaperswithcode.com/class/
iig https://w3id.org/iicongraph/data/
htn http://purl.obolibrary.org/obo/ZP_
cergy https://dbpedia.org/page/Cergy/
gramene http://www.gramene.org/db/ontology/search?id=GRO:
soa https://semopenalex.org/ontology/
hom http://purl.obolibrary.org/obo/HOM_
ornaseq http://purl.obolibrary.org/obo/ORNASEQ_
battery https://w3id.org/emmo/domain/battery/battery#
proco http://purl.obolibrary.org/obo/PROCO_
upheno http://purl.obolibrary.org/obo/UPHENO_
apollosv http://purl.obolibrary.org/obo/APOLLO_SV_
nyon https://w3id.org/def/nyon#
ddpheno http://purl.obolibrary.org/obo/DDPHENO_
imdb http://m.imdb.com/
sbo https://paul.ti.rw.fau.de/~jo00defe/ble/sbo#
mro http://purl.obolibrary.org/obo/MRO_
cred https://www.w3.org/2018/credentials#
deonta https://deonta.linkedmodel.org/deonta/
msl https://w3id.org/msl#
loggerhead http://purl.obolibrary.org/obo/LOGGERHEAD_
sep http://purl.obolibrary.org/obo/ZP_
guez http://guez.fr/
loinc https://loinc.org/
kbmarc https://id.kb.se/marc/
doid http://purl.obolibrary.org/obo/DOID_
capdata https://ontologie.capdataculture.fr/v1/owl/#
fro https://foundry.ai.mil/ontology/nas/fro/
tdm http://www.w3.org/ns/tdmrep#
vt http://purl.obolibrary.org/obo/VT_
sopharm http://purl.obolibrary.org/obo/SOPHARM_
gallont http://purl.obolibrary.org/obo/GALLONT_
gecko http://purl.obolibrary.org/obo/ZP_
openwemi https://ns.dublincore.org/openwemi/
credit https://credit.niso.org/
hpo http://w3id.org/emmo-hpo/hpo#
planp http://purl.obolibrary.org/obo/PLANP_
chems https://w3id.org/emmo/domain/chemical-substance#
cob http://purl.obolibrary.org/obo/COB_
jps https://jpsearch.go.jp/term/property#
mco http://purl.obolibrary.org/obo/MCO_
clao http://purl.obolibrary.org/obo/CLAO_
clyh http://purl.obolibrary.org/obo/ZP_
echem https://w3id.org/emmo/domain/electrochemistry#
mee http://www.w3.org/ns/pim/meeting#
osh https://w3id.org/oseg/ont/osh#
fovt http://purl.obolibrary.org/obo/FOVT_
okh https://w3id.org/oseg/ont/okh#
lpto http://w3id.org/lpto#
rxno http://purl.obolibrary.org/obo/ZP_
schemas https://schema.org/
sibo http://purl.obolibrary.org/obo/ZP_
oio http://www.geneontology.org/formats/oboInOwl#
mop http://purl.obolibrary.org/obo/MOP_
dgaterms https://w3id.org/dgaterms#
propreo http://purl.obolibrary.org/obo/PROPREO_
cmf http://purl.obolibrary.org/obo/CMF_
oplmarket http://www.openlinksw.com/ontology/market#
bcnres http://datos.bcn.cl/ontologies/bcn-resources#
mao https://domestic-beethoven.eu/ontology/1.0/music-annotation-ontology.ttl#
foaa https://kibanshoe.com/
uo http://purl.obolibrary.org/obo/UO_
aao http://purl.obolibrary.org/obo/AAO_
ons http://purl.obolibrary.org/obo/ONS_
fbbt http://purl.obolibrary.org/obo/FBbt_
miprog https://marineinfo.org/ns/progress#
dpo http://purl.obolibrary.org/obo/FBcv_
lrm https://iflastandards.info/ns/lrm/lrmoo/
hao http://purl.obolibrary.org/obo/HAO_
pao http://purl.obolibrary.org/obo/PAO_
occupation http://nikunj.org/ontology/occupatioin#
dcid https://datacommons.org/browser/
omo http://purl.obolibrary.org/obo/OMO_
ontoavida http://purl.obolibrary.org/obo/ONTOAVIDA_
emap http://purl.obolibrary.org/obo/EMAP_
iceo http://purl.obolibrary.org/obo/ICEO_
spo https://w3id.org/steel/ProcessOntology/
uiot http://www.w3id.org/urban-iot/core#
fbdv http://purl.obolibrary.org/obo/FBdv_
tsdcreq https://w3id.org/oseg/ont/tsdc/req#
shsh http://www.w3.org/ns/shacl-shacl#
taxrank http://purl.obolibrary.org/obo/TAXRANK_
obi http://purl.obolibrary.org/obo/OBI_
firebim http://w3id.org/firebim#
liph https://gallosiciliani.unict.it/ns/lpont#
pgdso http://purl.obolibrary.org/obo/PGDSO_
pwkso http://ns.inria.fr/pwkso/
wbls http://purl.obolibrary.org/obo/WBls_
vhog http://purl.obolibrary.org/obo/VHOG_
imr http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IMR&id=
cwo http://kcoyle.net/cwo/
ogsf http://purl.obolibrary.org/obo/OGSF_
ecp http://www.ebu.ch/metadata/ontologies/ebucoreplus#
iptc4xmpc http://iptc.org/std/Iptc4xmpCore/1.0/xmlns/
fiaf https://ontology.fiafcore.org/
idomal http://purl.obolibrary.org/obo/IDOMAL_
sepio http://purl.obolibrary.org/obo/SEPIO_
foodon http://purl.obolibrary.org/obo/FOODON_
cacax http://cacax.fun/
crmgeo http://www.ics.forth.gr/isl/CRMgeo/
mbl https://w3id.org/mbl#
spd http://purl.obolibrary.org/obo/SPD_
mat http://purl.obolibrary.org/obo/MAT_
clo http://purl.obolibrary.org/obo/ZP_
crcr https://credit.niso.org/contributor-roles/
meas https://graph.interoptx.org/meas/
mpath http://purl.obolibrary.org/obo/MPATH_
tto http://purl.obolibrary.org/obo/TTO_
geogeo http://purl.obolibrary.org/obo/GEO_
ecocore http://purl.obolibrary.org/obo/ECOCORE_
duo http://purl.obolibrary.org/obo/DUO_
xao http://purl.obolibrary.org/obo/XAO_
geolink http://schema.geolink.org/1.0/base/main#
apmwg http://apmwg.ovh/
ncro http://purl.obolibrary.org/obo/NCRO_
ypc http://www.semanticweb.org/sunsr/ontologies/2024/ypc#
tsdc https://w3id.org/oseg/ont/tsdc/core#
ovae http://purl.obolibrary.org/obo/OVAE_
edtf http://id.loc.gov/datatypes/EDTFScheme/
mfoem http://purl.obolibrary.org/obo/MFOEM_
tops http://www.topbraid.org/tops#
fbcv http://purl.obolibrary.org/obo/FBcv_
ohpi http://purl.obolibrary.org/obo/OHPI_
aimaix https://w3id.org/aimaix#
mfomd http://purl.obolibrary.org/obo/MFOMD_
xco http://purl.obolibrary.org/obo/XCO_
eupath http://purl.obolibrary.org/obo/EUPATH_
symp http://purl.obolibrary.org/obo/SYMP_
cvdo http://purl.obolibrary.org/obo/CVDO_
obom https://w3id.org/open-bom/ont/open-bom#
moont https://w3id.org/moont/
dideo http://purl.obolibrary.org/obo/DIDEO_
otrl https://w3id.org/oseg/ont/otrl#
maid https://mutual-aid.app/ns/core#
stroke https://mre.zcu.cz/ontology/stroke.owl#
apo http://purl.obolibrary.org/obo/APO_
bspo http://purl.obolibrary.org/obo/BSPO_
spa https://paul.ti.rw.fau.de/~jo00defe/voc/spa#
gtm https://www.goudatijdmachine.nl/def#
multionto http://purl.org/net/multionto/
mmusdv http://purl.obolibrary.org/obo/MmusDv_
joe http://example.org/joe/
adw https://animaldiversity.org/accounts/
ico http://purl.obolibrary.org/obo/ICO_
ckg http://example.org/ckg#
txpo http://purl.obolibrary.org/obo/ZP_
cams https://graph.interoptx.org/cams/schema/
ceosp https://linkeddata.cultureelerfgoed.nl/def/ceosp/
bootstrep http://purl.obolibrary.org/obo/BOOTSTREP_
oba http://purl.obolibrary.org/obo/OBA_
ceph http://purl.obolibrary.org/obo/CEPH_
ehdaa2 http://purl.obolibrary.org/obo/EHDAA2_
nihss https://mre.zcu.cz/ontology/nihss.owl#
duodrl https://w3id.org/duodrl#
opmi http://purl.obolibrary.org/obo/OPMI_
after http://rds.posccaesar.org/ontology/plm/ds/
libeas https://w3id.org/libeas#
vair https://w3id.org/vair#
bila http://4dx.embl.de/4DXpress/reg/all/cview/gene.do?geneID=
tgma http://purl.obolibrary.org/obo/TGMA_
ogms http://purl.obolibrary.org/obo/OGMS_
zea http://purl.obolibrary.org/obo/ZEA_
oplgit http://www.openlinksw.com/schemas/github#
amphx http://purl.obolibrary.org/obo/AMPHX_
envo http://purl.obolibrary.org/obo/ZP_
afpo http://purl.obolibrary.org/obo/AfPO_
amv https://w3id.org/amv/
hht https://w3id.org/HHT#
flopo http://purl.obolibrary.org/obo/FLOPO_
pw http://purl.obolibrary.org/obo/PW_
omrse http://purl.obolibrary.org/obo/OMRSE_
biomodels http://purl.obolibrary.org/obo/KISAO_
aio https://paul.ti.rw.fau.de/~jo00defe/SemWoT/aio#
chiro http://purl.obolibrary.org/obo/CHIRO_
vbo http://purl.obolibrary.org/obo/VBO_
occo http://purl.obolibrary.org/obo/OCCO_
eo http://purl.obolibrary.org/obo/EO_
cteno http://purl.obolibrary.org/obo/CTENO_
nomen http://purl.obolibrary.org/obo/NOMEN_
dinto http://purl.obolibrary.org/obo/ZP_
emobon http://www.embrc.eu/emobon/EmoBonOntology#
labo http://purl.obolibrary.org/obo/LABO_
edo http://semanticweb.org/edo#
aix https://w3id.org/aix#
pcl http://purl.obolibrary.org/obo/PCL_
ogg http://purl.obolibrary.org/obo/OGG_
pdro http://purl.obolibrary.org/obo/PDRO_
ado http://purl.obolibrary.org/obo/ADO_
cmso http://purls.helmholtz-metadaten.de/cmso/
hancestro http://purl.obolibrary.org/obo/HANCESTRO_
oostt http://purl.obolibrary.org/obo/OOSTT_
flu http://purl.obolibrary.org/obo/FLU_
plana http://purl.obolibrary.org/obo/PLANA_
whyis http://vocab.rpi.edu/whyis/
slso http://purl.obolibrary.org/obo/SLSO_
disdriv http://purl.obolibrary.org/obo/DISDRIV_
psdo http://purl.obolibrary.org/obo/PSDO_
fypo http://purl.obolibrary.org/obo/FYPO_
lepao http://purl.obolibrary.org/obo/LEPAO_
upa http://www.grenoble.prabi.fr/obiwarehouse/unipathway/upa?upid=
did https://w3id.org/dob/id/
oplog http://www.openlinksw.com/schemas/opengraph#
oarcs http://purl.obolibrary.org/obo/OARCS_
omit http://purl.obolibrary.org/obo/OMIT_
loin http://w3id.org/loin#
chmo http://purl.obolibrary.org/obo/CHMO_
ehdaa http://purl.obolibrary.org/obo/EHDAA_
vario http://purl.obolibrary.org/obo/VariO_
reloc https://w3id.org/reloc#
tahe http://purl.obolibrary.org/obo/TAHE_
qualityze https://www.qualityze.com/document-management/
vo http://purl.obolibrary.org/obo/VO_
ehda http://purl.obolibrary.org/obo/EHDA_
ypo http://purl.obolibrary.org/obo/YPO_
maxo http://purl.obolibrary.org/obo/MAXO_
lipro http://purl.obolibrary.org/obo/LIPRO_
fix http://purl.obolibrary.org/obo/FIX_
tahh http://purl.obolibrary.org/obo/TAHH_
cio http://purl.obolibrary.org/obo/CIO_
epio http://purl.obolibrary.org/obo/EPIO_
norse https://w3id.org/aksw/norse#
trans http://purl.obolibrary.org/obo/TRANS_
ogi http://purl.obolibrary.org/obo/OGI_
wbbt http://purl.obolibrary.org/obo/WBbt_
gsso http://purl.obolibrary.org/obo/GSSO_
fobi http://purl.obolibrary.org/obo/FOBI_
rdb http://www.dbs.cs.uni-duesseldorf.de/RDF/relational#
pa http://vtw.elsevier.com/data/ns/properties/PromotionalAccess-1/
cr http://mlcommons.org/croissant/
mcro https://www.ebi.ac.uk/ols4/ontologies/mcro/classes?obo_id=MCRO:
rdfl https://w3id.org/rdf-lens/ontology#
termdat https://register.ld.admin.ch/termdat/
psn https://purl.org/psn/vocab#
psm https://paul.ti.rw.fau.de/~jo00defe/ont/psm#
t4fs http://purl.obolibrary.org/obo/T4FS_
dictionary https://standards.buildingsmart.org/DataDictionary/
cdno http://purl.obolibrary.org/obo/CDNO_
miapa http://purl.obolibrary.org/obo/MIAPA_
volipi http://data.sparna.fr/ontologies/volipi#
dop https://w3id.org/dob/voc/prop#
lrmer http://iflastandards.info/ns/lrm/lrmer/
tads http://purl.obolibrary.org/obo/TADS_
zeco http://purl.obolibrary.org/obo/ZECO_
oip http://www.exemple.org/ontologia/
fbbi http://purl.obolibrary.org/obo/FBbi_
airo https://w3id.org/airo#
mpbv http://meta-pfarrerbuch.evangelische-archive.de/vocabulary#
ohmi http://purl.obolibrary.org/obo/OHMI_
geno http://purl.obolibrary.org/obo/GENO_
xpo http://purl.obolibrary.org/obo/XPO_
crdt https://vocab.noeldemartin.com/crdt/
oplmark http://www.openlinksw.com/ontology/market#
colao http://purl.obolibrary.org/obo/COLAO_
zfs http://purl.obolibrary.org/obo/ZFS_
gno http://purl.obolibrary.org/obo/GNO_
zfa http://purl.obolibrary.org/obo/ZFA_
hso http://purl.obolibrary.org/obo/HSO_
dprod https://ekgf.github.io/dprod/
musi http://i-na-reg.musikinstrumentenbau.eu/ns/musi/
aero http://purl.obolibrary.org/obo/AERO_
scdo http://purl.obolibrary.org/obo/SCDO_
kvasir https://kvasir.discover.ilabt.imec.be/vocab#
ato http://purl.obolibrary.org/obo/ATO_
vsao http://purl.obolibrary.org/obo/VSAO_
makeup http://example.org/makeup#
rex http://purl.obolibrary.org/obo/REX_
zp http://purl.obolibrary.org/obo/ZP_
luffy http://google.com/
mfmo http://purl.obolibrary.org/obo/MFMO_
pes https://semanticweb.inesctec.pt/ontologies/pes/
olatdv http://purl.obolibrary.org/obo/OlatDv_
dron http://purl.obolibrary.org/obo/DRON_
genepio http://purl.obolibrary.org/obo/GENEPIO_
poro http://purl.obolibrary.org/obo/PORO_
qcy https://qaecy.com/dev/ont#
fbsp http://purl.obolibrary.org/obo/FBSP_
gaz http://purl.obolibrary.org/obo/GAZ_
obcs http://purl.obolibrary.org/obo/OBCS_
iev http://www.inoh.org/ontology-viewer/cgi-bin/InohOVAttr.php?type=IEV&id=
ddanat http://purl.obolibrary.org/obo/DDANAT_
vto http://purl.obolibrary.org/obo/VTO_
resid https://proteininformationresource.org/cgi-bin/resid?id=
omiabis http://purl.obolibrary.org/obo/OMIABIS_
phipo http://purl.obolibrary.org/obo/PHIPO_
hhtchange https://w3id.org/HHT/Change#
rnao http://purl.obolibrary.org/obo/RNAO_
emapa http://purl.obolibrary.org/obo/EMAPA_
stato http://purl.obolibrary.org/obo/STATO_
xlmod http://purl.obolibrary.org/obo/XLMOD_
oplgp http://www.openlinksw.com/schemas/googleplus#
caro http://purl.obolibrary.org/obo/CARO_
aschema https://schema.ld.admin.ch/
mirnao http://purl.obolibrary.org/obo/MIRNAO_
aism http://purl.obolibrary.org/obo/AISM_
ror https://ror.org/
ecao http://purl.obolibrary.org/obo/ECAO_
obib http://purl.obolibrary.org/obo/OBIB_
miro http://purl.obolibrary.org/obo/MIRO_
dob https://w3id.org/dob/voc#
oix http://www.exemple.org/ontologia/
npc https://purl.org/npc#
fideo http://purl.obolibrary.org/obo/FIDEO_
nyanneko https://nyanneko.com/
zo https://linkeddata.cultureelerfgoed.nl/def/zo/
oplic http://www.openlinksw.com/ontology/licenses#
micro http://purl.obolibrary.org/obo/MICRO_
cfg http://server.topbraidlive.org/web/2009/config#
ino http://purl.obolibrary.org/obo/INO_
freespins https://bohoaff.com/a34fd6fba/
rmle https://w3id.org/imec/rml/ns/extensions#
geosrs https://w3id.org/geosrs#
graphql https://graphql.org/
aro http://purl.obolibrary.org/obo/ARO_
aeo http://purl.obolibrary.org/obo/AEO_
dblpdocu https://dblp.org/rdf/docu/#
ftr https://w3id.org/ftr#
miron https://stgermain.ebsi.umontreal.ca/miron/
myv http://www.example.com/myvData/
ecto http://purl.obolibrary.org/obo/ECTO_
ngbo http://purl.obolibrary.org/obo/NGBO_
womo https://w3id.org/womo#
dtkt https://data.wikitrek.org/prop/direct/
tsdcr http://w3id.org/oseg/ont/tsdc/requirements#
cdi http://ddialliance.org/Specification/DDI-CDI/1.0/RDF/
fair4ml https://w3id.org/fair4ml#
jabel54303 https://softwarehorsepower.com/product/brand24/
aicat http://w3id.org/aicat#
creon http://purl.org/creon/
codemeta https://codemeta.github.io/terms/
bng https://w3id.org/dob/voc/epsg-27700#
jav https://www.niso.org/schemas/jav/1.0/
nace2 http://data.europa.eu/ux2/nace2/
podio http://w3id.org/podio#
azo https://linkeddata.cultureelerfgoed.nl/def/azo/
ceon http://w3id.org/CEON/
ssv https://w3id.org/ssv/
frac http://www.w3.org/ns/lemon/frac#
tgc http://www.hds.utc.fr/tg#
aiup http://w3id.org/aiup#
vwlid https://vwgroup.leanix.net/Volkswagen/external/leanixId/
gsn https://w3id.org/OntoGSN/ontology#
ce https://purl.org/cityexplorer#
sn https://purl.org/supply-network/onto#
encom https://semanticweb.inesctec.pt/ontologies/encom/
dtk https://data.wikitrek.org/entity/
checks https://data.digichecks.eu/def/
onlyfans https://cutt.ly/3ry8LMcK/
fti http://franz.com/ns/allegrograph/2.2/textindex/
jats http://jats.nlm.nih.gov/
och http://w3id.org/def/och/
vwlpr https://vwgroup.leanix.net/Volkswagen/factsheet/Process/
nsprov http://www.w3.org/ns/prov#
rbo http://purl.obolibrary.org/obo/RBO_
vrti https://www.w3id.org/virtual-treasury/ontology#
picom https://personsincontext.org/model#
fugas https://onlyfans.com/sammuwuu/
passport https://nepalpassport.gov.np/
bambara http://example.org/bambara#
bam http://vtw.elsevier.com/data/voc/ns/bam-vtw-1/
pur http://prismstandard.org/namespaces/prismusagerights/2.1/
drammar http://www.purl.org/drammar#
lindas https://ld.admin.ch/
northwind http://demo.openlinksw.com/schemas/Northwind/
tgfm http://purl.org/terminology-guide-for-move/testvocab/
arco https://w3id.org/arco/ontology/arco/
ishi https://w3id.org/ishikawa-diagram-ontology#
debias http://data.europa.eu/c4p/data/
scdt http://w3id.org/awslabs/neptune/SPARQL-CDTs/
itandrec http://www.semanticweb.org/pedri/ontologies/2025/3/IntelligentTourismAndRecommendations#
icd http://purl.bioontology.org/ontology/ICD9CM/
libro https://www.librorum.fr/ontology/
vwlap https://vwgroup.leanix.net/Volkswagen/factsheet/Application/
unesco http://vocabularies.unesco.org/thesaurus/
turism http://turism.com/
ppm https://mestergruppen.no/ontologies/projectproductionmanagement/
elsst https://elsst.cessda.eu/id/
vwgw https://group-wiki.wob.vw.vwg/wikis/pages/viewpage.action?pageId=
oqs http://purl.org/nsoluti/oqs#
regcomp https://regulacomp.unige.ch/ns/regcomp#
npo https://w3id.org/NPO/ontology/
dbpde http://de.dbpedia.org/property/
datmm http://id.nlm.nih.gov/datmm/
eliasempre https://eliasempresas.com/
iirds http://iirds.tekom.de/iirds#
ris http://research-info-systems.com/schema/ris/
dsio https://ptb.de/si#
sip https://purl.semanticip.org/linked-data/
lib http://purl.org/library/
fwo https://w3id.org/foodwaste/ontology#
whu http://bdi.whu.edu.cn/
sis https://ptb.de/sis/
ncl https://w3id.org/NCL/ontology/
ubbont http://data.ub.uib.no/ontology/
riskman https://w3id.org/riskman/ontology#
know https://know.dev/
genex http://purl.org/genex#
sulo https://w3id.org/sulo/
vm http://visual-meaning.com/rdf/
vwdms https://vwdmsweb.wob.vw.vwg/groupdms/?docbase=vwdms&locateId=
bu http://borhan-onto.ir/ontology/upper#
muno https://purl.org/muno/onto/
reno https://w3id.org/reno#
dqa https://w3id.org/DQA#
pmw http://ponymusic.wiki/ns#
golem https://w3id.org/golem/ontology#
coso http://w3id.org/coso/v1/contaminoso#
coar http://purl.org/coar/resource_type/
piveau https://piveau.eu/ns/voc#
semts https://w3id.org/semts/ontology#
akco https://purl.archive.org/akco#
tribont https://w3id.org/tribont/core#
elm http://data.europa.eu/snb/model/elm/
evorao http://w3id.org/evorao/
gro http://www.bootstrep.eu/ontology/GRO#
exmo http://purl.obolibrary.org/obo/EXMO_
csro https://w3id.org/csro/ontology#
rdfc https://w3id.org/rdf-connect#
dtool https://devtoolkit.space/ontology#
csr http://purl.org/org/iode/po/voc/cruise-summary-reports#
dcatde http://dcat-ap.de/def/dcatde/
a11y http://idpf.org/epub/vocab/package/a11y/#
bmont http://purl.obolibrary.org/obo/BMONT_
bodi http://w3id.org/bodi#
sz https://github.com/senzing-garage/sz-semantics/wiki/ns#
modsrdf http://www.loc.gov/mods/rdf/v1#
sdn https://ontology.seadatanet.org/#
homoit https://homosaurus.org/v4/
bno https://data.banenor.no/ontology/
tbs http://topbraid.org/tbs#
tfn https://w3id.org/time-fn#
mdcat https://w3id.org/mobilitydcat-ap#
ard https://www.stratcom.mil/ontologies/electromagnetic-spectrum/adversary-radar-detection-ontology/
tensor https://w3id.org/rdf-tensor/vocab#
pghdprovo https://w3id.org/pghdprovo#
rtm http://ontology.railml.org/railtopomodel#
rdm https://terms.codata.org/rdmt/
bnd https://data.banenor.no/data/
railml3 http://ontology.railml.org/railml3#
dccs https://ptb.de/dccs/
spot https://w3id.org/spot#
afy https://w3id.org/afy#
omekas http://omeka.org/s/vocabs/o#
dpp https://ns.verisav.fr/dpp#
osmkey https://www.openstreetmap.org/wiki/Key:
aaao https://ontology.swissartresearch.net/aaao/
lubm http://swat.cse.lehigh.edu/onto/univ-bench.owl#
submit https://ns.verisav.fr/dpp#
dpvpd https://w3id.org/dpv/pd#
geodcatap http://data.europa.eu/930/
vlaanderen https://data.vlaanderen.be/ns/