-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdcat_ap_plus.yaml
More file actions
2763 lines (2761 loc) · 86 KB
/
dcat_ap_plus.yaml
File metadata and controls
2763 lines (2761 loc) · 86 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
---
id: https://w3id.org/nfdi-de/dcat-ap-plus/
version: "0.1.0rc3.post21.dev0+913fb36" # Managed by dynamic-versioning. Don't change this line!
name: dcat-ap-plus
description: >-
This metadata schema is an Extension of the DCAT Application Profile
for Providing Links to Use-case Specific Context. It allows to provide additional
metadata regarding: which kind(s) of entity(s) or activity(s) were evaluated (the
dcat:Dataset is about), which kind of activity generated the dcat:Dataset, which
kind of instruments were used in the dataset generating activity, in which surrounding
(e.g. a laboratory) and according to which plan the dataset generating activity
took place, as well as regarding which kind(s) of qualitative and quantitative characteristic
were attributed to the evaluated entity or evaluated activity and to the used instruments.
title: DCAT-AP-PLUS
todos:
- Think about how to add all the other 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.
- Check if https://github.com/linkml/linkml/issues/1813 is closed and range unions
are validatable
see_also:
- https://github.com/StroemPhi/dcat-4C-ap
- https://github.com/HendrikBorgelt/DCAT-ap_as_LinkML_template/blob/main/src/dcatlinkml/schema/dcatlinkml.yaml
- https://gitlab.com/opensourcelab/scientificdata/scidats/-/blob/feature/linkml-schemata/schemata/metadata_model_scidats_dcat_ap.yaml?ref_type=heads
license: CC-BY 4.0
imports:
- linkml:types
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/
epos: https://www.epos-eu.org/epos-dcat-ap#
schema: http://schema.org/
dcatapplus: https://w3id.org/nfdi-de/dcat-ap-plus/
BFO: http://purl.obolibrary.org/obo/BFO_
OBI: http://purl.obolibrary.org/obo/OBI_
IAO: http://purl.obolibrary.org/obo/IAO_
SIO: http://semanticscience.org/resource/SIO_
NCIT: http://purl.obolibrary.org/obo/NCIT_
SOSA: http://www.w3.org/ns/sosa/
AFE: http://purl.allotrope.org/ontologies/equipment#AFE_
qudt: http://qudt.org/schema/qudt/
ex: http://example.org/
default_prefix: dcatapplus
default_range: string
subsets:
domain_agnostic_core:
description: The elements of this subset are considered the core layer of our
DCAT-AP extension.
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:
AGRI:
text: AGRI
description: Agriculture, fisheries, forestry and food
meaning: http://publications.europa.eu/resource/authority/data-theme/AGRI
ECON:
text: ECON
description: Economy and finance
meaning: http://publications.europa.eu/resource/authority/data-theme/ECON
EDUC:
text: EDUC
description: Education, culture and sport
meaning: http://publications.europa.eu/resource/authority/data-theme/EDUC
ENER:
text: ENER
description: Energy
meaning: http://publications.europa.eu/resource/authority/data-theme/ENER
ENVI:
text: ENVI
description: Environment
meaning: http://publications.europa.eu/resource/authority/data-theme/ENVI
GOVE:
text: GOVE
description: Government and public sector
meaning: http://publications.europa.eu/resource/authority/data-theme/GOVE
HEAL:
text: HEAL
description: Health
meaning: http://publications.europa.eu/resource/authority/data-theme/HEAL
INTR:
text: INTR
description: International issues
meaning: http://publications.europa.eu/resource/authority/data-theme/INTR
JUST:
text: JUST
description: Justice, legal system and public safety
meaning: http://publications.europa.eu/resource/authority/data-theme/JUST
OP_DATPRO:
text: OP_DATPRO
description: Provisional data
meaning: http://publications.europa.eu/resource/authority/data-theme/OP_DATPRO
REGI:
text: REGI
description: Regions and cities
meaning: http://publications.europa.eu/resource/authority/data-theme/REGI
SOCI:
text: SOCI
description: Population and society
meaning: http://publications.europa.eu/resource/authority/data-theme/SOCI
TECH:
text: TECH
description: Science and technology
meaning: http://publications.europa.eu/resource/authority/data-theme/TECH
TRAN:
text: TRAN
description: 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
QUDTQuantityKindEnum:
name: QUDTQuantityKindEnum
implements:
- owl:NamedIndividual
description: Possible kinds of quantifiable attribute types provided as QUDT QualityKind
instances.
todos:
- 'Dynamic enums (https://linkml.io/linkml/schemas/enums.html#dynamic-enums) should
be used to constrain the range of the type slot instead of using the default
DefinedTerm as range. This will be done in profiles of this schema where we
define Activity subclasses, e.g. NMRSpectroscopy. seeAlso: https://github.com/linkml/linkml-model/blob/main/tests/input/examples/schema_definition-enum_bindings-1.yaml'
in_subset:
- domain_agnostic_core
reachable_from:
source_ontology: http://qudt.org/2.1/vocab/quantitykind
source_nodes:
- qudt:QuantityKind
relationship_types:
- rdf:type
is_direct: true
QUDTUnitEnum:
name: QUDTUnitEnum
implements:
- owl:NamedIndividual
description: Possible kinds of QUDT unit instances.
todos:
- 'Dynamic enums (https://linkml.io/linkml/schemas/enums.html#dynamic-enums) should
be used to constrain the range of the type slot instead of using the default
DefinedTerm as range. This will be done in profiles of this schema where we
define Activity subclasses, e.g. NMRSpectroscopy. seeAlso: https://github.com/linkml/linkml-model/blob/main/tests/input/examples/schema_definition-enum_bindings-1.yaml'
in_subset:
- domain_agnostic_core
reachable_from:
source_ontology: https://qudt.org/vocab/unit/
source_nodes:
- qudt:QuantityKind
relationship_types:
- rdf:type
is_direct: true
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
carried_out_by:
name: carried_out_by
description: The slot to specify the AgenticEntity that played a certain part
in carrying out the Activity, either via having a specific role, function or
disposition that was realized in the Activity.
in_subset:
- domain_agnostic_core
slot_uri: prov:wasAssociatedWith
range: AgenticEntity
recommended: true
multivalued: true
inlined_as_list: true
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
evaluated_activity:
name: evaluated_activity
description: The slot to specify the Activity about which the DataGeneratingActivity
produced information.
in_subset:
- domain_agnostic_core
is_a: had_input_activity
slot_uri: prov:wasInformedBy
range: EvaluatedActivity
recommended: true
multivalued: true
inlined_as_list: true
evaluated_entity:
name: evaluated_entity
description: The slot to specify the Entity about which the DataGeneratingActivity
produced information.
in_subset:
- domain_agnostic_core
is_a: had_input_entity
slot_uri: prov:used
range: EvaluatedEntity
recommended: true
multivalued: true
inlined_as_list: true
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_input_activity:
name: had_input_activity
description: The slot to provide a previous Activity that informed the Activity
by being causally via a shared participant.
in_subset:
- domain_agnostic_core
slot_uri: prov:wasInformedBy
range: Activity
recommended: true
multivalued: true
inlined_as_list: true
had_input_entity:
name: had_input_entity
description: The slot to specify the Entity that was used as an input of an Activity
that is to be changed, consumed or transformed.
in_subset:
- domain_agnostic_core
slot_uri: prov:used
range: Entity
recommended: true
multivalued: true
inlined_as_list: true
had_output_entity:
name: had_output_entity
description: The slot to specify the Entity that was generated as an output of
an Activity.
in_subset:
- domain_agnostic_core
slot_uri: prov:generated
range: Entity
recommended: true
multivalued: true
inlined_as_list: true
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_qualitative_attribute:
name: has_qualitative_attribute
description: The slot to relate a qualitative attribute to an EvaluatedEntity,
EvaluatedActivity or AgenticEntity
in_subset:
- domain_agnostic_core
slot_uri: dcterms:relation
range: QualitativeAttribute
recommended: true
multivalued: true
inlined_as_list: true
has_quantitative_attribute:
name: has_quantitative_attribute
description: The slot to relate a quantitative attribute to an EvaluatedEntity,
EvaluatedActivity or AgenticEntity
in_subset:
- domain_agnostic_core
slot_uri: dcterms:relation
range: QuantitativeAttribute
recommended: true
multivalued: true
inlined_as_list: true
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
id:
name: id
description: A slot to provide an URI for an entity within this schema.
in_subset:
- domain_agnostic_core
identifier: true
range: uriorcurie
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_about_activity:
name: is_about_activity
description: A slot to provide the EvaluatedActivity a Dataset is about.
in_subset:
- domain_agnostic_core
exact_mappings:
- IAO:0000136
slot_uri: dcterms:subject
range: EvaluatedActivity
recommended: true
multivalued: true
inlined_as_list: true
is_about_entity:
name: is_about_entity
description: A slot to provide the EvaluatedEntity a Dataset is about.
in_subset:
- domain_agnostic_core
exact_mappings:
- IAO:0000136
slot_uri: dcterms:subject
range: EvaluatedEntity
recommended: true
multivalued: true
inlined_as_list: true
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
occurred_in:
name: occurred_in
description: The slot to specify the Surrounding in which an Activity took place.
in_subset:
- domain_agnostic_core
slot_uri: prov:atLocation
range: Surrounding
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
part_of:
name: part_of
description: A slot to specify a related resource in which the described resource
is physically or logically included.
in_subset:
- domain_agnostic_core
slot_uri: dcterms:isPartOf
inverse: has_part
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
rdf_type:
name: rdf_type
description: The slot to specify the ontology class that is instantiated by an
entity.
in_subset:
- domain_agnostic_core
slot_uri: rdf:type
range: DefinedTerm
recommended: true
inlined: true
realized_plan:
name: realized_plan
description: The slot to specify the Plan (i.e. directive information or procedure)
that was realized by an Activity.
in_subset:
- domain_agnostic_core
slot_uri: prov:used
range: Plan
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
value:
name: value
description: A slot to provide the literal value of an attribute.
in_subset:
- domain_agnostic_core
slot_uri: prov:value
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)
notes:
- The specified properties (slots) of this class are part of our extension of
the DCAT-AP.
in_subset:
- domain_agnostic_core
mixins:
- ClassifierMixin
slots:
- id
- title
- description
- other_identifier
- has_part
- had_input_entity
- had_output_entity
- had_input_activity
- carried_out_by
- has_qualitative_attribute
- has_quantitative_attribute
- part_of
slot_usage:
title:
description: The slot to provide a title for the Activity.
multivalued: true
inlined_as_list: true
notes:
- not in DCAT-AP
description:
description: The slot to provide a description for the Activity.
multivalued: true
inlined_as_list: true
notes:
- not in DCAT-AP
has_part:
range: Activity
description: The slot to provide an Activity that is part of the Activity.
multivalued: true
inlined_as_list: true
notes:
- not in DCAT-AP
part_of:
range: Activity
description: The slot to provide an Activity of which the Activity is a part.
multivalued: true
inlined_as_list: true
notes:
- not in DCAT-AP
other_identifier:
range: Identifier
description: The slot to provide a secondary identifier of the Activity.
multivalued: true
inlined_as_list: true
notes:
- not in DCAT-AP
has_qualitative_attribute:
notes:
- not in DCAT-AP
has_quantitative_attribute:
notes:
- not in DCAT-AP
had_input_entity:
notes:
- not in DCAT-AP
had_output_entity:
notes:
- not in DCAT-AP
had_input_activity:
notes:
- not in DCAT-AP
carried_out_by:
notes:
- not in DCAT-AP
class_uri: prov:Activity
Agent:
name: Agent
description: See [DCAT-AP specs:Agent](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Agent)
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
AgenticEntity:
name: AgenticEntity
description: An entity that is somehow responsible for an Activity to take place.
in_subset:
- domain_agnostic_core
mixins:
- ClassifierMixin
slots:
- id
- title
- description
- other_identifier
- has_qualitative_attribute
- has_quantitative_attribute
- has_part
- part_of
slot_usage:
has_part:
name: has_part
description: The slot to specify parts of an AgenticEntity that are themselves
AgenticEntities.
range: AgenticEntity
multivalued: true
inlined: true
inlined_as_list: true
part_of:
name: part_of
description: The slot to provide the AgenticEntity of which theAgenticEntity
is a part.
notes:
- not in DCAT-AP
range: AgenticEntity
multivalued: true
inlined_as_list: true
other_identifier:
name: other_identifier
description: A slot to provide a secondary identifier for an Instrument.
range: Identifier
required: false
multivalued: true
inlined_as_list: true
class_uri: prov:Agent
AnalysisDataset:
name: AnalysisDataset
description: A Dataset that was generated by an analysis of some previously generated
data. For example, a dataset that contains the data of an assignment of a chemical
structure to a sample based on the spectral data obtained from the sample is
an AnalyticalDataset.
in_subset:
- domain_agnostic_core
is_a: Dataset
slot_usage:
was_generated_by:
name: was_generated_by
range: DataAnalysis
multivalued: true
inlined_as_list: true
class_uri: dcat:Dataset
AnalysisSourceData:
name: AnalysisSourceData
description: Information that was evaluated within a DataAnalysis.
in_subset:
- domain_agnostic_core
is_a: EvaluatedEntity
slot_usage:
was_generated_by:
name: was_generated_by
description: A slot to provide the Activity which created the AnalysisSourceData.
range: DataGeneratingActivity
multivalued: true
inlined_as_list: true
class_uri: prov:Entity
Any:
name: Any
description: This abstract class is needed to create the union of Dataset, DatasetSeries,
Catalogue and DataService for the range of the slot [primary_topic](https://nfdi-de.github.io/chem-dcat-ap/elements/primary_topic/).
slots:
- title
- description
class_uri: linkml:Any
Attribution:
name: Attribution
description: See [DCAT-AP specs:Attribution](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Attribution)
is_a: SupportiveEntity
slots:
- title
- description
class_uri: prov:Attribution
Catalogue:
name: Catalogue
description: See [DCAT-AP specs:Catalogue](https://semiceu.github.io/DCAT-AP/releases/3.0.0/#Catalogue)
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