-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontology.ttl
2566 lines (1827 loc) · 196 KB
/
ontology.ttl
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
@prefix : <https://w3id.org/sedimark/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://w3id.org/sedimark/ontology#> .
<https://w3id.org/sedimark/ontology> rdf:type owl:Ontology ;
<http://purl.org/dc/elements/1.1/description> """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."""^^rdfs:Literal ;
<http://purl.org/dc/elements/1.1/title> "SEDIMARK Marketplace Information Model - Ontology"^^rdfs:Literal ;
<http://purl.org/dc/terms/contributor> "Maroua Bahri (INRIA)" ;
<http://purl.org/dc/terms/creator> "Jorge Lanza (Universidad de Cantabria)" ,
"Juan Ramon Santana (Universidad de Cantabria)" ,
"Luis Sanchez (Universidad de Cantabria)" ,
"Pablo Sotres (Universidad de Cantabria)" ,
"Tarek Elsaleh (University of Surrey)" ;
<http://purl.org/dc/terms/issued> "2023-12-31"@en ;
<http://purl.org/dc/terms/license> <https://creativecommons.org/licenses/by/4.0> ;
<http://purl.org/dc/terms/publisher> "SEDIMARK - SEcure Decentralised Intelligent Data MARKetplace"^^rdfs:Literal ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "sedi-o"^^rdfs:Literal ;
<http://schema.org/citation> "SEDIMARK Marketplace Information Model - SEDIMARK EU Project" ;
<http://schema.org/codeRepository> "https://github.com/Sedimark/ontology" ;
<http://schema.org/funding> "https://cordis.europa.eu/project/id/101070074"@en ,
"https://gtr.ukri.org/projects?ref=10043699"@en ;
<http://schema.org/logo> <https://sedimark.eu/wp-content/uploads/2023/11/sedimark_logo_512x512.png> ;
<http://schema.org/url> "https://sedimark.eu/"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/dcam/rangeIncludes
<http://purl.org/dc/dcam/rangeIncludes> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/contributor
<http://purl.org/dc/elements/1.1/contributor> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/coverage
<http://purl.org/dc/elements/1.1/coverage> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/creator
<http://purl.org/dc/elements/1.1/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/date
<http://purl.org/dc/elements/1.1/date> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/description
<http://purl.org/dc/elements/1.1/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/format
<http://purl.org/dc/elements/1.1/format> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/identifier
<http://purl.org/dc/elements/1.1/identifier> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/language
<http://purl.org/dc/elements/1.1/language> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/publisher
<http://purl.org/dc/elements/1.1/publisher> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/relation
<http://purl.org/dc/elements/1.1/relation> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/rights
<http://purl.org/dc/elements/1.1/rights> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/source
<http://purl.org/dc/elements/1.1/source> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/subject
<http://purl.org/dc/elements/1.1/subject> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/title
<http://purl.org/dc/elements/1.1/title> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/elements/1.1/type
<http://purl.org/dc/elements/1.1/type> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/abstract
<http://purl.org/dc/terms/abstract> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:subPropertyOf <http://purl.org/dc/terms/description> .
### http://purl.org/dc/terms/accessRights
<http://purl.org/dc/terms/accessRights> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/dcam/rangeIncludes> <http://purl.org/dc/terms/RightsStatement> ;
<http://purl.org/dc/terms/description> "Access Rights may include information regarding access or restrictions based on privacy, security, or other policies."@en ;
<http://purl.org/dc/terms/issued> "2003-02-15"^^xsd:date ;
rdfs:comment "Information about who access the resource or an indication of its security status."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Access Rights"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/rights> ,
<http://purl.org/dc/terms/rights> .
### http://purl.org/dc/terms/accrualPeriodicity
<http://purl.org/dc/terms/accrualPeriodicity> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/dcam/rangeIncludes> <http://purl.org/dc/terms/Frequency> ;
<http://purl.org/dc/terms/description> "Recommended practice is to use a value from the Collection Description Frequency Vocabulary [[DCMI-COLLFREQ](https://dublincore.org/groups/collections/frequency/)]."@en ;
<http://purl.org/dc/terms/issued> "2005-06-13"^^xsd:date ;
rdfs:comment "The frequency with which items are added to a collection."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Accrual Periodicity"@en ;
rdfs:domain <http://purl.org/dc/dcmitype/Collection> .
### http://purl.org/dc/terms/available
<http://purl.org/dc/terms/available> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:comment "Date that the resource became or will become available."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Date Available"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/date> ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/conformsTo
<http://purl.org/dc/terms/conformsTo> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/dcam/rangeIncludes> <http://purl.org/dc/terms/Standard> ;
<http://purl.org/dc/terms/issued> "2001-05-21"^^xsd:date ;
rdfs:comment "An established standard to which the described resource conforms."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Conforms To"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/relation> ,
<http://purl.org/dc/terms/relation> .
### http://purl.org/dc/terms/contributor
<http://purl.org/dc/terms/contributor> rdf:type owl:AnnotationProperty ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/contributor> .
### http://purl.org/dc/terms/coverage
<http://purl.org/dc/terms/coverage> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:comment "Date of creation of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Date Created"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/date> ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/creator> ,
<http://purl.org/dc/terms/contributor> .
### http://purl.org/dc/terms/dateAccepted
<http://purl.org/dc/terms/dateAccepted> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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)."@en ;
<http://purl.org/dc/terms/issued> "2002-07-13"^^xsd:date ;
rdfs:comment "Date of acceptance of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Date Accepted"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/date> ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "An account of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Description"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/description> .
### http://purl.org/dc/terms/extent
<http://purl.org/dc/terms/extent> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "Recommended practice is to specify the file size in megabytes and duration in ISO 8601 format."@en ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:subPropertyOf <http://purl.org/dc/terms/format> .
### http://purl.org/dc/terms/format
<http://purl.org/dc/terms/format> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/dcam/rangeIncludes> <http://purl.org/dc/terms/Extent> ,
<http://purl.org/dc/terms/MediaType> ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "The file format, physical medium, or dimensions of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Format"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/format> .
### http://purl.org/dc/terms/hasVersion
<http://purl.org/dc/terms/hasVersion> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:comment "A related resource that is a version, edition, or adaptation of the described resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Has Version"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/relation> ,
<http://purl.org/dc/terms/relation> .
### http://purl.org/dc/terms/identifier
<http://purl.org/dc/terms/identifier> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "An unambiguous reference to the resource within a given context."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Identifier"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/identifier> ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/isPartOf
<http://purl.org/dc/terms/isPartOf> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "This property is intended to be used with non-literal values. This property is an inverse property of Has Part."@en ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:comment "A related resource in which the described resource is physically or logically included."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Is Part Of"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/relation> ,
<http://purl.org/dc/terms/relation> .
### http://purl.org/dc/terms/issued
<http://purl.org/dc/terms/issued> rdf:type owl:AnnotationProperty ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/date> ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/language
<http://purl.org/dc/terms/language> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/dcam/rangeIncludes> <http://purl.org/dc/terms/LinguisticSystem> ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "A language of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Language"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/language> .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/rights> ,
<http://purl.org/dc/terms/rights> .
### http://purl.org/dc/terms/medium
<http://purl.org/dc/terms/medium> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:subPropertyOf <http://purl.org/dc/terms/format> .
### http://purl.org/dc/terms/modified
<http://purl.org/dc/terms/modified> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:comment "Date on which the resource was changed."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Date Modified"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/date> ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/publisher
<http://purl.org/dc/terms/publisher> rdf:type owl:AnnotationProperty ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/publisher> .
### http://purl.org/dc/terms/relation
<http://purl.org/dc/terms/relation> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date .
### http://purl.org/dc/terms/rights
<http://purl.org/dc/terms/rights> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/dcam/rangeIncludes> <http://purl.org/dc/terms/RightsStatement> ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "Information about rights held in and over the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Rights"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/rights> .
### http://purl.org/dc/terms/source
<http://purl.org/dc/terms/source> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "A related resource from which the described resource is derived."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Source"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/source> ,
<http://purl.org/dc/terms/relation> .
### http://purl.org/dc/terms/spatial
<http://purl.org/dc/terms/spatial> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/dcam/rangeIncludes> <http://purl.org/dc/terms/Location> ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:comment "Spatial characteristics of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Spatial Coverage"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/coverage> ,
<http://purl.org/dc/terms/coverage> .
### http://purl.org/dc/terms/subject
<http://purl.org/dc/terms/subject> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "A topic of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Subject"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/subject> .
### http://purl.org/dc/terms/tableOfContents
<http://purl.org/dc/terms/tableOfContents> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:subPropertyOf <http://purl.org/dc/terms/description> .
### http://purl.org/dc/terms/temporal
<http://purl.org/dc/terms/temporal> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/dcam/rangeIncludes> <http://purl.org/dc/terms/PeriodOfTime> ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:comment "Temporal characteristics of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Temporal Coverage"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/coverage> ,
<http://purl.org/dc/terms/coverage> .
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "A name given to the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Title"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/title> ;
rdfs:range rdfs:Literal .
### http://purl.org/dc/terms/type
<http://purl.org/dc/terms/type> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2008-01-14"^^xsd:date ;
rdfs:comment "The nature or genre of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Type"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/type> .
### http://purl.org/dc/terms/valid
<http://purl.org/dc/terms/valid> rdf:type owl:AnnotationProperty ;
<http://purl.org/dc/terms/description> "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."@en ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date ;
rdfs:comment "Date (often a range) of validity of a resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Date Valid"@en ;
rdfs:subPropertyOf <http://purl.org/dc/elements/1.1/date> ;
rdfs:range rdfs:Literal .
### http://purl.org/vocab/vann/preferredNamespacePrefix
<http://purl.org/vocab/vann/preferredNamespacePrefix> rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/usageNote
<http://purl.org/vocab/vann/usageNote> rdf:type owl:AnnotationProperty .
### http://schema.org/citation
<http://schema.org/citation> rdf:type owl:AnnotationProperty .
### http://schema.org/codeRepository
<http://schema.org/codeRepository> rdf:type owl:AnnotationProperty .
### http://schema.org/funding
<http://schema.org/funding> rdf:type owl:AnnotationProperty .
### http://schema.org/image
<http://schema.org/image> rdf:type owl:AnnotationProperty .
### http://schema.org/logo
<http://schema.org/logo> rdf:type owl:AnnotationProperty .
### http://schema.org/url
<http://schema.org/url> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2003/06/sw-vocab-status/ns#term_status
<http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
<http://www.w3.org/2004/02/skos/core#altLabel> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#changeNote
<http://www.w3.org/2004/02/skos/core#changeNote> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
<http://www.w3.org/2004/02/skos/core#definition> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#editorialNote
<http://www.w3.org/2004/02/skos/core#editorialNote> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
<http://www.w3.org/2004/02/skos/core#example> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#note
<http://www.w3.org/2004/02/skos/core#note> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
<http://www.w3.org/2004/02/skos/core#prefLabel> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#scopeNote
<http://www.w3.org/2004/02/skos/core#scopeNote> rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#category
<http://www.w3.org/ns/prov#category> rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#component
<http://www.w3.org/ns/prov#component> rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#inverse
<http://www.w3.org/ns/prov#inverse> rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#qualifiedForm
<http://www.w3.org/ns/prov#qualifiedForm> rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#sharesDefinitionWith
<http://www.w3.org/ns/prov#sharesDefinitionWith> rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#unqualifiedForm
<http://www.w3.org/ns/prov#unqualifiedForm> rdf:type owl:AnnotationProperty .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#duration
xsd:duration rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://purl.org/dc/terms/hasPart
<http://purl.org/dc/terms/hasPart> rdf:type owl:ObjectProperty ;
<http://purl.org/dc/terms/description> "This property is intended to be used with non-literal values. This property is an inverse property of Is Part Of."@en ;
<http://purl.org/dc/terms/issued> "2000-07-11"^^xsd:date .
### http://purl.org/eis/vocab/daq#hasDimension
<http://purl.org/eis/vocab/daq#hasDimension> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.w3.org/ns/dqv#inCategory> .
### http://purl.org/eis/vocab/daq#hasMetric
<http://purl.org/eis/vocab/daq#hasMetric> rdf:type owl:ObjectProperty .
[ owl:inverseOf <http://purl.org/eis/vocab/daq#hasMetric> ;
rdfs:subPropertyOf <http://www.w3.org/ns/dqv#inDimension>
] .
### http://www.w3.org/2004/02/skos/core#hasTopConcept
<http://www.w3.org/2004/02/skos/core#hasTopConcept> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2004/02/skos/core#ConceptScheme> .
### http://www.w3.org/2004/02/skos/core#inScheme
<http://www.w3.org/2004/02/skos/core#inScheme> rdf:type owl:ObjectProperty ;
rdfs:range <http://www.w3.org/2004/02/skos/core#ConceptScheme> ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
rdfs:label "is in scheme"@en ;
<http://www.w3.org/2004/02/skos/core#definition> "Relates a resource (for example a concept) to a concept scheme in which it is included."@en ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "A concept may be a member of more than one concept scheme."@en .
### http://www.w3.org/2004/02/skos/core#topConceptOf
<http://www.w3.org/2004/02/skos/core#topConceptOf> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/2004/02/skos/core#inScheme> ;
rdfs:range <http://www.w3.org/2004/02/skos/core#ConceptScheme> .
### http://www.w3.org/2008/05/skos#hasTopConcept
<http://www.w3.org/2008/05/skos#hasTopConcept> rdf:type owl:ObjectProperty ;
rdfs:range <http://www.w3.org/2008/05/skos#Concept> .
### http://www.w3.org/2008/05/skos#mappingRelation
<http://www.w3.org/2008/05/skos#mappingRelation> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2008/05/skos#Concept> ;
rdfs:range <http://www.w3.org/2008/05/skos#Concept> .
### http://www.w3.org/2008/05/skos#semanticRelation
<http://www.w3.org/2008/05/skos#semanticRelation> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2008/05/skos#Concept> ;
rdfs:range <http://www.w3.org/2008/05/skos#Concept> .
### http://www.w3.org/2008/05/skos#topConceptOf
<http://www.w3.org/2008/05/skos#topConceptOf> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/2008/05/skos#Concept> .
### http://www.w3.org/ns/adms#sample
<http://www.w3.org/ns/adms#sample> rdf:type owl:ObjectProperty ;
rdfs:domain rdfs:Resource ;
rdfs:range rdfs:Resource .
### http://www.w3.org/ns/adms#status
<http://www.w3.org/ns/adms#status> rdf:type owl:ObjectProperty ;
rdfs:domain rdfs:Resource ;
rdfs:range <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:comment "The status of the Asset in the context of a particular workflow process."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/adms> ;
rdfs:label "status"@en .
### http://www.w3.org/ns/dcat#accessService
<http://www.w3.org/ns/dcat#accessService> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/dcat#accessURL
<http://www.w3.org/ns/dcat#accessURL> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Distribution> ;
owl:propertyChainAxiom ( <http://www.w3.org/ns/dcat#accessService>
<http://www.w3.org/ns/dcat#endpointURL>
) .
### http://www.w3.org/ns/dcat#catalog
<http://www.w3.org/ns/dcat#catalog> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://purl.org/dc/terms/hasPart> ;
rdfs:domain <http://www.w3.org/ns/dcat#Catalog> ;
rdfs:range <http://www.w3.org/ns/dcat#Catalog> .
### http://www.w3.org/ns/dcat#compressFormat
<http://www.w3.org/ns/dcat#compressFormat> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Distribution> .
### http://www.w3.org/ns/dcat#dataset
<http://www.w3.org/ns/dcat#dataset> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://purl.org/dc/terms/hasPart> ;
rdfs:domain <http://www.w3.org/ns/dcat#Catalog> .
### http://www.w3.org/ns/dcat#distribution
<http://www.w3.org/ns/dcat#distribution> rdf:type owl:ObjectProperty ;
rdfs:range <http://www.w3.org/ns/dcat#Distribution> .
### http://www.w3.org/ns/dcat#downloadURL
<http://www.w3.org/ns/dcat#downloadURL> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Distribution> .
### http://www.w3.org/ns/dcat#endpointDescription
<http://www.w3.org/ns/dcat#endpointDescription> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#DataService> ;
rdfs:comment "A description of the service end-point, including its operations, parameters etc."@en ,
"En beskrivelse af det pågældende tjenesteendpoint, inklusiv dets operationer, parametre etc."@da ,
"Popis přístupového bodu služby včetně operací, parametrů apod."@cs ,
"Una descripción del end-point del servicio, incluyendo sus operaciones, parámetros, etc."@es ,
"Una descrizione dell'endpoint del servizio, incluse le sue operazioni, parametri, ecc."@it ;
rdfs:label "descripción del end-point del servicio"@es ,
"description of service end-point"@en ,
"descrizione dell'endpoint del servizio"@it ,
"endpointbeskrivelse"@da ,
"popis přístupového bodu služby"@cs ;
<http://www.w3.org/2004/02/skos/core#changeNote> "New property in DCAT 2.0."@en ,
"Nová vlastnost přidaná ve verzi DCAT 2.0."@cs ,
"Nueva propiedad agregada en DCAT 2.0."@en ,
"Nuova proprietà in DCAT 2.0."@it ,
"Ny egenskab i DCAT 2.0."@da ;
<http://www.w3.org/2004/02/skos/core#definition> "A description of the service end-point, including its operations, parameters etc."@en ,
"En beskrivelse af det pågældende tjenesteendpoint, inklusiv dets operationer, parametre etc."@da ,
"Popis přístupového bodu služby včetně operací, parametrů apod."@cs ,
"Una descripción del end-point del servicio, incluyendo sus operaciones, parámetros, etc.."@es ,
"Una descrizione dell'endpoint del servizio, incluse le sue operazioni, parametri, ecc."@it ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "An endpoint description may be expressed in a machine-readable form, such as an OpenAPI (Swagger) description, an OGC GetCapabilities response, a SPARQL Service Description, an OpenSearch or WSDL document, a Hydra API description, else in text or some other informal mode if a formal representation is not possible."@en ,
"En beskrivelse af et endpoint kan udtrykkes i et maskinlæsbart format, såsom OpenAPI (Swagger)-beskrivelser, et OGC GetCapabilities svar, en SPARQL tjenestebeskrivelse, en OpenSearch- eller et WSDL-dokument, en Hydra-API-beskrivelse, eller i tekstformat eller i et andet uformelt format, hvis en formel repræsentation ikke er mulig."@da ,
"Endpointbeskrivelsen giver specifikke oplysninger om den konkrete endpointinstans, mens dct:conformsTo anvendes til at indikere den overordnede standard eller specifikation som endpointet er i overensstemmelse med."@da ,
"La descripción del endpoint brinda detalles específicos de la instancia del endpoint, mientras que dct:conformsTo se usa para indicar el estándar general o especificación que implementa el endpoint."@es ,
"La descrizione dell'endpoint fornisce dettagli specifici dell'istanza dell'endpoint reale, mentre dct:conformsTo viene utilizzato per indicare lo standard o le specifiche implementate dall'endpoint."@it ,
"Popis přístupového bodu dává specifické detaily jeho konkrétní instance, zatímco dct:conformsTo indikuje obecný standard či specifikaci kterou přístupový bod implementuje."@cs ,
"Popis přístupového bodu může být vyjádřen ve strojově čitelné formě, například jako popis OpenAPI (Swagger), odpověď služby OGC getCapabilities, pomocí slovníku SPARQL Service Description, jako OpenSearch či WSDL document, jako popis API dle slovníku Hydra, a nebo textově nebo jiným neformálním způsobem, pokud není možno použít formální reprezentaci."@cs ,
"The endpoint description gives specific details of the actual endpoint instance, while dct:conformsTo is used to indicate the general standard or specification that the endpoint implements."@en ,
"Una descripción del endpoint del servicio puede expresarse en un formato que la máquina puede interpretar, tal como una descripción basada en OpenAPI (Swagger), una respuesta OGC GetCapabilities, una descripción de un servicio SPARQL, un documento OpenSearch o WSDL, una descripción con la Hydra API, o en texto u otro modo informal si la representación formal no es posible."@es ,
"Una descrizione dell'endpoint può essere espressa in un formato leggibile dalla macchina, come una descrizione OpenAPI (Swagger), una risposta GetCapabilities OGC, una descrizione del servizio SPARQL, un documento OpenSearch o WSDL, una descrizione API Hydra, o con del testo o qualche altra modalità informale se una rappresentazione formale non è possibile."@it .
### http://www.w3.org/ns/dcat#endpointURL
<http://www.w3.org/ns/dcat#endpointURL> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#DataService> ;
rdfs:range rdfs:Resource ;
rdfs:comment "Kořenové umístění nebo hlavní přístupový bod služby (IRI přístupné přes Web)."@cs ,
"La locazione principale o l'endpoint primario del servizio (un IRI risolvibile via web)."@it ,
"La posición raíz o end-point principal del servicio (una IRI web)."@es ,
"Rodplaceringen eller det primære endpoint for en tjeneste (en web-resolverbar IRI)."@da ,
"The root location or primary endpoint of the service (a web-resolvable IRI)."@en ;
rdfs:label "end-point del servicio"@es ,
"end-point del servizio"@it ,
"přístupový bod služby"@cs ,
"service end-point"@en ,
"tjenesteendpoint"@da ;
<http://www.w3.org/2004/02/skos/core#changeNote> "New property in DCAT 2.0."@en ,
"Nová vlastnost přidaná ve verzi DCAT 2.0."@cs ,
"Nueva propiedad agregada en DCAT 2.0."@es ,
"Nuova proprietà in DCAT 2.0."@it ;
<http://www.w3.org/2004/02/skos/core#definition> "Kořenové umístění nebo hlavní přístupový bod služby (IRI přístupné přes Web)."@cs ,
"La locazione principale o l'endpoint primario del servizio (un IRI risolvibile via web)."@it ,
"La posición raíz o end-point principal del servicio (una IRI web)."@es ,
"Rodplaceringen eller det primære endpoint for en tjeneste (en web-resolverbar IRI)."@da ,
"The root location or primary endpoint of the service (a web-resolvable IRI)."@en .
### http://www.w3.org/ns/dcat#mediaType
<http://www.w3.org/ns/dcat#mediaType> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Distribution> .
### http://www.w3.org/ns/dcat#packageFormat
<http://www.w3.org/ns/dcat#packageFormat> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Distribution> .
### http://www.w3.org/ns/dcat#qualifiedRelation
<http://www.w3.org/ns/dcat#qualifiedRelation> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Resource> .
### http://www.w3.org/ns/dcat#record
<http://www.w3.org/ns/dcat#record> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Catalog> .
### http://www.w3.org/ns/dcat#servesDataset
<http://www.w3.org/ns/dcat#servesDataset> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#DataService> ;
rdfs:range <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:comment "A collection of data that this DataService can distribute."@en ,
"En samling af data som denne datatjeneste kan distribuere."@da ,
"Kolekce dat, kterou je tato Datová služba schopna poskytnout."@cs ,
"Una colección de datos que este Servicio de Datos puede distribuir."@es ,
"Una raccolta di dati che questo DataService può distribuire."@it ;
rdfs:label "datatjeneste for datasæt"@da ,
"poskytuje datovou sadu"@cs ,
"provee conjunto de datos"@es ,
"serve set di dati"@it ,
"serves dataset"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "distribuerer"@da ,
"ekspederer"@da ,
"udstiller"@da ;
<http://www.w3.org/2004/02/skos/core#changeNote> "New property in DCAT 2.0."@en ,
"Nová vlastnost přidaná ve verzi DCAT 2.0."@cs ,
"Nueva propiedad agregada en DCAT 2.0."@es ,
"Nuova proprietà in DCAT 2.0."@it ;
<http://www.w3.org/2004/02/skos/core#definition> "A collection of data that this DataService can distribute."@en ,
"En samling af data som denne datatjeneste kan distribuere."@da ,
"Kolekce dat, kterou je tato Datová služba schopna poskytnout."@cs ,
"Una colección de datos que este Servicio de Datos puede distribuir."@es ,
"Una raccolta di dati che questo DataService può distribuire."@it .
### http://www.w3.org/ns/dcat#service
<http://www.w3.org/ns/dcat#service> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://purl.org/dc/terms/hasPart> ;
rdfs:domain <http://www.w3.org/ns/dcat#Catalog> .
### http://www.w3.org/ns/dcat#theme
<http://www.w3.org/ns/dcat#theme> rdf:type owl:ObjectProperty ;
rdfs:range <http://www.w3.org/2004/02/skos/core#Concept> ;
rdfs:comment "A main category of the resource. A resource can have multiple themes."@en ,
"Et centralt emne for ressourcen. En ressource kan have flere centrale emner."@da ,
"Hlavní téma zdroje. Zdroj může mít více témat."@cs ,
"La categoria principale della risorsa. Una risorsa può avere più temi."@it ,
"La categoría principal del recurso. Un recurso puede tener varios temas."@es ,
"La catégorie principale de la ressource. Une ressource peut avoir plusieurs thèmes."@fr ,
"Η κύρια κατηγορία του συνόλου δεδομένων. Ένα σύνολο δεδομένων δύναται να έχει πολλαπλά θέματα."@el ,
"التصنيف الرئيسي لقائمة البيانات. قائمة البيانات يمكن أن تملك أكثر من تصنيف رئيسي واحد."@ar ,
"データセットの主要カテゴリー。データセットは複数のテーマを持つことができます。"@ja ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "emne"@da ,
"tema"@es ,
"tema"@it ,
"theme"@en ,
"thème"@fr ,
"téma"@cs ,
"Θέμα"@el ,
"التصنيف"@ar ,
"テーマ/カテゴリー"@ja ;
<http://www.w3.org/2004/02/skos/core#altLabel> "tema"@da ;
<http://www.w3.org/2004/02/skos/core#definition> "A main category of the resource. A resource can have multiple themes."@en ,
"Et centralt emne for ressourcen. En ressource kan have flere centrale emner."@da ,
"Hlavní téma zdroje. Zdroj může mít více témat."@cs ,
"La categoria principale della risorsa. Una risorsa può avere più temi."@it ,
"La categoría principal del recurso. Un recurso puede tener varios temas."@es ,
"La catégorie principale de la ressource. Une ressource peut avoir plusieurs thèmes."@fr ,
"Η κύρια κατηγορία του συνόλου δεδομένων. Ένα σύνολο δεδομένων δύναται να έχει πολλαπλά θέματα."@el ,
"التصنيف الرئيسي لقائمة البيانات. قائمة البيانات يمكن أن تملك أكثر من تصنيف رئيسي واحد."@ar ,
"データセットの主要カテゴリー。データセットは複数のテーマを持つことができます。"@ja ;
<http://www.w3.org/2004/02/skos/core#editorialNote> "Status: English Definition text modified by DCAT revision team, all except for Italian and Czech translations are pending."@en ;
<http://www.w3.org/2004/02/skos/core#scopeNote> "El conjunto de skos:Concepts utilizados para categorizar los recursos están organizados en un skos:ConceptScheme que describe todas las categorías y sus relaciones en el catálogo."@es ,
"Il set di concetti skos usati per categorizzare le risorse sono organizzati in skos:ConceptScheme che descrive tutte le categorie e le loro relazioni nel catalogo."@it ,
"Sada instancí třídy skos:Concept použitá pro kategorizaci zdrojů je organizována do schématu konceptů skos:ConceptScheme, které popisuje všechny kategorie v katalogu a jejich vztahy."@cs ,
"Samlingen af begreber (skos:Concept) der anvendes til at emneinddele ressourcer organiseres i et begrebssystem (skos:ConceptScheme) som beskriver alle emnerne og deres relationer i kataloget."@da ,
"The set of skos:Concepts used to categorize the resources are organized in a skos:ConceptScheme describing all the categories and their relations in the catalog."@en ,
"Un ensemble de skos:Concepts utilisés pour catégoriser les ressources sont organisés en un skos:ConceptScheme décrivant toutes les catégories et ses relations dans le catalogue."@fr ,
"Το σετ των skos:Concepts που χρησιμοποιείται για να κατηγοριοποιήσει τα σύνολα δεδομένων είναι οργανωμένο εντός ενός skos:ConceptScheme που περιγράφει όλες τις κατηγορίες και τις σχέσεις αυτών στον κατάλογο."@el ,
"データセットを分類するために用いられるskos:Conceptの集合は、カタログのすべてのカテゴリーとそれらの関係を記述しているskos:ConceptSchemeで組織化されます。"@ja .
### http://www.w3.org/ns/dcat#themeTaxonomy
<http://www.w3.org/ns/dcat#themeTaxonomy> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dcat#Catalog> .
### http://www.w3.org/ns/dqv#computedOn
<http://www.w3.org/ns/dqv#computedOn> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.w3.org/ns/dqv#hasQualityMeasurement> ;
rdfs:domain <http://www.w3.org/ns/dqv#QualityMeasurement> ;
rdfs:range rdfs:Resource ;
rdfs:comment "Refers to the resource (e.g., a dataset, a linkset, a graph, a set of triples) on which the quality measurement is performed. In the DQV context, this property is generally expected to be used in statements in which objects are instances of dcat:Dataset or dcat:Distribution."@en ;
rdfs:label "computed on"@en .
### http://www.w3.org/ns/dqv#hasQualityMeasurement
<http://www.w3.org/ns/dqv#hasQualityMeasurement> rdf:type owl:ObjectProperty ;
rdfs:range <http://www.w3.org/ns/dqv#QualityMeasurement> .
### http://www.w3.org/ns/dqv#inCategory
<http://www.w3.org/ns/dqv#inCategory> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/dqv#Dimension> ;
rdfs:range <http://www.w3.org/ns/dqv#Category> ;
<http://purl.org/vocab/vann/usageNote> "Categories are meant to systematically organize dimensions. The Data Quality Vocabulary defines no specific cardinality constraints for dqv:inCategory, since distinct quality frameworks might have different perspectives over a dimension. A dimension may therefore be associated to more than one category. However, those who define new quality metrics should try to avoid this as much as possible and assign only one category to the dimensions they define."@en ;
rdfs:comment "Represents the category a dimension is grouped in."@en ;
rdfs:label "in category"@en .
### http://www.w3.org/ns/dqv#inDimension
<http://www.w3.org/ns/dqv#inDimension> rdf:type owl:ObjectProperty ;
rdfs:range <http://www.w3.org/ns/dqv#Dimension> ;
<http://purl.org/vocab/vann/usageNote> "Dimensions are meant to systematically organize metrics, quality certificates and quality annotations. The Data Quality Vocabulary defines no specific cardinality constraints for dqv:inDimension, since distinct quality frameworks might have different perspectives over a metric. A metric may therefore be associated to more than one dimension. However, those who define new quality metrics should try to avoid this as much as possible and assign only one dimension to the metrics they define. More than one dimension can be indicated for each quality annotation or certificate."@en ;
rdfs:comment "Represents the dimensions a quality metric, certificate and annotation allow a measurement of."@en ;
rdfs:label "in dimension"@en .
### http://www.w3.org/ns/dqv#isMeasurementOf
<http://www.w3.org/ns/dqv#isMeasurementOf> rdf:type owl:ObjectProperty ;
rdfs:domain <http://purl.org/linked-data/cube#Observation> ;
rdfs:range <http://www.w3.org/ns/dqv#Metric> ;
rdfs:comment "Indicates the metric being observed."@en ;
rdfs:label "is measurement of"@en .
### http://www.w3.org/ns/odrl/2/action
<http://www.w3.org/ns/odrl/2/action> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://www.w3.org/ns/odrl/2/Policy>
<http://www.w3.org/ns/odrl/2/Rule>
)
] .
### http://www.w3.org/ns/odrl/2/assignee
<http://www.w3.org/ns/odrl/2/assignee> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://www.w3.org/ns/odrl/2/Policy>
<http://www.w3.org/ns/odrl/2/Rule>
)
] ;
rdfs:range <http://www.w3.org/ns/odrl/2/Party> .
### http://www.w3.org/ns/odrl/2/assigneeOf
<http://www.w3.org/ns/odrl/2/assigneeOf> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/odrl/2/Party> ;
rdfs:range <http://www.w3.org/ns/odrl/2/Policy> .
### http://www.w3.org/ns/odrl/2/assigner
<http://www.w3.org/ns/odrl/2/assigner> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://www.w3.org/ns/odrl/2/Policy>
<http://www.w3.org/ns/odrl/2/Rule>
)
] ;
rdfs:range <http://www.w3.org/ns/odrl/2/Party> .
### http://www.w3.org/ns/odrl/2/assignerOf
<http://www.w3.org/ns/odrl/2/assignerOf> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/odrl/2/Party> ;
rdfs:range <http://www.w3.org/ns/odrl/2/Policy> .
### http://www.w3.org/ns/odrl/2/conflict
<http://www.w3.org/ns/odrl/2/conflict> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/odrl/2/Policy> .
### http://www.w3.org/ns/odrl/2/constraint
<http://www.w3.org/ns/odrl/2/constraint> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://www.w3.org/ns/odrl/2/Policy>
<http://www.w3.org/ns/odrl/2/Rule>
)
] .
### http://www.w3.org/ns/odrl/2/function
<http://www.w3.org/ns/odrl/2/function> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://www.w3.org/ns/odrl/2/Policy>
<http://www.w3.org/ns/odrl/2/Rule>
)
] ;
rdfs:range <http://www.w3.org/ns/odrl/2/Party> .
### http://www.w3.org/ns/odrl/2/hasPolicy
<http://www.w3.org/ns/odrl/2/hasPolicy> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/odrl/2/Asset> ;
rdfs:range <http://www.w3.org/ns/odrl/2/Policy> .
### http://www.w3.org/ns/odrl/2/inheritFrom
<http://www.w3.org/ns/odrl/2/inheritFrom> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/odrl/2/Policy> ;
rdfs:range <http://www.w3.org/ns/odrl/2/Policy> .
### http://www.w3.org/ns/odrl/2/obligation
<http://www.w3.org/ns/odrl/2/obligation> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/odrl/2/Policy> .
### http://www.w3.org/ns/odrl/2/output
<http://www.w3.org/ns/odrl/2/output> rdf:type owl:ObjectProperty ;
rdfs:range <http://www.w3.org/ns/odrl/2/Asset> .
### http://www.w3.org/ns/odrl/2/partOf
<http://www.w3.org/ns/odrl/2/partOf> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://www.w3.org/ns/odrl/2/Asset>
<http://www.w3.org/ns/odrl/2/Party>
)
] .
### http://www.w3.org/ns/odrl/2/permission
<http://www.w3.org/ns/odrl/2/permission> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/odrl/2/Policy> .
### http://www.w3.org/ns/odrl/2/prohibition
<http://www.w3.org/ns/odrl/2/prohibition> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.w3.org/ns/odrl/2/Policy> .
### http://www.w3.org/ns/odrl/2/relation
<http://www.w3.org/ns/odrl/2/relation> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://www.w3.org/ns/odrl/2/Policy>
<http://www.w3.org/ns/odrl/2/Rule>
)
] ;
rdfs:range <http://www.w3.org/ns/odrl/2/Asset> .
### http://www.w3.org/ns/odrl/2/target
<http://www.w3.org/ns/odrl/2/target> rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( <http://www.w3.org/ns/odrl/2/Policy>
<http://www.w3.org/ns/odrl/2/Rule>
)
] ;
rdfs:range <http://www.w3.org/ns/odrl/2/Asset> .
### http://www.w3.org/ns/prov#activity
<http://www.w3.org/ns/prov#activity> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#agent
<http://www.w3.org/ns/prov#agent> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#generated
<http://www.w3.org/ns/prov#generated> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.w3.org/ns/prov#wasGeneratedBy> .
### http://www.w3.org/ns/prov#qualifiedAttribution
<http://www.w3.org/ns/prov#qualifiedAttribution> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#qualifiedInfluence> ;
rdfs:domain <http://www.w3.org/ns/prov#Entity> ;
rdfs:range <http://www.w3.org/ns/prov#Attribution> ;
rdfs:comment "If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution; prov:agent :ag; :foo :bar ]."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:label "qualifiedAttribution" ;
<http://www.w3.org/ns/prov#category> "qualified" ;
<http://www.w3.org/ns/prov#component> "agents-responsibility" ;
<http://www.w3.org/ns/prov#inverse> "qualifiedAttributionOf" ;
<http://www.w3.org/ns/prov#sharesDefinitionWith> <http://www.w3.org/ns/prov#Attribution> ;
<http://www.w3.org/ns/prov#unqualifiedForm> <http://www.w3.org/ns/prov#wasAttributedTo> .
### http://www.w3.org/ns/prov#qualifiedGeneration
<http://www.w3.org/ns/prov#qualifiedGeneration> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#qualifiedInfluence
<http://www.w3.org/ns/prov#qualifiedInfluence> rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/prov#wasAttributedTo
<http://www.w3.org/ns/prov#wasAttributedTo> rdf:type owl:ObjectProperty ;
owl:propertyChainAxiom ( <http://www.w3.org/ns/prov#qualifiedAttribution>
<http://www.w3.org/ns/prov#agent>
) .
### http://www.w3.org/ns/prov#wasGeneratedBy
<http://www.w3.org/ns/prov#wasGeneratedBy> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#wasInfluencedBy> ;
rdfs:domain <http://www.w3.org/ns/prov#Entity> ;
rdfs:range <http://www.w3.org/ns/prov#Activity> ;
owl:propertyChainAxiom ( <http://www.w3.org/ns/prov#qualifiedGeneration>
<http://www.w3.org/ns/prov#activity>
) ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:label "wasGeneratedBy" ;
<http://www.w3.org/ns/prov#category> "starting-point" ;
<http://www.w3.org/ns/prov#component> "entities-activities" ;
<http://www.w3.org/ns/prov#inverse> "generated" ;
<http://www.w3.org/ns/prov#qualifiedForm> <http://www.w3.org/ns/prov#Generation> ,