-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdcat_ap_linkml.yaml
2032 lines (2031 loc) · 65.1 KB
/
dcat_ap_linkml.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: dcat-ap
description: 'This LinkML schema representation of DCAT-AP 3.0.0 was automatically
created from these [JSON-LD SHACL shapes](https://github.com/SEMICeu/DCAT-AP/blob/master/releases/3.0.0/shacl/dcat-ap-SHACL.jsonld)
using this Python script: https://github.com/StroemPhi/dcat-4C-ap/tree/main/src/dcat-ap_shacl_2_linkml.py.
NOTE: The JSON-LD SHACL constraints published with the [Juli 3.0.0 GitHub release](https://github.com/SEMICeu/DCAT-AP/releases/tag/3.0.0)
and in the [3.0.0. release branch](https://github.com/SEMICeu/DCAT-AP/tree/3.0.0)
are different from the ones in https://github.com/SEMICeu/DCAT-AP/tree/master/releases/3.0.0.
Also the TTL shapes provided in the latter in the HTML folder differ from the ones
in the SHACL folder, in that they declare dcat:Resource and dcatap:TemporalLiteral
as unions of the dcat:Resource subclasses respectively different XML Schema datatypes
for date and time. We address this with ''helper code'' in the conversion script. '
title: LinkML schema representation of DCAT-AP 3.0.0
todos:
- Think about how to add all the enums and their permissible values to constrain the
allowed instances of classes such as "Concept", "MediaType", etc. as defined in
https://semiceu.github.io/DCAT-AP/releases/3.0.0/#controlled-vocs. Using EnumBindings
(https://linkml.io/linkml-model/latest/docs/bindings/) seems best, but does not
yet work.
source: https://semiceu.github.io/DCAT-AP/releases/3.0.0
id: https://stroemphi.github.io/dcat-4C-ap/dcat_ap_linkml
imports:
- linkml:types
license: CC-BY 4.0
prefixes:
linkml: https://w3id.org/linkml/
foaf: http://xmlns.com/foaf/0.1/
prov: http://www.w3.org/ns/prov#
dcat: http://www.w3.org/ns/dcat#
dcterms: http://purl.org/dc/terms/
spdx: http://spdx.org/rdf/terms#
odrl: http://www.w3.org/ns/odrl/2/
eli: http://data.europa.eu/eli/ontology#
locn: http://www.w3.org/ns/locn#
time: http://www.w3.org/2006/time#
xsd: http://www.w3.org/2001/XMLSchema#
vcard: http://www.w3.org/2006/vcard/ns#
adms: http://www.w3.org/ns/adms#
dcatap: http://data.europa.eu/r5r/
qb: http://purl.org/linked-data/cube#
rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
rdfs: http://www.w3.org/2000/01/rdf-schema#
sh: http://www.w3.org/ns/shacl#
skos: http://www.w3.org/2004/02/skos/core#
vl: https://purl.eu/ns/shacl#
iana: https://www.iana.org/assignments/
default_prefix: linkmldcatap
default_range: string
types:
duration:
name: duration
conforms_to: https://www.w3.org/TR/xmlschema11-2/#duration
description: The datatype that represents durations of time.
base: str
uri: xsd:duration
pattern: -?P((([0-9]+Y([0-9]+M)?([0-9]+D)?|([0-9]+M)([0-9]+D)?|([0-9]+D))(T(([0-9]+H)([0-9]+M)?([0-9]+(\.[0-9]+)?S)?|([0-9]+M)([0-9]+(\.[0-9]+)?S)?|([0-9]+(\.[0-9]+)?S)))?)|(T(([0-9]+H)([0-9]+M)?([0-9]+(\.[0-9]+)?S)?|([0-9]+M)([0-9]+(\.[0-9]+)?S)?|([0-9]+(\.[0-9]+)?S))))
hexBinary:
name: hexBinary
conforms_to: https://www.w3.org/TR/xmlschema11-2/#hexBinary
description: The datatype that represents arbitrary hex-encoded binary data.
base: str
uri: xsd:hexBinary
pattern: ([0-9a-fA-F]{2})*
nonNegativeInteger:
name: nonNegativeInteger
conforms_to: https://www.w3.org/TR/xmlschema11-2/#nonNegativeInteger
description: The datatype that represents non-negative integers.
base: int
uri: xsd:nonNegativeInteger
pattern: ([\-+]?[0-9]+)
enums:
DatasetThemes:
name: DatasetThemes
see_also:
- https://op.europa.eu/s/zXIN
enum_uri: http://publications.europa.eu/resource/authority/data-theme
permissible_values:
Agriculture, fisheries, forestry and food:
text: Agriculture, fisheries, forestry and food
meaning: http://publications.europa.eu/resource/authority/data-theme/AGRI
Economy and finance:
text: Economy and finance
meaning: http://publications.europa.eu/resource/authority/data-theme/ECON
Education, culture and sport:
text: Education, culture and sport
meaning: http://publications.europa.eu/resource/authority/data-theme/EDUC
Energy:
text: Energy
meaning: http://publications.europa.eu/resource/authority/data-theme/ENER
Environment:
text: Environment
meaning: http://publications.europa.eu/resource/authority/data-theme/ENVI
Government and public sector:
text: Government and public sector
meaning: http://publications.europa.eu/resource/authority/data-theme/GOVE
Health:
text: Health
meaning: http://publications.europa.eu/resource/authority/data-theme/HEAL
International issues:
text: International issues
meaning: http://publications.europa.eu/resource/authority/data-theme/INTR
Justice, legal system and public safety:
text: Justice, legal system and public safety
meaning: http://publications.europa.eu/resource/authority/data-theme/JUST
Provisional data:
text: Provisional data
meaning: http://publications.europa.eu/resource/authority/data-theme/OP_DATPRO
Regions and cities:
text: Regions and cities
meaning: http://publications.europa.eu/resource/authority/data-theme/REGI
Population and society:
text: Population and society
meaning: http://publications.europa.eu/resource/authority/data-theme/SOCI
Science and technology:
text: Science and technology
meaning: http://publications.europa.eu/resource/authority/data-theme/TECH
Transport:
text: Transport
meaning: http://publications.europa.eu/resource/authority/data-theme/TRAN
TopLevelMediaTypes:
name: TopLevelMediaTypes
enum_uri: iana:top-level-media-types
permissible_values:
application:
text: application
audio:
text: audio
example:
text: example
font:
text: font
haptics:
text: haptics
image:
text: image
message:
text: message
model:
text: model
multipart:
text: multipart
text:
text: text
video:
text: video
slots:
access_URL:
name: access_URL
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:accessURL
access_rights:
name: access_rights
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:accessRights
access_service:
name: access_service
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:accessService
algorithm:
name: algorithm
description: This slot is described in more detail within the class in which it
is used.
slot_uri: spdx:algorithm
applicable_legislation:
name: applicable_legislation
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcatap:applicableLegislation
application_profile:
name: application_profile
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:conformsTo
availability:
name: availability
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcatap:availability
bbox:
name: bbox
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:bbox
beginning:
name: beginning
description: This slot is described in more detail within the class in which it
is used.
slot_uri: time:hasBeginning
byte_size:
name: byte_size
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:byteSize
catalogue:
name: catalogue
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:catalog
centroid:
name: centroid
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:centroid
change_type:
name: change_type
description: This slot is described in more detail within the class in which it
is used.
slot_uri: adms:status
checksum:
name: checksum
description: This slot is described in more detail within the class in which it
is used.
slot_uri: spdx:checksum
checksum_value:
name: checksum_value
description: This slot is described in more detail within the class in which it
is used.
slot_uri: spdx:checksumValue
compression_format:
name: compression_format
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:compressFormat
conforms_to:
name: conforms_to
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:conformsTo
contact_point:
name: contact_point
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:contactPoint
creator:
name: creator
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:creator
dataset_distribution:
name: dataset_distribution
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:distribution
description:
name: description
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:description
documentation:
name: documentation
description: This slot is described in more detail within the class in which it
is used.
slot_uri: foaf:page
download_URL:
name: download_URL
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:downloadURL
end:
name: end
description: This slot is described in more detail within the class in which it
is used.
slot_uri: time:hasEnd
end_date:
name: end_date
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:endDate
endpoint_URL:
name: endpoint_URL
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:endpointURL
endpoint_description:
name: endpoint_description
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:endpointDescription
format:
name: format
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:format
frequency:
name: frequency
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:accrualPeriodicity
geographical_coverage:
name: geographical_coverage
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:spatial
geometry:
name: geometry
description: This slot is described in more detail within the class in which it
is used.
slot_uri: locn:geometry
had_role:
name: had_role
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:hadRole
has_dataset:
name: has_dataset
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:dataset
has_part:
name: has_part
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:hasPart
has_policy:
name: has_policy
description: This slot is described in more detail within the class in which it
is used.
slot_uri: odrl:hasPolicy
has_version:
name: has_version
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:hasVersion
homepage:
name: homepage
description: This slot is described in more detail within the class in which it
is used.
slot_uri: foaf:homepage
identifier:
name: identifier
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:identifier
in_series:
name: in_series
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:inSeries
is_referenced_by:
name: is_referenced_by
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:isReferencedBy
keyword:
name: keyword
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:keyword
landing_page:
name: landing_page
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:landingPage
language:
name: language
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:language
licence:
name: licence
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:license
linked_schemas:
name: linked_schemas
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:conformsTo
listing_date:
name: listing_date
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:issued
media_type:
name: media_type
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:mediaType
modification_date:
name: modification_date
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:modified
name:
name: name
description: This slot is described in more detail within the class in which it
is used.
slot_uri: foaf:name
notation:
name: notation
description: This slot is described in more detail within the class in which it
is used.
slot_uri: skos:notation
other_identifier:
name: other_identifier
description: This slot is described in more detail within the class in which it
is used.
slot_uri: adms:identifier
packaging_format:
name: packaging_format
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:packageFormat
preferred_label:
name: preferred_label
description: This slot is described in more detail within the class in which it
is used.
slot_uri: skos:prefLabel
primary_topic:
name: primary_topic
description: This slot is described in more detail within the class in which it
is used.
slot_uri: foaf:primaryTopic
provenance:
name: provenance
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:provenance
publisher:
name: publisher
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:publisher
qualified_attribution:
name: qualified_attribution
description: This slot is described in more detail within the class in which it
is used.
slot_uri: prov:qualifiedAttribution
qualified_relation:
name: qualified_relation
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:qualifiedRelation
record:
name: record
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:record
related_resource:
name: related_resource
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:relation
relation:
name: relation
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:relation
release_date:
name: release_date
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:issued
rights:
name: rights
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:rights
sample:
name: sample
description: This slot is described in more detail within the class in which it
is used.
slot_uri: adms:sample
serves_dataset:
name: serves_dataset
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:servesDataset
service:
name: service
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:service
source:
name: source
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:source
source_metadata:
name: source_metadata
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:source
spatial_resolution:
name: spatial_resolution
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:spatialResolutionInMeters
start_date:
name: start_date
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:startDate
status:
name: status
description: This slot is described in more detail within the class in which it
is used.
slot_uri: adms:status
temporal_coverage:
name: temporal_coverage
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:temporal
temporal_resolution:
name: temporal_resolution
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:temporalResolution
theme:
name: theme
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:theme
themes:
name: themes
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:themeTaxonomy
title:
name: title
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:title
type:
name: type
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcterms:type
version:
name: version
description: This slot is described in more detail within the class in which it
is used.
slot_uri: dcat:version
version_notes:
name: version_notes
description: This slot is described in more detail within the class in which it
is used.
slot_uri: adms:versionNotes
was_generated_by:
name: was_generated_by
description: This slot is described in more detail within the class in which it
is used.
slot_uri: prov:wasGeneratedBy
classes:
Activity:
name: Activity
description: See [DCAT-AP specs:Activity](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Activity)
abstract: false
class_uri: prov:Activity
Agent:
name: Agent
description: See [DCAT-AP specs:Agent](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Agent)
is_a: SupportiveEntity
abstract: false
slots:
- name
- type
slot_usage:
name:
name: name
description: A name of the agent.
slot_uri: foaf:name
range: string
required: true
multivalued: true
inlined_as_list: true
type:
name: type
description: The nature of the agent.
slot_uri: dcterms:type
range: Concept
required: false
recommended: true
multivalued: false
inlined_as_list: true
class_uri: foaf:Agent
Attribution:
name: Attribution
description: See [DCAT-AP specs:Attribution](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Attribution)
is_a: SupportiveEntity
abstract: false
class_uri: prov:Attribution
Catalogue:
name: Catalogue
description: See [DCAT-AP specs:Catalogue](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Catalogue)
abstract: false
slots:
- applicable_legislation
- catalogue
- creator
- description
- geographical_coverage
- has_dataset
- has_part
- homepage
- language
- licence
- modification_date
- publisher
- record
- release_date
- rights
- service
- temporal_coverage
- themes
- title
slot_usage:
applicable_legislation:
name: applicable_legislation
description: The legislation that mandates the creation or management of the
Catalog.
slot_uri: dcatap:applicableLegislation
range: LegalResource
required: false
multivalued: true
inlined_as_list: true
catalogue:
name: catalogue
description: A catalogue whose contents are of interest in the context of
this catalogue.
slot_uri: dcat:catalog
range: Catalogue
required: false
multivalued: true
inlined_as_list: true
creator:
name: creator
description: An entity responsible for the creation of the catalogue.
slot_uri: dcterms:creator
range: Agent
required: false
multivalued: false
inlined_as_list: true
description:
name: description
description: A free-text account of the Catalogue.
slot_uri: dcterms:description
range: string
required: true
multivalued: true
inlined_as_list: true
geographical_coverage:
name: geographical_coverage
description: A geographical area covered by the Catalogue.
slot_uri: dcterms:spatial
range: Location
required: false
multivalued: true
inlined_as_list: true
has_dataset:
name: has_dataset
description: A Dataset that is part of the Catalogue.
slot_uri: dcat:dataset
range: Dataset
required: false
multivalued: true
inlined_as_list: true
has_part:
name: has_part
description: A related Catalogue that is part of the described Catalogue.
slot_uri: dcterms:hasPart
range: Catalogue
required: false
multivalued: true
inlined_as_list: true
homepage:
name: homepage
description: A web page that acts as the main page for the Catalogue.
slot_uri: foaf:homepage
range: Document
required: false
recommended: true
multivalued: false
inlined_as_list: true
language:
name: language
description: A language used in the textual metadata describing titles, descriptions,
etc. of the Datasets in the Catalogue.
slot_uri: dcterms:language
range: LinguisticSystem
required: false
recommended: true
multivalued: true
inlined_as_list: true
licence:
name: licence
description: A licence under which the Catalogue can be used or reused.
slot_uri: dcterms:license
range: LicenseDocument
required: false
multivalued: false
inlined_as_list: true
modification_date:
name: modification_date
description: The most recent date on which the Catalogue was modified.
slot_uri: dcterms:modified
range: string
required: false
recommended: true
multivalued: false
inlined_as_list: false
publisher:
name: publisher
description: An entity (organisation) responsible for making the Catalogue
available.
slot_uri: dcterms:publisher
range: Agent
required: true
multivalued: false
inlined_as_list: true
record:
name: record
description: A Catalogue Record that is part of the Catalogue.
slot_uri: dcat:record
range: CatalogueRecord
required: false
multivalued: true
inlined_as_list: true
release_date:
name: release_date
description: The date of formal issuance (e.g., publication) of the Catalogue.
slot_uri: dcterms:issued
range: string
required: false
recommended: true
multivalued: false
inlined_as_list: false
rights:
name: rights
description: A statement that specifies rights associated with the Catalogue.
slot_uri: dcterms:rights
range: RightsStatement
required: false
multivalued: false
inlined_as_list: true
service:
name: service
description: A site or end-point (Data Service) that is listed in the Catalogue.
slot_uri: dcat:service
range: DataService
required: false
multivalued: true
inlined_as_list: true
temporal_coverage:
name: temporal_coverage
description: A temporal period that the Catalogue covers.
slot_uri: dcterms:temporal
range: PeriodOfTime
required: false
multivalued: true
inlined_as_list: true
themes:
name: themes
description: A knowledge organization system used to classify the Resources
that are in the Catalogue.
slot_uri: dcat:themeTaxonomy
range: ConceptScheme
required: false
recommended: true
multivalued: true
inlined_as_list: true
title:
name: title
description: A name given to the Catalogue.
slot_uri: dcterms:title
range: string
required: true
multivalued: true
inlined_as_list: true
class_uri: dcat:Catalog
CatalogueRecord:
name: CatalogueRecord
description: See [DCAT-AP specs:CatalogueRecord](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#CatalogueRecord)
abstract: false
slots:
- application_profile
- change_type
- description
- language
- listing_date
- modification_date
- primary_topic
- source_metadata
- title
slot_usage:
application_profile:
name: application_profile
description: An Application Profile that the Catalogued Resource's metadata
conforms to.
slot_uri: dcterms:conformsTo
range: Standard
required: false
recommended: true
multivalued: true
inlined_as_list: true
change_type:
name: change_type
description: The status of the catalogue record in the context of editorial
flow of the dataset and data service descriptions.
slot_uri: adms:status
range: Concept
required: false
recommended: true
multivalued: false
inlined_as_list: true
description:
name: description
description: A free-text account of the record. This property can be repeated
for parallel language versions of the description.
slot_uri: dcterms:description
range: string
required: false
multivalued: true
inlined_as_list: true
language:
name: language
description: A language used in the textual metadata describing titles, descriptions,
etc. of the Catalogued Resource.
slot_uri: dcterms:language
range: LinguisticSystem
required: false
multivalued: true
inlined_as_list: true
listing_date:
name: listing_date
description: The date on which the description of the Resource was included
in the Catalogue.
slot_uri: dcterms:issued
range: string
required: false
recommended: true
multivalued: false
inlined_as_list: true
modification_date:
name: modification_date
description: The most recent date on which the Catalogue entry was changed
or modified.
slot_uri: dcterms:modified
range: string
required: true
multivalued: false
inlined_as_list: false
primary_topic:
name: primary_topic
description: A link to the Dataset, Data service or Catalog described in the
record.
slot_uri: foaf:primaryTopic
range: CataloguedResource
required: true
multivalued: false
inlined_as_list: false
source_metadata:
name: source_metadata
description: The original metadata that was used in creating metadata for
the Dataset, Data Service or Dataset Series.
slot_uri: dcterms:source
range: CatalogueRecord
required: false
multivalued: false
inlined_as_list: true
title:
name: title
description: A name given to the Catalogue Record.
slot_uri: dcterms:title
range: string
required: false
multivalued: true
inlined_as_list: true
class_uri: dcat:CatalogRecord
CataloguedResource:
name: CataloguedResource
description: See [DCAT-AP specs:CataloguedResource](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#CataloguedResource)
abstract: true
class_uri: dcat:Resource
Checksum:
name: Checksum
description: See [DCAT-AP specs:Checksum](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Checksum)
is_a: SupportiveEntity
abstract: false
slots:
- algorithm
- checksum_value
slot_usage:
algorithm:
name: algorithm
description: The algorithm used to produce the subject Checksum.
slot_uri: spdx:algorithm
range: ChecksumAlgorithm
required: true
multivalued: false
inlined_as_list: true
checksum_value:
name: checksum_value
description: A lower case hexadecimal encoded digest value produced using
a specific algorithm.
slot_uri: spdx:checksumValue
range: hexBinary
required: true
multivalued: false
inlined_as_list: true
class_uri: spdx:Checksum
ChecksumAlgorithm:
name: ChecksumAlgorithm
description: See [DCAT-AP specs:ChecksumAlgorithm](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#ChecksumAlgorithm)
is_a: SupportiveEntity
abstract: false
class_uri: spdx:ChecksumAlgorithm
Concept:
name: Concept
description: See [DCAT-AP specs:Concept](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Concept)
is_a: SupportiveEntity
abstract: false
slots:
- preferred_label
slot_usage:
preferred_label:
name: preferred_label
description: A preferred label of the concept.
slot_uri: skos:prefLabel
range: string
required: true
multivalued: true
inlined_as_list: true
class_uri: skos:Concept
ConceptScheme:
name: ConceptScheme
description: See [DCAT-AP specs:ConceptScheme](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#ConceptScheme)
is_a: SupportiveEntity
abstract: false
slots:
- title
slot_usage:
title:
name: title
description: A name of the concept scheme.
slot_uri: dcterms:title
range: string
required: true
multivalued: true
inlined_as_list: true
class_uri: skos:ConceptScheme
DataService:
name: DataService
description: See [DCAT-AP specs:DataService](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#DataService)
abstract: false
slots:
- access_rights
- applicable_legislation
- conforms_to
- contact_point
- description
- documentation
- endpoint_URL
- endpoint_description
- format
- keyword
- landing_page
- licence
- publisher
- serves_dataset
- theme
- title
slot_usage:
access_rights:
name: access_rights
description: Information regarding access or restrictions based on privacy,
security, or other policies.
slot_uri: dcterms:accessRights
range: RightsStatement
required: false
multivalued: false
inlined_as_list: true
applicable_legislation:
name: applicable_legislation
description: The legislation that mandates the creation or management of the
Data Service.
slot_uri: dcatap:applicableLegislation
range: LegalResource
required: false
multivalued: true
inlined_as_list: true
conforms_to:
name: conforms_to
description: An established (technical) standard to which the Data Service
conforms.
slot_uri: dcterms:conformsTo
range: Standard
required: false
recommended: true
multivalued: true
inlined_as_list: true
contact_point:
name: contact_point
description: Contact information that can be used for sending comments about
the Data Service.
slot_uri: dcat:contactPoint
range: Kind