-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrdf-prefix.el
More file actions
3148 lines (3134 loc) · 168 KB
/
rdf-prefix.el
File metadata and controls
3148 lines (3134 loc) · 168 KB
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
;;; rdf-prefix.el --- Prefix lookup for RDF -*- lexical-binding: t; -*-
;; Copyright (C) 2014-2024 Simen Heggestøyl
;; Author: Simen Heggestøyl <simenheg@runbox.com>
;; Maintainer: Simen Heggestøyl <simenheg@runbox.com>
;; Version: 1.14
;; Keywords: convenience, abbrev
;; Homepage: https://github.com/simenheg/rdf-prefix
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; The intention of this package is to simplify a common task in the
;; work of RDF developers: remembering and looking up URI prefixes.
;;
;; The `rdf-prefix-insert' command is used to look up- and insert URIs
;; based on a prefix.
;;
;; RDF prefixes are mapped to URIs by the alist `rdf-prefix-alist'. New
;; prefixes can be defined by adding them to `rdf-prefix-alist', on the
;; form (PREFIX . URI), where PREFIX and URI are both strings.
;;
;; The prefix list is updated regularly from http://prefix.cc/.
;;; Code:
(defvar rdf-prefix-alist
'(("aair" . "http://xmlns.notu.be/aair#")
("aao" . "http://purl.obolibrary.org/obo/AAO_")
("aapi" . "http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#")
("aat" . "http://vocab.getty.edu/aat/")
("abc" . "http://www.metadata.net/harmony/ABCSchemaV5Commented.rdf#")
("abs" . "http://abs.270a.info/dataset/")
("ac" . "http://umbel.org/umbel/ac/")
("acc" . "http://purl.org/NET/acc#")
("accid" . "http://pid.accurids.com/")
("acco" . "http://purl.org/acco/ns#")
("accom" . "http://purl.org/acco/ns#")
("acl" . "http://www.w3.org/ns/auth/acl#")
("acm" . "http://www.rkbexplorer.com/ontologies/acm#")
("acp" . "http://www.w3.org/ns/solid/acp#")
("acrt" . "http://privatealpha.com/ontology/certification/1#")
("act" . "http://www.w3.org/2007/rif-builtin-action#")
("activity" . "https://www.w3.org/TR/activitystreams-vocabulary/")
("ad" . "http://schemas.talis.com/2005/address/schema#")
("add" . "http://www.datatourisme.fr/ontology/core/1.0#")
("address" . "http://schemas.talis.com/2005/address/schema#")
("adf" . "http://purl.allotrope.org/ontologies/datapackage#")
("admin" . "http://webns.net/mvcb/")
("admingeo" . "http://data.ordnancesurvey.co.uk/ontology/admingeo/")
("adms" . "http://www.w3.org/ns/adms#")
("admssw" . "http://purl.org/adms/sw/")
("ado" . "http://purl.obolibrary.org/obo/ADO_")
("adr" . "http://kg.artsdata.ca/resource/")
("adw" . "https://animaldiversity.org/accounts/")
("aec3po" . "https://w3id.org/lbd/aec3po/")
("aerols" . "http://xmlns.com/aerols/0.1/")
("aers" . "http://aers.data2semantics.org/resource/")
("aersv" . "http://aers.data2semantics.org/vocab/")
("af" . "http://purl.org/ontology/af/")
("aff" . "https://w3id.org/affectedBy#")
("affy" . "http://www.affymetrix.com/community/publications/affymetrix/tmsplice#")
("affymetrix" . "http://bio2rdf.org/affymetrix_vocabulary:")
("afm" . "http://purl.allotrope.org/ontologies/material/")
("afn" . "http://jena.apache.org/ARQ/function#")
("afr" . "http://purl.allotrope.org/ontologies/result#")
("agent" . "http://eulersharp.sourceforge.net/2003/03swap/agent#")
("agents" . "http://eulersharp.sourceforge.net/2003/03swap/agent#")
("agetec" . "http://www.agetec.org/")
("agg" . "http://purl.org/twc/health/vocab/aggregate/")
("agls" . "http://www.agls.gov.au/agls/terms/")
("ago" . "http://awesemantic-geo.link/ontology/")
("agr" . "http://promsns.org/def/agr#")
("agrd" . "http://agrinepaldata.com/")
("agrelon" . "http://d-nb.info/standards/elementset/agrelon#")
("agro" . "http://purl.obolibrary.org/obo/agro.owl#")
("agrovoc" . "http://aims.fao.org/aos/agrovoc/")
("ags" . "https://id.agschemas.org/")
("aifb" . "http://www.aifb.kit.edu/id/")
("aigp" . "http://swat.cse.lehigh.edu/resources/onto/aigp.owl#")
("aiiso" . "http://purl.org/vocab/aiiso/schema#")
("aims" . "http://aims.fao.org/aos/common/")
("air" . "http://dig.csail.mit.edu/TAMI/2007/amord/air#")
("airport" . "http://www.daml.org/2001/10/html/airport-ont#")
("airs" . "https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#")
("aksw" . "http://aksw.org/")
("akt" . "http://www.aktors.org/ontology/portal#")
("aktivesa" . "http://sa.aktivespace.org/ontologies/aktivesa#")
("akts" . "http://www.aktors.org/ontology/support#")
("alchemy" . "http://rdf.alchemyapi.com/rdf/v1/s/aapi-schema#")
("alethio" . "http://aleth.io/")
("alg" . "http://drakon.su/ADF#")
("algo" . "http://securitytoolbox.appspot.com/securityAlgorithms#")
("ali" . "http://www.niso.org/schemas/ali/1.0/")
("alice" . "http://example.org/")
("allot" . "https://w3id.org/akn/ontology/allot#")
("am" . "http://vocab.deri.ie/am#")
("amalgame" . "http://purl.org/vocabularies/amalgame#")
("aml" . "https://w3id.org/i40/aml#")
("ammo" . "http://ldf.fi/schema/ammo/")
("ams" . "http://data.amadeus.com/")
("amsl" . "http://vocab.ub.uni-leipzig.de/amsl/")
("amt" . "http://academic-meta-tool.xyz/vocab#")
("anca" . "http://users.utcluj.ro/~raluca/rdf_ontologies_ralu/ralu_modified_ontology_pizzas2_0#")
("aneo" . "http://akonadi-project.org/ontologies/aneo#")
("ann" . "http://www.w3.org/2000/10/annotation-ns#")
("antenne" . "https://data.zendantennes.omgeving.vlaanderen.be/ns/zendantenne#")
("ao" . "http://purl.org/ontology/ao/core#")
("aos" . "http://rdf.muninn-project.org/ontologies/appearances#")
("aozora" . "http://purl.org/net/aozora/")
("apb" . "http://www.analysispartners.org/businessmodel/")
("apf" . "http://jena.apache.org/ARQ/property#")
("api" . "http://purl.org/linked-data/api/vocab#")
("apivc" . "http://purl.org/linked-data/api/vocab#")
("apods" . "http://activitypods.org/ns/core#")
("app" . "http://jmvanel.free.fr/ontology/software_applications.n3#")
("aprov" . "http://purl.org/a-proc#")
("arch" . "http://purl.org/archival/vocab/arch#")
("archdesc" . "http://archdesc.info/archEvent#")
("archivo" . "https://archivo.dbpedia.org/onto#")
("arecipe" . "http://purl.org/amicroformat/arecipe/")
("arena" . "https://solid.ti.rw.fau.de/public/ns/arena#")
("arg" . "http://rdfs.org/sioc/argument#")
("arp" . "http://www.arpenteur.org/ontology/Arpenteur.owl#")
("arpfo" . "http://vocab.ouls.ox.ac.uk/projectfunding#")
("art" . "http://w3id.org/art/terms/1.0/")
("article" . "http://ogp.me/ns/article#")
("artstor" . "http://simile.mit.edu/2003/10/ontologies/artstor#")
("as" . "https://www.w3.org/ns/activitystreams#")
("asawoo" . "http://liris.cnrs.fr/asawoo/")
("asb" . "https://w3id.org/asbingowl/core#")
("aseonto" . "http://requirement.ase.ru/requirements_ontology#")
("asf" . "https://www.stm-assoc.org/asf/")
("asgs" . "http://linked.data.gov.au/def/asgs#")
("asgv" . "http://aims.fao.org/aos/agrovoc/")
("asio" . "http://purl.org/hercules/asio/core#")
("asn" . "http://purl.org/ASN/schema/core/")
("aspect" . "http://purl.org/aspect/")
("ass" . "http://uptheasset.org/ontology#")
("assoc" . "https://w3id.org/associations/vocab#")
("atcc" . "https://www.atcc.org/products/")
("atd" . "https://data.nasa.gov/ontologies/atmonto/data#")
("atlas" . "http://rdf.ebi.ac.uk/resource/atlas/")
("atlasterms" . "http://rdf.ebi.ac.uk/terms/atlas/")
("atm" . "https://data.nasa.gov/ontologies/atmonto/ATM#")
("atom" . "http://www.w3.org/2005/Atom/")
("atomix" . "http://buzzword.org.uk/rdf/atomix#")
("atomowl" . "http://bblfish.net/work/atom-owl/2006-06-06/#")
("atomrdf" . "http://atomowl.org/ontologies/atomrdf#")
("atts" . "https://data.nasa.gov/ontologies/atmonto/general#")
("audio" . "http://purl.org/media/audio#")
("audit" . "http://fedora.info/definitions/v4/audit#")
("auto" . "http://auto.schema.org/")
("awol" . "http://bblfish.net/work/atom-owl/2006-06-06/#")
("aws" . "http://purl.oclc.org/NET/ssnx/meteo/aws#")
("az" . "https://w3id.org/people/az/")
("b2bo" . "http://purl.org/b2bo#")
("b2rpubchem" . "http://bio2rdf.org/ns/ns/ns/pubchem#")
("b3kat" . "http://lod.b3kat.de/title/")
("babelnet" . "http://babelnet.org/2.0/")
("bacnet" . "http://data.ashrae.org/bacnet/2020#")
("baf" . "https://w3id.org/baf#")
("bag" . "https://bag2.basisregistraties.overheid.nl/bag/def/")
("bag2" . "http://bag.basisregistraties.overheid.nl/def/bag#")
("bao" . "http://www.bioassayontology.org/bao#")
("basic" . "http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#")
("batmanont" . "http://emmo.info/emmo/application/bmo#")
("bau" . "https://terminology.fraunhofer.de/voc/bau#")
("bb" . "http://www.snik.eu/ontology/bb/")
("bbc" . "http://www.bbc.co.uk/ontologies/news/")
("bbccms" . "http://www.bbc.co.uk/ontologies/cms/")
("bbccore" . "http://www.bbc.co.uk/ontologies/coreconcepts/")
("bbcprov" . "http://www.bbc.co.uk/ontologies/provenance/")
("bblfish" . "http://bblfish.net/people/henry/card#")
("bcfowl" . "http://lbd.arch.rwth-aachen.de/bcfOWL#")
("bcgo" . "http://purl.obolibrary.org/obo/ZP_")
("bci" . "https://w3id.org/BCI-ontology#")
("bcnbio" . "http://datos.bcn.cl/ontologies/bcn-biographies#")
("bcncon" . "http://datos.bcn.cl/ontologies/bcn-congress#")
("bcngeo" . "http://datos.bcn.cl/ontologies/bcn-geographics#")
("bcnnorms" . "http://datos.bcn.cl/ontologies/bcn-norms#")
("bco" . "http://purl.obolibrary.org/obo/bco.owl#")
("bcom" . "https://w3id.org/bcom#")
("bd" . "http://www.bigdata.com/rdf#")
("bdc" . "http://dbpedia.org/resource/Category:")
("bdd" . "https://api.bloomberg.com/eap/catalogs/bbg/fields/")
("bdg" . "http://data.bigdatagrapes.eu/resource/ontology/")
("bdo" . "http://purl.bdrc.io/ontology/core/")
("bdr" . "http://purl.bdrc.io/resource/")
("bds" . "http://www.bigdata.com/rdf/search#")
("bdsubj" . "https://purl.org/fidbaudigital/subjects#")
("beer" . "http://beer.com/")
("being" . "http://purl.org/ontomedia/ext/common/being#")
("beo" . "http://pi.pauwel.be/voc/buildingelement#")
("besluit" . "http://data.vlaanderen.be/ns/besluit#")
("besluitvor" . "https://data.vlaanderen.be/ns/besluitvorming#")
("beth" . "http://www.google.com/")
("bevon" . "http://rdfs.co/bevon/")
("bf" . "http://id.loc.gov/ontologies/bibframe/")
("bflc" . "http://id.loc.gov/ontologies/bflc/")
("bfo" . "http://purl.obolibrary.org/obo/")
("bgcat" . "http://bg.dbpedia.org/resource/Категория:")
("bgdbp" . "http://bg.dbpedia.org/property/")
("bgdbr" . "http://bg.dbpedia.org/resource/")
("bgn" . "http://bibliograph.net/schemas/")
("bgt" . "https://bgt.basisregistraties.overheid.nl/bgt/def/")
("bib" . "http://zeitkunst.org/bibtex/0.1/bibtex.owl#")
("bibframe" . "http://id.loc.gov/ontologies/bibframe/")
("biblio" . "http://purl.org/net/biblio#")
("bibo" . "http://purl.org/ontology/bibo/")
("bibrm" . "http://vocab.ub.uni-leipzig.de/bibrm/")
("bibtex" . "http://purl.org/net/nknouf/ns/bibtex#")
("bif" . "http://www.openlinksw.com/schemas/bif#")
("bihap" . "http://bihap.kb.gov.tr/ontology/")
("bill" . "http://www.rdfabout.com/rdf/schema/usbill/")
("biml" . "http://schemas.varigence.com/biml.xsd#")
("bing" . "http://bing.com/schema/media/")
("bio" . "http://purl.org/vocab/bio/0.1/")
("bio2rdf" . "http://bio2rdf.org/")
("bioc" . "http://deductions.github.io/biological-collections.owl.ttl#")
("biocore" . "http://bio2rdf.org/core#")
("biocrm" . "http://ldf.fi/schema/bioc/")
("bioentity" . "http://bioentity.io/vocab/")
("biogrid" . "http://thebiogrid.org/")
("biol" . "http://purl.org/NET/biol/ns#")
("biolink" . "https://w3id.org/biolink/vocab/")
("biopax" . "http://www.biopax.org/release/biopax-level3.owl#")
("biordf" . "http://purl.org/net/biordfmicroarray/ns#")
("bioschemas" . "https://bioschemas.org/")
("bioskos" . "http://eulersharp.sourceforge.net/2003/03swap/bioSKOSSchemes#")
("biotop" . "http://purl.org/biotop/biotop.owl#")
("biro" . "http://purl.org/spar/biro/")
("birthdate" . "http://schema.org/birthDate/")
("bis" . "http://bis.270a.info/dataset/")
("bitl" . "http://lib.bit.edu.cn/ontology/1.0/")
("bk" . "http://www.provbook.org/ns/#")
("bkb" . "https://budayakb.cs.ui.ac.id/ns#")
("bl" . "https://w3id.org/biolink/vocab/")
("bld" . "http://biglinkeddata.com/")
("bldont" . "http://ont.biglinkeddata.com/")
("ble" . "http://vocab.rapidthings.eu/ns/ble.ttl#")
("bleadapter" . "http://vocab.rapidthings.eu/ns/ble/adapter.ttl#")
("blt" . "http://www.bl.uk/schemas/bibliographic/blterms#")
("bm" . "http://bio2rdf.org/")
("bmo" . "http://collection.britishmuseum.org/id/ontology/")
("bmp" . "http://w3id.org/bmp#")
("bn" . "http://babelnet.org/rdf/")
("bne" . "http://datos.bne.es/resource/")
("bner" . "http://datos.bne.es/resource/")
("bnf" . "http://www.w3.org/2000/10/swap/grammar/bnf#")
("bob" . "http://good.dad/meaning/bob#")
("book" . "http://purl.org/NET/book/vocab#")
("bookmark" . "http://www.w3.org/2002/01/bookmark#")
("bop" . "https://w3id.org/bop#")
("bot" . "https://w3id.org/bot#")
("botany" . "http://purl.org/NET/biol/botany#")
("bp" . "http://www.biopax.org/release/biopax-level3.owl#")
("bp3" . "http://www.biopax.org/release/biopax-level3.owl#")
("bperson" . "http://data.vlaanderen.be/ns/persoon#")
("bpo" . "https://w3id.org/bpo#")
("br" . "http://vocab.deri.ie/br#")
("brick" . "https://brickschema.org/schema/Brick#")
("bridge" . "http://purl.org/vocommons/bridge#")
("brk" . "http://brk.basisregistraties.overheid.nl/def/brk#")
("brot" . "https://w3id.org/brot#")
("brt" . "http://brt.basisregistraties.overheid.nl/def/top10nl#")
("bs" . "https://w3id.org/def/basicsemantics-owl#")
("bsb" . "http://opacplus.bsb-muenchen.de/title/")
("bsbm" . "http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/vocabulary/")
("bsdd" . "http://bsdd.buildingsmart.org/def#")
("bsh" . "https://brickschema.org/schema/1.1.0/BrickShape#")
("bsym" . "http://bsym.bloomberg.com/sym/")
("bte" . "http://purl.org/twc/vocab/between-the-edges/")
("bto" . "http://w3id.org/emmo-bto/bto#")
("bv" . "http://purl.org/vocommons/bv#")
("bwb" . "http://doc.metalex.eu/bwb/ontology/")
("c4dm" . "http://purl.org/NET/c4dm/event.owl#")
("c4n" . "http://vocab.deri.ie/c4n#")
("c4o" . "http://purl.org/spar/c4o/")
("c9d" . "http://purl.org/twc/vocab/conversion/")
("ca" . "http://complyadvantage.com/")
("cacax" . "http://cacax.fun/")
("cal" . "http://www.w3.org/2002/12/cal/ical#")
("call" . "http://webofcode.org/wfn/call:")
("calli" . "http://callimachusproject.org/rdf/2009/framework#")
("camelot" . "http://vocab.ox.ac.uk/camelot#")
("campsite" . "http://www.openlinksw.com/campsites/schema#")
("cao" . "http://purl.org/makolab/caont/")
("capes" . "http://vocab.capes.gov.br/def/vcav#")
("caplibacl" . "http://schemas.capita-libraries.co.uk/2015/acl/schema#")
("card" . "http://www.ashutosh.com/test/")
("care" . "http://eulersharp.sourceforge.net/2003/03swap/care#")
("carfo" . "http://purl.org/carfo#")
("cart" . "http://purl.org/net/cartCoord#")
("caso" . "http://www.w3id.org/def/caso#")
("category" . "http://dbpedia.org/resource/Category:")
("cb" . "http://cbasewrap.ontologycentral.com/vocab#")
("cbase" . "http://ontologycentral.com/2010/05/cb/vocab#")
("cbb" . "https://data.cbb.omgeving.vlaanderen.be/ns/cbb#")
("cbim" . "http://www.coinsweb.nl/cbim-2.0.rdf#")
("cbo" . "http://comicmeta.org/cbo/")
("cbs" . "http://betalinkeddata.cbs.nl/def/cbs#")
("cbv" . "https://ns.gs1.org/cbv/")
("cc" . "http://creativecommons.org/ns#")
("ccard" . "http://purl.org/commerce/creditcard#")
("cci" . "http://cookingbigdata.com/linkeddata/ccinstances#")
("cco" . "http://www.ontologyrepository.com/CommonCoreOntologies/")
("ccom" . "http://purl.org/ontology/cco/mappings#")
("ccomid" . "http://www.ontologyrepository.com/CommonCoreOntologies/Mid/")
("ccp" . "http://cookingbigdata.com/linkeddata/ccpricing#")
("ccr" . "http://cookingbigdata.com/linkeddata/ccregions#")
("ccrel" . "http://creativecommons.org/ns#")
("ccsla" . "http://cookingbigdata.com/linkeddata/ccsla#")
("cd" . "http://citydata.wu.ac.at/ns#")
("cdao" . "http://purl.obolibrary.org/obo/")
("cdc" . "https://w3id.org/cdc#")
("cdm" . "http://publications.europa.eu/ontology/cdm#")
("cdt" . "https://w3id.org/cdt/")
("cdtype" . "http://purl.org/cld/cdtype/")
("centrifuge" . "http://purl.org/twc/vocab/centrifuge#")
("ceo" . "https://linkeddata.cultureelerfgoed.nl/def/ceo#")
("ceosp" . "https://linkeddata.cultureelerfgoed.nl/def/ceosp/")
("ceox" . "https://linkeddata.cultureelerfgoed.nl/def/ceox#")
("cercabib" . "https://cercabib.ub.edu/")
("cerealstoo" . "http://rdf.ag/o/cerealstoo#")
("cergy" . "https://dbpedia.org/page/Cergy/")
("cerif" . "http://spi-fm.uca.es/neologism/cerif#")
("cert" . "http://www.w3.org/ns/auth/cert#")
("ceterms" . "http://purl.org/ctdl/terms/")
("cex" . "http://purl.org/weso/ontology/computex#")
("cf" . "http://mmisw.org/ont/cf/parameter/")
("cff" . "http://purl.oclc.org/NET/ssnx/cf/cf-feature#")
("cfp" . "http://sw.deri.org/2005/08/conf/cfp.owl#")
("cfrl" . "http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#")
("cgo" . "https://www.tno.nl/agrifood/ontology/common-greenhouse-ontology#")
("cgov" . "http://reference.data.gov.uk/def/central-government/")
("ch" . "https://schema.ld.admin.ch/")
("chameo" . "http://w3id.org/emmo-chameo/chameo#")
("changeset" . "http://purl.org/vocab/changeset/schema#")
("chear" . "http://hadatac.org/ont/chear#")
("chebi" . "http://purl.obolibrary.org/obo/CHEBI_")
("check" . "http://pornhub.com/")
("chembl" . "http://rdf.ebi.ac.uk/terms/chembl#")
("cheminf" . "http://www.semanticweb.org/ontologies/cheminf.owl#")
("chemrof" . "https://w3id.org/chemrof/")
("chemsci" . "https://w3id.org/skgo/chemsci#")
("chess" . "http://purl.org/NET/rdfchess/ontology/")
("chord" . "http://purl.org/ontology/chord/")
("chpaf" . "https://ch.paf.link/")
("ci" . "https://privatealpha.com/ontology/content-inventory/1#")
("ciao" . "http://ciao.it/")
("cido" . "http://purl.obolibrary.org/obo/cido.owl/")
("cidoc" . "http://www.cidoc-crm.org/cidoc-crm/")
("cidoccrm" . "http://purl.org/NET/cidoc-crm/core#")
("cim" . "http://iec.ch/TC57/2013/CIM-schema-cim16#")
("cinema" . "http://www.semanticweb.org/julien/morgann/cinema#")
("cis" . "http://purl.org/NET/cloudisus#")
("citedcat" . "https://w3id.org/citedcat-ap/")
("cito" . "http://purl.org/spar/cito/")
("citof" . "http://www.essepuntato.it/2013/03/cito-functions#")
("city" . "http://datos.localidata.com/def/City#")
("cjr" . "http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/callejero#")
("ckg" . "http://example.org/ckg#")
("cl" . "http://advene.org/ns/cinelab/")
("clapit" . "http://dati.gov.it/onto/clapit/")
("cld" . "http://purl.org/cld/terms/")
("climb" . "http://climb.dataincubator.org/vocabs/climb/")
("clineva" . "http://www.agfa.com/w3c/2009/clinicalEvaluation#")
("clinic" . "http://example.com/clinic#")
("clinproc" . "http://www.agfa.com/w3c/2009/clinicalProcedure#")
("clirio" . "http://clirio.kaerle.com/clirio.owl#")
("clo" . "http://purl.obolibrary.org/obo/ZP_")
("clyh" . "http://purl.obolibrary.org/obo/ZP_")
("cmd" . "http://clarin.eu/cmd#")
("cmdi" . "http://www.clarin.eu/cmd/")
("cmdm" . "http://infra.clarin.eu/cmd/")
("cmo" . "http://purl.org/twc/ontologies/cmo.owl#")
("cmp" . "http://www.ontologydesignpatterns.org/cp/owl/componency.owl#")
("cnt" . "http://www.w3.org/2011/content#")
("co" . "http://purl.org/ontology/co/core#")
("cocoon" . "https://w3id.org/cocoon/v1.0#")
("coda" . "http://art.uniroma2.it/coda/contracts/")
("code" . "http://telegraphis.net/ontology/measurement/code#")
("coeus" . "http://bioinformatics.ua.pt/coeus/")
("cog" . "http://purl.org/ontology/cco/core#")
("cogs" . "http://vocab.deri.ie/cogs#")
("coin" . "http://purl.org/court/def/2009/coin#")
("cold" . "http://purl.org/configurationontology#")
("coll" . "http://purl.org/co/")
("com" . "http://purl.org/commerce#")
("comm" . "http://vocab.resc.info/communication#")
("commerce" . "http://search.yahoo.com/searchmonkey/commerce/")
("common" . "http://www.w3.org/2007/uwa/context/common.owl#")
("commons" . "http://commons.psi.enakting.org/def/")
("comp" . "http://semweb.mmlab.be/ns/rml-compression#")
("company" . "http://intellimind.io/ns/company#")
("compass" . "http://purl.org/net/compass#")
("composer" . "http://dbpedia.org/ontology/composer/")
("compub" . "https://sireneld.io/vocab/compub#")
("con" . "http://www.w3.org/2000/10/swap/pim/contact#")
("condition" . "http://www.kinjal.com/condition:")
("conf" . "http://richard.cyganiak.de/2007/pubby/config.rdf#")
("conference" . "https://w3id.org/scholarlydata/ontology/conference-ontology.owl#")
("conll" . "http://ufal.mff.cuni.cz/conll2009-st/task-description.html#")
("conllu" . "https://universaldependencies.org/format.html#")
("connard" . "https://mail.google.com/mail/u/1/#")
("conserv" . "http://conserv.deri.ie/ontology#")
("consolid" . "https://w3id.org/consolid#")
("constant" . "http://qudt.org/vocab/constant/")
("contact" . "http://www.w3.org/2000/10/swap/pim/contact#")
("contax" . "https://w3id.org/con-tax#")
("content" . "http://purl.org/rss/1.0/modules/content/")
("contry" . "http://dbpedia.org/resource/Lyon#")
("contsem" . "http://contsem.unizar.es/def/sector-publico/contratacion#")
("conv" . "http://purl.org/twc/vocab/conversion/")
("conversion" . "http://purl.org/twc/vocab/conversion/")
("coo" . "http://purl.org/coo/ns#")
("coos" . "http://id.unece.org/def/coos#")
("copyright" . "http://rhizomik.net/ontologies/copyrightonto.owl#")
("cordis" . "http://cordis.europa.eu/projects/")
("core" . "http://vivoweb.org/ontology/core#")
("coref" . "http://www.rkbexplorer.com/ontologies/coref#")
("coreo" . "http://purl.org/coreo#")
("cos" . "http://www.inria.fr/acacia/corese#")
("cosmo" . "http://purl.org/ontology/cosmo#")
("coswot" . "https://w3id.org/coswot/")
("coun" . "http://www.daml.org/2001/09/countries/iso-3166-ont#")
("countries" . "http://eulersharp.sourceforge.net/2003/03swap/countries#")
("country" . "http://eulersharp.sourceforge.net/2003/03swap/countries#")
("county" . "http://myexample.org/county#")
("courseware" . "http://courseware.rkbexplorer.com/ontologies/courseware#")
("covido" . "https://w3id.org/CovidO#")
("coy" . "https://schema.coypu.org/global#")
("cp" . "http://schemas.openxmlformats.org/package/2006/metadata/core-properties/")
("cpa" . "http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#")
("cpack" . "http://cliopatria.swi-prolog.org/schema/cpack#")
("cpant" . "http://purl.org/NET/cpan-uri/terms#")
("cpc" . "https://data.epo.org/linked-data/def/cpc/")
("cpg" . "http://modellingdh.github.io/ont/odp/pgc/")
("cpi" . "http://www.ebusiness-unibw.org/ontologies/cpi/ns#")
("cpm" . "http://catalogus-professorum.org/cpm/2/")
("cpov" . "http://data.europa.eu/m8g/")
("cpsv" . "http://purl.org/vocab/cpsv#")
("cpsvno" . "http://data.norge.no/vocabulary/cpsvno#")
("cpv" . "http://purl.org/weso/cpv/")
("crcr" . "https://credit.niso.org/contributor-roles/")
("crime" . "http://purl.org/vocab/reloc/")
("crm" . "http://www.cidoc-crm.org/cidoc-crm/")
("crmdig" . "http://www.ics.forth.gr/isl/CRMdig/")
("crmeh" . "http://purl.org/crmeh#")
("crminf" . "http://www.cidoc-crm.org/cidoc-crm/CRMinf/")
("crml" . "http://semweb.mmlab.be/ns/rml/condition#")
("crmsci" . "http://cidoc-crm.org/crmsci/")
("cro" . "http://rhizomik.net/ontologies/copyrightonto.owl#")
("crowd" . "http://purl.org/crowd/")
("crsw" . "http://courseware.rkbexplorer.com/ontologies/courseware#")
("crtv" . "http://open-services.net/ns/crtv#")
("crv" . "http://purl.org/twc/vocab/datacarver#")
("crypto" . "http://www.w3.org/2000/10/swap/crypto#")
("cs" . "http://purl.org/vocab/changeset/schema#")
("csdbp" . "http://cs.dbpedia.org/")
("cska" . "http://pfclitex.com/")
("csm" . "http://purl.org/csm/1.0#")
("cso" . "http://cso.kmi.open.ac.uk/schema/cso/")
("csp" . "http://vocab.deri.ie/csp#")
("csv" . "http://vocab.sindice.net/csv/")
("csvw" . "http://www.w3.org/ns/csvw#")
("ct" . "http://data.linkedct.org/resource/linkedct/")
("ctag" . "http://commontag.org/ns#")
("cto" . "https://w3id.org/cto#")
("ctorg" . "http://purl.org/ctic/infraestructuras/organizacion#")
("ctrl" . "https://w3id.org/ibp/CTRLont#")
("cts" . "http://rdf.cdisc.org/ct/schema#")
("cts2" . "http://schema.omg.org/spec/CTS2/1.0/")
("ctxdesc" . "http://www.demcare.eu/ontologies/contextdescriptor.owl#")
("cube" . "https://cube.link/")
("cubeont" . "http://ontology.cube.global/")
("cue" . "http://www.clarin.eu/cmdi/cues/display/1.0#")
("cur" . "http://qudt.org/2.1/vocab/currency/")
("curr" . "https://w3id.org/cc#")
("custom" . "http://www.openrdf.org/config/sail/custom#")
("customer" . "http://www.valuelabs.com/")
("cv" . "http://rdfs.org/resume-rdf/")
("cvb" . "http://rdfs.org/resume-rdf/base.rdfs#")
("cvbase" . "http://purl.org/captsolo/resume-rdf/0.2/base#")
("cwl" . "https://w3id.org/cwl/cwl#")
("cwlgit" . "https://w3id.org/cwl/view/git/")
("cwlprov" . "https://w3id.org/cwl/prov#")
("cwmo" . "http://purl.org/cwmo/#")
("cwo" . "http://kcoyle.net/cwo/")
("cwork" . "http://www.bbc.co.uk/ontologies/creativework/")
("cwrc" . "http://sparql.cwrc.ca/ontology/cwrc#")
("cyc" . "http://sw.opencyc.org/concept/")
("cycann" . "http://sw.cyc.com/CycAnnotations_v1#")
("d0" . "http://ontologydesignpatterns.org/ont/wikipedia/d0.owl#")
("d2d" . "http://rdfns.org/d2d/")
("d2r" . "http://sites.wiwiss.fu-berlin.de/suhl/bizer/d2r-server/config.rdf#")
("d2rq" . "http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#")
("d2s" . "https://w3id.org/d2s/")
("d3s" . "http://vocbench.solidaridad.cloud/taxonomies#")
("da" . "https://www.wowman.org/index.php?id=1&type=get#")
("daap" . "http://daap.dsi.universite-paris-saclay.fr/wiki/")
("dady" . "http://purl.org/NET/dady#")
("daia" . "http://purl.org/ontology/daia/")
("daiaserv" . "http://purl.org/ontology/daia/Service/")
("dailymed" . "http://www4.wiwiss.fu-berlin.de/dailymed/resource/dailymed/")
("daisy" . "http://www.daisy.org/z3998/2012/vocab/")
("daml" . "http://www.daml.org/2001/03/daml+oil#")
("dannet" . "http://www.wordnet.dk/owl/instance/2009/03/instances/")
("dao" . "http://purl.org/dao#")
("daq" . "http://purl.org/eis/vocab/daq#")
("dash" . "http://datashapes.org/dash#")
("data" . "http://data.odw.tw/")
("databus" . "https://dataid.dbpedia.org/databus#")
("datacite" . "http://purl.org/spar/datacite/")
("datacron" . "http://www.datacron-project.eu/datAcron#")
("datafaqs" . "http://purl.org/twc/vocab/datafaqs#")
("datagc" . "https://data.grottocenter.org/ldp/")
("dataid" . "http://dataid.dbpedia.org/ns/core#")
("date" . "http://contextus.net/ontology/ontomedia/misc/date#")
("datex" . "http://vocab.datex.org/terms#")
("dave" . "http://theme-e.adaptcentre.ie/dave#")
("dawgt" . "http://www.w3.org/2001/sw/DataAccess/tests/test-dawg#")
("days" . "http://ontologi.es/days#")
("dayta" . "http://dayta.me/resource#")
("db" . "http://dbpedia.org/")
("dbc" . "http://dbpedia.org/resource/Category:")
("dbcat" . "http://dbpedia.org/resource/Category:")
("dbd" . "http://dbpedia.org/datatype/")
("dbfo" . "http://dbpedia.org/facts/ontology#")
("dbkwik" . "http://dbkwik.webdatacommons.org/")
("dblp" . "http://dblp.uni-trier.de/rdf/schema-2015-01-26#")
("dbm" . "http://purl.org/net/dbm/ontology#")
("dbms" . "http://www.openlinksw.com/ontology/dbms-app-ontology#")
("dbnary" . "http://kaiko.getalp.org/dbnary#")
("dbo" . "http://dbpedia.org/ontology/")
("dbonto" . "http://dbepedia.org/ontology/")
("dbowl" . "http://ontology.cybershare.utep.edu/dbowl/relational-to-ontology-mapping-primitive.owl#")
("dbp" . "http://dbpedia.org/property/")
("dbpedia" . "http://dbpedia.org/resource/")
("dbpedia2" . "http://dbpedia.org/property/")
("dbpediaowl" . "http://dbpedia.org/owl/")
("dbpg" . "http://dbpedia.org/page/")
("dbpo" . "http://dbpedia.org/ontology/")
("dbpp" . "http://dbpedia.org/property/")
("dbpprop" . "http://dbpedia.org/property/")
("dbpr" . "http://dbpedia.org/resource/")
("dbprop" . "http://dbpedia.org/property/")
("dbptmpl" . "http://dbpedia.org/resource/Template:")
("dbr" . "http://dbpedia.org/resource/")
("dbrc" . "http://dbpedia.org/resource/Category:")
("dbt" . "http://dbpedia.org/resource/Template:")
("dbtont" . "http://dbtropes.org/ont/")
("dbug" . "http://ontologi.es/doap-bugs#")
("dby" . "http://dbpedia.org/class/yago/")
("dbyago" . "http://dbpedia.org/class/yago/")
("dc" . "http://purl.org/dc/elements/1.1/")
("dc11" . "http://purl.org/dc/elements/1.1/")
("dcam" . "http://purl.org/dc/dcam/")
("dcap" . "http://purl.org/ws-mmi-dc/terms/")
("dcat" . "http://www.w3.org/ns/dcat#")
("dcatap" . "http://data.europa.eu/r5r/")
("dcatapit" . "http://dati.gov.it/onto/dcatapit#")
("dcatnl" . "http://standaarden.overheid.nl/dcatnl/terms/")
("dcatno" . "https://data.norge.no/vocabulary/dcatno#")
("dcb" . "http://dbpedia.org/resource/Category:")
("dce" . "http://purl.org/dc/elements/1.1/")
("dcid" . "https://datacommons.org/browser/")
("dcite" . "http://purl.org/spar/datacite/")
("dcm" . "http://purl.org/dc/dcmitype/")
("dcmit" . "http://purl.org/dc/dcmitype/")
("dcmitype" . "http://purl.org/dc/dcmitype/")
("dcn" . "http://www.w3.org/2007/uwa/context/deliverycontext.owl#")
("dcndl" . "http://ndl.go.jp/dcndl/terms/")
("dco" . "http://info.deepcarbon.net/schema#")
("dcodata" . "http://info.deepcarbon.net/data/schema#")
("dcodt" . "http://info.deepcarbon.net/datatype/schema#")
("dcoid" . "http://dx.deepcarbon.net/")
("dcosample" . "http://info.deepcarbon.net/sample/schema#")
("dcq" . "http://purl.org/dc/qualifiers/1.0/")
("dcr" . "http://www.isocat.org/ns/dcr.rdf#")
("dcs" . "http://ontologi.es/doap-changeset#")
("dct" . "http://purl.org/dc/terms/")
("dcterm" . "http://purl.org/dc/terms/")
("dcterms" . "http://purl.org/dc/terms/")
("dctype" . "http://purl.org/dc/dcmitype/")
("dctypes" . "http://purl.org/dc/dcmitype/")
("dcx" . "http://dublincore.org/dcx/")
("dd" . "http://example.org/dummydata/")
("ddb" . "http://www.deutsche-digitale-bibliothek.de/edm/")
("ddc" . "http://purl.org/NET/decimalised#")
("dde" . "https://www.ddeworld.org/")
("ddl" . "http://purl.org/vocab/riro/ddl#")
("dead" . "http://utpl.edu.ec/sbc/data/")
("decision" . "https://decision-ontology.googlecode.com/svn/trunk/decision.owl#")
("decl" . "http://www.linkedmodel.org/1.0/schema/decl#")
("decprov" . "http://promsns.org/def/decprov#")
("defns" . "http://www.openarchives.org/OAI/2.0/")
("delta" . "http://www.w3.org/2004/delta#")
("demlab" . "http://www.demcare.eu/ontologies/demlab.owl#")
("dentsci" . "https://w3id.org/skgo/dentsci#")
("deo" . "http://purl.org/spar/deo/")
("deonta" . "https://deonta.linkedmodel.org/deonta/")
("deps" . "http://ontologi.es/doap-deps#")
("derecho" . "http://purl.org/derecho#")
("devuan" . "https://devuan.net.br/")
("dfc" . "http://datafoodconsortium.org/ontologies/DFC_FullModel.owl#")
("dfcb" . "http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#")
("dgfoaf" . "http://west.uni-koblenz.de/ontologies/2010/07/dgfoaf.owl#")
("dgfr" . "http://colin.maudry.com/ontologies/dgfr#")
("dgtwc" . "http://data-gov.tw.rpi.edu/2009/data-gov-twc.rdf#")
("diag" . "http://www.loc.gov/zing/srw/diagnostic/")
("dicera" . "http://semweb.mmlab.be/ns/dicera#")
("dick" . "http://pornhub.com/")
("dicom" . "http://purl.org/healthcarevocab/v1#")
("dinto" . "http://purl.obolibrary.org/obo/ZP_")
("dio" . "https://w3id.org/dio#")
("dir" . "http://schemas.talis.com/2005/dir/schema#")
("dis" . "http://stanbol.apache.org/ontology/disambiguation/disambiguation#")
("disco" . "http://rdf-vocabulary.ddialliance.org/discovery#")
("disease" . "http://www.agfa.com/w3c/2009/humanDisorder#")
("diseasome" . "http://www4.wiwiss.fu-berlin.de/diseasome/resource/diseasome/")
("diso" . "https://purls.helmholtz-metadaten.de/diso#")
("dita" . "http://purl.org/dita/ns#")
("dive" . "http://scubadive.networld.to/dive.rdf#")
("djo" . "http://purl.org/datajourneys/")
("dk" . "http://www.data-knowledge.org/dk/schema/rdf/latest/")
("dl" . "http://ontology.ip.rm.cnr.it/ontologies/DOLCE-Lite#")
("dm" . "http://datamusee.givingsense.eu/onto/")
("dm2e" . "http://onto.dm2e.eu/schemas/dm2e/")
("dmo" . "https://w3id.org/dmo#")
("dmp" . "http://www.sysresearch.org/rda-common-dmp#")
("dn" . "http://purl.org/datanode/ns/")
("dnb" . "http://d-nb.info/gnd/")
("dnbt" . "http://d-nb.info/standards/elementset/dnb#")
("dnr" . "http://www.dotnetrdf.org/configuration#")
("doac" . "http://ramonantonio.net/doac/0.1/#")
("doacc" . "http://purl.org/net/bel-epa/doacc#")
("doam" . "http://emmo.info/doam#")
("doap" . "http://usefulinc.com/ns/doap#")
("doas" . "http://deductions.github.io/doas.owl.ttl#")
("doc" . "http://www.w3.org/2000/10/swap/pim/doc#")
("docam" . "https://www.docam.ca/glossaurus/")
("docbook" . "http://docbook.org/ns/docbook/")
("doce" . "http://purl.org/nemo/doce#")
("docker" . "http://www.w3.org/ns/bde/docker/")
("doclist" . "http://www.junkwork.net/xml/DocumentList#")
("doco" . "http://purl.org/spar/doco/")
("dogont" . "http://elite.polito.it/ontologies/dogont.owl#")
("doi" . "https://doi.org/")
("dom" . "https://html.spec.whatwg.org/#")
("donto" . "http://reference.data.gov.au/def/ont/dataset#")
("door" . "http://kannel.open.ac.uk/ontology#")
("dossier" . "https://data.omgeving.vlaanderen.be/ns/dossier#")
("dot" . "https://w3id.org/dot#")
("dpc" . "http://hospee.org/ontologies/dpc/")
("dpd" . "http://www.kanzaki.com/ns/dpd#")
("dpl" . "http://dbpedialite.org/things/")
("dpla" . "http://dp.la/info/developers/map/")
("dpn" . "http://purl.org/dpn#")
("dprov" . "http://promsns.org/def/do#")
("dpv" . "http://www.w3.org/ns/dpv#")
("dq" . "http://def.seegrid.csiro.au/isotc211/iso19115/2003/dataquality#")
("dqc" . "http://semwebquality.org/ontologies/dq-constraints#")
("dqm" . "http://purl.org/dqm-vocabulary/v1/dqm#")
("dqv" . "http://www.w3.org/ns/dqv#")
("dqvno" . "https://data.norge.no/vocabulary/dqvno#")
("dr" . "http://purl.org/swan/2.0/discourse-relationships/")
("driver" . "http://deductions.github.io/drivers.owl.ttl#")
("drk" . "http://drakon.su/")
("drm" . "http://vocab.data.gov/def/drm#")
("drug" . "http://www.agfa.com/w3c/2009/drugTherapy#")
("drugbank" . "http://www4.wiwiss.fu-berlin.de/drugbank/resource/drugbank/")
("ds" . "http://purl.org/ctic/dcat#")
("dsd" . "https://w3id.org/dsd#")
("dsfv" . "http://sws.ifi.uio.no/vocab/dsf/henriwi/dsf#")
("dsi" . "https://data.dsi.omgeving.vlaanderen.be/ns/dsi#")
("dsn" . "http://purl.org/dsnotify/vocab/eventset/")
("dso" . "http://purl.org/ontology/dso#")
("dsp" . "http://purl.org/metainfo/terms/dsp#")
("dssn" . "http://purl.org/net/dssn/")
("dsv" . "https://w3id.org/dsv#")
("dsw" . "http://purl.org/dsw/")
("dt" . "http://dbpedia.org/datatype/")
("dto" . "http://www.datatourisme.fr/ontology/core/1.0#")
("dtype" . "http://www.linkedmodel.org/schema/dtype#")
("dul" . "http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#")
("dummy" . "http://hello.com/")
("duv" . "http://www.w3.org/ns/duv#")
("dv" . "http://rdf.data-vocabulary.org/#")
("dvia" . "http://data.eurecom.fr/ontology/dvia#")
("dwc" . "http://rs.tdwg.org/dwc/terms/")
("dwciri" . "http://rs.tdwg.org/dwc/iri/")
("ea" . "http://eaontology.protect.linkeddata.es/def/")
("eame" . "http://www.semanticweb.org/ontologia_EA#")
("ean" . "http://openean.kaufkauf.net/id/")
("earl" . "http://www.w3.org/ns/earl#")
("earth" . "http://linked.earth/ontology#")
("eat" . "http://www.eat.rl.ac.uk/#")
("eb" . "https://w3id.org/eb#")
("ebg" . "http://data.businessgraph.io/ontology#")
("ebu" . "http://semantic.eurobau.com/eurobau-utility.owl#")
("ebucore" . "http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#")
("ec" . "http://eulergui.sourceforge.net/contacts.owl.n3#")
("ecb" . "http://ecb.270a.info/class/1.0/")
("ecc" . "https://ns.eccenca.com/")
("eccauth" . "https://vocab.eccenca.com/auth/")
("eccdi" . "https://vocab.eccenca.com/di/")
("eccf" . "http://data.europa.eu/54i/")
("eccpubsub" . "https://vocab.eccenca.com/pubsub/")
("eccrev" . "https://vocab.eccenca.com/revision/")
("ecfo" . "https://w3id.org/ecfo#")
("ecgl" . "http://schema.geolink.org/")
("ecglview" . "http://schema.geolink.org/view/")
("eclap" . "http://www.eclap.eu/schema/eclap/")
("eco" . "http://www.ebusiness-unibw.org/ontologies/eclass/5.1.4/#")
("ecoll" . "http://purl.org/ceu/eco/1.0#")
("ecore" . "http://www.eclipse.org/emf/2002/Ecore#")
("ecos" . "http://purl.org/ecos#")
("ecowlim" . "http://ecowlim.tfri.gov.tw/lode/resource/")
("ecpo" . "http://purl.org/ontology/ecpo#")
("ecrm" . "http://erlangen-crm.org/current/")
("ecs" . "http://rdf.ecs.soton.ac.uk/ontology/ecs#")
("edac" . "http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#")
("edam" . "http://edamontology.org/")
("edg" . "http://edg.topbraid.solutions/model/")
("edgar" . "http://edgarwrap.ontologycentral.com/vocab/edgar#")
("edgarcik" . "http://edgarwrap.ontologycentral.com/cik/")
("edm" . "http://www.europeana.eu/schemas/edm/")
("edr" . "https://w3id.org/laas-iot/edr#")
("edu" . "https://schema.edu.ee/")
("edupro" . "http://ns.inria.fr/semed/eduprogression#")
("eem" . "http://purl.org/eem#")
("eep" . "https://w3id.org/eep#")
("eepsa" . "https://w3id.org/eepsa#")
("efd" . "http://data.foodanddrinkeurope.eu/ontology#")
("efo" . "http://www.ebi.ac.uk/efo/")
("efrbroo" . "http://erlangen-crm.org/efrbroo/")
("eg" . "http://www.example.org/")
("egdo" . "http://example.org/")
("ei2a" . "http://opendata.aragon.es/def/ei2a#")
("ekaw" . "http://data.semanticweb.org/conference/ekaw/2012/complete/")
("elec" . "http://purl.org/ctic/sector-publico/elecciones#")
("eli" . "http://data.europa.eu/eli/ontology#")
("elod" . "http://linkedeconomy.org/ontology#")
("elog" . "http://eulersharp.sourceforge.net/2003/03swap/log-rules#")
("emergel" . "http://purl.org/emergel/core#")
("emergelm" . "http://purl.org/emergel/modules#")
("emmo" . "https://w3id.org/emmo#")
("emoca" . "http://ns.inria.fr/emoca#")
("emotion" . "http://ns.inria.fr/emoca#")
("emp" . "http://purl.org/ctic/empleo/oferta#")
("employee" . "http://www.employee.com/data#")
("emtr" . "http://purl.org/NET/ssnext/electricmeters#")
("enc" . "http://www.w3.org/2001/04/xmlenc#")
("encargado" . "http://semRAT.edu/")
("ends" . "http://labs.mondeca.com/vocab/endpointStatus#")
("enhancer" . "http://stanbol.apache.org/ontology/enhancer/enhancer#")
("ens" . "http://models.okkam.org/ENS-core-vocabulary.owl#")
("ensembl" . "http://rdf.ebi.ac.uk/resource/ensembl/")
("environ" . "http://eulersharp.sourceforge.net/2003/03swap/environment#")
("envo" . "http://purl.obolibrary.org/obo/ZP_")
("eol" . "http://purl.org/biodiversity/eol/")
("ep" . "http://eprints.org/ontology/")
("epcis" . "https://ns.gs1.org/epcis/")
("epo" . "http://data.europa.eu/a4g/ontology#")
("eppl" . "https://w3id.org/ep-plan#")
("epplan" . "https://w3id.org/ep-plan#")
("eppo" . "https://gd.eppo.int/taxon/")
("eprints" . "http://eprints.org/ontology/")
("eproc" . "http://10.0.3.120/download/eproc_FORN_v02.owl#")
("eproc2" . "http://10.0.3.120/download/eproc_FORN_v04.owl#")
("eqp" . "https://data.nasa.gov/ontologies/atmonto/equipment#")
("era" . "http://data.europa.eu/949/")
("erce" . "http://xxefe.de/")
("ermrk" . "http://www.essepuntato.it/2008/12/earmark#")
("ero" . "http://purl.obolibrary.org/obo/")
("es" . "http://eulersharp.sourceforge.net/2003/03swap/log-rules#")
("esadm" . "http://vocab.linkeddata.es/datosabiertos/def/sector-publico/territorio#")
("esagen" . "http://vocab.ciudadesabiertas.es/def/sector-publico/agenda-municipal#")
("esagm" . "http://vocab.ciudadesabiertas.es/def/sector-publico/agenda-municipal#")
("esair" . "http://vocab.linkeddata.es/datosabiertos/def/medio-ambiente/calidad-aire#")
("esaloj" . "http://vocab.linkeddata.es/datosabiertos/def/turismo/alojamiento#")
("esapar" . "http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/aparcamiento#")
("esautob" . "http://vocab.ciudadesabiertas.es/def/transporte/autobus#")
("esbici" . "http://vocab.ciudadesabiertas.es/def/transporte/bicicleta-publica#")
("esc" . "https://solid.ti.rw.fau.de/public/ns/event-sourcing-containers#")
("escjr" . "http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/callejero#")
("esco" . "http://data.europa.eu/esco/model#")
("escom" . "http://vocab.linkeddata.es/datosabiertos/def/comercio/tejidoComercial#")
("esconv" . "http://vocab.ciudadesabiertas.es/def/sector-publico/convenio#")
("esd" . "http://def.esd.org.uk/")
("esdbpr" . "http://es.dbpedia.org/resource/")
("esdir" . "http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/direccion-postal#")
("eseduc" . "http://www.purl.org/ontologia/eseduc#")
("esempleo" . "http://vocab.ciudadesabiertas.es/def/sector-publico/empleo#")
("esequip" . "http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/equipamiento#")
("esgs" . "https://w3id.org/edwin/ontology/")
("espresup" . "http://vocab.linkeddata.es/datosabiertos/def/hacienda/presupuestos#")
("esproc" . "http://vocab.linkeddata.es/datosabiertos/def/sector-publico/procedimientos#")
("esservicio" . "http://vocab.linkeddata.es/datosabiertos/def/sector-publico/servicio#")
("essglobal" . "http://purl.org/essglobal/vocab/v1.0/")
("estatgph" . "http://estatwrap.ontologycentral.com/id/nama_aux_gph#")
("estatwrap" . "http://ontologycentral.com/2009/01/eurostat/ns#")
("estraf" . "http://vocab.ciudadesabiertas.es/def/transporte/trafico#")
("estrf" . "http://vocab.linkeddata.es/datosabiertos/def/transporte/trafico#")
("estrn" . "http://vocab.linkeddata.es/datosabiertos/def/urbanismo-infraestructuras/transporte#")
("ethc" . "http://ethoinformatics.org/ethocore/")
("eu" . "http://eulersharp.sourceforge.net/2003/03swap/log-rules#")
("eui" . "http://institutions.publicdata.eu/#")
("eumida" . "http://data.kasabi.com/dataset/eumida/terms/")
("eunis" . "http://eunis.eea.europa.eu/rdf/species-schema.rdf#")
("eupont" . "http://elite.polito.it/ontologies/eupont.owl#")
("eurio" . "http://data.europa.eu/s66#")
("eurlex" . "http://eur-lex.publicdata.eu/ontology/")
("eurostat" . "http://wifo5-04.informatik.uni-mannheim.de/eurostat/resource/eurostat/")
("eurovoc" . "http://eurovoc.europa.eu/")
("eustd" . "http://eurostat.linked-statistics.org/data#")
("euvoc" . "http://publications.europa.eu/ontology/euvoc#")
("ev" . "http://www.w3.org/2001/xml-events/")
("event" . "http://purl.org/NET/c4dm/event.owl#")
("events" . "http://eulersharp.sourceforge.net/2003/03swap/event#")
("evident" . "http://purl.org/net/evident#")
("evopat" . "http://ns.aksw.org/Evolution/")
("evset" . "http://dsnotify.org/vocab/eventset/0.1/")
("ewg" . "http://ethoinformatics.org/")
("ex" . "http://example.org/")
("example" . "http://www.example.org/rdf#")
("exekg" . "https://raw.githubusercontent.com/nsai-uio/ExeKGOntology/main/ds_exeKGOntology.ttl#")
("exif" . "http://www.w3.org/2003/12/exif/ns#")
("exo" . "https://w3id.org/example#")
("experts" . "http://emmo.info/emmo/application/maeo/experts#")
("express" . "https://w3id.org/express#")
("ext" . "http://mu.semte.ch/vocabularies/ext/")
("extech" . "https://w3id.org/executionTechnique/ontology/")
("exterms" . "http://www.example.org/terms/")
("eye" . "http://jena.hpl.hp.com/Eyeball#")
("ezcontext" . "http://ontologies.ezweb.morfeo-project.org/ezcontext/ns#")
("eztag" . "http://ontologies.ezweb.morfeo-project.org/eztag/ns#")
("faas" . "http://semantic-faas.com/ontology#")
("fab" . "http://purl.org/fab/ns#")
("fabio" . "http://purl.org/spar/fabio/")
("factbook" . "http://wifo5-04.informatik.uni-mannheim.de/factbook/ns#")
("faldo" . "http://biohackathon.org/resource/faldo#")
("fam" . "http://vocab.fusepool.info/fam#")
("fao" . "http://fao.270a.info/dataset/")
("faostat" . "http://reference.eionet.europa.eu/faostat/schema/")
("faq" . "http://www.openlinksw.com/ontology/faq#")
("fb" . "http://rdf.freebase.com/ns/")
("fbgeo" . "http://rdf.freebase.com/ns/location/geocode/")
("fc" . "http://www.freeclass.eu/freeclass_v1#")
("fcm" . "http://eulersharp.sourceforge.net/2006/02swap/fcm#")
("fcp" . "http://www.newmedialab.at/fcp/")
("fcs" . "http://clarin.eu/fcs/resource#")
("fct" . "http://openlinksw.com/services/facets/1.0/")
("fd" . "http://foodable.co/ns/")
("fdbp" . "http://fr.dbpedia.org/property/")
("fdof" . "https://w3id.org/fdof/ontology#")
("fdp" . "https://w3id.org/fdp/fdp-o#")
("fe" . "http://www.ontologydesignpatterns.org/ont/framenet/abox/fe/")
("fea" . "http://vocab.data.gov/def/fea#")
("fec" . "http://www.rdfabout.com/rdf/schema/usfec/")
("fed" . "http://www.openrdf.org/config/sail/federation#")
("feed" . "https://www.feedipedia.org/")
("fel" . "http://w3id.org/vcb/fel#")
("fernanda" . "http://fernanda.nl/")
("fhir" . "http://hl7.org/fhir/")
("fibo" . "https://spec.edmcouncil.org/fibo/ontology/master/latest/")
("figigii" . "http://www.omg.org/spec/FIGI/GlobalInstrumentIdentifiers/")
("film" . "http://semantics.id/ns/example/film/")
("fincaselaw" . "http://purl.org/finlex/schema/oikeus/")
("fingal" . "http://vocab.deri.ie/fingal#")
("finlaw" . "http://purl.org/finlex/schema/laki/")
("fire" . "http://tldp.org/HOWTO/XML-RPC-HOWTO/xmlrpc-howto-java.html#")
("firebim" . "http://w3id.org/firebim#")
("fisa" . "https://ifitkau.github.io/fisa/")
("fise" . "http://fise.iks-project.eu/ontology/")
("fl" . "http://eulersharp.sourceforge.net/2003/03swap/fl-rules#")
("flow" . "http://www.w3.org/2005/01/wf/flow#")
("fls" . "http://lukasblaho.sk/football_league_schema#")
("fluidops" . "http://www.fluidops.com/")
("fma" . "http://sig.uw.edu/fma#")
("fn" . "http://www.w3.org/2005/xpath-functions#")
("fnabox" . "http://www.ontologydesignpatterns.org/ont/framenet/abox/")
("fnml" . "http://semweb.mmlab.be/ns/fnml#")
("fno" . "https://w3id.org/function/ontology#")
("fnom" . "https://w3id.org/function/vocabulary/mapping#")
("fntbox" . "http://www.ontologydesignpatterns.org/ont/framenet/tbox/")
("fo" . "http://www.w3.org/1999/XSL/Format#")
("foaf" . "http://xmlns.com/foaf/0.1/")
("foaffff" . "http://gogl.com/")
("foam" . "https://www.koerperfettwaage-test.de/")
("fog" . "https://w3id.org/fog#")
("foio" . "https://w3id.org/seas/FeatureOfInterestOntology/")
("folio" . "http://IBCNServices.github.io/Folio-Ontology/Folio.owl#")
("foo" . "http://filmontology.org/ontology/1.0/")
("food" . "http://purl.org/foodontology#")
("form" . "http://deductions-software.com/ontologies/forms.owl.ttl#")
("formats" . "http://www.w3.org/ns/formats/")
("fos" . "http://futurios.org/fos/spec/")
("fowl" . "http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#")
("fp3" . "http://vocab.fusepool.info/fp3#")
("fpr" . "http://www.filmstandards.org/schemas/filmportal_relations#")
("fr" . "https://w3id.org/fr/def/core#")
("frad" . "http://iflastandards.info/ns/fr/frad/")
("frame" . "http://www.ontologydesignpatterns.org/ont/framenet/abox/frame/")
("frapo" . "http://purl.org/cerif/frapo/")
("frappe" . "http://streamreasoning.org/ontologies/frappe#")
("frb" . "http://frb.270a.info/dataset/")
("frbr" . "http://purl.org/vocab/frbr/core#")
("frbrcore" . "http://purl.org/vocab/frbr/core#")
("frbre" . "http://purl.org/vocab/frbr/extended#")
("frbrer" . "http://iflastandards.info/ns/fr/frbr/frbrer/")
("frbroo" . "http://iflastandards.info/ns/fr/frbr/frbroo/")
("fred" . "http://www.ontologydesignpatterns.org/ont/fred/domain.owl#")
("freebase" . "http://rdf.freebase.com/ns/")
("freq" . "http://purl.org/cld/freq/")
("fresnel" . "http://www.w3.org/2004/09/fresnel#")
("frgeo" . "http://rdf.insee.fr/geo/")
("friends" . "http://www.openarchives.org/OAI/2.0/friends/")
("frir" . "http://purl.org/twc/ontology/frir.owl#")
("frsad" . "http://iflastandards.info/ns/fr/frsad/")
("fs" . "https://www.compliancequest.com/training-management-software-system-solutions/")
("fso" . "https://w3id.org/fso#")
("fssp" . "http://linkeddata.fssprus.ru/resource/")
("ftcontent" . "http://www.ft.com/ontology/content/")
("fun" . "http://w3id.org/sparql-generate/fn/")
("func" . "http://www.w3.org/2007/rif-builtin-function#")
("fuseki" . "http://jena.apache.org/fuseki#")
("fx" . "http://sparql.xyz/facade-x/ns/")
("gadm" . "http://gadm.geovocab.org/ontology#")
("gaf" . "http://groundedannotationframework.org/")
("galaksiya" . "http://ontoloji.galaksiya.com/vocab/")
("game" . "http://data.totl.net/game/")
("gas" . "http://www.bigdata.com/rdf/gas#")
("gastro" . "http://www.ebsemantics.net/gastro#")
("gawd" . "http://gawd.atlantides.org/terms/")
("gax" . "http://w3id.org/gaia-x/core#")
("gazetteer" . "http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/")
("gbol" . "http://gbol.life/0.1#")
("gbv" . "http://purl.org/ontology/gbv/")
("gc" . "http://www.oegov.org/core/owl/gc#")
("gci" . "http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl#")
("gcis" . "http://data.globalchange.gov/gcis.owl#")
("gco" . "http://purl.jp/bio/12/glyco/conjugate#")
("gcon" . "https://w3id.org/GConsent#")
("gd" . "http://rdf.data-vocabulary.org/#")
("gdc" . "https://portal.gdc.cancer.gov/cases/")
("gdpr" . "https://vocab.eccenca.com/gdpr/")
("gdprov" . "https://w3id.org/GDPRov#")
("gdprtext" . "https://w3id.org/GDPRtEXT#")
("gecko" . "http://purl.obolibrary.org/obo/ZP_")
("gelo" . "http://krauthammerlab.med.yale.edu/ontologies/gelo#")
("gen" . "http://purl.org/gen/0.1#")
("genab" . "http://eulersharp.sourceforge.net/2003/03swap/genomeAbnormality#")
("genea" . "http://www.owl-ontologies.com/generations.owl#")
("generiek" . "https://data.vlaanderen.be/ns/generiek#")
("genre" . "http://sparql.cwrc.ca/ontologies/genre#")
("geo" . "http://www.opengis.net/ont/geosparql#")
("geo7" . "https://www.geo7.ch/")
("geocontext" . "http://www.geocontext.org/publ/2013/vocab#")
("geod" . "http://vocab.lenka.no/geo-deling#")
("geodata" . "http://sws.geonames.org/")
("geodcat" . "http://data.europa.eu/930/")
("geoes" . "http://geo.linkeddata.es/ontology/")
("geof" . "http://www.opengis.net/def/function/geosparql/")
("geofabric" . "http://linked.data.gov.au/def/geofabric#")
("geofla" . "http://data.ign.fr/ontologies/geofla#")
("geographis" . "http://telegraphis.net/ontology/geography/geography#")
("geojson" . "https://purl.org/geojson/vocab#")
("geoloc" . "http://deductions.github.io/geoloc.owl.ttl#")
("geom" . "http://data.ign.fr/def/geometrie#")
("geonames" . "http://www.geonames.org/ontology#")
("geop" . "http://aims.fao.org/aos/geopolitical.owl#")
("geor" . "http://www.opengis.net/def/rule/geosparql/")
("georss" . "http://www.georss.org/georss/")
("geos" . "http://www.telegraphis.net/ontology/geography/geography#")
("geosp" . "http://rdf.geospecies.org/ont/geospecies#")
("geosparql" . "http://www.opengis.net/ont/geosparql#")
("geospecies" . "http://rdf.geospecies.org/ont/geospecies#")
("geovocab" . "http://geovocab.org/")
("geovoid" . "http://purl.org/geovocamp/ontology/geovoid/")
("germplasm" . "http://purl.org/germplasm/terms#")
("gesis" . "http://lod.gesis.org/lodpilot/ALLBUS/vocab.rdf#")
("gf" . "http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature#")
("gfo" . "http://www.onto-med.de/ontologies/gfo.owl#")
("gg" . "http://www.gemeentegeschiedenis.nl/gg-schema#")