-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathontology.owl
3806 lines (2265 loc) · 191 KB
/
ontology.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="https://w3id.org/sedimark/ontology#"
xml:base="https://w3id.org/sedimark/ontology"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:dqv="http://www.w3.org/ns/dqv#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:dcam="http://purl.org/dc/dcam/"
xmlns:dcat="http://www.w3.org/ns/dcat#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:prov="http://www.w3.org/ns/prov#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:schema="http://schema.org/"
xmlns:ontology="https://w3id.org/sedimark/ontology#">
<owl:Ontology rdf:about="https://w3id.org/sedimark/ontology">
<dc:description rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">The Marketplace Information Model is an RDFS/OWL-ontology covering the fundamental concepts of SEDIMARK needed for the registration of participants and the discovery and exchange of offerings and assets. This model establishes a common framework to ensure interoperability within a SEDIMARK-based Marketplace.
This model is supported by existing proposals by similar initiatives and is built upon well-known ontologies such as Data Catalog vocabulary (DCAT), Open Digital Rights Language (ODRL), Friend Of A Friend (FOAF) or the Dublin Core Terms (DCT). In particular, the model has its foundations in the proposal shared by the International Data Spaces Protocol, to try to be compatible as much compatible as possible with such an initiative.</dc:description>
<dc:title rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">SEDIMARK Marketplace Information Model - Ontology</dc:title>
<terms:contributor>Maroua Bahri (INRIA)</terms:contributor>
<terms:creator>Jorge Lanza (Universidad de Cantabria)</terms:creator>
<terms:creator>Juan Ramon Santana (Universidad de Cantabria)</terms:creator>
<terms:creator>Luis Sanchez (Universidad de Cantabria)</terms:creator>
<terms:creator>Pablo Sotres (Universidad de Cantabria)</terms:creator>
<terms:creator>Tarek Elsaleh (University of Surrey)</terms:creator>
<terms:issued xml:lang="en">2023-12-31</terms:issued>
<terms:license rdf:resource="https://creativecommons.org/licenses/by/4.0"/>
<terms:publisher rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">SEDIMARK - SEcure Decentralised Intelligent Data MARKetplace</terms:publisher>
<vann:preferredNamespacePrefix rdf:datatype="http://www.w3.org/2000/01/rdf-schema#Literal">sedi-o</vann:preferredNamespacePrefix>
<schema:citation>SEDIMARK Marketplace Information Model - SEDIMARK EU Project</schema:citation>
<schema:codeRepository>https://github.com/Sedimark/ontology</schema:codeRepository>
<schema:funding xml:lang="en">https://cordis.europa.eu/project/id/101070074</schema:funding>
<schema:funding xml:lang="en">https://gtr.ukri.org/projects?ref=10043699</schema:funding>
<schema:logo rdf:resource="https://sedimark.eu/wp-content/uploads/2023/11/sedimark_logo_512x512.png"/>
<schema:url xml:lang="en">https://sedimark.eu/</schema:url>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/dcam/rangeIncludes -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/dcam/rangeIncludes"/>
<!-- http://purl.org/dc/elements/1.1/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
<!-- http://purl.org/dc/elements/1.1/coverage -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/coverage"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/format -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/format"/>
<!-- http://purl.org/dc/elements/1.1/identifier -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/identifier"/>
<!-- http://purl.org/dc/elements/1.1/language -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/language"/>
<!-- http://purl.org/dc/elements/1.1/publisher -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/publisher"/>
<!-- http://purl.org/dc/elements/1.1/relation -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/relation"/>
<!-- http://purl.org/dc/elements/1.1/rights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<!-- http://purl.org/dc/elements/1.1/subject -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/subject"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/dc/elements/1.1/type -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/type"/>
<!-- http://purl.org/dc/terms/abstract -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/abstract">
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/accessRights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/accessRights">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/RightsStatement"/>
<terms:description xml:lang="en">Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2003-02-15</terms:issued>
<rdfs:comment xml:lang="en">Information about who access the resource or an indication of its security status.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Access Rights</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/rights"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/rights"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/accrualPeriodicity -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/accrualPeriodicity">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/Frequency"/>
<terms:description xml:lang="en">Recommended practice is to use a value from the Collection Description Frequency Vocabulary [[DCMI-COLLFREQ](https://dublincore.org/groups/collections/frequency/)].</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2005-06-13</terms:issued>
<rdfs:comment xml:lang="en">The frequency with which items are added to a collection.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Accrual Periodicity</rdfs:label>
<rdfs:domain rdf:resource="http://purl.org/dc/dcmitype/Collection"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/available -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/available">
<terms:description xml:lang="en">Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:comment xml:lang="en">Date that the resource became or will become available.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Date Available</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/date"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/conformsTo -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/conformsTo">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/Standard"/>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2001-05-21</terms:issued>
<rdfs:comment xml:lang="en">An established standard to which the described resource conforms.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Conforms To</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/relation"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/contributor"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/coverage -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/coverage">
<terms:description xml:lang="en">Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names [[TGN](https://www.getty.edu/research/tools/vocabulary/tgn/index.html)]. Where appropriate, named places or time periods may be used in preference to numeric identifiers such as sets of coordinates or date ranges. Because coverage is so broadly defined, it is preferable to use the more specific subproperties Temporal Coverage and Spatial Coverage.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created">
<terms:description xml:lang="en">Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:comment xml:lang="en">Date of creation of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Date Created</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/date"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/creator"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/contributor"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/dateAccepted -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/dateAccepted">
<terms:description xml:lang="en">Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty. Examples of resources to which a date of acceptance may be relevant are a thesis (accepted by a university department) or an article (accepted by a journal).</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2002-07-13</terms:issued>
<rdfs:comment xml:lang="en">Date of acceptance of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Date Accepted</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/date"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description">
<terms:description xml:lang="en">Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">An account of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Description</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/description"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/extent -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/extent">
<terms:description xml:lang="en">Recommended practice is to specify the file size in megabytes and duration in ISO 8601 format.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/format"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/format -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/format">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/Extent"/>
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/MediaType"/>
<terms:description xml:lang="en">Recommended practice is to use a controlled vocabulary where available. For example, for file formats one could use the list of Internet Media Types [[MIME](https://www.iana.org/assignments/media-types/media-types.xhtml)]. Examples of dimensions include size and duration.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">The file format, physical medium, or dimensions of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Format</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/format"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/hasVersion -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/hasVersion">
<terms:description xml:lang="en">Changes in version imply substantive changes in content rather than differences in format. This property is intended to be used with non-literal values. This property is an inverse property of Is Version Of.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:comment xml:lang="en">A related resource that is a version, edition, or adaptation of the described resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Has Version</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/relation"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/identifier -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/identifier">
<terms:description xml:lang="en">Recommended practice is to identify the resource by means of a string conforming to an identification system. Examples include International Standard Book Number (ISBN), Digital Object Identifier (DOI), and Uniform Resource Name (URN). Persistent identifiers should be provided as HTTP URIs.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">An unambiguous reference to the resource within a given context.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Identifier</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/identifier"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/isPartOf -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/isPartOf">
<terms:description xml:lang="en">This property is intended to be used with non-literal values. This property is an inverse property of Has Part.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:comment xml:lang="en">A related resource in which the described resource is physically or logically included.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Is Part Of</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/relation"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/date"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/language -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/language">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/LinguisticSystem"/>
<terms:description xml:lang="en">Recommended practice is to use either a non-literal value representing a language from a controlled vocabulary such as ISO 639-2 or ISO 639-3, or a literal value consisting of an IETF Best Current Practice 47 [[IETF-BCP47](https://tools.ietf.org/html/bcp47)] language tag.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">A language of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Language</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/language"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/rights"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/rights"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/medium -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/medium">
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/format"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified">
<terms:description xml:lang="en">Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:comment xml:lang="en">Date on which the resource was changed.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Date Modified</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/date"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/publisher -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/publisher">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/publisher"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/relation -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/relation">
<terms:description xml:lang="en">Recommended practice is to identify the related resource by means of a URI. If this is not possible or feasible, a string conforming to a formal identification system may be provided.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/rights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/rights">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/RightsStatement"/>
<terms:description xml:lang="en">Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. Recommended practice is to refer to a rights statement with a URI. If this is not possible or feasible, a literal value (name, label, or short text) may be provided.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">Information about rights held in and over the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Rights</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/rights"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/source">
<terms:description xml:lang="en">This property is intended to be used with non-literal values. The described resource may be derived from the related resource in whole or in part. Best practice is to identify the related resource by means of a URI or a string conforming to a formal identification system.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">A related resource from which the described resource is derived.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Source</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/source"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/relation"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/spatial -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/spatial">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/Location"/>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:comment xml:lang="en">Spatial characteristics of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Spatial Coverage</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/coverage"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/coverage"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/subject -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/subject">
<terms:description xml:lang="en">Recommended practice is to refer to the subject with a URI. If this is not possible or feasible, a literal value that identifies the subject may be provided. Both should preferably refer to a subject in a controlled vocabulary.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">A topic of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Subject</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/subject"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/tableOfContents -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/tableOfContents">
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/description"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/temporal -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/temporal">
<dcam:rangeIncludes rdf:resource="http://purl.org/dc/terms/PeriodOfTime"/>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:comment xml:lang="en">Temporal characteristics of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Temporal Coverage</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/coverage"/>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/coverage"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title">
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">A name given to the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Title</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/title"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/type -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/type">
<terms:description xml:lang="en">Recommended practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [[DCMI-TYPE](http://dublincore.org/documents/dcmi-type-vocabulary/)]. To describe the file format, physical medium, or dimensions of the resource, use the property Format.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2008-01-14</terms:issued>
<rdfs:comment xml:lang="en">The nature or genre of the resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Type</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/type"/>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/valid -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/valid">
<terms:description xml:lang="en">Recommended practice is to describe the date, date/time, or period of time as recommended for the property Date, of which this is a subproperty.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
<rdfs:comment xml:lang="en">Date (often a range) of validity of a resource.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/dc/terms/"/>
<rdfs:label xml:lang="en">Date Valid</rdfs:label>
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/elements/1.1/date"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:AnnotationProperty>
<!-- http://purl.org/vocab/vann/preferredNamespacePrefix -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespacePrefix"/>
<!-- http://purl.org/vocab/vann/usageNote -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/usageNote"/>
<!-- http://schema.org/citation -->
<owl:AnnotationProperty rdf:about="http://schema.org/citation"/>
<!-- http://schema.org/codeRepository -->
<owl:AnnotationProperty rdf:about="http://schema.org/codeRepository"/>
<!-- http://schema.org/funding -->
<owl:AnnotationProperty rdf:about="http://schema.org/funding"/>
<!-- http://schema.org/image -->
<owl:AnnotationProperty rdf:about="http://schema.org/image"/>
<!-- http://schema.org/logo -->
<owl:AnnotationProperty rdf:about="http://schema.org/logo"/>
<!-- http://schema.org/url -->
<owl:AnnotationProperty rdf:about="http://schema.org/url"/>
<!-- http://www.w3.org/2003/06/sw-vocab-status/ns#term_status -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#changeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#changeNote"/>
<!-- http://www.w3.org/2004/02/skos/core#definition -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#definition"/>
<!-- http://www.w3.org/2004/02/skos/core#editorialNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#editorialNote"/>
<!-- http://www.w3.org/2004/02/skos/core#example -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#example"/>
<!-- http://www.w3.org/2004/02/skos/core#note -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#note"/>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote"/>
<!-- http://www.w3.org/ns/prov#category -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#category"/>
<!-- http://www.w3.org/ns/prov#component -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#component"/>
<!-- http://www.w3.org/ns/prov#inverse -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#inverse"/>
<!-- http://www.w3.org/ns/prov#qualifiedForm -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#qualifiedForm"/>
<!-- http://www.w3.org/ns/prov#sharesDefinitionWith -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#sharesDefinitionWith"/>
<!-- http://www.w3.org/ns/prov#unqualifiedForm -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#unqualifiedForm"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!-- http://www.w3.org/2001/XMLSchema#duration -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#duration"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/hasPart -->
<owl:ObjectProperty rdf:about="http://purl.org/dc/terms/hasPart">
<terms:description xml:lang="en">This property is intended to be used with non-literal values. This property is an inverse property of Is Part Of.</terms:description>
<terms:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2000-07-11</terms:issued>
</owl:ObjectProperty>
<!-- http://purl.org/eis/vocab/daq#hasDimension -->
<owl:ObjectProperty rdf:about="http://purl.org/eis/vocab/daq#hasDimension">
<owl:inverseOf rdf:resource="http://www.w3.org/ns/dqv#inCategory"/>
</owl:ObjectProperty>
<!-- http://purl.org/eis/vocab/daq#hasMetric -->
<owl:ObjectProperty rdf:about="http://purl.org/eis/vocab/daq#hasMetric"/>
<rdf:Description>
<owl:inverseOf rdf:resource="http://purl.org/eis/vocab/daq#hasMetric"/>
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/dqv#inDimension"/>
</rdf:Description>
<!-- http://www.w3.org/2004/02/skos/core#hasTopConcept -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#hasTopConcept">
<rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#inScheme -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#inScheme">
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/2004/02/skos/core"/>
<rdfs:label xml:lang="en">is in scheme</rdfs:label>
<skos:definition xml:lang="en">Relates a resource (for example a concept) to a concept scheme in which it is included.</skos:definition>
<skos:scopeNote xml:lang="en">A concept may be a member of more than one concept scheme.</skos:scopeNote>
</owl:ObjectProperty>
<!-- http://www.w3.org/2004/02/skos/core#topConceptOf -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2004/02/skos/core#topConceptOf">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#inScheme"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2008/05/skos#hasTopConcept -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2008/05/skos#hasTopConcept">
<rdfs:range rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2008/05/skos#mappingRelation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2008/05/skos#mappingRelation">
<rdfs:domain rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
<rdfs:range rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2008/05/skos#semanticRelation -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2008/05/skos#semanticRelation">
<rdfs:domain rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
<rdfs:range rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/2008/05/skos#topConceptOf -->
<owl:ObjectProperty rdf:about="http://www.w3.org/2008/05/skos#topConceptOf">
<rdfs:domain rdf:resource="http://www.w3.org/2008/05/skos#Concept"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/adms#sample -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/adms#sample">
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/adms#status -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/adms#status">
<rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdfs:comment xml:lang="en">The status of the Asset in the context of a particular workflow process.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/adms"/>
<rdfs:label xml:lang="en">status</rdfs:label>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#accessService -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#accessService"/>
<!-- http://www.w3.org/ns/dcat#accessURL -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#accessURL">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Distribution"/>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#accessService"/>
<rdf:Description rdf:about="http://www.w3.org/ns/dcat#endpointURL"/>
</owl:propertyChainAxiom>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#catalog -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#catalog">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/hasPart"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Catalog"/>
<rdfs:range rdf:resource="http://www.w3.org/ns/dcat#Catalog"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#compressFormat -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#compressFormat">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Distribution"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#dataset -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#dataset">
<rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/hasPart"/>
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Catalog"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#distribution -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#distribution">
<rdfs:range rdf:resource="http://www.w3.org/ns/dcat#Distribution"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#downloadURL -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#downloadURL">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#Distribution"/>
</owl:ObjectProperty>
<!-- http://www.w3.org/ns/dcat#endpointDescription -->
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/dcat#endpointDescription">
<rdfs:domain rdf:resource="http://www.w3.org/ns/dcat#DataService"/>
<rdfs:comment xml:lang="en">A description of the service end-point, including its operations, parameters etc.</rdfs:comment>
<rdfs:comment xml:lang="da">En beskrivelse af det pågældende tjenesteendpoint, inklusiv dets operationer, parametre etc.</rdfs:comment>
<rdfs:comment xml:lang="cs">Popis přístupového bodu služby včetně operací, parametrů apod.</rdfs:comment>
<rdfs:comment xml:lang="es">Una descripción del end-point del servicio, incluyendo sus operaciones, parámetros, etc.</rdfs:comment>
<rdfs:comment xml:lang="it">Una descrizione dell'endpoint del servizio, incluse le sue operazioni, parametri, ecc.</rdfs:comment>
<rdfs:label xml:lang="es">descripción del end-point del servicio</rdfs:label>
<rdfs:label xml:lang="en">description of service end-point</rdfs:label>
<rdfs:label xml:lang="it">descrizione dell'endpoint del servizio</rdfs:label>
<rdfs:label xml:lang="da">endpointbeskrivelse</rdfs:label>
<rdfs:label xml:lang="cs">popis přístupového bodu služby</rdfs:label>
<skos:changeNote xml:lang="en">New property in DCAT 2.0.</skos:changeNote>
<skos:changeNote xml:lang="cs">Nová vlastnost přidaná ve verzi DCAT 2.0.</skos:changeNote>
<skos:changeNote xml:lang="en">Nueva propiedad agregada en DCAT 2.0.</skos:changeNote>
<skos:changeNote xml:lang="it">Nuova proprietà in DCAT 2.0.</skos:changeNote>