-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmetadata.ttl
More file actions
1366 lines (1143 loc) · 70.4 KB
/
metadata.ttl
File metadata and controls
1366 lines (1143 loc) · 70.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://w3id.org/ad4gd/model/metadata/> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dqv: <http://www.w3.org/ns/dqv#> .
@prefix ids: <https://w3id.org/idsa/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix sdo: <http://schema.org/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix schema: <https://schema.org/> .
@prefix vcard: <http://www.w3.org/2006/vcard/ns#> .
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix geodcat-ap: <http://data.europa.eu/930/> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
@prefix rdfg: <http://www.w3.org/2004/03/trix/rdfg-1/> .
@prefix locn: <http://www.w3.org/ns/locn#> .
@base <https://w3id.org/ad4gd/model/metadata/> .
<https://w3id.org/ad4gd/model/metadata/> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/ad4gd/model/metadata/1.0> ;
dct:contributor [ rdfs:seeAlso <http://orcid.org/0000-0003-4289-4922> ;
foaf:name "Raul Palma" ;
schema:affiliation [ foaf:name "PSNC"
]
] ,
[ foaf:name "Ioanna Roussaki" ;
schema:affiliation [ foaf:name "ICCS"
]
] ,
[ foaf:name "Rob Atkinson" ;
schema:affiliation [ foaf:name "OGC"
]
] ;
dct:creator [ foaf:name "Till Döhmen" ;
schema:affiliation [ foaf:name "Fraunhofer FIT"
]
] ;
dct:description "The AD4GD GDIM Metadata schema was created by reusing and aligning well-known ontologies and vocabularies"@en ;
dct:rights "This vocabulary is distributed under Creative Commons Attribution 4.0 License - http://creativecommons.org/licenses/by/4.0"@en ;
dct:title "AD4GD Metadata Model"@en ;
rdfs:comment "The AD4GD - Green Deal Information Model (GDIM) is the common vocabulary in AD4GD project providing the basis for semantic interoperability across solutions related to the green deal domain"@en ;
rdfs:comment "The AD4GD - Green Deal Information Model (GDIM) metadata ontology is based on the DEMETER Agriculture Information Model (AIM) metadata ontology"@en ;
owl:versionInfo "1.0" ;
foaf:maker [ foaf:homepage <https://ad4gd.eu/> ;
foaf:name "AD4GD project"
] .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/contributor
dct:contributor rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "contributor"@en ;
rdfs:comment "An entity responsible for making contributions to the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/creator
dct:creator rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "creator"@en ;
rdfs:comment "An entity responsible for making the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/description
dct:description rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "description"@en ;
rdfs:comment "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 ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/publisher
dct:publisher rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "publisher"@en ;
rdfs:comment "This property refers to an entity (organisation) responsible for making the Catalogue available."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/language
dct:language rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "language"@en ;
rdfs:comment "This property refers to a language of the Dataset. This property can be repeated if there are multiple languages in the Dataset."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/temporal
dct:temporal rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "temporal"@en ;
rdfs:comment "This property refers to a temporal period that the Dataset covers."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/created
dct:created rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "created"@en ;
rdfs:comment "Date of creation of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/spatial
dct:spatial rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "spatial"@en ;
rdfs:comment "Spatial characteristics of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/identifier
dct:identifier rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "identifier"@en ;
rdfs:comment "An unambiguous reference to the resource within a given context."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/rights
dct:rights rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "rights"@en ;
rdfs:comment "Information about rights held in and over the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/title
dct:title rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "title"@en ;
rdfs:comment "A name given to the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/license
dct:license rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "license"@en ;
rdfs:comment "A legal document giving official permission to do something with the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/source
dct:source rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "source"@en ;
rdfs:comment "A related resource from which the described resource is derived."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/accrualPolicy
dct:accrualPolicy rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "accrualPolicy"@en ;
rdfs:comment "Date of creation of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/modified
dct:modified rdf:type owl:AnnotationProperty, rdf:Property ;
rdfs:label "modified"@en ;
rdfs:comment "Date of creation of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/accessRights
dct:accessRights a owl:AnnotationProperty, rdf:Property ;
rdfs:label "accessRights"@en ;
rdfs:comment "This property refers to information that indicates whether the Dataset is open data, has access restrictions or is not public. A controlled vocabulary with three members (:public, :restricted, :non-public) will be created and maintained by the Publications Office of the EU."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/format
dct:format a owl:AnnotationProperty, rdf:Property ;
rdfs:label "format"@en ;
rdfs:comment "This property refers to the file format of the Distribution."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/mediaType
dct:mediaType a owl:AnnotationProperty, rdf:Property ;
rdfs:label "mediaType"@en ;
rdfs:comment "This property refers to the media type of the Distribution if this is defined in IANA."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/type
dct:type a owl:AnnotationProperty, rdf:Property ;
rdfs:label "type"@en ;
rdfs:comment "This property refers to the type of the Dataset. A controlled vocabulary for the values has not been established."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/accrualPeriodicity
dct:accrualPeriodicity a owl:AnnotationProperty, rdf:Property ;
rdfs:label "accrualPeriodicity"@en ;
rdfs:comment "The frequency with which items are added to a collection"@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/conformsTo
dct:conformsTo a owl:AnnotationProperty, rdf:Property ;
rdfs:label "Conforms To"@en ;
rdfs:comment "An established standard to which the described resource conforms."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/subject
dct:subject a owl:AnnotationProperty, rdf:Property ;
rdfs:label "Subject"@en ;
rdfs:comment "A topic of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/hasVersion
dct:hasVersion a owl:AnnotationProperty, rdf:Property ;
rdfs:label "Has Version"@en ;
rdfs:comment "A related resource that is a version, edition, or adaptation of the described resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/isPartOf
dct:isPartOf a owl:AnnotationProperty, rdf:Property ;
rdfs:label "Is Part Of"@en ;
rdfs:comment "A related resource in which the described resource is physically or logically included."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/provenance
dct:provenance a owl:AnnotationProperty, rdf:Property ;
rdfs:label "Provenance"@en ;
rdfs:comment "A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/relation
dct:relation a owl:AnnotationProperty, rdf:Property ;
rdfs:label "Relation"@en ;
rdfs:comment "A related resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/issued
dct:issued a owl:AnnotationProperty, rdf:Property ;
rdfs:label "Date Issued"@en ;
rdfs:comment "Date of formal issuance of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/dc/terms/rightsHolder
dct:rightsHolder a owl:AnnotationProperty, rdf:Property ;
rdfs:label "Rights Holder"@en ;
rdfs:comment "A person or organization owning or managing rights over the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> .
### http://purl.org/vocab/vann/usageNote
vann:usageNote rdf:type owl:AnnotationProperty .
### https://schema.org/affiliation
schema:affiliation rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://www.w3.org/ns/locn#geometry
locn:geometry a rdf:Property, owl:ObjectProperty;
rdfs:comment "Associates any resource with the corresponding geometry."@en;
rdfs:isDefinedBy <http://www.w3.org/ns/locn>;
rdfs:label "geometry"@en;
rdfs:range locn:Geometry .
### http://www.w3.org/ns/adms#sample
adms:sample
a rdf:Property, owl:ObjectProperty;
rdfs:comment "Links to a sample of an Asset (which is itself an Asset)."@en;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-adms>;
rdfs:label "sample"@en;
rdfs:domain <http://www.w3.org/ns/adms#Asset>;
rdfs:range <http://www.w3.org/ns/adms#Asset>.
### http://www.w3.org/ns/adms#identifier
adms:identifier
a rdf:Property, owl:ObjectProperty;
rdfs:comment "adms:identifier is used to link any resource to an instance of adms:Identifier which is its range. N.B. it is not appropriate to use dcterms:identifer to link to the Identifier class as its range is rdfs:Literal. ADMS uses this to provide any identifier for the Asset."@en;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-adms>;
rdfs:label "identifier"@en;
rdfs:range <http://www.w3.org/ns/adms#Identifier> .
### http://www.w3.org/ns/prov#specializationOf
prov:specializationOf
a owl:AnnotationProperty, owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:label "specializationOf" ;
rdfs:range prov:Entity .
### http://www.w3.org/ns/prov#generalizationOf
prov:generalizationOf
a owl:AnnotationProperty, owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:label "generalizationOf" ;
rdfs:range prov:Entity .
### http://www.w3.org/ns/prov#qualifiedAttribution
prov:qualifiedAttribution
a owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:range prov:Attribution ;
rdfs:label "qualifiedAttribution" .
### http://www.w3.org/ns/prov#wasGeneratedBy
prov:wasGeneratedBy
a owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:range prov:Activity ;
rdfs:label "wasGeneratedBy" .
### http://www.w3.org/ns/prov#wasUsedBy
prov:wasUsedBy
a owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:range prov:Activity ;
rdfs:label "wasUsedBy" .
### http://www.w3.org/ns/prov#used
prov:used
a owl:ObjectProperty ;
rdfs:domain prov:Activity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:comment "A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven ."@en ;
rdfs:range prov:Entity ;
rdfs:label "used" .
### http://www.w3.org/ns/prov#wasAttributedTo
prov:wasAttributedTo
a owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:comment "Attribution is the ascribing of an entity to an agent."@en ;
rdfs:range prov:Agent ;
rdfs:label "wasAttributedTo" .
### http://www.w3.org/ns/prov#wasDerivedFrom
prov:wasDerivedFrom
a owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:comment "The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable."@en ;
rdfs:range prov:Entity ;
rdfs:label "wasDerivedFrom" .
### http://www.w3.org/ns/prov#wasQuotedFrom
prov:wasQuotedFrom
a owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:comment "An entity is derived from an original entity by copying, or 'quoting', some or all of it."@en ;
rdfs:range prov:Entity ;
rdfs:subPropertyOf prov:wasDerivedFrom ;
rdfs:label "wasQuotedFrom" .
### http://www.w3.org/ns/prov#wasRevisionOf
prov:wasRevisionOf
a owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:comment "A revision is a derivation that revises an entity into a revised version."@en ;
rdfs:range prov:Entity ;
rdfs:subPropertyOf prov:wasDerivedFrom ;
rdfs:label "wasRevisionOf" .
### http://www.w3.org/ns/prov#hadPrimarySource
prov:hadPrimarySource
a owl:ObjectProperty ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:range prov:Entity ;
rdfs:subPropertyOf prov:wasDerivedFrom ;
rdfs:label "hadPrimarySource" .
### http://xmlns.com/foaf/0.1/homepage
foaf:homepage
a rdf:Property, owl:ObjectProperty ;
rdfs:label "homepage" ;
rdfs:comment "A homepage for some thing." ;
rdfs:subPropertyOf foaf:page, foaf:isPrimaryTopicOf ;
rdfs:isDefinedBy foaf: .
### http://xmlns.com/foaf/0.1/maker
foaf:maker
a rdf:Property, owl:ObjectProperty ;
rdfs:label "maker" ;
rdfs:comment "An agent that made this thing." ;
owl:equivalentProperty dct:creator ;
rdfs:range foaf:Agent ;
rdfs:isDefinedBy foaf: .
### http://xmlns.com/foaf/0.1/page
foaf:page
a rdf:Property, owl:ObjectProperty ;
rdfs:label "page" ;
rdfs:comment "A page or document about this thing." ;
rdfs:isDefinedBy foaf: .
### http://www.w3.org/2006/vcard/ns#hasEmail
vcard:hasEmail
a owl:ObjectProperty ;
rdfs:label "has email"^^xsd:string ;
rdfs:comment "To specify the electronic mail address for communication with the object"^^xsd:string .
### http://www.w3.org/2006/vcard/ns#hasTelephone
vcard:hasTelephone
a owl:ObjectProperty ;
rdfs:label "has telephone"^^xsd:string ;
rdfs:comment "To specify the telephone number for telephony communication with the object"^^xsd:string ;
owl:equivalentProperty vcard:tel .
### http://www.w3.org/2006/vcard/ns#hasValue
vcard:hasValue
a owl:ObjectProperty ;
rdfs:label "has value"@en ;
rdfs:comment "Used to indicate the resource value of an object property that requires property parameters"^^xsd:string .
### http://www.w3.org/2006/vcard/ns#hasAddress
vcard:hasAddress
a owl:ObjectProperty ;
rdfs:label "has address"^^xsd:string ;
rdfs:comment "To specify the components of the delivery address for the object"^^xsd:string .
### http://www.w3.org/ns/dcat#compressFormat
dcat:compressFormat
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "The compression format of the distribution in which the data is contained in a compressed form, e.g. to reduce the size of the downloadable file."@en ;
rdfs:domain dcat:Distribution ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/> ;
rdfs:label "compression format"@en ;
rdfs:range dct:MediaType ;
rdfs:subPropertyOf dct:format .
### http://www.w3.org/ns/dcat#downloadURL
dcat:downloadURL
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "The URL of the downloadable file in a given format. E.g. CSV file or RDF file. The format is indicated by the distribution's dct:format and/or dcat:mediaType."@en ;
rdfs:domain dcat:Distribution ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "download URL"@en ;
rdfs:range rdfs:Resource .
### http://www.w3.org/ns/dcat#endpointDescription
dcat:endpointDescription
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "A description of the service end-point, including its operations, parameters etc."@en ;
rdfs:domain dcat:DataService ;
rdfs:label "description of service end-point"@en .
### http://www.w3.org/ns/dcat#endpointURL
dcat:endpointURL
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "The root location or primary endpoint of the service (a web-resolvable IRI)."@en ;
rdfs:domain dcat:DataService ;
rdfs:label "service end-point"@en ;
rdfs:range rdfs:Resource .
### http://www.w3.org/ns/dcat#dataset
dcat:dataset
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "A collection of data that is listed in the catalog."@en ;
rdfs:label "dataset"@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/> ;
rdfs:range dcat:Dataset .
### http://www.w3.org/ns/dcat#contactPoint
dcat:contactPoint
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "Relevant contact information for the catalogued resource. Use of vCard is recommended."@en ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "contact point"@en ;
rdfs:range vcard:Kind .
### http://www.w3.org/ns/dcat#distribution
dcat:distribution
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "An available distribution of the dataset."@en ;
rdfs:domain dcat:Dataset ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "distribution"@en ;
rdfs:range dcat:Distribution .
### http://www.w3.org/ns/dcat#theme
dcat:theme
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "A main category of the resource. A resource can have multiple themes."@en ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "theme"@en ;
rdfs:subPropertyOf dct:subject .
### http://www.w3.org/ns/dcat#hasVersion
dcat:hasVersion
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "This resource has a more specific, versioned resource [PAV]."@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-3/> ;
rdfs:label "has version"@en ;
rdfs:subPropertyOf dct:hasVersion ;
rdfs:subPropertyOf prov:generalizationOf .
### http://www.w3.org/ns/dcat#inSeries
dcat:inSeries
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "A dataset series of which the dataset is part."@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-3/> ;
rdfs:label "in series"@en ;
rdfs:subPropertyOf dct:isPartOf .
### http://www.w3.org/ns/dcat#landingPage
dcat:landingPage
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "A Web page that can be navigated to in a Web browser to gain access to the catalog, a dataset, its distributions and/or additional information."@en ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "landing page"@en ;
rdfs:range foaf:Document ;
rdfs:subPropertyOf foaf:page .
### http://www.w3.org/ns/dcat#qualifiedRelation
dcat:qualifiedRelation
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "Link to a description of a relationship with another resource."@en ;
rdfs:domain dcat:Resource ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/> ;
rdfs:label "qualified relation"@en ;
rdfs:range dcat:Relationship .
### http://www.w3.org/ns/dcat#accessURL
dcat:accessURL
a rdf:Property ;
a owl:ObjectProperty ;
rdfs:comment "A URL of a resource that gives access to a distribution of the dataset. E.g. landing page, feed, SPARQL endpoint. Use for all cases except a simple download link, in which case downloadURL is preferred."@en ;
rdfs:domain dcat:Distribution ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "access address"@en ;
rdfs:range rdfs:Resource .
### http://www.w3.org/ns/dqv#hasQualityMeasurement
dqv:hasQualityMeasurement a owl:ObjectProperty, rdf:Property ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range dqv:QualityMeasurement ;
rdfs:comment "Refers to the performed quality measurements. Quality measurements can be performed to any kind of resource (e.g., a dataset, a linkset, a graph, a set of triples). However, in the DQV context, this property is generally expected to be used in statements in which subjects are instances of dcat:Dataset or dcat:Distribution."@en ;
rdfs:label "has quality measurement"@en .
### http://www.w3.org/ns/dqv#hasQualityMetadata
dqv:hasQualityMetadata a owl:ObjectProperty, rdf:Property ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range dqv:QualityMetadata ;
rdfs:comment "Refers to a grouping of quality information such as certificates, policies, measurements and annotations as a named graph. Quality information represented in such a grouping can pertain to any kind of resource (e.g., a dataset, a linkset, a graph, a set of triples). However, in the DQV context, this property is generally expected to be used in statements in which subjects are instances of dcat:Dataset or dcat:Distribution."@en ;
rdfs:label "has quality metadata"@en .
### http://www.w3.org/ns/dqv#hasQualityAnnotation
dqv:hasQualityAnnotation a owl:ObjectProperty, rdf:Property ;
rdfs:domain <http://www.w3.org/ns/dcat#Dataset> ;
rdfs:range dqv:QualityAnnotation ;
rdfs:comment "Refers to a quality annotation. Quality annotation can be applied to any kind of resource, e.g., a dataset, a linkset, a graph, a set of triples. However, in the DQV context, this property is generally expected to be used in statements in which subjects are instances of dcat:Dataset or dcat:Distribution."@en ;
rdfs:label "has quality annotation"@en .
### http://data.europa.eu/930/custodian
geodcat-ap:custodian a owl:ObjectProperty;
rdfs:label "custodian"@en;
rdfs:comment "Party that accepts accountability and responsibility for the data and ensures appropriate care and maintenance of the resource [[ISO-19115]]."@en;
rdfs:domain rdfs:Resource;
rdfs:isDefinedBy <http://data.europa.eu/930>;
rdfs:range foaf:Agent .
### http://data.europa.eu/930/distributor
geodcat-ap:distributor a owl:ObjectProperty;
rdfs:label "distributor"@en;
rdfs:comment "Party who distributes the resource [[ISO-19115]]."@en;
rdfs:domain rdfs:Resource;
rdfs:isDefinedBy <http://data.europa.eu/930>;
rdfs:range foaf:Agent .
### http://data.europa.eu/930/originator
geodcat-ap:originator a owl:ObjectProperty;
rdfs:label "originator"@en;
rdfs:comment """Party who created the resource [[ISO-19115]]."""@en;
rdfs:domain rdfs:Resource;
rdfs:isDefinedBy <http://data.europa.eu/930>;
rdfs:range foaf:Agent .
### http://data.europa.eu/930/principalInvestigator
geodcat-ap:principalInvestigator a owl:ObjectProperty;
rdfs:label "principal investigator"@en;
rdfs:comment "Key party responsible for gathering information and conducting research [[ISO-19115]]."@en;
rdfs:domain rdfs:Resource;
rdfs:isDefinedBy <http://data.europa.eu/930>;
rdfs:range foaf:Agent .
### http://data.europa.eu/930/processor
geodcat-ap:processor a owl:ObjectProperty;
rdfs:label "processor"@en;
rdfs:comment """Party who has processed the data in a manner such that the resource has been modified [[ISO-19115]]."""@en;
rdfs:domain rdfs:Resource;
rdfs:isDefinedBy <http://data.europa.eu/930>;
rdfs:range foaf:Agent .
### http://data.europa.eu/930/resourceProvider
geodcat-ap:resourceProvider a owl:ObjectProperty;
rdfs:label "resource provider"@en;
rdfs:comment """Party that supplies the resource [[ISO-19115]]."""@en;
rdfs:domain rdfs:Resource;
rdfs:isDefinedBy <http://data.europa.eu/930>;
rdfs:range foaf:Agent .
### http://data.europa.eu/930/user
geodcat-ap:user a owl:ObjectProperty;
rdfs:label "user"@en;
rdfs:comment "Party who uses the resource [[ISO-19115]]."@en;
rdfs:domain rdfs:Resource;
rdfs:isDefinedBy <http://data.europa.eu/930>;
rdfs:range foaf:Agent .
### https://w3id.org/idsa/core/contentType
<https://w3id.org/idsa/core/contentType> rdf:type owl:ObjectProperty ;
rdfs:domain <https://w3id.org/idsa/core/DigitalContent> ;
rdfs:range <https://w3id.org/idsa/core/ContentType> ;
rdfs:subPropertyOf dct:type ;
rdfs:comment "Detailed type, genre or interpretation of the Digital Content."@en ;
rdfs:label "content type"@en .
### https://w3id.org/idsa/core/dataTypeSchema
<https://w3id.org/idsa/core/dataTypeSchema> rdf:type owl:ObjectProperty ;
rdfs:domain <https://w3id.org/idsa/core/DataRepresentation> ;
rdfs:range <https://w3id.org/idsa/core/Resource> ;
rdfs:comment "Indicates the data type schema of the Representation."@en ;
rdfs:label "Data Type Schema"@en .
### https://w3id.org/idsa/core/endpointArtifact
<https://w3id.org/idsa/core/endpointArtifact> rdf:type owl:ObjectProperty ;
rdfs:domain <https://w3id.org/idsa/core/ConnectorEndpoint> ;
rdfs:range <https://w3id.org/idsa/core/Artifact> ;
rdfs:comment "Content instance mediated via this individual endpoint (1:1 mapping)."@en ;
rdfs:label "endpoint artifact"@en .
### https://w3id.org/idsa/core/instance
<https://w3id.org/idsa/core/instance> rdf:type owl:ObjectProperty ;
rdfs:domain dcat:Distribution ;
rdfs:range <https://w3id.org/idsa/core/RepresentationInstance> ;
rdfs:comment "Reference to an instance of given representation, i.e. inline value or file placeholder."@en ;
rdfs:label "instance"@en .
### https://w3id.org/idsa/core/representation
<https://w3id.org/idsa/core/representation> rdf:type owl:ObjectProperty ;
rdfs:domain <https://w3id.org/idsa/core/DigitalContent> ;
rdfs:range dcat:Distribution ;
rdfs:comment "Representation of the content."@en ;
rdfs:label "representation"@en .
### http://purl.org/linked-data/cube#structure
qb:structure
a rdf:Property, owl:ObjectProperty;
rdfs:label "structure"@en;
rdfs:comment "Indicates the structure to which this data set conforms"@en;
rdfs:range qb:DataStructureDefinition ;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#component
qb:component
a rdf:Property, owl:ObjectProperty;
rdfs:label "component specification"@en;
rdfs:comment "indicates a component specification which is included in the structure of the dataset"@en;
rdfs:domain qb:DataStructureDefinition;
rdfs:range qb:ComponentSpecification;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#measure
qb:measure
a rdf:Property, owl:ObjectProperty;
rdfs:label "measure"@en;
rdfs:comment "An alternative to qb:componentProperty which makes explicit that the component is a measure"@en;
rdfs:range qb:MeasureProperty;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://purl.org/linked-data/cube#concept
qb:concept
a rdf:Property, owl:ObjectProperty;
rdfs:label "concept"@en;
rdfs:comment "gives the concept which is being measured or indicated by a ComponentProperty"@en;
rdfs:domain qb:ComponentProperty;
rdfs:range skos:Concept;
rdfs:isDefinedBy <http://purl.org/linked-data/cube> .
### http://qudt.org/schema/qudt/unit
qudt:unit
a owl:ObjectProperty ;
rdfs:isDefinedBy <http://qudt.org/2.1/schema/qudt> ;
rdfs:label "unit" ;
rdfs:range qudt:Unit .
#################################################################
# Data properties
#################################################################
### http://www.w3.org/ns/adms#versionNotes
adms:versionNotes
a rdf:Property, owl:DatatypeProperty;
rdfs:comment "A description of changes between this version and the previous version of the Asset."@en;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-adms>;
rdfs:label "version info"@en;
rdfs:range rdfs:Literal.
### http://www.w3.org/ns/adms#schemaAgency
adms:schemaAgency
a rdf:Property, owl:DatatypeProperty;
rdfs:comment "The name of the agency that issued the identifier."@en;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-adms>;
rdfs:label "schema agency"@en;
rdfs:range rdfs:Literal.
### http://www.w3.org/2008/05/skos#notation
skos:notation
rdfs:label "notation"@en ;
rdfs:isDefinedBy <http://www.w3.org/2004/02/skos/core> ;
skos:definition "A notation, also known as classification code, is a string of characters such as \"T58.5\" or \"303.4833\" used to uniquely identify a concept within the scope of a given concept scheme."@en ;
skos:scopeNote "By convention, skos:notation is used with a typed literal in the object position of the triple."@en ;
a owl:DatatypeProperty, rdf:Property .
### http://xmlns.com/foaf/0.1/name
foaf:name
a rdf:Property, owl:DatatypeProperty ;
rdfs:label "name" ;
rdfs:comment "A name for some thing." ;
rdfs:range rdfs:Literal ;
rdfs:isDefinedBy foaf: .
### http://www.w3.org/2006/vcard/ns#fn
vcard:fn
a owl:DatatypeProperty ;
rdfs:label "formatted name"^^xsd:string ;
rdfs:comment "The formatted text corresponding to the name of the object" ;
rdfs:range xsd:string .
### http://www.w3.org/ns/dcat#byteSize
dcat:byteSize
a rdf:Property ;
a owl:DatatypeProperty ;
rdfs:comment "The size of a distribution in bytes."@en ;
rdfs:domain dcat:Distribution ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "byte size"@en ;
rdfs:range rdfs:Literal .
### http://www.w3.org/ns/dcat#spatialResolutionInMeters
dcat:spatialResolutionInMeters
a rdf:Property ;
a owl:DatatypeProperty ;
rdfs:label "Distribution - spatial resolution "@en ;
rdfs:comment "This property refers to the minimum spatial separation resolvable in a dataset, measured in meters."@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/> ;
vann:usageNote "Optional property. This property refers to the minimum spatial separation resolvable in a dataset distribution, measured in meters. . "@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/> .
### http://www.w3.org/ns/dcat#temporalResolution
dcat:temporalResolution
a rdf:Property ;
a owl:DatatypeProperty ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/> ;
vann:usageNote "Optional property. This property refers to the minimum time period resolvable in the dataset distribution . "@en ;
rdfs:comment "This property refers to the minimum time period resolvable in the dataset. ."@en ;
rdfs:label "temporal resolution"@en .
### http://www.w3.org/ns/dcat#keyword
dcat:keyword
a rdf:Property ;
a owl:DatatypeProperty ;
rdfs:comment "A keyword or tag describing a resource."@en ;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-dcat/> ;
rdfs:label "keyword"@en ;
rdfs:range rdfs:Literal .
### http://www.w3.org/ns/dcat#version
dcat:version
a rdf:Property ;
a owl:DatatypeProperty ;
rdfs:comment "The version indicator (name or identifier) of a resource."@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-3/> ;
rdfs:label "version"@en .
### http://www.w3.org/ns/dcat#bbox
dcat:bbox
a rdf:Property ;
a owl:DatatypeProperty ;
rdfs:domain dct:Location ;
rdfs:comment "The geographic bounding box of a spatial thing [SDW-BP]."@en ;
rdfs:isDefinedBy <https://www.w3.org/TR/vocab-dcat-2/> ;
rdfs:label "bounding box"@en ;
rdfs:range rdfs:Literal .
### https://w3id.org/idsa/core/accessURL
<https://w3id.org/idsa/core/accessURL> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/Endpoint> ;
rdfs:range xsd:anyURI ;
rdfs:comment "Access URL of an endpoint."@en ;
rdfs:label "access URL"@en ;
rdfs:seeAlso <https://tools.ietf.org/html/rfc3986#section-3> .
### https://w3id.org/idsa/core/byteSize
<https://w3id.org/idsa/core/byteSize> rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf dcat:byteSize ;
rdfs:domain <https://w3id.org/idsa/core/Artifact> ;
rdfs:range xsd:integer ;
rdfs:comment "Size of the Artifact in bytes."@en ;
rdfs:label "byte size"@en .
### https://w3id.org/idsa/core/checkSum
<https://w3id.org/idsa/core/checkSum> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/Artifact> ;
rdfs:range xsd:string ;
rdfs:comment "Checksum of the artifact"@en ;
rdfs:label "checksum"@en .
### https://w3id.org/idsa/core/contentStandard
<https://w3id.org/idsa/core/contentStandard> a owl:DatatypeProperty ;
rdfs:subPropertyOf dct:conformsTo ;
rdfs:range xsd:anyURI ;
rdfs:comment "IRI containing document, which defines the standard for the given Digital Content. The content is assumed to conform to that Standard."@en ;
rdfs:label "content standard"@en .
### https://w3id.org/idsa/core/dataType
<https://w3id.org/idsa/core/dataType> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/DataRepresentation> ;
rdfs:range xsd:anyURI ;
rdfs:comment "Indicates the data type of the Representation."@en ;
rdfs:label "Data type"@en .
### https://w3id.org/idsa/core/endpointDocumentation
<https://w3id.org/idsa/core/endpointDocumentation> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/Endpoint> ;
rdfs:range xsd:anyURI ;
rdfs:comment "IRI reference to a documentation of the endpoint, e.g., reference to an OpenAPI-based documentation."@en ;
rdfs:label "endpoint documentation"@en .
### https://w3id.org/idsa/core/endpointInformation
<https://w3id.org/idsa/core/endpointInformation> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/Endpoint> ;
rdfs:range xsd:string ;
rdfs:comment "Human-readable information and description of the endpoint."@en ;
rdfs:label "endpoint information"@en .
### https://w3id.org/idsa/core/fileName
<https://w3id.org/idsa/core/fileName> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/Artifact> ;
rdfs:range xsd:string ;
rdfs:comment "Name of the Artifact file."@en ;
rdfs:label "file name"@en .
### https://w3id.org/idsa/core/frameRate
<https://w3id.org/idsa/core/frameRate> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/VideoRepresentation> ;
rdfs:range xsd:decimal ;
rdfs:comment "Video frame rate, as frames/second."@en ;
rdfs:label "frame rate"@en .
### https://w3id.org/idsa/core/height
<https://w3id.org/idsa/core/height> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/ImageRepresentation> ;
rdfs:range xsd:decimal ;
rdfs:comment "Height of the visible frame."@en ;
rdfs:label "height"@en .
### https://w3id.org/idsa/core/path
<https://w3id.org/idsa/core/path> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/Endpoint> ;
rdfs:range xsd:string ;
rdfs:comment "Relative path, topic or queue at which the content is published by the related host."@en ;
rdfs:label "path"@en .
### https://w3id.org/idsa/core/samplingRate
<https://w3id.org/idsa/core/samplingRate> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/AudioRepresentation> ;
rdfs:range xsd:decimal ;
rdfs:comment "Audio sampling rate."@en ;
rdfs:label "sampling rate"@en .
### https://w3id.org/idsa/core/width
<https://w3id.org/idsa/core/width> rdf:type owl:DatatypeProperty ;
rdfs:domain <https://w3id.org/idsa/core/ImageRepresentation> ;
rdfs:range xsd:decimal ;
rdfs:comment "Width of the visible frame."@en ;
rdfs:label "width"@en .
### https://w3id.org/idsa/core/filenameExtension
<https://w3id.org/idsa/core/filenameExtension> rdf:type owl:DatatypeProperty ;
rdfs:domain dct:MediaType ;
rdfs:range xsd:string ;
rdfs:comment "Suffix of a file name, typically separated by a period, indicating the nature and intended processing of the file."@en ;
rdfs:label "filenameExtension"@en .
#################################################################
# Classes
#################################################################
### http://www.w3.org/ns/adms#Asset
adms:Asset
a owl:Class ;
rdfs:comment "An Asset is an abstract entity that reflects the intellectual content of the asset and represents those characteristics of the asset that are independent of its physical embodiment. This abstract entity combines the FRBR entities work (a distinct intellectual or artistic creation) and expression (the intellectual or artistic realization of a work). Assets can be versioned. Every time the intellectual content of an asset changes, the result is considered to be a new asset that can be linked to previous and next versions of the Asset. The physical embodiment of an Asset is called an Asset Distribution. A particular Asset may have zero or more Asset Distributions.."@en;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-adms>;
rdfs:label "Asset"@en;
rdfs:subClassOf dcat:Dataset.
### http://www.w3.org/ns/adms#Identifier
adms:Identifier
a owl:Class ;
rdfs:comment "This class is based on the UN/CEFACT Identifier complex type defined in See Section 5.8 of Core Components Data Type Catalogue Version 3.1 (http://www.unece.org/fileadmin/DAM/cefact/codesfortrade/CCTS/CCTS-DTCatalogueVersion3p1.pdf) In RDF this is expressed using the following properties: - the content string should be provided using skos:notation, datatyped with the identifier scheme (inclduing the version number if appropriate); - use dcterms:creator to link to a class describing the agency that manages the identifier scheme or adms:schemaAgency to provide the name as a literal. Although not part of the ADMS conceptual model, it may be useful to provide further properties to the Identifier class such as dcterms:created to provide the date on which the identifier was issued."@en;
rdfs:isDefinedBy <http://www.w3.org/TR/vocab-adms>;
rdfs:label "Identifier"@en.
### http://www.w3.org/ns/prov#Entity
prov:Entity
a owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:label "Entity" .
### http://www.w3.org/ns/prov#Activity
prov:Activity
a owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:label "Activity" .
### http://www.w3.org/ns/prov#Agent
prov:Agent
a owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:label "Agent" .
### http://www.w3.org/ns/prov#Attribution
prov:Attribution
a owl:Class ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-o#> ;
rdfs:comment "An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ]."@en ;
rdfs:label "Attribution" .
### http://www.w3.org/2006/vcard/ns#Home
vcard:Home
a owl:Class ;
rdfs:label "Home"^^xsd:string ;
rdfs:subClassOf vcard:Type ;
rdfs:comment "This implies that the property is related to an individual's personal life"^^xsd:string .
### http://www.w3.org/2006/vcard/ns#Individual
vcard:Individual
a owl:Class ;
rdfs:label "Individual"^^xsd:string ;
rdfs:subClassOf vcard:Kind ;
rdfs:comment "An object representing a single person or entity"^^xsd:string .
### http://www.w3.org/2006/vcard/ns#Kind
vcard:Kind
a owl:Class ;
rdfs:label "Kind"^^xsd:string ;
rdfs:comment "The parent class for all objects"^^xsd:string .
### http://www.w3.org/2006/vcard/ns#Organization
vcard:Organization
a owl:Class ;
rdfs:label "Organization"^^xsd:string ;
rdfs:subClassOf vcard:Kind ;
rdfs:comment """An object representing an organization. An organization is a single entity, and might represent a business or government, a department or division within a business or government, a club, an association, or the like."""^^xsd:string .
### http://www.w3.org/2006/vcard/ns#Type
vcard:Type
a owl:Class ;
rdfs:label "Type"^^xsd:string ;
rdfs:comment "Used for type codes. The URI of the type code must be used as the value for Type." .
### http://www.w3.org/2006/vcard/ns#Work
vcard:Work
a owl:Class ;
rdfs:label "Work"^^xsd:string ;
rdfs:subClassOf vcard:Type ;
rdfs:comment "This implies that the property is related to an individual's work place"^^xsd:string .
### http://purl.org/dc/terms/DCMIType
dct:DCMIType rdf:type owl:Class ;
rdfs:comment "The set of classes specified by the DCMI Type Vocabulary, used to categorize the nature or genre of the resource."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "DCMI Type Vocabulary"@en .
### http://purl.org/dc/terms/Frequency
dct:Frequency rdf:type owl:Class ;
rdfs:comment "A rate at which something recurs."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;
rdfs:label "Frequency"@en .
### http://purl.org/dc/terms/Location
dct:Location rdf:type owl:Class ;
rdfs:comment "A spatial region or named place."@en ;
rdfs:isDefinedBy <http://purl.org/dc/terms/> ;