-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdsv.ttl
More file actions
2006 lines (1877 loc) · 105 KB
/
Copy pathdsv.ttl
File metadata and controls
2006 lines (1877 loc) · 105 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://model.ccmm.cz/research-data/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix dct: <http://purl.org/dc/terms/>.
@prefix dsv: <https://w3id.org/dsv#>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix skos: <http://www.w3.org/2004/02/skos/core#>.
@prefix vann: <http://purl.org/vocab/vann/>.
@prefix cardinality: <https://w3id.org/dsv/cardinality#>.
@prefix requirement: <https://w3id.org/dsv/requirement-level#>.
@prefix role: <https://w3id.org/dsv/class-role#>.
@prefix prof: <http://www.w3.org/ns/dx/prof/>.
<https://model.ccmm.cz/research-data/> a prof:Profile, dsv:ApplicationProfile.
:Dataset dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Conjunto de datos"@es, "Dataset"@en, "Dataset"@it, "Datová sada"@cs, "Jeu de données"@fr, "Σύνολο Δεδομένων"@el, "قائمة بيانات"@ar, "データセット"@ja, "Datasæt"@da;
skos:definition "1つのエージェントによって公開またはキュレートされ、1つ以上の形式でアクセスまたはダウンロードできるデータの集合。"@ja, "A conceptual entity that represents the information published. "@en, "Konceptuální entita představující publikovaná data."@cs, "Raccolta di dati, pubblicati o curati da un'unica fonte, disponibili per l'accesso o il download in uno o più formati."@it, "Una colección de datos, publicados o conservados por una única fuente, y disponibles para ser accedidos o descargados en uno o más formatos."@es, "Une collection de données, publiée ou élaborée par une seule source, et disponible pour accès ou téléchargement dans un ou plusieurs formats."@fr, "Μία συλλογή από δεδομένα, δημοσιευμένη ή επιμελημένη από μία και μόνο πηγή, διαθέσιμη δε προς πρόσβαση ή μεταφόρτωση σε μία ή περισσότερες μορφές."@el, "قائمة بيانات منشورة أو مجموعة من قبل مصدر ما و متاح الوصول إليها أو تحميلها"@ar, "En samling af data, udgivet eller udvalgt og arrangeret af en enkelt kilde og som er til råde for adgang til eller download af i en eller flere repræsentationer."@da;
dsv:specializes :Resource;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Dataset>;
a dsv:ClassProfile.
:Agent dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Agent>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Agent>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Agent>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Agent>
];
a dsv:ClassProfile.
:Person dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "Physical person. "@en;
skos:scopeNote ""@en;
dsv:specializes :Agent;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <http://www.w3.org/ns/prov#Person>
];
a dsv:ClassProfile;
dsv:class <http://www.w3.org/ns/prov#Person>.
:Organization dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "Represents a collection of people organized together into a community or other social, commercial or political structure. The group has some common purpose or reason for existence which goes beyond the set of people belonging to it and can act as an Agent. Organizations are often decomposable into hierarchical structures. "@en;
dsv:specializes :Agent;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Agent>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <http://www.w3.org/ns/prov#Organization>
];
a dsv:ClassProfile;
dsv:class <http://www.w3.org/ns/prov#Organization>.
:TermsOfUse dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Terms of use"@en;
skos:definition "Terms of use defines overall conditions and rights regarding access and usage of dataset. "@en;
skos:scopeNote ""@en;
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/datacite#Rights>.
:FundingReference dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#FundingReference>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#FundingReference>
];
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/datacite#FundingReference>.
:Distribution dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "This represents a general availability of a dataset. It implies no information about the actual access method of the data, i.e., whether by direct download, API, or through a Web page. This is an abstract type. Use its subclasses to determine downloadable file or data service."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution>
];
a dsv:ClassProfile.
:ValidationResult dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Validation result"@en;
skos:definition "Class describing the result of validation testing. It may include validation of metadata, data and/or web services accessing the data."@en;
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#ValidationResult>.
:Subject dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "Recommended approach is to use controlled list values, preferably in the form of IRI. "@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#Subject>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#Subject>
];
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/datacite#Subject>.
:RelatedResource dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Related resource"@en;
skos:definition "Resource represents any resource, physical or digital, that is related to the described dataset. "@en;
skos:scopeNote "Class is used for description of the resource together with the type of relation, for which is used value from codelist https://vocabs.ccmm.cz/registry/codelist/RelationType/. Distributions of the datasets SHALL NOT be modeled as related resource, but as a distribution. Use qualified resource property to link to the dataset class. \nExamples of resources: other related dataset, used methodology, instrument used for measurement, conference or conference paper etc..."@en;
dsv:specializes :Resource;
a dsv:ClassProfile;
dsv:class rdfs:Resource.
:ResourceToAgentRelationship dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Resource to agent relationship"@en;
skos:definition "An association class for attaching additional information to a relationship between Resource and Agent."@en;
skos:scopeNote "Use to characterize a relationship between resources and agents, where the nature of the relationship is known but is not adequately characterized by the standard DCTERMS properties (dcterms:hasPart, dcterms:isPartOf, dcterms:conformsTo, dcterms:isFormatOf, dcterms:hasFormat, dcterms:isVersionOf, dcterms:hasVersion, dcterms:replaces, dcterms:isReplacedBy, dcterms:references, dcterms:isReferencedBy, dcterms:requires, dcterms:isRequiredBy) or PROV-O properties (prov:wasDerivedFrom, prov:wasInfluencedBy, prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource, prov:alternateOf, prov:specializationOf). Roles of the agent in the relation are specified using had role relation."@en;
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#ResourceToAgentRelationship>.
:ResourceAgentRoleType dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Resource agent role type"@en;
skos:definition "Role of the agent in the relationship to the resource. "@en;
skos:scopeNote "Use value from code list https://vocabs.ccmm.cz/registry/codelist/AgentRole/."@en;
a dsv:ClassProfile;
dsv:class skos:Concept.
:ContactDetails dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Contact details"@en;
skos:definition "Details to contact the agent in a relationship to the resource."@en;
skos:scopeNote "Describes contact details, such as telephone, e--mail address etc."@en;
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#ContactDetails>.
:Address dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "A spatial object that in a human-readable way identifies a fixed location. "@en;
skos:scopeNote "Address shall refer to the IRI identifier of an address from existing Address registry (e.g. RÚIAN for Czechia). In cases, where address identifier does not exist or cannot be used, fill address details using class attributes."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <http://www.w3.org/ns/locn#Address>
];
a dsv:ClassProfile;
dsv:class <http://www.w3.org/ns/locn#Address>.
:MetadataRecord dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Metadata Record"@en, "Katalogizační záznam"@cs, "Record di catalogo"@it, "Registre du catalogue"@fr, "Registro del catálogo"@es, "Καταγραφή καταλόγου"@el, "سجل"@ar, "カタログ・レコード"@ja, "Katalogpost"@da;
skos:definition "1つのデータセットを記述したデータ・カタログ内のレコード。"@ja, "Description of the metadata record of the dataset. "@en, "Un record in un catalogo di dati che descrive un singolo dataset o servizio di dati."@it, "Un registre du catalogue ou une entrée du catalogue, décrivant un seul jeu de données."@fr, "Un registro en un catálogo de datos que describe un solo conjunto de datos o un servicio de datos."@es, "Záznam v datovém katalogu popisující jednu datovou sadu či datovou službu."@cs, "Μία καταγραφή ενός καταλόγου, η οποία περιγράφει ένα συγκεκριμένο σύνολο δεδομένων."@el, "En post i et datakatalog der beskriver registreringen af et enkelt datasæt eller en datatjeneste."@da;
skos:scopeNote "In case metadata is harvested from external catalogue, metadata record IRI shall be the same as IRI of the metadata record in original repository."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#CatalogueRecord>;
a dsv:ClassProfile.
:ApplicationProfile dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Application profile"@en;
skos:definition "A standard or other specification to which a metadata record conforms."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Standard>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Standard>
];
a dsv:ClassProfile.
:ProvenanceStatement dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "Information about entities, activities, and people involved in producing a piece of data or thing."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#ProvenanceStatement>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#ProvenanceStatement>
];
a dsv:ClassProfile.
:Repository dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Repository"@en, "Catalogo"@it, "Catalogue"@fr, "Catálogo"@es, "Katalog"@cs, "Κατάλογος"@el, "فهرس قوائم البيانات"@ar, "カタログ"@ja, "Katalog"@da;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Catalogue>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Catalogue>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Catalogue>
];
a dsv:ClassProfile.
:Distribution-DownloadableFile dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Distribution - downloadable file"@en;
skos:definition "Physical embodiment of the dataset in a particular format. "@en;
dsv:specializes :Distribution;
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#Distribution-DownloadableFile>.
:Distribution-DataService dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Distribution - data service"@en;
skos:definition "Physical embodiment of the dataset distribution as a particular data service. "@en;
dsv:specializes :Distribution;
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#Distribution-DataService>.
:File dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "File"@en;
skos:definition "Digital resource representing collection of data."@en;
skos:scopeNote "File is represented by URL on which is it accessable."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#rdfs-Resource>;
a dsv:ClassProfile.
:MediaType dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "A file format."@en;
skos:scopeNote "Use IRI value from registry https://www.iana.org/assignments/media-types/media-types.xhtml."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#MediaType>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#MediaType>
];
a dsv:ClassProfile.
:DataService dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#DataService>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#DataService>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#DataService>
];
a dsv:ClassProfile.
:Documentation dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Documentation"@en;
skos:definition "A textual resource intended for human consumption that contains information about the data service."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Document>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Document>
];
a dsv:ClassProfile.
:SubjectScheme dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Subject scheme"@en;
skos:definition "Collection of subjects (keywords, concepts, classification codes) curated by a single source."@en;
skos:scopeNote "Subject scheme sets a contexts for all subjects within this scheme. It usually represents thesauri, vocabulary etc., but may also represent a set of concepts with the meaning of the same context, such as domain specific nomenclature."@en;
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#SubjectScheme>.
:Location dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "Spatial region, named place or geometry representation of a place related to the resource. "@en;
skos:scopeNote "Location is represented according to the Open Formal Standard for Spatial Data. Locations are represented as a reference to the named place, geographic region or specific geometry according to the standardized geometry object representation. \nEvery Location instance must have at least one of the following attributes/relations: bbox, location name, geometry and/or related object identifier."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Location>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Location>
];
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/datacite#Geolocation>.
:Geometry dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "The Geometry class provides the means to identify a location as a point, line, polygon, etc. expressed using coordinates in some coordinate reference system."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Geometry>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Geometry>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Geometry>
];
a dsv:ClassProfile.
:Identifier dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "Unique and resolvable identifier containing the notation and identifier scheme in the form of URI."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <http://www.w3.org/ns/adms#Identifier>
];
a dsv:ClassProfile;
dsv:class <http://www.w3.org/ns/adms#Identifier>.
:AlternateTitle dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Alternate title"@en;
skos:definition "Alternate title of the resource."@en;
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#AlternateTitle>.
:Checksum dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "This class allows the results of a variety of checksum and cryptographic message digest algorithms to be represented."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Checksum>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Checksum>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Checksum>
];
a dsv:ClassProfile.
:ChecksumAlgorithm dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Checksum algorithm"@en;
skos:definition "Algorithm used for Checksums."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#ChecksumAlgorithm>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#ChecksumAlgorithm>
];
a dsv:ClassProfile.
:LicenseDocument dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "A legal document giving official permission to do something with a resource."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-dap#LicenseDocument>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-dap#LicenseDocument>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-dap#LicenseDocument>
];
a dsv:ClassProfile.
:LocationRelationType dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Location relation type"@en;
skos:definition "Relation of the dataset to the resource."@en;
skos:scopeNote "Use value from codelist https://vocabs.ccmm.cz/registry/codelist/LocationRelation/."@en;
a dsv:ClassProfile;
dsv:class skos:Concept.
:AlternateTitleType dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Alternate title type"@en;
skos:definition "Type of alternate title."@en;
skos:scopeNote "Use value from codelist https://vocabs.ccmm.cz/registry/codelist/AlternateTitle/."@en;
a dsv:ClassProfile;
dsv:class skos:Concept.
:DateType dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Date type"@en;
skos:definition "Type of a date in relation to the resource."@en;
skos:scopeNote "Use value from codelist https://vocabs.ccmm.cz/registry/codelist/TimeReference/."@en;
a dsv:ClassProfile;
dsv:class skos:Concept.
:ResourceType dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Resource type"@en;
skos:definition "Type of the resource."@en;
skos:scopeNote "Use IRI identifier of the resource type from the codelist https://vocabularies.coar-repositories.org/resource_types/."@en;
a dsv:ClassProfile;
dsv:class skos:Concept.
:ResourceRelationType dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Resource relation type"@en;
skos:definition "Type of the relation between the dataset and given resource."@en;
skos:scopeNote "Use value from the codelist https://vocabs.ccmm.cz/registry/codelist/RelationType/."@en;
a dsv:ClassProfile;
dsv:class skos:Concept.
:LanguageSystem dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Language system"@en;
skos:scopeNote "Use IRI identifier from the register http://publications.europa.eu/resource/authority/language."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#LinguisticSystem>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#LinguisticSystem>
];
a dsv:ClassProfile.
:Format dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Format"@en;
skos:definition "Format of downloadable file."@en;
skos:scopeNote "Use IRI identifier from the register http://publications.europa.eu/resource/dataset/file-type. Human readable codelist representation is here: https://op.europa.eu/en/web/eu-vocabularies/concept-scheme/-/resource?uri=http://publications.europa.eu/resource/authority/file-type."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#MediaTypeOrExtent>;
a dsv:ClassProfile.
:AccessRights dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Access rights"@en;
skos:definition "A statement about the access rights to the dataset."@en;
skos:scopeNote "Use IRI identifier from the register http://purl.org/coar/access_right/."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#RightsStatement>;
a dsv:ClassProfile.
:TimeRepresentation dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Time representation"@en, "entidad temporal"@es;
skos:definition "Representation of time reference as a temporal interval or instant on which something relevant to the resource has happened."@en, "Un intervalo temporal o un instante."@es;
a dsv:ClassProfile;
dsv:class <http://www.w3.org/2006/time#TemporalEntity>.
:TimeInstant dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Time instant"@en, "instante de tiempo."@es;
skos:definition "A temporal entity with zero extent or duration."@en, "Una entidad temporal con una extensión o duración cero."@es;
skos:scopeNote "Use for representation of time reference with zero extent or duration."@en;
dsv:specializes :TimeRepresentation;
a dsv:ClassProfile;
dsv:class <http://www.w3.org/2006/time#Instant>.
:TimeInterval dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "Use for representation of time reference represented as an interval. Interval is represented by beginning and end time instants."@en;
dsv:specializes :TimeRepresentation, :TimeRepresentation;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <http://www.w3.org/2006/time#Interval>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <http://www.w3.org/2006/time#Interval>
];
a dsv:ClassProfile;
dsv:class <http://www.w3.org/2006/time#Interval>.
:IdentifierScheme dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "Use identifier scheme in the form of IRI identifier. Methodology shall list known sources."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/ccmm#IdentifierScheme>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/ccmm#IdentifierScheme>
];
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#IdentifierScheme>.
:Description dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "Description of the resource may have also a description type."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#Description>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#Description>
];
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/datacite#Description>.
:DescriptionType dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "Use value from codelist https://vocabs.ccmm.cz/registry/codelist/DescriptionType/."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#DescriptionType>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#DescriptionType>
];
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/datacite#DescriptionType>.
:TimeReference dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "An object representing time reference relevant to some event related to the resource has happened."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/ccmm#TimeReference>
];
a dsv:ClassProfile;
dsv:class <https://model.ccmm.cz/vocabulary/ccmm#TimeReference>.
:Resource dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "In the core model, resource is anything that is described within the metadata record, including dataset itself and all related resources. This class is also reused in domain extension for representing any physical or digital resources specific for the described scientific domain. "@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource rdfs:Resource
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource rdfs:Resource
];
a dsv:ClassProfile;
dsv:class rdfs:Resource.
<https://model.ccmm.cz/research-data/Dataset.hasRelatedResource> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has related resource"@en;
skos:definition "Reference to the resource in any way related to the described dataset."@en;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#hasRelatedResource>;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :RelatedResource.
<https://model.ccmm.cz/research-data/Dataset.hasTermsOfUse> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has terms of use"@en;
dsv:cardinality cardinality:11;
dsv:property <https://model.ccmm.cz/vocabulary/datacite#hasRights>;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :TermsOfUse.
<https://model.ccmm.cz/research-data/Dataset.hasFundingReference> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "Has reference for funding of a dataset acquisition."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#hasFundingReference>
];
dsv:cardinality cardinality:0n;
dsv:property <https://model.ccmm.cz/vocabulary/datacite#hasFundingReference>;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :FundingReference.
<https://model.ccmm.cz/research-data/Dataset.hasDistribution> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has distribution"@en;
skos:scopeNote "For the distribution of data in the form of files use instances of class Distribution – downloadable file. For the distribution of data through service use instance of class Distribution – data service. "@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Dataset.datasetDistribution>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Dataset.datasetDistribution>
];
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Distribution.
<https://model.ccmm.cz/research-data/Dataset.hasValidationResult> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has validation result"@en;
skos:definition "Reference to the report about the dataset validation."@en;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#hasValidationResult>;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ValidationResult.
<https://model.ccmm.cz/research-data/Dataset.hasSubject> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "Dataset described using a subject."@en;
skos:scopeNote "At least one subject must be a value from FRASCATI FORD vocabulary. For that subject use reference codelist https://vocabs.ccmm.cz/registry/codelist/SubjectCategory/ as the Subject scheme and select at least one value from this codelist as a subject."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://model.ccmm.cz/vocabulary/datacite#hasSubject>
];
dsv:cardinality cardinality:1n;
dsv:property <https://model.ccmm.cz/vocabulary/datacite#hasSubject>;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Subject.
<https://model.ccmm.cz/research-data/Dataset.hasTimeReference> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has time reference"@en;
skos:definition "Reference to events related to the dataset."@en;
skos:scopeNote "Must contain at least one time reference with date type value \"Created\" from https://vocabs.ccmm.cz/registry/codelist/TimeReference/."@en;
dsv:cardinality cardinality:1n;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#hasTimeReference>;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :TimeReference.
<https://model.ccmm.cz/research-data/ResourceToAgentRelationship.hasRelatedAgent> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has related agent"@en;
skos:definition "Specifies the agent an a given role in the relationship with the resource."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Relationship.relation>;
dsv:cardinality cardinality:11;
dsv:domain :ResourceToAgentRelationship;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Agent.
<https://model.ccmm.cz/research-data/ResourceToAgentRelationship.hadRole> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "May be used in a qualified-attribution to specify the role of an Agent with respect to an Entity. It is recommended that the value be taken from a controlled vocabulary of agent roles."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Relationship.hadRole>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Relationship.hadRole>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Relationship.hadRole>
];
dsv:cardinality cardinality:11;
dsv:domain :ResourceToAgentRelationship;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ResourceAgentRoleType.
<https://model.ccmm.cz/research-data/FundingReference.hasFunder> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has funder"@en;
skos:definition "Relation to the agent entity of a funder."@en;
dsv:cardinality cardinality:1n;
dsv:property <https://model.ccmm.cz/vocabulary/datacite#hasFunderIdentifier>;
dsv:domain :FundingReference;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Agent.
<https://model.ccmm.cz/research-data/Agent.contactPoint> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Punto de contacto"@es, "has contact point"@en, "má kontaktní bod"@cs, "point de contact"@fr, "punto di contatto"@it, "σημείο επικοινωνίας"@el, "عنوان اتصال"@ar, "窓口"@ja, "kontaktpunkt"@da;
skos:definition "Información relevante de contacto para el recurso catalogado. Se recomienda el uso de vCard."@es, "Informazioni di contatto rilevanti per la risorsa catalogata. Si raccomanda l'uso di vCard."@it, "Relevant contact information for the catalogued resource. "@en, "Relevantní kontaktní informace pro katalogizovaný zdroj. Doporučuje se použít slovník VCard."@cs, "Relie un jeu de données à une information de contact utile en utilisant VCard."@fr, "Συνδέει ένα σύνολο δεδομένων με ένα σχετικό σημείο επικοινωνίας, μέσω VCard."@el, "تربط قائمة البيانات بعنوان اتصال موصف باستخدام VCard"@ar, "データセットを、VCardを用いて提供されている適切な連絡先情報にリンクします。"@ja, "Relevante kontaktoplysninger for den katalogiserede ressource. Anvendelse af vCard anbefales."@da;
dsv:cardinality cardinality:0n;
dsv:property <http://www.w3.org/ns/dcat#contactPoint>;
dsv:domain :Agent;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ContactDetails.
<https://model.ccmm.cz/research-data/ContactDetails.hasAddress> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "Either links to IRI of address in address registry or describes the address using Address class attributes."@en;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <http://www.w3.org/2006/vcard/ns#hasAddress>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <http://www.w3.org/2006/vcard/ns#hasAddress>
];
dsv:cardinality cardinality:0n;
dsv:property <http://www.w3.org/2006/vcard/ns#hasAddress>;
dsv:domain :ContactDetails;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Address.
<https://model.ccmm.cz/research-data/Person.hasAffiliation> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has affiliation"@en;
skos:definition "Affiliation of the person to an organization."@en;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#hasAffiliation>;
dsv:domain :Person;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Organization.
<https://model.ccmm.cz/research-data/MetadataRecord.conformsToStandard> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "conforms to standard"@en;
skos:definition "An established standard to which the metadata record conforms."@en;
skos:scopeNote "This property SHOULD be used to indicate the standard or profile that was used to describe cataloged resource content."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-dap#CatalogRecord.conformsTo>;
dsv:cardinality cardinality:1n;
dsv:domain :MetadataRecord;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ApplicationProfile.
<https://model.ccmm.cz/research-data/Dataset.hasProvenance> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has provenance"@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Dataset.provenance>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Dataset.provenance>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Dataset.provenance>
];
dsv:cardinality cardinality:0n;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ProvenanceStatement.
<https://model.ccmm.cz/research-data/MetadataRecord.hasOriginalRepository> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has original repository"@en;
skos:definition "Link to the repository in which the metadata were originally stored and curated."@en;
skos:scopeNote "Original repository is a repository where the original metadata was harvested from or where it was created and/or published. There is always exactly one original repository. \nIf metadata record is harvested form other repository, make sure to include the first repository from which it was harvested."@en;
dsv:cardinality cardinality:11;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#originalRepository>;
dsv:domain :MetadataRecord;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Repository.
<https://model.ccmm.cz/research-data/MetadataRecord.describes> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "describes"@en;
skos:definition "Dataset described by the metadata record."@en;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#describes>;
dsv:domain :MetadataRecord;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Dataset.
<https://model.ccmm.cz/research-data/Distribution-DownloadableFile.downloadUrl> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "Download URL SHOULD be used for the URL at which this distribution is available directly, typically through a HTTP Get request."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution.downloadUrl>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.downloadUrl>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.downloadUrl>
];
dsv:domain :Distribution-DownloadableFile;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :File.
<https://model.ccmm.cz/research-data/Distribution-DownloadableFile.accessUrl> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "The resource at the access URL contains information about how to get the Dataset. It shall be the web page (not a document file)."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution.accessUrl>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.accessUrl>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.accessUrl>
];
dsv:domain :Distribution-DownloadableFile;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :File.
<https://model.ccmm.cz/research-data/Distribution-DownloadableFile.mediaType> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:scopeNote "This property SHOULD be used when the media type of the distribution is defined in IANA (using value from https://www.iana.org/assignments/media-types/media-types.xhtml), otherwise Format MAY be used with values from Publication Office of the EU File type codelist http://publications.europa.eu/resource/dataset/file-type."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution.mediaType>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.mediaType>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.mediaType>
];
dsv:domain :Distribution-DownloadableFile;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :MediaType.
<https://model.ccmm.cz/research-data/Distribution-DownloadableFile.conformsToSchema> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "conforms to schema"@en;
skos:scopeNote "This property SHOULD be used to indicate the model, schema, ontology, view or profile that this representation of a dataset conforms to. This is (generally) a complementary concern to the media-type or format."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution.linkedSchemas>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.linkedSchemas>
];
dsv:cardinality cardinality:0n;
dsv:domain :Distribution-DownloadableFile;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ApplicationProfile.
<https://model.ccmm.cz/research-data/Distribution-DataService.hasAccessService> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has access service"@en, "servicio de acceso de datos"@es, "servizio di accesso ai dati"@it, "služba pro přístup k datům"@cs, "dataadgangstjeneste"@da;
skos:scopeNote "Access service SHOULD be used to link to a description of Data service that can provide access to this distribution."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution.accessService>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.accessService>
];
dsv:domain :Distribution-DataService;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :DataService.
<https://model.ccmm.cz/research-data/Distribution-DataService.conformsToSpecification> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "conforms to specification"@en;
skos:scopeNote "This property SHOULD be used to indicate the profile or specification that this data service conforms to. This is (generally) a complementary concern to the service standard."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution.linkedSchemas>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.linkedSchemas>
];
dsv:domain :Distribution-DataService;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ApplicationProfile.
<https://model.ccmm.cz/research-data/Distribution-DataService.hasDocumentation> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has documentation"@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution.documentation>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.documentation>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.documentation>
];
dsv:domain :Distribution-DataService;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Documentation.
<https://model.ccmm.cz/research-data/TermsOfUse.hasContactPoint> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "Punto de contacto"@es, "has contact point"@en, "kontaktní bod"@cs, "point de contact"@fr, "punto di contatto"@it, "σημείο επικοινωνίας"@el, "عنوان اتصال"@ar, "窓口"@ja, "kontaktpunkt"@da;
skos:definition "Información relevante de contacto para el recurso catalogado. Se recomienda el uso de vCard."@es, "Informazioni di contatto rilevanti per la risorsa catalogata. Si raccomanda l'uso di vCard."@it, "Contact point for the further details about the terms of use."@en, "Relevantní kontaktní informace pro katalogizovaný zdroj. Doporučuje se použít slovník VCard."@cs, "Relie un jeu de données à une information de contact utile en utilisant VCard."@fr, "Συνδέει ένα σύνολο δεδομένων με ένα σχετικό σημείο επικοινωνίας, μέσω VCard."@el, "تربط قائمة البيانات بعنوان اتصال موصف باستخدام VCard"@ar, "データセットを、VCardを用いて提供されている適切な連絡先情報にリンクします。"@ja, "Relevante kontaktoplysninger for den katalogiserede ressource. Anvendelse af vCard anbefales."@da;
dsv:property <http://www.w3.org/ns/dcat#contactPoint>;
dsv:domain :TermsOfUse;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Agent.
<https://model.ccmm.cz/research-data/Subject.inSubjectScheme> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "in subject scheme"@en;
skos:definition "Belonging of the subject to the subject scheme."@en;
dsv:cardinality cardinality:01;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#inSubjectScheme>;
dsv:domain :Subject;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :SubjectScheme.
<https://model.ccmm.cz/research-data/Dataset.hasLocation> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has location"@en;
skos:scopeNote "In the CCMM spatial coverage does not only cover the area of dataset, it may be connected to the dataset in some other way, e.g. the place from where the data were measured, administrative area to which the dataset conforms or other."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Dataset.geographicalCoverage>, <https://mff-uk.github.io/specifications/dcat-dap#Dataset.spatial-geographicalCoverage>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Dataset.geographicalCoverage>
];
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Location.
<https://model.ccmm.cz/research-data/Location.hasRelatedObject> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has related object"@en;
skos:definition "Relation to the spatial object."@en;
skos:scopeNote "The relation is provided by the identifier of the related object. It shall be identifier of an existing spatial object in a registry, such as Place Named Authority List (http://publications.europa.eu/resource/authority/place), Register of Territorial Identification, Addresses and Real Estates or others."@en;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#hasRelatedResource>;
dsv:domain :Location;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :RelatedResource.
<https://model.ccmm.cz/research-data/Location.hasGeometry> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has geometry"@en;
skos:scopeNote "The range of this property allows for any type of geometry specification. E.g., the geometry could be encoded by a literal, as WKT (geosparql:wktLiteral), or represented by a class, as geosparql:Geometry (or any of its subclasses)."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Location.geometry>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Location.geometry>
];
dsv:cardinality cardinality:0n;
dsv:domain :Location;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Geometry.
<https://model.ccmm.cz/research-data/Dataset.hasIdentifier> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has identifier"@en;
skos:definition "has identifier"@en;
dsv:cardinality cardinality:1n;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#hasIdentifier>;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Identifier.
<https://model.ccmm.cz/research-data/Dataset.isDescribedBy> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "is described by"@en;
skos:definition "Inverse relation between dataset and metadata record."@en;
dsv:cardinality cardinality:1n;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#isDescribedBy>;
dsv:domain :Dataset;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :MetadataRecord.
<https://model.ccmm.cz/research-data/DataService.endpointUrl> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#DataService.endpointUrl>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#DataService.endpointUrl>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#DataService.endpointUrl>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#DataService.endpointUrl>
];
dsv:cardinality cardinality:1n;
dsv:domain :DataService;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :RelatedResource.
<https://model.ccmm.cz/research-data/Agent.hasIdentifier> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has identifier"@en;
skos:definition "has identifier"@en;
dsv:cardinality cardinality:0n;
dsv:property <https://model.ccmm.cz/vocabulary/ccmm#hasIdentifier>;
dsv:domain :Agent;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Identifier.
<https://model.ccmm.cz/research-data/MetadataRecord.qualifiedRelation> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:definition "Enlace a una descripción de la relación con otro recurso."@es, "Link a una descrizione di una relazione con un'altra risorsa."@it, "Link to a description of a relationship between metadata record and agent with the specification of the role of agent in this relationship."@en, "Odkaz na popis vztahu s jiným zdrojem."@cs, "Reference til en beskrivelse af en relation til en anden ressource."@da;
skos:scopeNote "Relationship shall contain at least one agent with role \"Data Manager\" from codelist https://vocabs.ccmm.cz/registry/codelist/AgentRole/."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-dap#CataloguedResource.qualifiedRelation>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:prefLabel;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-dap#CataloguedResource.qualifiedRelation>
];
dsv:cardinality cardinality:1n;
dsv:domain :MetadataRecord;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ResourceToAgentRelationship.
<https://model.ccmm.cz/research-data/Checksum.usesAlgorithm> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "uses algorithm"@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Checksum.algorithm>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Checksum.algorithm>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Checksum.algorithm>
];
dsv:cardinality cardinality:11;
dsv:domain :Checksum;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :ChecksumAlgorithm.
<https://model.ccmm.cz/research-data/Distribution-DataService.hasChecksum> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has checksum"@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#Distribution.checksum>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:definition;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.checksum>
], [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#Distribution.checksum>
];
dsv:cardinality cardinality:01;
dsv:domain :Distribution-DownloadableFile;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :Checksum.
<https://model.ccmm.cz/research-data/TermsOfUse.license> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "has license"@en;
skos:definition "Reference to the legal document giving official permission to do something with the resource."@en;
dsv:cardinality cardinality:11;
dsv:property dct:license;
dsv:domain :TermsOfUse;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :LicenseDocument.
<https://model.ccmm.cz/research-data/MetadataRecord.hasLanguage> dct:isPartOf <https://model.ccmm.cz/research-data/>;
a dsv:TermProfile;
skos:prefLabel "language"@en;
skos:definition "A language used in the textual metadata describing titles, descriptions of the metadata record."@en;
dsv:profileOf <https://mff-uk.github.io/specifications/dcat-ap#CatalogueRecord.language>;
dsv:reusesPropertyValue [
a dsv:PropertyValueReuse;
dsv:reusedProperty skos:scopeNote;
dsv:reusedFromResource <https://mff-uk.github.io/specifications/dcat-ap#CatalogueRecord.language>
];
dsv:cardinality cardinality:0n;
dsv:domain :MetadataRecord;
a dsv:ObjectPropertyProfile;
dsv:objectPropertyRange :LanguageSystem.