-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathlinked_vocab.yaml
4190 lines (4190 loc) · 158 KB
/
linked_vocab.yaml
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
- namespace: http://www.irit.fr/recherches/MELODI/ontologies/SAN#
prefix: SAN
title: SAN (Semantic Actuator Network)
uri: http://www.irit.fr/recherches/MELODI/ontologies/SAN
- namespace: https://w3id.org/arco/ontology/location/
prefix: a-loc
title: Location Ontology (ArCo network)
uri: https://w3id.org/arco/ontology/location
- namespace: http://purl.org/acco/ns#
prefix: acco
title: Accomodation Ontology
uri: http://purl.org/acco/ns
- namespace: http://www.w3.org/ns/auth/acl#
prefix: acl
title: Basic Access Control ontology
uri: http://www.w3.org/ns/auth/acl
- namespace: http://acm.rkbexplorer.com/ontologies/acm#
prefix: acm
title: ACM Classification Ontology
uri: http://www.rkbexplorer.com/ontologies/acm
- namespace: http://privatealpha.com/ontology/certification/1#
prefix: acrt
title: Agent Certification Ontology
uri: http://privatealpha.com/ontology/certification/1#
- namespace: http://www.w3.org/ns/adms#
prefix: adms
title: Asset Description Metadata Schema
uri: http://www.w3.org/ns/adms
- namespace: http://purl.org/ontology/af/
prefix: af
title: Audio Features Ontology
uri: http://purl.org/ontology/af/
- namespace: http://www.agls.gov.au/agls/terms/
prefix: agls
title: AGLS Metadata Terms
uri: http://www.agls.gov.au/agls/terms
- namespace: http://promsns.org/def/agr#
prefix: agr
title: Agreements ontology
uri: http://promsns.org/def/agr
- namespace: http://d-nb.info/standards/elementset/agrelon#
prefix: agrelon
title: Agent Relationship Ontology
uri: http://d-nb.info/standards/elementset/agrelon
- namespace: http://purl.org/vocab/aiiso/schema#
prefix: aiiso
title: Academic Institution Internal Structure Ontology
uri: http://purl.org/vocab/aiiso/schema
- namespace: https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#
prefix: airs
title: Alliance of Information and Referral Services (AIRS) Vocabulary
uri: https://raw.githubusercontent.com/airs-linked-data/lov/latest/src/airs_vocabulary.ttl#
- namespace: http://securitytoolbox.appspot.com/securityAlgorithms#
prefix: algo
title: Algorithms Ontology
uri: http://securitytoolbox.appspot.com/securityAlgorithms#
- namespace: http://open-services.net/ns/asset#
prefix: am
title: OSLC Asset Management Vocabulary
uri: http://open-services.net/ns/asset#
- namespace: https://w3id.org/i40/aml#
prefix: aml
title: AutomationML Ontology
uri: https://w3id.org/i40/aml
- namespace: http://w3id.org/amlo/core#
prefix: amlo-core
title: AMLO-core vocabulary
uri: http://w3id.org/amlo/core
- namespace: http://purl.org/ontology/ao/core#
prefix: ao
title: Association Ontology
uri: http://purl.org/ontology/ao/core#
- namespace: http://purl.org/linked-data/api/vocab#
prefix: api
title: Linked Data API Vocabulary
uri: http://purl.org/linked-data/api/vocab#
- namespace: http://semweb.mmlab.be/ns/apps4X#
prefix: apps4X
title: The vocabulary for Co-creation Events based on Open Data
uri: http://semweb.mmlab.be/ns/apps4X
- namespace: http://purl.org/archival/vocab/arch#
prefix: arch
title: Archival collections ontology
uri: http://purl.org/archival/vocab/arch
- namespace: https://w3id.org/arco/ontology/core/
prefix: arco
title: Core Ontology (ArCo network)
uri: https://w3id.org/arco/ontology/core
- namespace: http://www.arpenteur.org/ontology/Arpenteur.owl#
prefix: arp
title: Arpenteur Ontology
uri: http://www.arpenteur.org/ontology/Arpenteur.owl
- namespace: http://bblfish.net/work/atom-owl/2006-06-06/#
prefix: awol
title: Atom Syndication Ontology
uri: http://bblfish.net/work/atom-owl/2006-06-06/
- namespace: http://purl.oclc.org/NET/ssnx/meteo/aws#
prefix: aws
title: Ontology for Meteorological sensors
uri: http://purl.oclc.org/NET/ssnx/meteo/aws
- namespace: http://bag.basisregistraties.overheid.nl/def/bag#
prefix: bag
title: Vocabulary for the Dutch base registration of buildings and addresses (BAG)
uri: http://bag.basisregistraties.overheid.nl/def/bag
- namespace: http://www.bbc.co.uk/ontologies/bbc/
prefix: bbc
title: BBC Ontology
uri: http://www.bbc.co.uk/ontologies/bbc
- namespace: http://www.bbc.co.uk/ontologies/cms/
prefix: bbccms
title: BBC CMS Ontology
uri: http://www.bbc.co.uk/ontologies/cms
- namespace: http://www.bbc.co.uk/ontologies/coreconcepts/
prefix: bbccore
title: BBC Core Concepts
uri: http://www.bbc.co.uk/ontologies/coreconcepts
- namespace: http://www.bbc.co.uk/ontologies/provenance/
prefix: bbcprov
title: BBC Provenance Ontology
uri: http://www.bbc.co.uk/ontologies/provenance
- namespace: https://w3id.org/BCI-ontology#
prefix: bci
title: Brain Computing Interface (BCI) Ontology
uri: https://w3id.org/BCI-ontology
- namespace: http://rdfs.co/bevon/
prefix: bevon
title: 'BEVON: Beverage Ontology'
uri: http://rdfs.co/bevon/
- namespace: http://id.loc.gov/ontologies/bibframe/
prefix: bf
title: BIBFRAME Vocabulary
uri: http://id.loc.gov/ontologies/bibframe/
- namespace: http://purl.org/ontology/bibo/
prefix: bibo
title: The Bibliographic Ontology
uri: http://purl.org/ontology/bibo/
- namespace: http://purl.org/net/nknouf/ns/bibtex#
prefix: bibtex
title: BibTeX ontology
uri: http://purl.org/net/nknouf/ns/bibtex
- namespace: http://bimerr.iot.linkeddata.es/def/occupancy-profile#
prefix: bimerr-op
title: Occupancy Profile ontology
uri: http://bimerr.iot.linkeddata.es/def/occupancy-profile#
- namespace: http://purl.org/vocab/bio/0.1/
prefix: bio
title: 'BIO: A vocabulary for biographical information'
uri: http://purl.org/vocab/bio/0.1/
- namespace: http://purl.org/NET/biol/ns#
prefix: biol
title: Biological Taxonomy Vocabulary 0.2 (Core)
uri: http://purl.org/NET/biol/ns#
- namespace: http://www.biopax.org/release/biopax-level3.owl#
prefix: biopax
title: BioPAX Level 3 ontology
uri: http://www.biopax.org/release/biopax-level3.owl
- namespace: http://purl.org/biotop/biotop.owl#
prefix: biotop
title: BioTop
uri: http://purl.org/biotop/biotop.owl
- namespace: http://purl.org/spar/biro/
prefix: biro
title: The Bibliographic Reference Ontology
uri: http://purl.org/spar/biro
- namespace: http://www.bl.uk/schemas/bibliographic/blterms#
prefix: blt
title: British Library Terms RDF schema
uri: http://www.bl.uk/schemas/bibliographic/blterms
- namespace: http://swa.cefriel.it/ontologies/botdcat-ap#
prefix: bot
title: BotDCAT-AP - Data Catalogue vocabulary Application Profile for chatbots
uri: http://swa.cefriel.it/ontologies/botdcat-ap
- namespace: http://purl.org/NET/biol/botany#
prefix: botany
title: Biological Taxonomy Vocabulary 0.2 (Botany)
uri: http://purl.org/NET/biol/botany#
- namespace: http://data.vlaanderen.be/ns/persoon#
prefix: bperson
title: Person
uri: http://data.vlaanderen.be/ns/persoon
- namespace: http://vocab.deri.ie/br#
prefix: br
title: Brainstorm Ontology
uri: http://vocab.deri.ie/br
- namespace: http://brk.basisregistraties.overheid.nl/def/brk#
prefix: brk
title: Key Register Cadastre (BRK) vocabulary
uri: http://brk.basisregistraties.overheid.nl/def/brk
- namespace: http://brt.basisregistraties.overheid.nl/def/top10nl#
prefix: brt
title: Key Register Topography (BRT) vocabulary
uri: http://brt.basisregistraties.overheid.nl/def/top10nl
- namespace: https://w3id.org/bot#
prefix: bto
title: 'BOT: Building Topology Ontology'
uri: https://w3id.org/bot
- namespace: http://vocab.deri.ie/c4n#
prefix: c4n
title: Call for Anything vocabulary
uri: http://vocab.deri.ie/c4n
- namespace: http://purl.org/spar/c4o/
prefix: c4o
title: C4O, the Citation Counting and Context Characterization Ontology
uri: http://purl.org/spar/c4o
- namespace: http://www.w3.org/2002/12/cal/ical#
prefix: cal
title: Internet Calendaring and Scheduling Core Object Specification
uri: http://www.w3.org/2002/12/cal/ical
- namespace: http://caressesrobot.org/ontology#
prefix: caresses
title: CARESSES Ontology
uri: http://caressesrobot.org/ontology
- namespace: http://purl.org/net/cartCoord#
prefix: cart
title: cartCoordOnt
uri: http://purl.org/net/cartCoord#
- namespace: http://comicmeta.org/cbo/
prefix: cbo
title: Comic Book Ontology
uri: http://comicmeta.org/cbo/
- namespace: http://creativecommons.org/ns#
prefix: cc
title: Creative Commons Rights Expression Language
uri: http://creativecommons.org/ns
- namespace: http://cookingbigdata.com/linkeddata/ccinstances#
prefix: cci
title: Ontology for Cloud Computing instances
uri: http://cookingbigdata.com/linkeddata/ccinstances
- namespace: http://purl.org/ontology/cco/core#
prefix: cco
title: Cognitive Characteristics Ontology
uri: http://purl.org/ontology/cco/core#
- namespace: http://cookingbigdata.com/linkeddata/ccpricing#
prefix: ccp
title: Vocabulary for prices options in Cloud Computing Services
uri: http://cookingbigdata.com/linkeddata/ccpricing
- namespace: http://cookingbigdata.com/linkeddata/ccregions#
prefix: ccr
title: Vocabulary for Regions and Zones on Cloud Computing
uri: http://cookingbigdata.com/linkeddata/ccregions
- namespace: http://cookingbigdata.com/linkeddata/ccsla#
prefix: ccsla
title: Service Level Agreement for Cloud Computing
uri: http://cookingbigdata.com/linkeddata/ccsla
- namespace: https://w3id.org/arco/ontology/context-description/
prefix: cdesc
title: Context Description Ontology (ArCo network)
uri: https://w3id.org/arco/ontology/context-description
- namespace: http://purl.org/twc/ontology/cdm.owl#
prefix: cdm
title: Conceptual Depth and Momentum
uri: http://purl.org/twc/ontology/cdm.owl#
- namespace: http://purl.org/cld/cdtype/
prefix: cdtype
title: The Collection Description Type Namespace
uri: http://purl.org/cld/cdtype/
- namespace: http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1#
prefix: ceo
title: Consumer Electronics Ontology
uri: http://www.ebusiness-unibw.org/ontologies/consumerelectronics/v1
- namespace: http://www.eurocris.org/ontologies/cerif/1.3#
prefix: cerif
title: CERIF Ontology 1.3
uri: http://www.eurocris.org/ontologies/cerif/1.3
- namespace: http://www.w3.org/ns/auth/cert#
prefix: cert
title: The Cert Ontology
uri: http://www.w3.org/ns/auth/cert#
- namespace: https://w3id.org/arco/ontology/cultural-event/
prefix: cevent
title: Cultural Event Ontology (ArCo network)
uri: https://w3id.org/arco/ontology/cultural-event
- namespace: http://purl.oclc.org/NET/ssnx/cf/cf-feature#
prefix: cff
title: Climate and Forecast (CF) features
uri: http://purl.oclc.org/NET/ssnx/cf/cf-feature
- namespace: http://purl.oclc.org/NET/ssnx/cf/cf-property#
prefix: cfp
title: Climate and Forecast (CF) standard names parameter vocabulary
uri: http://purl.oclc.org/NET/ssnx/cf/cf-property
- namespace: http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#
prefix: cfrl
title: Corporate Financial Reports and Loans Ontology
uri: http://linkeddata.finki.ukim.mk/lod/ontology/cfrl#
- namespace: http://reference.data.gov.uk/def/central-government/
prefix: cgov
title: Central Government Ontology
uri: http://reference.data.gov.uk/def/central-government
- namespace: http://purl.org/ontology/chord/
prefix: chord
title: The OMRAS2 Chord Ontology
uri: http://purl.org/ontology/chord/
- namespace: https://privatealpha.com/ontology/content-inventory/1#
prefix: ci
title: A Content Inventory Vocabulary
uri: https://privatealpha.com/ontology/content-inventory/1#
- namespace: http://dati.beniculturali.it/cis/
prefix: cis
title: 'Cultural-ON (Cultural ONtology): Cultural Institute/Site and Cultural Event Ontology'
uri: http://dati.beniculturali.it/cultural-ON/cultural-ON.owl
- namespace: http://purl.org/spar/cito/
prefix: cito
title: CiTO, the Citation Typing Ontology
uri: http://purl.org/spar/cito
- namespace: http://www.essepuntato.it/2013/03/cito-functions/
prefix: citof
title: Functions of Citations
uri: http://www.essepuntato.it/2013/03/cito-functions
- namespace: http://advene.org/ns/cinelab/ld#
prefix: cl
title: Cinelab ontology
uri: http://advene.org/ns/cinelab/ld
- namespace: http://purl.org/cld/terms/
prefix: cld
title: The Collection Description Terms
uri: http://purl.org/cld/terms/
- namespace: http://purl.org/twc/ontologies/cmo.owl#
prefix: cmo
title: Conceptual Model Ontology
uri: http://purl.org/twc/ontologies/cmo.owl
- namespace: http://www.w3.org/2011/content#
prefix: cnt
title: Representing Content in RDF
uri: http://www.w3.org/2011/content
- namespace: http://purl.org/ontology/co/core#
prefix: co
title: Counter Ontology
uri: http://purl.org/ontology/co/core#
- namespace: http://data.cochrane.org/ontologies/core/
prefix: cochrane
title: Cochrane Core Vocabulary Ontology
uri: http://data.cochrane.org/ontologies/core/
- namespace: https://w3id.org/cocoon/v1.0#
prefix: cocoon
title: Cloud Computing Services Ontology
uri: https://w3id.org/cocoon/v1.0
- namespace: http://vocab.deri.ie/cogs#
prefix: cogs
title: COGS Vocabulary
uri: http://vocab.deri.ie/cogs
- namespace: http://purl.org/configurationontology#
prefix: cold
title: "'Configuration as Linked Data' ontology"
uri: http://purl.org/configurationontology
- namespace: http://purl.org/co/
prefix: coll
title: Collections Ontology
uri: http://purl.org/co
- namespace: http://vocab.resc.info/communication#
prefix: comm
title: Vocabulary related to incident communication
uri: http://vocab.resc.info/communication
- namespace: http://www.w3.org/2007/uwa/context/common.owl#
prefix: common
title: The Delivery Context Ontology
uri: http://www.w3.org/2007/uwa/context/deliverycontext.owl
- namespace: http://www.w3.org/2000/10/swap/pim/contact#
prefix: con
title: Contact
uri: http://www.w3.org/2000/10/swap/pim/contact
- namespace: http://purl.org/twc/vocab/conversion/
prefix: conversion
title: Conversion Ontology
uri: http://purl.org/twc/vocab/conversion/
- namespace: http://purl.org/coo/ns#
prefix: coo
title: Car Options Ontology
uri: http://purl.org/coo/ns#
- namespace: http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#
prefix: cpa
title: Content Pattern Annotations
uri: http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl
- namespace: http://www.cidoc-crm.org/cidoc-crm/
prefix: crm
title: CIDOC Conceptual Reference Model
uri: http://www.cidoc-crm.org/cidoc-crm/
- namespace: http://rhizomik.net/ontologies/copyrightonto.owl#
prefix: cro
title: Copyright Ontology
uri: http://rhizomik.net/ontologies/copyrightonto.owl
- namespace: http://purl.org/vocab/changeset/schema#
prefix: cs
title: Changeset
uri: http://purl.org/vocab/changeset/schema
- namespace: http://vocab.deri.ie/csp#
prefix: csp
title: Constraint Satisfaction Problems Vocabulary
uri: http://vocab.deri.ie/csp
- namespace: http://www.w3.org/ns/csvw#
prefix: csvw
title: CSV on the Web Vocabulary
uri: http://www.w3.org/ns/csvw#
- namespace: http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl#
prefix: ct
title: Connectivity types
uri: http://www.tele.pw.edu.pl/~sims-onto/ConnectivityType.owl
- namespace: https://w3id.org/arco/ontology/catalogue/
prefix: ctlog
title: Catalogue Ontology (ArCo network)
uri: https://w3id.org/arco/ontology/catalogue
- namespace: http://purl.org/ctic/infraestructuras/organizacion#
prefix: ctorg
title: Vocabulary for the structure of the public organizations
uri: http://purl.org/ctic/infraestructuras/organizacion
- namespace: https://w3id.org/ibp/CTRLont#
prefix: ctrl
title: CTRLont - An ontology to formally specify the control domain
uri: https://w3id.org/ibp/CTRLont
- namespace: http://www.demcare.eu/ontologies/contextdescriptor.owl#
prefix: ctxdesc
title: Context Descriptor Pattern
uri: http://www.demcare.eu/ontologies/contextdescriptor.owl
- namespace: http://purl.org/cwmo/#
prefix: cwmo
title: Creative Workshop Management Ontology (CWMO)
uri: http://purl.org/cwmo/#
- namespace: http://www.bbc.co.uk/ontologies/creativework/
prefix: cwork
title: Creative Work Ontology
uri: http://www.bbc.co.uk/ontologies/creativework
- namespace: http://sparql.cwrc.ca/ontologies/cwrc#
prefix: cwrc
title: The CWRC Ontology
uri: http://sparql.cwrc.ca/ontologies/cwrc
- namespace: http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1#
prefix: d2rq
title: D2RQ - Language Specification
uri: http://www.wiwiss.fu-berlin.de/suhl/bizer/D2RQ/0.1
- namespace: http://purl.org/NET/dady#
prefix: dady
title: Dataset Dynamics (dady) vocabulary
uri: http://vocab.deri.ie/dady
- namespace: http://purl.org/eis/vocab/daq#
prefix: daq
title: Dataset Quality Vocabulary
uri: http://purl.org/eis/vocab/daq#
- namespace: http://dataid.dbpedia.org/ns/core#
prefix: dataid
title: DataID
uri: http://dataid.dbpedia.org/ns/core#
- namespace: http://vocab.datex.org/terms#
prefix: datex
title: Linked Datex II
uri: http://vocab.datex.org/terms#
- namespace: http://theme-e.adaptcentre.ie/dave#
prefix: dave
title: Data Value Vocabulary (DaVe)
uri: http://theme-e.adaptcentre.ie/dave/dave.ttl
- namespace: http://purl.org/net/dbm/ontology#
prefix: dbm
title: DBM Ontology
uri: http://purl.org/net/dbm/ontology#
- namespace: http://ontology.cybershare.utep.edu/dbowl/relational-to-ontology-mapping-primitive.owl#
prefix: dbowl
title: Relational to Ontology Mapping Primitive
uri: http://ontology.cybershare.utep.edu/dbowl
- namespace: http://dbpedia.org/ontology/
prefix: dbpedia-owl
title: The DBpedia Ontology
uri: http://dbpedia.org/ontology/
- namespace: http://ontologi.es/doap-bugs#
prefix: dbug
title: DOAP Bugs
uri: http://ontologi.es/doap-bugs#
- namespace: http://purl.org/dc/dcam/
prefix: dcam
title: DCMI Abstract Model
uri: http://purl.org/dc/dcam/
- namespace: http://www.w3.org/ns/dcat#
prefix: dcat
title: Data Catalog Vocabulary
uri: http://www.w3.org/ns/dcat
- namespace: http://purl.org/dc/elements/1.1/
prefix: dce
title: Dublin Core Metadata Element Set
uri: http://purl.org/dc/elements/1.1/
- namespace: http://purl.org/spar/datacite/
prefix: dcite
title: The DataCite Ontology
uri: http://purl.org/spar/datacite
- namespace: http://ndl.go.jp/dcndl/terms/
prefix: dcndl
title: NDL Metadata Terms
uri: http://ndl.go.jp/dcndl/terms/
- namespace: http://purl.org/dc/terms/
prefix: dcterms
title: DCMI Metadata Terms
uri: http://purl.org/dc/terms/
- namespace: http://purl.org/dc/dcmitype/
prefix: dctype
title: DCMI Type Vocabulary
uri: http://purl.org/dc/dcmitype/
- namespace: https://w3id.org/arco/ontology/denotative-description/
prefix: ddesc
title: Denotative Description Ontology (ArCo network)
uri: https://w3id.org/arco/ontology/denotative-description
- namespace: http://www.demcare.eu/ontologies/demlab.owl#
prefix: demlab
title: Dem@Care Lab Ontology for Dementia Assessment
uri: http://www.demcare.eu/ontologies/demlab.owl
- namespace: http://purl.org/spar/deo/
prefix: deo
title: The Discourse Elements Ontology
uri: http://purl.org/spar/deo
- namespace: http://ontologi.es/doap-deps#
prefix: deps
title: DOAP Dependencies
uri: http://ontologi.es/doap-deps#
- namespace: http://datafoodconsortium.org/ontologies/DFC_FullModel.owl#
prefix: dfc
title: Data Food Consortium Ontology
uri: http://datafoodconsortium.org/ontologies/DFC_FullModel.owl
- namespace: http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl#
prefix: dfcb
title: DFC Business Ontology
uri: http://datafoodconsortium.org/ontologies/DFC_BusinessOntology.owl
- namespace: https://w3id.org/dingo#
prefix: dg
title: DINGO Ontology
uri: https://w3id.org/dingo/
- namespace: http://purl.org/healthcarevocab/v1#
prefix: dicom
title: Healthcare metadata - DICOM ontology
uri: http://purl.org/healthcarevocab/v1
- namespace: https://w3id.org/dio#
prefix: dio
title: The Design Intent Ontology
uri: https://w3id.org/dio
- namespace: http://purl.org/dita/ns#
prefix: dita
title: DITA RDF ontology
uri: http://purl.org/dita/ns#
- namespace: http://www.data-knowledge.org/dk/
prefix: dk
title: The Data Knowledge Vocabulary
uri: http://www.data-knowledge.org/dk/
- namespace: http://d-nb.info/standards/elementset/dnb#
prefix: dnbt
title: DNB Metadata Terms
uri: http://d-nb.info/standards/elementset/dnb
- namespace: http://usefulinc.com/ns/doap#
prefix: doap
title: Description of a Project vocabulary
uri: http://usefulinc.com/ns/doap#
- namespace: http://www.w3.org/2000/10/swap/pim/doc#
prefix: doc
title: Works, licences, derivatives and dependencies
uri: http://www.w3.org/2000/10/swap/pim/doc
- namespace: http://purl.org/spar/doco/
prefix: doco
title: DoCO, the Document Components Ontology
uri: http://purl.org/spar/doco
- namespace: http://purl.org/ontology/dso#
prefix: docso
title: Document Service Ontology
uri: http://purl.org/ontology/dso
- namespace: http://elite.polito.it/ontologies/dogont
prefix: dogont
title: Ontology Modeling for Intelligent Domotic Environments
uri: http://elite.polito.it/ontologies/dogont.owl
- namespace: http://reference.data.gov.au/def/ont/dataset#
prefix: donto
title: Dataset Ontology
uri: http://reference.data.gov.au/def/ont/dataset
- namespace: http://purl.org/dpn#
prefix: dpn
title: Data Provider Node ontology
uri: http://purl.org/dpn
- namespace: http://promsns.org/def/do#
prefix: dprov
title: Decision Provenance ontology (DecPROV)
uri: http://promsns.org/def/decprov
- namespace: http://semwebquality.org/ontologies/dq-constraints#
prefix: dqc
title: The Data Quality Constraints Library
uri: http://semwebquality.org/ontologies/dq-constraints
- namespace: http://purl.org/dqm-vocabulary/v1/dqm#
prefix: dqm
title: The Data Quality Management Vocabulary
uri: http://purl.org/dqm-vocabulary/v1/dqm
- namespace: http://www.w3.org/ns/dqv#
prefix: dqv
title: Data Quality Vocabulary
uri: http://www.w3.org/ns/dqv
- namespace: http://purl.org/swan/2.0/discourse-relationships/
prefix: dr
title: Discourse relationships vocabulary
uri: http://purl.org/swan/2.0/discourse-relationships/
- namespace: http://www.purl.org/drammar#
prefix: drama
title: 'Drammar: a comprehensive ontology of drama'
uri: http://www.purl.org/drammar
- namespace: http://vocab.data.gov/def/drm#
prefix: drm
title: Data Reference Model
uri: http://vocab.data.gov/def/drm
- namespace: http://purl.org/ctic/dcat#
prefix: ds
title: Dataset Catalog Vocabulary
uri: http://purl.org/ctic/dcat#
- namespace: http://purl.org/dsnotify/vocab/eventset/
prefix: dsn
title: 'DSNotify Eventsets: A vocabulary for change events in linked data sources'
uri: http://purl.org/dsnotify/vocab/eventset/
- namespace: http://www.linkedmodel.org/schema/dtype#
prefix: dtype
title: Datatype Ontology
uri: http://www.linkedmodel.org/schema/dtype
- namespace: http://www.ontologydesignpatterns.org/ont/dul/DUL.owl#
prefix: dul
title: DOLCE+DnS Ultralite
uri: http://www.ontologydesignpatterns.org/ont/dul/DUL.owl
- namespace: http://www.w3.org/ns/duv#
prefix: duv
title: Dataset Usage Vocabulary
uri: http://www.w3.org/ns/duv
- namespace: http://purl.org/ontology/dvia#
prefix: dvia
title: The visualization vocabulary for LOD applications
uri: http://purl.org/ontology/dvia
- namespace: http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/
prefix: eac-cpf
title: 'EAC-CPF Descriptions Ontology for Linked Archival Data:'
uri: http://archivi.ibc.regione.emilia-romagna.it/ontology/eac-cpf/
- namespace: http://www.w3.org/ns/earl#
prefix: earl
title: Evaluation and Report Language
uri: http://www.w3.org/ns/earl
- namespace: http://linked.earth/ontology#
prefix: earth
title: The Linked Earth Ontology
uri: http://linked.earth/ontology#
- namespace: http://www.ebu.ch/metadata/ontologies/ebucore/ebucore#
prefix: ebucore
title: EBU Ontology
uri: http://www.ebu.ch/metadata/ontologies/ebucore/ebucore
- namespace: https://vocab.eccenca.com/revision/
prefix: eccrev
title: RDF changes and revisions vocabulary
uri: https://vocab.eccenca.com/revision/
- namespace: http://purl.org/ontology/ecpo#
prefix: ecpo
title: Enumeration and Chronology of Periodicals Ontology
uri: http://purl.org/ontology/ecpo
- namespace: http://erlangen-crm.org/current/
prefix: ecrm
title: Erlangen CRM / OWL
uri: http://erlangen-crm.org/current/
- namespace: http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl#
prefix: edac
title: ELSEWeb EDAC Ontology
uri: http://ontology.cybershare.utep.edu/ELSEWeb/elseweb-edac.owl
- namespace: http://www.europeana.eu/schemas/edm/
prefix: edm
title: Europeana Data Model vocabulary
uri: http://www.europeana.eu/schemas/edm/
- namespace: https://schema.edu.ee/
prefix: edu
title: Education Ontology
uri: https://schema.edu.ee/
- namespace: http://ns.inria.fr/semed/eduprogression#
prefix: edupro
title: EduProgression Ontology
uri: http://ns.inria.fr/semed/eduprogression/
- namespace: http://purl.org/eem#
prefix: eem
title: The EPCIS Event Model
uri: http://purl.org/eem
- namespace: https://w3id.org/eepsa#
prefix: eepsa
title: EEPSA (Energy Efficiency Prediction Semantic Assistant) Ontology
uri: https://w3id.org/eepsa
- namespace: http://opendata.aragon.es/def/ei2a#
prefix: ei2a
title: |-
Aragon Interoperable Information Structure Ontology
EI2A
uri: https://opendata.aragon.es/def/ei2a/ei2a.owl
- namespace: http://purl.org/ctic/sector-publico/elecciones#
prefix: elec
title: Vocabulary for Vote Results
uri: http://purl.org/ctic/sector-publico/elecciones
- namespace: http://data.europa.eu/eli/ontology#
prefix: eli
title: The European Legislation Identifier
uri: http://data.europa.eu/eli/ontology
- namespace: http://ns.inria.fr/emoca#
prefix: emotion
title: Emotion Ontology for Context Awareness
uri: http://ns.inria.fr/emoca
- namespace: http://purl.org/ctic/empleo/oferta#
prefix: emp
title: A vocabulary for jobs
uri: http://purl.org/ctic/empleo/oferta
- namespace: http://labs.mondeca.com/vocab/endpointStatus#
prefix: ends
title: Vocabulary of endpoint status (availability, responseTime)
uri: http://labs.mondeca.com/vocab/endpointStatus
- namespace: http://eprints.org/ontology/
prefix: ep
title: EPrints Ontology
uri: http://eprints.org/ontology/
- namespace: https://w3id.org/ep-plan#
prefix: eppl
title: The EP-Plan ontology
uri: https://w3id.org/ep-plan
- namespace: http://data.europa.eu/esco/model#
prefix: esco
title: The ESCO ontology
uri: http://data.europa.eu/esco/model
- namespace: http://purl.org/essglobal/vocab/
prefix: essglobal
title: ESSGlobal Vocabulary
uri: http://purl.org/essglobal/vocab/
- namespace: http://elite.polito.it/ontologies/eupont.owl#
prefix: eupont
title: 'EUPont: an ontology for End User Programming of the IoT'
uri: http://elite.polito.it/ontologies/eupont.owl
- namespace: http://purl.org/NET/c4dm/event.owl#
prefix: event
title: The Event Ontology
uri: http://purl.org/NET/c4dm/event.owl
- namespace: http://purl.org/net/ns/ex#
prefix: ex
title: Example vocabulary
uri: http://purl.org/net/ns/ex
- namespace: http://www.w3.org/2003/12/exif/ns#
prefix: exif
title: Exif data description vocabulary
uri: http://www.w3.org/2003/12/exif/ns
- namespace: http://purl.org/spar/fabio/
prefix: fabio
title: FRBR-aligned Bibliographic Ontology
uri: http://purl.org/spar/fabio
- namespace: http://biohackathon.org/resource/faldo#
prefix: faldo
title: Feature Annotation Location Description Ontology
uri: http://biohackathon.org/resource/faldo
- namespace: http://vocab.data.gov/def/fea#
prefix: fea
title: Federal Enterprise Architecture Vocabulary
uri: http://vocab.data.gov/def/fea
- namespace: http://w3id.org/vcb/fel#
prefix: fel
title: A Fine-grained Entity Linking vocabulary
uri: http://w3id.org/vcb/fel#
- namespace: http://purl.org/iot/ontology/fiesta-iot#
prefix: fiesta-iot
title: FIESTA-IoT Ontology
uri: http://purl.org/iot/ontology/fiesta-iot
- namespace: http://purl.org/iot/ontology/fiesta-iot#
prefix: fiesta-priv
title: FIESTA-Priv Ontology
uri: http://purl.org/iot/ontology/fiesta-priv#
- namespace: http://xmlns.com/foaf/0.1/
prefix: foaf
title: Friend of a Friend vocabulary
uri: http://xmlns.com/foaf/0.1/
- namespace: https://w3id.org/fog#
prefix: fog
title: 'FOG: File Ontology for Geometry formats'
uri: https://w3id.org/fog
- namespace: https://w3id.org/seas/FeatureOfInterestOntology/
prefix: foio
title: The SEAS Feature of Interest ontology.
uri: https://w3id.org/seas/FeatureOfInterestOntology
- namespace: http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#
prefix: fowl
title: Food Ontology in OWL
uri: http://www.w3.org/TR/2003/PR-owl-guide-20031215/food
- namespace: http://purl.org/cerif/frapo/
prefix: frapo
title: Funding, Research Administration and Projects Ontology
uri: http://purl.org/cerif/frapo/
- namespace: http://streamreasoning.org/ontologies/frappe#
prefix: frappe
title: 'FraPPE: Frame, Pixel, Place, Event vocabulary'
uri: http://streamreasoning.org/ontologies/frappe#
- namespace: http://purl.org/vocab/frbr/core#
prefix: frbr
title: Expression of Core FRBR Concepts in RDF
uri: http://purl.org/vocab/frbr/core
- namespace: http://purl.org/vocab/frbr/extended#
prefix: frbre
title: Extended FRBR
uri: http://purl.org/vocab/frbr/extended
- namespace: http://www.w3.org/2004/09/fresnel#
prefix: fresnel
title: Fresnel Lens and Format Core Vocabulary
uri: http://www.w3.org/2004/09/fresnel
- namespace: http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/
prefix: g50k
title: 50K Gazetteer Vocabulary
uri: http://data.ordnancesurvey.co.uk/ontology/50kGazetteer/
- namespace: http://data.totl.net/game/
prefix: game
title: TotL Game Ontology
uri: http://data.totl.net/game/
- namespace: http://www.oegov.org/core/owl/gc#
prefix: gc
title: oeGOV Government Core Ontology
uri: http://www.oegov.org/core/owl/gc
- namespace: http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl#
prefix: gci
title: Global City Indicator Foundation Ontology
uri: http://ontology.eil.utoronto.ca/GCI/Foundation/GCI-Foundation.owl
- namespace: https://w3id.org/GConsent#
prefix: gcon
title: GConsent - a consent ontology based on the GDPR
uri: https://w3id.org/GConsent
- namespace: http://reference.data.gov/def/govdata/
prefix: gd
title: Government Data Vocabulary
uri: http://vocab.data.gov/gd
- namespace: https://w3id.org/GDPRov#
prefix: gdprov
title: The GDPR Provenance ontology
uri: https://w3id.org/GDPRov
- namespace: https://w3id.org/GDPRtEXT#
prefix: gdprt
title: GDPR text EXTensions
uri: https://w3id.org/GDPRtEXT
- namespace: http://purl.org/gen/0.1#
prefix: gen
title: Vocabulary for Linked Genealogical Data
uri: http://purl.org/gen/0.1#
- namespace: http://www.w3.org/2003/01/geo/wgs84_pos#
prefix: geo
title: WGS84 Geo Positioning
uri: http://www.w3.org/2003/01/geo/wgs84_pos
- namespace: http://vocab.lenka.no/geo-deling#
prefix: geod
title: Administrative vocabulary for Norway
uri: http://vocab.lenka.no/geo-deling
- namespace: http://data.ign.fr/def/geofla#
prefix: geofla
title: Ontology of administrative units at IGN-France
uri: http://data.ign.fr/def/geofla
- namespace: http://data.ign.fr/def/geometrie#
prefix: geom
title: Ontology for geometry
uri: http://data.ign.fr/def/geometrie
- namespace: https://www.gleif.org/ontology/L1/
prefix: gleif-L1
title: Global Legal Entity Identifier Foundation Level 1 Ontology - Who Is Who
uri: https://www.gleif.org/ontology/L1/
- namespace: https://www.gleif.org/ontology/L2/
prefix: gleif-L2
title: Global Legal Entity Identifier Foundation Level 2 Ontology - Who Owns Whom
uri: https://www.gleif.org/ontology/L2/
- namespace: https://www.gleif.org/ontology/Base/
prefix: gleif-base
title: Global Legal Entity Identifier Foundation Base Ontology
uri: https://www.gleif.org/ontology/Base/
- namespace: https://www.gleif.org/ontology/EntityLegalForm/
prefix: gleif-elf
title: Entity Legal Form Ontology
uri: https://www.gleif.org/ontology/EntityLegalForm/
- namespace: https://www.gleif.org/ontology/Geocoding/
prefix: gleif-geo
title: Global Legal Entity Identifier Foundation Geocoding Ontology
uri: https://www.gleif.org/ontology/Geocoding/
- namespace: https://www.gleif.org/ontology/RegistrationAuthority/
prefix: gleif-ra
title: Global Legal Entity Identifier Foundation Registration Authority Ontology
uri: https://www.gleif.org/ontology/RegistrationAuthority/
- namespace: https://www.gleif.org/ontology/ReportingException/
prefix: gleif-repex
title: Global Legal Entity Identifier Foundation Reporting Exception Ontology
uri: https://www.gleif.org/ontology/ReportingException/
- namespace: http://www.opengis.net/ont/gml#
prefix: gml
title: OGC Geometry
uri: http://www.opengis.net/ont/gml
- namespace: http://www.geonames.org/ontology#
prefix: gn
title: The Geonames ontology
uri: http://www.geonames.org/ontology
- namespace: http://d-nb.info/standards/elementset/gnd#
prefix: gndo
title: GND Ontology
uri: http://d-nb.info/standards/elementset/gnd#
- namespace: http://purl.org/linguistics/gold/
prefix: gold
title: General Ontology for Linguistic Description
uri: http://purl.org/linguistics/gold
- namespace: https://w3id.org/gom#
prefix: gom
title: 'GOM: Geometry Metadata Ontology'
uri: https://w3id.org/gom
- namespace: http://gov.genealogy.net/ontology.owl#
prefix: gov
title: Ontology for modelling historic administrative information.
uri: http://gov.genealogy.net/ontology.owl
- namespace: http://purl.org/goodrelations/v1#
prefix: gr
title: The GoodRelations Ontology for Semantic Web-based E-Commerce
uri: http://purl.org/goodrelations/v1
- namespace: http://www.w3.org/2003/g/data-view#
prefix: grddl
title: Gleaning Resource Descriptions from Dialects of Languages Vocabulary
uri: http://www.w3.org/2003/g/data-view
- namespace: http://www.w3.org/2006/gen/ont#
prefix: gso
title: Generic Specific Ontology
uri: http://www.w3.org/2006/gen/ont
- namespace: http://www.opengis.net/ont/geosparql#
prefix: gsp
title: OGC GeoSPARQL
uri: http://www.opengis.net/ont/geosparql
- namespace: http://vocab.gtfs.org/terms#
prefix: gtfs
title: General Transit Feed Specification
uri: http://vocab.gtfs.org/terms#
- namespace: http://resource.geosciml.org/ontology/timescale/gts#
prefix: gts
title: Geologic Timescale model
uri: http://resource.geosciml.org/ontology/timescale/gts
- namespace: http://vocab.getty.edu/ontology#
prefix: gvp
title: Getty Vocabulary Program ontology
uri: http://vocab.getty.edu/ontology
- namespace: http://sensormeasurement.appspot.com/ont/home/homeActivity#
prefix: ha
title: Home Activity
uri: http://sensormeasurement.appspot.com/ont/home/homeActivity#
- namespace: https://www.w3.org/2019/wot/hypermedia#
prefix: hctl
title: Hypermedia Controls Ontology
uri: https://www.w3.org/2019/wot/hypermedia#
- namespace: http://purl.org/net/hifm/ontology#
prefix: hifm
title: HIFM Ontology
uri: http://purl.org/net/hifm/ontology#
- namespace: http://purl.org/ontology/holding#
prefix: holding
title: Holding Ontology
uri: http://purl.org/ontology/holding
- namespace: http://health.data.gov/def/hospital/
prefix: hosp
title: Hospital Vocabulary
uri: http://vocab.data.gov/hosp
- namespace: http://vcharpenay.github.io/hto/hto.xml#
prefix: hto
title: Haystack Tagging Ontology
uri: http://vcharpenay.github.io/hto/hto.xml
- namespace: http://www.w3.org/2011/http#
prefix: http
title: HTTP in RDF
uri: http://www.w3.org/2011/http
- namespace: https://privatealpha.com/ontology/ibis/1#
prefix: ibis
title: IBIS Vocabulary
uri: https://privatealpha.com/ontology/ibis/1#
- namespace: http://ontology.eil.utoronto.ca/icontact.owl#
prefix: ic
title: 'International Contact Ontology: Addresses, phone numbers and emails.'
uri: http://ontology.eil.utoronto.ca/icontact.owl
- namespace: http://rdf.insee.fr/def/demo#
prefix: idemo
title: Demographic ontology from the French Statistics Institute
uri: http://rdf.insee.fr/def/demo
- namespace: http://www.identity.org/ontologies/identity.owl#
prefix: identity
title: Ontology of digital identity.
uri: http://www.identity.org/ontologies/identity.owl
- namespace: https://w3id.org/ifc/IFC4_ADD1#
prefix: ifc
title: IFC4_ADD1
uri: https://w3id.org/ifc/IFC4_ADD1
- namespace: http://rdf.insee.fr/def/geo#
prefix: igeo
title: French Statistical ontology for geolocation
uri: http://rdf.insee.fr/def/geo
- namespace: http://data.ign.fr/def/ignf#
prefix: ignf
title: Ontology of coordinates reference systems
uri: http://data.ign.fr/def/ignf
- namespace: http://imgpedia.dcc.uchile.cl/ontology#
prefix: imo
title: The IMGpedia Ontology
uri: http://imgpedia.dcc.uchile.cl/ontology
- namespace: http://vocab.resc.info/incident#
prefix: incident
title: Vocabulary to describe incident response by emergency services
uri: http://vocab.resc.info/incident
- namespace: http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl#
prefix: infor
title: Information Realization
uri: http://www.ontologydesignpatterns.org/cp/owl/informationrealization.owl
- namespace: http://purl.org/innovation/ns#
prefix: inno
title: Ontology for Innovation
uri: http://purl.org/innovation/ns
- namespace: http://reference.data.gov.uk/def/intervals/
prefix: interval
title: Intervals Ontology
uri: http://reference.data.gov.uk/def/intervals
- namespace: http://www.ontologydesignpatterns.org/ont/dul/IOLite.owl#
prefix: iol