-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfair_eva.ttl
1267 lines (1017 loc) · 149 KB
/
fair_eva.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://w3id.org/fair_eva/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/FAIR-Vocabulary#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <https://w3id.org/fair_eva> .
<https://w3id.org/fair_eva> rdf:type owl:Ontology ;
owl:versionIRI <https://w3id.org/fair_eva/1.0.0> ;
<http://purl.org/dc/terms/creator> <https://orcid.org/0000-0001-9462-4831> ;
<http://purl.org/dc/terms/description> "This is the formal vocabulary (ontology) describing FAIR EVA tests implementation" ;
<http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/4.0/> ;
<http://purl.org/dc/terms/title> "FAIR EVA Vocabulary" ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "fair_eva" ;
<http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/fair_eva" ;
rdfs:isDefinedBy <https://w3id.org/fair_eva> .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
<http://purl.org/vocab/vann/preferredNamespacePrefix> rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
<http://purl.org/vocab/vann/preferredNamespaceUri> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#broadMatch
<http://www.w3.org/2004/02/skos/core#broadMatch> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#closeMatch
<http://www.w3.org/2004/02/skos/core#closeMatch> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#code
<http://www.w3.org/2004/02/skos/core#code> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#narrowMatch
<http://www.w3.org/2004/02/skos/core#narrowMatch> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#prefLabel
<http://www.w3.org/2004/02/skos/core#prefLabel> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#related
<http://www.w3.org/2004/02/skos/core#related> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#relatedMatch
<http://www.w3.org/2004/02/skos/core#relatedMatch> rdf:type owl:AnnotationProperty .
### https://w3id.org/fair_eva/priority
:priority rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://w3id.org/fair_eva/connects
:connects rdf:type owl:ObjectProperty ;
rdfs:domain :plugin ;
rdfs:range :dataService .
### https://w3id.org/fair_eva/hasPriority
:hasPriority rdf:type owl:ObjectProperty ;
rdfs:domain :indicator ;
rdfs:range :priority .
### https://w3id.org/fair_eva/implements
:implements rdf:type owl:ObjectProperty ;
rdfs:domain :plugin ;
rdfs:range :indicator .
### https://w3id.org/fair_eva/isDefinedBy
:isDefinedBy rdf:type owl:ObjectProperty ;
rdfs:domain :indicator ;
rdfs:range :doc .
### https://w3id.org/fair_eva/isExecutedBy
:isExecutedBy rdf:type owl:ObjectProperty ;
rdfs:domain :indicator ;
rdfs:range :test .
#################################################################
# Data properties
#################################################################
### http://www.w3.org/2002/07/owl#topDataProperty
owl:topDataProperty rdfs:range rdf:PlainLiteral .
### https://w3id.org/fair_eva/code
:code rdf:type owl:DatatypeProperty ;
rdfs:domain :doc ;
rdfs:comment "Code to identify the test" ;
rdfs:label "code" .
### https://w3id.org/fair_eva/oai_pmhEndpoint
:oai_pmhEndpoint rdf:type owl:DatatypeProperty ;
rdfs:domain :dataService ;
rdfs:comment "Link to OAI-PMH endpoint" ;
rdfs:label "oai_pmhEndpoint" .
### https://w3id.org/fair_eva/preservationPolicy
:preservationPolicy rdf:type owl:DatatypeProperty ;
rdfs:domain :dataService ;
rdfs:comment "Link to preservation policy" ;
rdfs:label "preservationPolicy" .
### https://w3id.org/fair_eva/serviceEndpoint
:serviceEndpoint rdf:type owl:DatatypeProperty ;
rdfs:domain :dataService ;
rdfs:comment "Link to base service endpoint" ;
rdfs:label "serviceEndpoint" .
### https://w3id.org/fair_eva/technical
:technical rdf:type owl:DatatypeProperty ;
rdfs:domain :doc ;
rdfs:comment "Detail on the technical implementation of a test" ;
rdfs:label "technical" .
### https://w3id.org/fair_eva/tip
:tip rdf:type owl:DatatypeProperty ;
rdfs:domain :doc ;
rdfs:comment "Tips and feedback for the user to improve the test results" ;
rdfs:label "tip" .
#################################################################
# Classes
#################################################################
### https://w3id.org/fair_eva/dataService
:dataService rdf:type owl:Class ;
rdfs:comment "Class to define data services or repositories" ;
rdfs:label "dataService" .
### https://w3id.org/fair_eva/doc
:doc rdf:type owl:Class ;
rdfs:comment :code ,
:technical ,
:tip .
### https://w3id.org/fair_eva/indicator
:indicator rdf:type owl:Class ;
rdfs:comment "Specification of a FAIR principle or sub-principle" ;
rdfs:label "indicator" .
### https://w3id.org/fair_eva/plugin
:plugin rdf:type owl:Class ;
rdfs:comment "Plugin definition" ;
rdfs:label "plugin" .
### https://w3id.org/fair_eva/priority
:priority rdf:type owl:Class .
### https://w3id.org/fair_eva/test
:test rdf:type owl:Class ;
rdfs:comment "Class to definde the test" ;
rdfs:label "test" .
#################################################################
# Individuals
#################################################################
### https://w3id.org/fair_eva#DIGITAL.CSIC
:DIGITAL.CSIC rdf:type owl:NamedIndividual ,
:dataService ;
:oai_pmhEndpoint "https://digital.csic.es/dspace-oai/request" ;
:preservationPolicy "https://digital.csic.es/dc/politicas/#politica8" ;
:serviceEndpoint "https://digital.csic.es/" .
### https://w3id.org/fair_eva#Zenodo
:Zenodo rdf:type owl:NamedIndividual ,
:dataService ;
:oai_pmhEndpoint "https://zenodo.org/oai2d" ;
:preservationPolicy "https://about.zenodo.org/policies/" ;
:serviceEndpoint "https://zenodo.org/" .
### https://w3id.org/fair_eva#digital_csic
:digital_csic rdf:type owl:NamedIndividual ,
:plugin ;
:connects :DIGITAL.CSIC ;
:implements :RDA-A1-01M ;
rdfs:label "digital_csic"^^rdfs:Literal .
### https://w3id.org/fair_eva#oai-pmh
:oai-pmh rdf:type owl:NamedIndividual ,
:plugin ;
:connects :Zenodo ;
:implements :RDA-A1-01M ;
rdfs:label "oai-pmh"^^rdfs:Literal .
### https://w3id.org/fair_eva/Essential
:Essential rdf:type owl:NamedIndividual ,
:priority ;
rdfs:comment "such an indicator addresses an aspect that is of the utmost importance to achieve FAIRness under most circumstances, or, conversely, FAIRness would be practically impossible to achieve if the indicator were not satisfied." ;
rdfs:isDefinedBy :Essential ;
rdfs:label "Essential" .
### https://w3id.org/fair_eva/Important
:Important rdf:type owl:NamedIndividual ,
:priority ;
rdfs:comment "such an indicator addresses an aspect that might not be of the utmost importance under specific circumstances, but its satisfaction, if at all possible, would substantially increase FAIRness." ;
rdfs:isDefinedBy :Important ;
rdfs:label "Important" .
### https://w3id.org/fair_eva/RDA-A1-01M
:RDA-A1-01M rdf:type owl:NamedIndividual ,
:indicator ;
:isExecutedBy :rda_a1_01m ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1: (Meta)data are retrievable by their identifier using a standardised communication protocol. The indicator refers to the information that is necessary to allow the requester to gain access to the digital object. It is (i) about whether there are restrictions to access the data (i.e. access to the data may be open, restricted or closed), (ii) the actions to be taken by a person who is interested to access the data, in particular when the data has not been published on the Web and (iii) specifications that the resources are available through eduGAIN or through specialised solutions such as proposed for EPOS."@en ;
rdfs:comment "Metadata contains information to enable the user to get access to the data" ;
rdfs:isDefinedBy :RDA-A1-01M ;
rdfs:label "RDA-A1-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1> ,
<https://w3id.org/fair/principles/terms/A1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1-01M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-A1-02D
:RDA-A1-02D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1: (Meta)data are retrievable by their identifier using a standardised communication protocol. The indicator refers to any human interactions that are needed if the requester wants to access the digital object. The FAIR principle refers mostly to automated interactions where a machine is able to access the digital object, but there may also be digital objects that require human interactions, such as clicking on a link on a landing page, sending an e-mail to the data owner, or even calling by telephone. The indicator can be evaluated by looking for information in the metadata that describes how access to the digital object can be obtained through human intervention."@en ;
rdfs:comment "Data can be accessed manually (i.e. with human intervention)" ;
rdfs:isDefinedBy :RDA-A1-02D ;
rdfs:label "RDA-A1-02D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1> ,
<https://w3id.org/fair/principles/terms/A1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1-02D" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-A1-02M
:RDA-A1-02M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1: (Meta)data are retrievable by their identifier using a standardised communication protocol. The indicator refers to any human interactions that are needed if the requester wants to access metadata. The FAIR principle refers mostly to automated interactions where a machine is able to access the metadata, but there may also be metadata that require human interactions. This may be important in cases where the metadata itself contains sensitive information. Human interaction might involve sending an e-mail to the metadata owner, or calling by telephone to receive instructions."@en ;
rdfs:comment "Metadata can be accessed manually (i.e. with human intervention)" ;
rdfs:isDefinedBy :RDA-A1-02M ;
rdfs:label "RDA-A1-02M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1> ,
<https://w3id.org/fair/principles/terms/A1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1-02M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-A1-03D
:RDA-A1-03D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1: (Meta)data are retrievable by their identifier using a standardised communication protocol. More information about that principle can be found here. This indicator is about the resolution of the identifier that identifies the digital object. The identifier assigned to the data should be associated with a formally defined retrieval/resolution mechanism that enables access to the digital object, or provides access instructions for access in the case of human-mediated access. The FAIR principle and this indicator do not say anything about the mutability or immutability of the digital object that is identified by the data identifier -- this is an aspect that should be governed by a persistence policy of the data provider"@en ;
rdfs:comment "Data identifier resolves to a digital object" ;
rdfs:isDefinedBy :RDA-A1-03D ;
rdfs:label "RDA-A1-03D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1> ,
<https://w3id.org/fair/principles/terms/A1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1-03D" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-A1-03M
:RDA-A1-03M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1: (Meta)data are retrievable by their identifier using a standardised communication protocol. This indicator is about the resolution of the metadata identifier. The identifier assigned to the metadata should be associated with a resolution service that enables access to the metadata record. "@en ;
rdfs:comment "Metadata identifier resolves to a metadata record" ;
rdfs:isDefinedBy :RDA-A1-03M ;
rdfs:label "RDA-A1-03M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1> ,
<https://w3id.org/fair/principles/terms/A1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1-03M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-A1-04D
:RDA-A1-04D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1: (Meta)data are retrievable by their identifier using a standardised communication protocol. The indicator concerns the protocol through which the digital object is accessed and requires the protocol to be defined in a standard."@en ;
rdfs:comment "Data is accessible through standardised protocol" ;
rdfs:isDefinedBy :RDA-A1-04D ;
rdfs:label "RDA-A1-04D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1> ,
<https://w3id.org/fair/principles/terms/A1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1-04D" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-A1-04M
:RDA-A1-04M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1: (Meta)data are retrievable by their identifier using a standardised communication protocol. More information about that principle can be found here. The indicator concerns the protocol through which the metadata is accessed and requires the protocol to be defined in a standard."@en ;
rdfs:comment "Metadata is accessed through standardised protocol" ;
rdfs:isDefinedBy :RDA-A1-04M ;
rdfs:label "RDA-A1-04M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1> ,
<https://w3id.org/fair/principles/terms/A1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1-04M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-A1-05D
:RDA-A1-05D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1: (Meta)data are retrievable by their identifier using a standardised communication protocol. The indicator refers to automated interactions between machines to access digital objects. The way machines interact and grant access to the digital object will be evaluated by the indicator."@en ;
rdfs:comment "Data can be accessed automatically (i.e. by a computer program)" ;
rdfs:isDefinedBy :RDA-A1-05D ;
rdfs:label "RDA-A1-05D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1> ,
<https://w3id.org/fair/principles/terms/A1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1-05D" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-A1.1-01D
:RDA-A1.1-01D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1.1: The protocol is open, free and universally implementable. The indicator requires that the protocol can be used free of charge which facilitates unfettered access."@en ;
rdfs:comment "Data is accessible through a free access protocol" ;
rdfs:isDefinedBy :RDA-A1.1-01D ;
rdfs:label "RDA-A1.1-01D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1.1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1.1-01D" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-A1.1-01M
:RDA-A1.1-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1.1: The protocol is open, free and universally implementable. The indicator tests that the protocol that enables the requester to access metadata can be freely used. Such free use of the protocol enhances data reusability."@en ;
rdfs:comment "Metadata is accessible through a free access protocol" ;
rdfs:isDefinedBy :RDA-A1.1-01M ;
rdfs:label "RDA-A1.1-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1.1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1.1-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-A1.2-02D
:RDA-A1.2-02D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A1.2: The protocol allows for an authentication and authorisation where necessary. The indicator requires the way that access to the digital object can be authenticated and authorised and that data accessibility is specifically described and adequately documented."@en ;
rdfs:comment "Data is accessible through an access protocol that supports authentication and authorisation" ;
rdfs:isDefinedBy :RDA-A1.2-02D ;
rdfs:label "RDA-A1.2-02D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A1.2> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A1.2-02D" ;
:priority :Useful .
### https://w3id.org/fair_eva/RDA-A2-01M
:RDA-A2-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: A2: Metadata should be accessible even when the data is no longer available. The indicator intends to verify that information about a digital object is still available after the object has been deleted or otherwise has been lost. If possible, the metadata that remains available should also indicate why the object is no longer available."@en ;
rdfs:comment "Metadata is guaranteed to remain available after data is no longer available" ;
rdfs:isDefinedBy :RDA-A2-01M ;
rdfs:label "RDA-A2-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/A2> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-A2-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-F1-01D
:RDA-F1-01D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: F1 (meta)data are assigned a globally unique and eternally persistent identifier. This indicator evaluates whether or not the data is identified by a persistent identifier. A persistent identifier ensures that the data will remain findable over time, and reduces the risk of broken links."@en ;
rdfs:comment "Data is identified by a persistent identifier" ;
rdfs:isDefinedBy :RDA-F1-01D ;
rdfs:label "RDA-F1-01D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/F1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-F1-01D" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-F1-01M
:RDA-F1-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: F1 (meta)data are assigned a globally unique and eternally persistent identifier. This indicator evaluates whether or not the metadata is identified by a persistent identifier. A persistent identifier ensures that the metadata will remain findable over time, and reduces the risk of broken links."@en ;
rdfs:comment "Metadata is identified by a persistent identifier" ;
rdfs:isDefinedBy :RDA-F1-01M ;
rdfs:label "RDA-F1-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/F1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-F1-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-F1-02D
:RDA-F1-02D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: F1 (meta)data are assigned a globally unique and eternally persistent identifier. The indicator serves to evaluate whether the identifier of the data is globally unique, i.e. that there are no two people that would use that same identifier for two different digital objects."@en ;
rdfs:comment "Data is identified by a globally unique identifier" ;
rdfs:isDefinedBy :RDA-F1-02D ;
rdfs:label "RDA-F1-02D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/F1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-F1-02D" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-F1-02M
:RDA-F1-02M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: F1 (meta)data are assigned a globally unique and eternally persistent identifier. The indicator serves to evaluate whether the identifier of the metadata is globally unique, i.e. that there are no two identical identifiers that identify different metadata records."@en ;
rdfs:comment "Metadata is identified by a globally unique identifier" ;
rdfs:isDefinedBy :RDA-F1-02M ;
rdfs:label "RDA-F1-02M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/F1> ,
<https://w3id.org/fair/principles/terms/F1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-F1-02M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-F2-01M
:RDA-F2-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: F2: Data are described with rich metadata. The indicator is about the presence of metadata, but also about how much metadata is provided and how well the provided metadata supports discovery."@en ;
rdfs:comment "Rich metadata is provided to allow discovery" ;
rdfs:isDefinedBy :RDA-F2-01M ;
rdfs:label "RDA-F2-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/F2> ,
<https://w3id.org/fair/principles/terms/F2> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-F2-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-F3-01M
:RDA-F3-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: F3: Metadata clearly and explicitly include the identifier of the data they describe. The indicator deals with the inclusion of the reference (i.e. the identifier) of the digital object in the metadata so that the digital object can be accessed."@en ;
rdfs:comment "Metadata includes the identifier for the data" ;
rdfs:isDefinedBy :RDA-F3-01M ;
rdfs:label "RDA-F3-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/F3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-F3-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-F4-01M
:RDA-F4-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: F4: (Meta)data are registered or indexed in a searchable resource. The indicator tests whether the metadata is offered in such a way that it can be indexed. In some cases, metadata could be provided together with the data to a local institutional repository or to a domain-specific or regional portal, or metadata could be included in a landing page where it can be harvested by a search engine. The indicator remains broad enough on purpose not to limit the way how and by whom the harvesting and indexing of the data might be done."@en ;
rdfs:comment "Metadata is offered in such a way that it can be harvested and indexed" ;
rdfs:isDefinedBy :RDA-F4-01M ;
rdfs:label "RDA-F4-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/F4> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-F4-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-I1-01D
:RDA-I1-01D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I1: (Meta)data use a formal, accessible, shared, and broadly applicable language for knowledge representation. The indicator serves to determine that an appropriate standard is used to express knowledge, in particular the data model and format."@en ;
rdfs:comment "Data uses knowledge representation expressed in standardised format" ;
rdfs:isDefinedBy :RDA-I1-01D ;
rdfs:label "RDA-I1-01D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I1-01D" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-I1-01M
:RDA-I1-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I1: (Meta)data use a formal, accessible, shared, and broadly applicable language for knowledge representation. The indicator serves to determine that an appropriate standard is used to express knowledge, for example, controlled vocabularies for subject classifications."@en ;
rdfs:comment "Metadata uses knowledge representation expressed in standardised format" ;
rdfs:isDefinedBy :RDA-I1-01M ;
rdfs:label "RDA-I1-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I1-01M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-I1-02D
:RDA-I1-02D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I1: (Meta)data use a formal, accessible, shared, and broadly applicable language for knowledge representation. This indicator focuses on the machine-understandability aspect of the data. This means that data should be readable and thus interoperable for machines without any requirements such as specific translators or mappings."@en ;
rdfs:comment "Data uses machine-understandable knowledge representation" ;
rdfs:isDefinedBy :RDA-I1-02D ;
rdfs:label "RDA-I1-02D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I1-02D" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-I1-02M
:RDA-I1-02M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I1: (Meta)data use a formal, accessible, shared, and broadly applicable language for knowledge representation. This indicator focuses on the machine-understandability aspect of the metadata. This means that metadata should be readable and thus interoperable for machines without any requirements such as specific translators or mappings."@en ;
rdfs:comment "Metadata uses machine-understandable knowledge representation" ;
rdfs:isDefinedBy :RDA-I1-02M ;
rdfs:label "RDA-I1-02M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I1-02M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-I2-01D
:RDA-I2-01D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I2: (Meta)data use vocabularies that follow the FAIR principles. The indicator requires the controlled vocabulary used for the data to conform to the FAIR principles, and at least be documented and resolvable using globally unique"@en ;
rdfs:comment "Data uses FAIR-compliant vocabularies" ;
rdfs:isDefinedBy :RDA-I2-01D ;
rdfs:label "RDA-I2-01D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I2> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I2-01D" ;
:priority :Useful .
### https://w3id.org/fair_eva/RDA-I2-01M
:RDA-I2-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I2: (Meta)data use vocabularies that follow the FAIR principles. The indicator requires the vocabulary used for the metadata to conform to the FAIR principles, and at least be documented and resolvable using globally unique and persistent identifiers. The documentation needs to be easily findable and accessible."@en ;
rdfs:comment "Metadata uses FAIR-compliant vocabularies" ;
rdfs:isDefinedBy :RDA-I2-01M ;
rdfs:label "RDA-I2-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I2> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I2-01M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-I3-01D
:RDA-I3-01D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I3: (Meta)data include qualified references to other (meta)data. This indicator is about the way data is connected to other data, for example linking to previous or related research data that provides additional context to the data."@en ;
rdfs:comment "Data includes references to other data" ;
rdfs:isDefinedBy :RDA-I3-01D ;
rdfs:label "RDA-I3-01D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I3-01D" ;
:priority :Useful .
### https://w3id.org/fair_eva/RDA-I3-01M
:RDA-I3-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I3: (Meta)data include qualified references to other (meta)data. The indicator is about the way that metadata is connected to other metadata, for example through links to information about organisations, people, places, projects or time periods that are related to the digital object that the metadata describes."@en ;
rdfs:comment "Metadata includes references to other metadata" ;
rdfs:isDefinedBy :RDA-I3-01M ;
rdfs:label "RDA-I3-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I3-01M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-I3-02D
:RDA-I3-02D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I3: (Meta)data include qualified references to other (meta)data. This indicator is about the way data is connected to other data. The references need to be qualified which means that the relationship role of the related resource is specified."@en ;
rdfs:comment "Data includes qualified references to other data" ;
rdfs:isDefinedBy :RDA-I3-02D ;
rdfs:label "RDA-I3-02D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I3-02D" ;
:priority :Useful .
### https://w3id.org/fair_eva/RDA-I3-02M
:RDA-I3-02M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I3: (Meta)data include qualified references to other (meta)data. This indicator is about the way metadata is connected to other data, for example linking to previous or related research data that provides additional context to the data. Please note that this is not about the link from the metadata to the data it describes; that link is considered in principle F3 and in indicator RDA-F3-01M."@en ;
rdfs:comment "Metadata includes references to other data" ;
rdfs:isDefinedBy :RDA-I3-02M ;
rdfs:label "RDA-I3-02M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I3-02M" ;
:priority :Useful .
### https://w3id.org/fair_eva/RDA-I3-03M
:RDA-I3-03M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I3: (Meta)data include qualified references to other (meta)data. This indicator is about the way metadata is connected to other metadata, for example to descriptions of related resources that provide additional context to the data."@en ;
rdfs:comment "Metadata includes qualified references to other metadata" ;
rdfs:isDefinedBy :RDA-I3-03M ;
rdfs:label "RDA-I3-03M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I3-03M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-I3-04M
:RDA-I3-04M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: I3: (Meta)data include qualified references to other (meta)data. This indicator is about the way metadata is connected to other data. The references need to be qualified which means that the relationship role of the related resource is specified, for example dataset X is derived from dataset Y."@en ;
rdfs:comment "Metadata include qualified references to other data" ;
rdfs:isDefinedBy :RDA-I3-04M ;
rdfs:label "RDA-I3-04M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/I3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-I3-04M" ;
:priority :Useful .
### https://w3id.org/fair_eva/RDA-R1-01M
:RDA-R1-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1: (Meta)data are richly described with a plurality of accurate and relevant attributes. The indicator concerns the quantity but also the quality of metadata provided in order to enhance data reusability."@en ;
rdfs:comment "Plurality of accurate and relevant attributes are provided to allow reuse" ;
rdfs:isDefinedBy :RDA-R1-01M ;
rdfs:label "RDA-R1-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-R1.1-01M
:RDA-R1.1-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1.1: (Meta)data are released with a clear and accessible data usage license. This indicator is about the information that is provided in the metadata related to the conditions (e.g. obligations, restrictions) under which data can be reused."@en ;
rdfs:comment "Metadata includes information about the licence under which the data can be reused" ;
rdfs:isDefinedBy :RDA-R1.1-01M ;
rdfs:label "RDA-R1.1-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.1-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-R1.1-02M
:RDA-R1.1-02M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator requires the reference to the conditions of reuse to be a standard licence, rather than a locally defined licence. The indicator can be evaluated by verifying that the licence is indeed a standard licence. Examples of standard licences are: Creative Commons licences, Open Data Commons."@en ;
rdfs:comment "Metadata refers to a standard reuse licence" ;
rdfs:isDefinedBy :RDA-R1.1-02M ;
rdfs:label "RDA-R1.1-02M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.1-02M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-R1.1-03M
:RDA-R1.1-03M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1.1: (Meta)data are released with a clear and accessible data usage license. More information about that principle can be found here. This indicator is about the way that the reuse licence is expressed. Rather than being a human-readable text, the licence should be expressed in such a way that it can be processed by machines, without human intervention, for example in automated searches."@en ;
rdfs:comment "Metadata refers to a machine-understandable reuse licence" ;
rdfs:isDefinedBy :RDA-R1.1-03M ;
rdfs:label "RDA-R1.1-03M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.1> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.1-03M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-R1.2-01M
:RDA-R1.2-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1.2: (Meta)data are associated with detailed provenance. This indicator requires the metadata to include information about the provenance of the data, i.e. information about the origin, history or workflow that generated the data, in a way that is compliant with the standards that are used in the community in which the data is produced."@en ;
rdfs:comment "Metadata includes provenance information according to community-specific standards" ;
rdfs:isDefinedBy :RDA-R1.2-01M ;
rdfs:label "RDA-R1.2-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.2> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.2-01M" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-R1.2-02M
:RDA-R1.2-02M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1.2: (Meta)data are associated with detailed provenance. This indicator requires that the metadata provides provenance information according to a cross-domain language."@en ;
rdfs:comment "Metadata includes provenance information according to a crosscommunity language" ;
rdfs:isDefinedBy :RDA-R1.2-02M ;
rdfs:label "RDA-R1.2-02M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.2> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.2-02M" ;
:priority :Useful .
### https://w3id.org/fair_eva/RDA-R1.3-01D
:RDA-R1.3-01D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1.3: (Meta)data meet domain-relevant community standards. This indicator requires that data complies with community standards."@en ;
rdfs:comment "Data complies with a community standard" ;
rdfs:isDefinedBy :RDA-R1.3-01D ;
rdfs:label "RDA-R1.3-01D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.3-01D" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-R1.3-01M
:RDA-R1.3-01M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1.3: (Meta)data meet domain-relevant community standards. This indicator requires that metadata complies with community standards."@en ;
rdfs:comment "Metadata complies with a community standard" ;
rdfs:isDefinedBy :RDA-R1.3-01M ;
rdfs:label "RDA-R1.3-01M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.3-01M" ;
:priority :Essential .
### https://w3id.org/fair_eva/RDA-R1.3-02D
:RDA-R1.3-02D rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1.3: (Meta)data meet domain-relevant community standards. This indicator requires that the data follows a community standard that has a machineunderstandable expression."@en ;
rdfs:comment "Data is expressed in compliance with a machine-understandable community standard" ;
rdfs:isDefinedBy :RDA-R1.3-02D ;
rdfs:label "RDA-R1.3-02D" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.3-02D" ;
:priority :Important .
### https://w3id.org/fair_eva/RDA-R1.3-02M
:RDA-R1.3-02M rdf:type owl:NamedIndividual ,
:indicator ;
<http://purl.org/dc/terms/description> "This indicator is linked to the following principle: R1.3: (Meta)data meet domain-relevant community standards. This indicator requires that the metadata follows a community standard that has a machineunderstandable expression."@en ;
rdfs:comment "Metadata is expressed in compliance with a machineunderstandable community standard" ;
rdfs:isDefinedBy :RDA-R1.3-02M ;
rdfs:label "RDA-R1.3-02M" ;
<http://www.w3.org/2004/02/skos/core#broadMatch> <https://w3id.org/fair/principles/latest/R1.3> ;
<http://www.w3.org/2004/02/skos/core#code> "RDA-R1.3-02M" ;
:priority :Essential .
### https://w3id.org/fair_eva/Useful
:Useful rdf:type owl:NamedIndividual ,
:priority ;
rdfs:comment "such an indicator addresses an aspect that is nice-to-have but is not could indicator MAY be satisfied, but not necessarily indispensable." ;
rdfs:isDefinedBy :Useful ;
rdfs:label "Useful" .
### https://w3id.org/fair_eva/rda_a1_01m
:rda_a1_01m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_01m" ;
:technical "Checks metadata record for access info and Parse HTML in order to find the potential file(s) in order to find the digital object."@en ,
"Verifica el registro de metadatos para obtener información de acceso y analiza HTML para encontrar los archivos potenciales para encontrar el objeto digital."@es ;
:tip "If access to data files is closed in DIGITAL.CSIC but is open in other site please mark openAccess in the metadata<span style=\"text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/derechos.html\"> </a></span><span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/derechos.html\">dc.rights</a></span><span style=\"text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/derechos.html\"> </a></span>of the record in DIGITAL.CSIC and indicate the identifier of the data in the third party site in<span style=\"font-weight:bold;color:#ea4335;\"> </span><span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span>"@en ,
"Si el acceso a los ficheros está cerrado en DIGITAL.CSIC pero están disponibles en acceso abierto en otro sitio, marca el registro en DIGITAL.CSIC como \"openAccess\" en<span style=\"font-weight:bold;color:#ea4335;\"> </span><span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/derechos.html\">dc.rights</a></span> e indica el identificador de los datos en el sitio externo en el metadato <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span>"@es ;
rdfs:isDefinedBy :rda_a1_01m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1-01M .
### https://w3id.org/fair_eva/rda_a1_02d
:rda_a1_02d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_02d" ;
:technical """Checks the presence of an access metadata term. In DIGITAL.CSIC this information is packaged in dc.rights. The metadata element dc.description is also used to provide extra information whenever data are not accessible on DIGITAL.CSIC.
"""@en ,
"Comprueba la presencia de un término de metadatos con información de acceso. esta información se empaqueta en dc.rights y se usa además dc.description para indicar cómo acceder a los datos cuando no estén disponibles en el repositorio."@es ;
:tip "If data files are not available open access in DIGITAL.CSIC or any other site please indicate how they could be requested as a private copy in the metadata element <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/descripcion.html\">dc.description</a></span>. Please provide with any other relevant information to facilitate access."@en ,
"Si los ficheros de datos no se encuentran en acceso abierto ni en DIGITAL.CSIC no en otro sitio indica en el metadato <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/descripcion.html\">dc.description</a></span> cómo se podría solicitar una copia privada así como cualquier otra información relevante."@es ;
rdfs:isDefinedBy :rda_a1_02d ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1-02D .
### https://w3id.org/fair_eva/rda_a1_02m
:rda_a1_02m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_02m" ;
:technical "Busca los elementos de metadatos en la web de llegada para comprobar si se puede acceder a ellos manualmente"@es ,
"Looks for the metadata terms in HTML in order to know if they can be accessed manually"@en ;
:tip "If metadata are not available through the landing page of the digital object, please report to DIGITAL.CSIC (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@en ,
"Si los metadatos no están disponibles a través del navegador, por favor, informa a DIGITAL.CSIC (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@es ;
rdfs:isDefinedBy :rda_a1_02m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1-02M .
### https://w3id.org/fair_eva/rda_a1_03d
:rda_a1_03d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_03d" ;
:technical "Converts identifier to URL and solves it to look for digital objects. Once found, it checks if the digital object can be downloaded"@en ,
"Convierte el identificador en URL y lo resuelve para buscar objetos digitales. Una vez encontrado, comprueba si el objeto digital se puede descargar de forma manual"@es ;
:tip "For data files that cannot be downloaded in DIGITAL.CSIC please indicate the identifier in URL format where they can be downloaded in the metadata <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span>"@en ,
"Para ficheros de datos que no pueden descargarse desde la página del registro de metadatos en DIGITAL.CSIC indica en el metadato <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span> el identificador en formato URL en que puede descargarse"@es ;
rdfs:isDefinedBy :rda_a1_03d ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1-03D .
### https://w3id.org/fair_eva/rda_a1_03m
:rda_a1_03m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_03m" ;
:technical "Converts identifier to URL and solves it to look for the metadata terms in HTML in order to know if they can be accessed manually"@en ,
"Convierte el identificador en URL y lo resuelve para buscar los términos de metadatos en HTML para saber si se puede acceder a ellos manualmente."@es ;
:tip "If metadata are not available through the web, please report to DIGITAL.CSIC <span style=\"font-weight:bold;color:#34a853;\">([email protected]).</span>"@en ,
"Si los metadatos no están disponibles a través del navegador, por favor, informa a DIGITAL.CSIC <span style=\"font-weight:bold;color:#34a853;\">([email protected]</span>)."@es ;
rdfs:isDefinedBy :rda_a1_03m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1-03M .
### https://w3id.org/fair_eva/rda_a1_04d
:rda_a1_04d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_04d" ;
:technical "Gracias a la prueba implementada RDA-A1.03D, si el objeto digital se puede descargar, se puede hacer mediante el protocolo HTTP"@es ,
"Thanks to the implemented test RDA-A1.03D, if the digital object can be downloaded, it can be done usting HTTP protocol"@en ;
:tip "For data files that cannot be downloaded in DIGITAL.CSIC please indicate the identifier in URL format where they can be downloaded in the metadata <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span>"@en ,
"Para ficheros de datos que no pueden descargarse desde la página del registro de metadatos en DIGITAL.CSIC indica en el metadato <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span> el identificador en formato URL en que puede descargarse"@es ;
rdfs:isDefinedBy :rda_a1_04d ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1-04D .
### https://w3id.org/fair_eva/rda_a1_04m
:rda_a1_04m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_04m" ;
:technical "Checks the protocol to access metadata (OAI-PMH, API..). In the case of DIGITAL.CSIC access is checked through the presence and functionaing of OAI-PMH for the time being."@en ,
"Comprueba el protocolo para acceder a los metadatos (OAI-PMH, API ..). En el caso de DIGITAL.CSIC comprueba la presencia y correcto funcionamiento de OAI-PMH."@es ;
:tip "Access through API will be enabled in DIGITAL.CSIC soon."@en ,
"DIGITAL.CSIC no ofrece ninguna API para acceso automático de metadatos pero lo hará próximamente."@es ;
rdfs:isDefinedBy :rda_a1_04m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1-04M .
### https://w3id.org/fair_eva/rda_a1_05d
:rda_a1_05d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_05d" ;
:technical "Checks certain ways to access data automatically. OAI-PMH does not support automatic access to data."@en ,
"Comprueba ciertas formas de acceder a los datos de forma automática. OAI-PMH no soporta acceso automático a los datos."@es ;
:tip "Actualmente DIGITAL.CSIC no ofrece ninguna API para acceso automático de ficheros de datos pero lo hará próximamente"@es ,
"Currently DIGITAL.CSIC does not support access to data files through any API but it will soon"@en ;
rdfs:isDefinedBy :rda_a1_05d ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1-05D .
### https://w3id.org/fair_eva/rda_a1_1_01d
:rda_a1_1_01d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_1_01d" ;
:technical "Con el test implementado RDA-A1.3D se prueba el protocolo HTTP para acceder a los datos."@es ,
"With RDA-A1.3D the HTTP protocol to access the data is tested."@en ;
:tip "Actualmente DIGITAL.CSIC no ofrece ninguna API abierta, gratis y universal para acceso automático de ficheros datos pero lo hará próximamente"@es ,
"Currently DIGITAL.CSIC does not support access to data files through any open, free and universally implementable API but it will soon"@en ;
rdfs:isDefinedBy :rda_a1_1_01d ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1.1-01D .
### https://w3id.org/fair_eva/rda_a1_1_01m
:rda_a1_1_01m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_1_01m" ;
:technical "Checks the plugin access protocols"@en ,
"Comprueba el plugin particular para probar los protocolos de acceso"@es ;
:tip "DIGITAL.CSIC soporta OAI-PMH, que es un protocolo abierto y gratuito."@es ,
"DIGITAL.CSIC supports OAI-PMH, which is open and free"@en ;
rdfs:isDefinedBy :rda_a1_1_01m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1.1-01M .
### https://w3id.org/fair_eva/rda_a1_2_01d
:rda_a1_2_01d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a1_2_01d" ;
:technical "Esta prueba se implementa para cada plugin de FAIR EVA. En el caso del plugin para DIGITAL.CSIC se comprueba que los datos son accesibles a través del navegador y la autenticación y autorización están definidas (CSIC CAS)"@es ,
"This test is implemented for each plugin. Data can be accessed with a browser and AAI is defined (CSIC CAS)"@en ;
:tip "Data is accessible via browser in DIGITAL.CSIC. If not, please report to DIGITAL.CSIC (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@en ,
"Los datos son accesibles a través del navegador. En caso de problemas, contactar con DIGITAL.CSIC (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@es ;
rdfs:isDefinedBy :rda_a1_2_01d ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A1.2-02D .
### https://w3id.org/fair_eva/rda_a2_01m
:rda_a2_01m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_a2_01m" ;
:technical "La política de retención de metadatos y preservación depende de la autoridad donde se almacena este objeto digital. Las políticas de DIGITAL.CSIC se encuentran en http://digital.csic.es/dc/politicas"@es ,
"Metadata retention and Preservation policy depend on the authority where this Digital Object is stored. DIGITAL.CSIC policies can be found at http://digital.csic.es/dc/politicas."@en ;
:tip "DIGITAL.CSIC is an open repository. Metadata are public and <span style=\"text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"http://digital.csic.es/dc/politicas/#politica6\">DIGITAL.CSIC metadata policy </a></span>assures retention and availability of metadata records even when the data are no longer available. If this is not the case with the metadata of a specific digital object, please contact DIGITAL.CSIC (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@en ,
"DIGITAL.CSICes un repositorio abierto. Los metadatos son públicos y<span style=\"text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"http://digital.csic.es/dc/politicas/#politica6\"> la política de retención de metadatos de DIGITAL.CSIC</a></span> asegura su disponibilidad incluso si los ficheros de datos dejan de estar disponibles. Si hay algún problema, contactar con DIGITAL.CSIC (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@es ;
rdfs:isDefinedBy :rda_a2_01m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-A2-01M .
### https://w3id.org/fair_eva/rda_f1_01d
:rda_f1_01d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_f1_01d" ;
:technical "Busca en una lista predefinida de posibles términos de metadatos (dc.identifier.uri, dc.identifier.doi and dc.relation.publisherversion) para identificar en los datos si hay alguna información disponible."@es ,
"Searches within a predefined list of potential metadata terms (dc.identifier.uri, dc.identifier.doi and dc.relation.publisherversion) to identify the data if any information is available."@en ;
:tip "If the DOI/Handle has not been generated, contact repository administrators (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>). If the digital object had another DOI/PID before deposit on DIGITAL.CSIC, add the <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span> in metadata registry to point the external site where the data files are hosted."@en ,
"Si no se ha generado el DOI/handle ponte en contacto con los administradores del repositorio (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>). Si el recurso tenía DOI/otro PID antes de depositarlo en DIGITAL.CSIC añádelo a <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span> en el registro de metadatos para indicar el sitio externo en que se encuentran los ficheros de datos"@es ;
rdfs:isDefinedBy :rda_f1_01d ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-F1-01D .
### https://w3id.org/fair_eva/rda_f1_01m
:rda_f1_01m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_f1_01m" ;
:technical "Busca en una lista predefinida de posibles términos de metadatos (dc.identifier.uri y dc.identifier.doi) para identificar en los metadatos si hay alguna información disponible."@es ,
"Searches within a predefined list of potential metadata terms to identify the metadata (dc.identifier.uri and dc.identifier.doi) if any information is available."@en ;
:tip "All items deposited in DIGITAL.CSIC are granted a handle by default. This PID is packaged in dc.identifier.uri. DOI is minted by DIGITAL.CSIC for all datasets that do not have a DOI already, if your dataset has not been given one, please contact DIGITAL.CSIC Technical Office (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@en ,
"Todos los items depositados en DIGITAL.CSIC reciben un handle por defecto que se graba en el metadato dc.identifier.uri. DIGITAL.CSIC también asigna DOIs a los datasets que se depositan y que no tienen ya un DOI. Si tu dataset no ha recibido un DOI ponte en contacto con la Oficina Técnica de DIGITAL.CSIC (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@es ;
rdfs:isDefinedBy :rda_f1_01m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-F1-01M .
### https://w3id.org/fair_eva/rda_f1_02d
:rda_f1_02d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_f1_02d" ;
:technical "If the repository/system where the digital object is stored has both data and metadata integrated, this method only need to call RDA-F1-02M . Otherwise, it needs to be re-defined. In DIGITAL.CSIC both data and metadata are stored in the same landing page and some data are located outside, defined by dc.relation.publisherversion."@en ,
"""Si el repositorio / sistema donde se almacena el objeto digital tiene datos y metadatos integrados, este método solo necesita llamar a RDA-F1-02M. De lo contrario, es necesario volver a definirlo.
En DIGITAL.CSIC tanto los datos como los metadatos se almacenan en la misma página de destino, salvo algunos casos definidos por el metadato dc.relation.publisherversion."""@es ;
:tip "Comprueba si el sitio externo en que están alojados los ficheros de datos ha generado un identificador persistente global (handle, DOI, ARK, PURL..) y en tal caso inclúyelo en el metadato <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span> del registro de metadatos de DIGITAL.CSIC"@es ,
"Please check whether the external site where the data files are stored has given a global persistent identifier (handle, DOI, ARK, PURL..) for the data and if so please indicate it in the metadata <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span><span style=\"font-weight:bold;\"> </span>of the metadata record in DIGITAL.CSIC"@en ;
rdfs:isDefinedBy :rda_f1_02d ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-F1-02D .
### https://w3id.org/fair_eva/rda_f1_02m
:rda_f1_02m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_f1_02m" ;
:technical "Checks the type of the identifiers thanks to the idutils package. It identifies valid identifiers. If it is not a persistent identifier (like an URL), the test fails"@en ,
"Comprueba el tipo de identificadores gracias al paquete idutils. Identifica identificadores válidos. Si no es un identificador persistente (como una URL), la prueba se da por fallida."@es ;
:tip "All items deposited in DIGITAL.CSIC are granted a handle by default. This PID is packaged in dc.identifier.uri. DOI is minted by DIGITAL.CSIC for all datasets that do not have a DOI already, if your dataset has not been given one, please contact DIGITAL.CSIC Technical Office (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@en ,
"Todos los items depositados en DIGITAL.CSIC reciben un handle por defecto (dc.identifier.uri). DIGITAL.CSIC también asigna DOIs a los datasets que se depositan y que no tienen ya un DOI. Si tu dataset no ha recibido un DOI ponte en contacto con la Oficina Técnica de DIGITAL.CSIC (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@es ;
rdfs:isDefinedBy :rda_f1_02m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-F1-02M .
### https://w3id.org/fair_eva/rda_f2_01m
:rda_f2_01m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_f2_01m" ;
:technical """Dos pruebas diferentes para evaluar metadatos genéricos y disciplinarios si es necesario.
En el caso de DIGITAL.CSIC comprueba si todos los términos de Dublin Core están completados según la plantilla correspondiente a la tipología del recurso en https://digital.csic.es/handle/10261/81323"""@es ,
"Two different tests to evaluate generic and disciplinar metadata if needed. Check if all the Dublin Core terms are OK. For disciplinary metadata, this test should be more complex. For multi-domain repositories like DIGITAL.CSIC, Qualified Dublin Core is one of the by default standards, but it can be extended to check other community metadata formats. Recommendations and guidelines in this regard in specific descripcion templates prepared for every resource type available in DIGITAL.CSIC: https://digital.csic.es/handle/10261/81323"@en ;
:tip "Completa la descripción del objeto digital con las <span style=\"text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/handle/10261/81323\">recomendaciones de la Oficina Técnica de DIGITAL.CSIC</a></span>. Elige la plantilla de descripción que corresponde con la tipología de tu objeto digital."@es ,
"Please complete the description of the digital object with the <span style=\"text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/handle/10261/81323\">recommendations provided by DIGITAL.CSIC Team</a></span>. Please pick up the template that corresponds to the type of your digital object."@en ;
rdfs:isDefinedBy :rda_f2_01m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-F2-01M .
### https://w3id.org/fair_eva/rda_f3_01m
:rda_f3_01m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_f3_01m" ;
:technical "Checks the metadata term where the object is identified (dc.identifier.doi and dc.relation.publisherversion)"@en ,
"Verifica el elemento de metadatos donde se identifica el objeto (dc.identifier.doi y dc.relation.publisherversion)"@es ;
:tip "If data files are not hosted by DIGITAL.CSIC, please provide the identifier (URL) where they can be located at the metadata <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span>"@en ,
"Si los ficheros de datos no se encuentran alojados en DIGITAL.CSIC indica en el metadato <span style=\"font-weight:bold;text-decoration:underline;-webkit-text-decoration-skip:none;text-decoration-skip-ink:none;color:#1155cc;\"><a target=\"_blank\" href=\"https://digital.csic.es/sites/ayuda_fair_data/version_editor.html\">dc.relation.publisherversion</a></span> el identificador (URL) en que están alojados"@es ;
rdfs:isDefinedBy :rda_f3_01m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-F3-01M .
### https://w3id.org/fair_eva/rda_f4_01m
:rda_f4_01m rdf:type owl:NamedIndividual ,
:test ;
:code "rda_f4_01m" ;
:technical "Checks if the metadata can be harvested via OAI-PMH"@en ,
"Comprueba si los metadatos pueden ser recogidos con el protocolo OAI-PMH"@es ;
:tip "DIGITAL.CSIC soporta OAI-PMH. Si este test no ha sido satisfactorio, por favor, contacte con DIGITAL.CSIC para informar del problema (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@es ,
"DIGITAL.CSIC supports OAI-PMH. If this test has not passed, please contact DIGITAL.CSIC to report the problem (<span style=\"font-weight:bold;color:#34a853;\">[email protected]</span>)."@en ;
rdfs:isDefinedBy :rda_f4_01m ;
<http://www.w3.org/2004/02/skos/core#closeMatch> :RDA-F4-01M .
### https://w3id.org/fair_eva/rda_i1_01d
:rda_i1_01d rdf:type owl:NamedIndividual ,
:test ;
:code "rda_i1_01d" ;
:technical "Checks that data format is within a list of accepted standards. It can be defined by each system/repository within their plugins. The generic plugin accepts: [\"pdf\", \"csv\", \"jpg\", \"jpeg\", \"nc\", \"hdf\", \"mp4\", \"mp3\", \"wav\", \"doc\", \"txt\", \"xls\", \"xlsx\", \"sgy\",\"zip\", \"pdfa\", \"docx\"]"@en ,
"Comprueba que el formato de los datos esté dentro de una lista de estándares aceptados. Puede ser definido por cada sistema / repositorio dentro de sus plugins. El plugin genérico acepta: [\"pdf\", \"csv\", \"jpg\", \"jpeg\", \"nc\", \"hdf\", \"mp4\", \"mp3\", \"wav\", \"doc\", \"txt\", \"xls\", \"xlsx\", \"sgy\", \"zip\", \"pdfa\", \"docx\"]"@es ;