-
Notifications
You must be signed in to change notification settings - Fork 3
/
maturity_indicator.trig
1339 lines (1194 loc) · 62.2 KB
/
maturity_indicator.trig
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 this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Vocabulary/RABojlumxBgs8OOrWR1M53NbWKsXtoav55cE7qxFbrj-k> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Vocabulary/RABojlumxBgs8OOrWR1M53NbWKsXtoav55cE7qxFbrj-k#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix vann: <http://purl.org/vocab/vann/> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Vocabulary dct:creator orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435;
dct:description "This is the formal vocabulary (ontology) describing the FAIR maturity indicators.";
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:title "FAIR Maturity Indicator Vocabulary";
vann:preferredNamespacePrefix "fairmi";
vann:preferredNamespaceUri "https://w3id.org/fair/maturity_indicator/terms/Gen2/";
a owl:Ontology;
foaf:primaryTopic fairmi:FAIR-Maturity-Indicator .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/FAIR-Maturity-Indicator/RAP41Y2vTjCKhSlnOdLUeqAO1WfkKP7LccDktDAaKFUvk> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/FAIR-Maturity-Indicator/RAP41Y2vTjCKhSlnOdLUeqAO1WfkKP7LccDktDAaKFUvk#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:FAIR-Maturity-Indicator a owl:Class;
rdfs:label "FAIR Maturity Indicator"@en;
skos:definition "A FAIR metric is a measure of the FAIRness of a digital resource."@en;
foaf:primaryTopic fair:FAIR .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/measuring/RAPYeyDbYkOitTsQ7smjKDaOpeJ_LtV5kpmoleIfsrcPQ> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/measuring/RAPYeyDbYkOitTsQ7smjKDaOpeJ_LtV5kpmoleIfsrcPQ#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:measuring a owl:DatatypeProperty;
rdfs:domain fairmi:FAIR-Maturity-Indicator;
rdfs:label "What is being measured?"@en;
skos:definition "A description of what is being measured by the metric."@en .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/rationale/RA43Fq5cSgj975CzrlplnEzU20HCTYcFrd5L5UaOMqrmY> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/rationale/RA43Fq5cSgj975CzrlplnEzU20HCTYcFrd5L5UaOMqrmY#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:rationale a owl:DatatypeProperty;
rdfs:domain fairmi:FAIR-Maturity-Indicator;
rdfs:label "Why should we measure it?"@en;
skos:definition "A description of why this is being measured."@en .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/requirements/RAHOoYjEauO8RABO_uet9ZbFnYS9HbU4TiZ8I1knGt0eQ> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/requirements/RAHOoYjEauO8RABO_uet9ZbFnYS9HbU4TiZ8I1knGt0eQ#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:requirements a owl:DatatypeProperty;
rdfs:domain fairmi:FAIR-Maturity-Indicator;
rdfs:label "What must be provided?"@en;
skos:definition "A description of what requirements need to be met for the measure to be considered successful."@en .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/procedure/RAYK0HekgSd0Ki2Xnm8YIfMgg31v90BHh6JAHpHJYDY0A> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/procedure/RAYK0HekgSd0Ki2Xnm8YIfMgg31v90BHh6JAHpHJYDY0A#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:procedure a owl:DatatypeProperty;
rdfs:domain fairmi:FAIR-Maturity-Indicator;
rdfs:label "How do we measure it?"@en;
skos:definition "A description of how the requirements are to be measured."@en .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/validation/RAbY8f_H_9L9JwK-IaEZDnqo5ki58HhB64uGiAU7tLXHc> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/validation/RAbY8f_H_9L9JwK-IaEZDnqo5ki58HhB64uGiAU7tLXHc#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:validation a owl:DatatypeProperty;
rdfs:domain fairmi:FAIR-Maturity-Indicator;
rdfs:label "What is a valid result?"@en;
skos:definition "A description of what constitutes a valid result."@en .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/relevance/RAo_eOJtZA6NjPrDvpcI0cVDWxDkvAOZKJfGLBmKT9epU> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/relevance/RAo_eOJtZA6NjPrDvpcI0cVDWxDkvAOZKJfGLBmKT9epU#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:relevance a owl:DatatypeProperty;
rdfs:domain fairmi:FAIR-Maturity-Indicator;
rdfs:label "For which digital resource(s) is this relevant?"@en;
skos:definition "A description of digital resources for which this measure is relevant."@en .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/examples/RAE3Fw5kP89OCSz_BlPdVMNrq0lmQ3hCzz17E1EqqeK3Y> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/examples/RAE3Fw5kP89OCSz_BlPdVMNrq0lmQ3hCzz17E1EqqeK3Y#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:examples a owl:DatatypeProperty;
rdfs:domain fairmi:FAIR-Maturity-Indicator;
rdfs:label "Examples of their application across types of digital resource"@en;
skos:definition "A description of applications across different types of digital resources."@en .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/comments/RAhtCKxX_wKiD0N7QTk8APUVFSGfwOpjCMOlVUfn4oXo8> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/comments/RAhtCKxX_wKiD0N7QTk8APUVFSGfwOpjCMOlVUfn4oXo8#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:comments a owl:DatatypeProperty;
rdfs:domain fairmi:FAIR-Maturity-Indicator;
rdfs:label "Comments"@en;
skos:definition "Additional comments on the described metric."@en .
}
sub:provenance {
sub:assertion dct:author orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X, orcid:0000-0001-8888-635X,
orcid:0000-0002-1164-1351, orcid:0000-0002-1267-0234, orcid:0000-0003-4727-9435 .
}
sub:pubinfo {
this: dct:created "2019-05-09T12:59:51.453+02:00"^^xsd:dateTime;
dct:creator orcid:0000-0001-6960-357X, orcid:0000-0002-1267-0234;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0>;
dct:rightsHolder <http://go-fair.org> .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_A1.1/RAr1dwNRG9Mr5Dauelcd_2Qhh1iSaF9AFJeCa-XD6kUwk> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_A1.1/RAr1dwNRG9Mr5Dauelcd_2Qhh1iSaF9AFJeCa-XD6kUwk#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_A1.1 a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-A1.1";
foaf:primaryTopic fair:A1.1;
fairmi:comments "";
fairmi:examples "";
fairmi:measuring "If the resolution protocol is universally implementable with an open protocol";
fairmi:procedure """The GUID (either data or metadata) is mapped to a resolution protocol. This resolution protocol
is queried in FAIRSharing to determine if it meets the requirements of FAIRness.""";
fairmi:rationale "Access to a resource may be limited by the specified communication protocol. In particular, we are worried about access to technical specifications and any costs associated with implementing the protocol. Protocols that are closed source or that have royalties associated with them could prevent users from being able to obtain the resource.";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "FAIRSharing registry says the protocol is FAIR" .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_A1.1.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_A1.2/RARiaSiKTOUKg-zfXpNpwPosr7GYwukcsiiGhTY3HOZA4> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_A1.2/RARiaSiKTOUKg-zfXpNpwPosr7GYwukcsiiGhTY3HOZA4#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_A1.2 a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-A1.2";
foaf:primaryTopic fair:A1.2;
fairmi:comments "";
fairmi:examples "";
fairmi:measuring "If the resolution protocol supports authentication and authorization for access to restricted content";
fairmi:procedure """The GUID (either data or metadata) is mapped to a resolution protocol. The FAIRSharing registry is asked
if that protocol supports authentication/authorization. In addition, if a link using the Dublin Core \"accessRights\"
property is found in the metadata, this is acceptable.""";
fairmi:rationale "Not all content can be made available without restriction. For instance, access and distribution of personal health data may be restricted by law or by organizational policy. In such cases, it is important that the protocol by which such content can be accessed is fully specified. Ideally, electronic content can be obtained first by applying for access. Once the requester is formally authorized to access the content, they may receive it in some electronic means, for instance by obtaining an download URL, or through a more sophisticated transaction mechanism (e.g. authenticate, authorize), or by any other means. The goal should be to reduce the time it takes for valid requests to be fulfilled.";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "FAIRSharing registry says the protocol supports authentication/authorization, or the metadata contains a dc:accessRights property with a value (either string or link)" .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_A1.2.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_A2/RA9l3h00UhF0Z5UJQXxC01l1E2DoIjQkhc6IBJpxssM6s> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_A2/RA9l3h00UhF0Z5UJQXxC01l1E2DoIjQkhc6IBJpxssM6s#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_A2 a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-A2";
foaf:primaryTopic fair:A2;
fairmi:comments "";
fairmi:examples "";
fairmi:measuring "If there is a policy for metadata persistence";
fairmi:procedure """The GUID is resolved. Any hash-style metadata (e.g. JSON or microformat) is queried for a 'persistencePolicy' key.
If that key exists, the test passes. Any Linked Data is queried for the http://www.w3.org/2000/10/swap/pim/doc""";
fairmi:rationale "Cross-references to data from third-party’s FAIR data and metadata will naturally degrade over time, and become “stale links”. In such cases, it is important for FAIR providers to continue to provide descriptors of what the data was to assist in the continued interpretation of those third-party data. As per FAIR Principle F3, this metadata remains discoverable, even in the absence of the data, because it contains an explicit reference to the IRI of the data.";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "The presence of a persistencePolicy key, or a http://www.w3.org/2000/10/swap/pim/doc" .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_A2.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F1A/RAYWDLYD391dvZYWFlTotQMmeNGlxAZ-k20zk-0st23xU> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F1A/RAYWDLYD391dvZYWFlTotQMmeNGlxAZ-k20zk-0st23xU#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_F1A a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-F1A";
foaf:primaryTopic fair:F1;
fairmi:comments "";
fairmi:examples "";
fairmi:measuring """Whether the GUID matches (regexp) a GUID scheme recognized as being globally unique in the FAIRSharing registry.
Currently, we test:
* InChI Keys
* DOIs
* Handles
* URLs
If you want an additional identifier scheme added to this Maturity Indicator, please let us know, and please register it with FAIRSharing.""";
fairmi:procedure """An identifier scheme is valid if and only if it
* can be recognized by a machine (regular expression)
* follows a GUID pattern registered in FAIRSharing
* The FAIRSharing registration acknowledges that the scheme guarantees global uniqueness""";
fairmi:rationale "The uniqueness of an identifier is a necessary condition to unambiguously refer that resource, and that resource alone. Otherwise, an identifier shared by multiple resources will confound efforts to describe that resource, or to use the identifier to retrieve it. Examples of identifier schemes include, but are not limited to URN, IRI, DOI, Handle, trustyURI, LSID, etc. For an in-depth understanding of the issues around identifiers, please see http://dx.plos.org/10.1371/journal.pbio.2001414";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "Matches the regular expression for a GUID type registered with FAIRSharing that is flagged as guaranteeing global uniqueness" .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_F1A.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F1B/RAzT-eNRnZBcdBtBo3qUkQNE-E49J6HRFIe6V70sZUpBY> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F1B/RAzT-eNRnZBcdBtBo3qUkQNE-E49J6HRFIe6V70sZUpBY#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_F1B a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-F1B";
foaf:primaryTopic fair:F1;
fairmi:comments "";
fairmi:examples "";
fairmi:measuring """Whether the GUID matches (regexp) a GUID scheme recognized as being persistent.
This includes identifiers in the FAIRSharing registry that are known to be persistent:
* InChI Keys
* DOIs
* Handles
For URLs, we test widely-used PURLs, currently:
* purl
* oclc
* fdlp
* purlz
* w3id
* ark
If you want an additional identifier scheme added to this Maturity Indicator, please let us know, and please register it with FAIRSharing.""";
fairmi:procedure """Identifier scheme of the GUID is determined by pattern-match for Handle, DOI, InChI. For URLs
we do further pattern-matches to determine if it matches the pattern for:
* purl
* oclc
* fdlp
* purlz
* w3id
* ark""";
fairmi:rationale """The change to an identifier scheme will have widespread implications for resource lookup,
linking, and data sharing. Providers of digital resources must try to use GUID types that
are guaranteed, by stable third-parties, to be persistent. This includes stable providers of
PURLs.""";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "match successful" .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_F1B.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F2A/RAkKRXnxLhS081j-xuf196NxrT-hXHV3ljYJxD2HFkT1A> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F2A/RAkKRXnxLhS081j-xuf196NxrT-hXHV3ljYJxD2HFkT1A#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_F2A a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-F2A";
foaf:primaryTopic fair:F2;
fairmi:comments "";
fairmi:examples "";
fairmi:measuring """Whether the metadata of the record contains \"structured\" elements.
These may be in the form of hash-like content (micrograph, JSON),
or in one of the various forms of linked data (JSON-LD, RDFa, etc.)""";
fairmi:procedure """Metadata is harvested by:
1) resolving the GUID (following all redirects) with a Content-Type header specifically searching for some form of structured data. e.g.
'Accept: text/turtle, application/n3, application/rdf+n3, application/turtle, application/x-turtle,text/n3,text/turtle, text/rdf+n3, text/rdf+turtle,application/json+ld, text/xhtml+xml,application/rdf+xml,application/n-triples'
2) resolving any Link 'meta' HTTP Headers (processed independently according to this same process, but not iteratively)
3) parsing the response body either as a hash (for non-linked data) or as a Graph for linked data, or both.
4) All other data is passed to the 'extruct' tool (https://github.com/scrapinghub/extruct) or to the Apache Tika tool (https://tika.apache.org/) for deep exploration
5) Any linked or hash-type data found by those tools are merged with the existing Hash or Graph data
6) The Hash and Graph are interrogated v.v. if they contain any data""";
fairmi:rationale """Structured data is inherently easier for machines to accurately process and
interpret. Even loosely structured metadata can have reliable parsers built
to consume it, including those of major search engines. Thus, it improves
the findability of the record.""";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "Hash or Graph contains data." .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_F2A.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F2B/RA0kM-ERBzY7l_8zO-5BCSDqAihcsbajoxrjgmrJNcSxM> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F2B/RA0kM-ERBzY7l_8zO-5BCSDqAihcsbajoxrjgmrJNcSxM#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_F2B a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-F2B";
foaf:primaryTopic fair:F2;
fairmi:comments """BEWARE: Apache Tika is capable of extracting metadata, in the form of Linked Data, from a wide range of opaue file-types such as PDFs and images.
This process will therefore return Linked Data that can only be found using a special tool. Therefore, passing this
Maturity Indicator does not mean that the publisher has *actively* made grounded metadata available.""";
fairmi:examples "";
fairmi:measuring """Whether the metadata of the record contains \"structured\" elements that are
\"grounded\" in shared vocabularies. For example, in one of the various forms
of linked data (JSON-LD, RDFa, Turtle, etc.)""";
fairmi:procedure """Metadata is harvested by:
1) resolving the GUID (following all redirects) with a Content-Type header specifically searching for some form of structured data. e.g.
'Accept: text/turtle, application/n3, application/rdf+n3, application/turtle, application/x-turtle,text/n3,text/turtle, text/rdf+n3, text/rdf+turtle,application/json+ld, text/xhtml+xml,application/rdf+xml,application/n-triples'
2) resolving any Link 'meta' HTTP Headers (processed independently according to this same process, but not iteratively)
3) parsing the response body either as a hash (for non-linked data) or as a Graph for linked data, or both.
4) All other data is passed to the 'extruct' tool (https://github.com/scrapinghub/extruct) or to the Apache Tika tool (https://tika.apache.org/) for deep exploration
5) Any linked or hash-type data found by those tools are merged with the existing Hash or Graph data
6) The Graph is interrogated v.v. if it contains any data""";
fairmi:rationale """Structured, grounded data is inherently easier for machines to accurately process and
interpret, in particular by generic agents, who are able to precisely determine the
meaning of an element based on it being a GUID (and thus, more FAIR)""";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "Graph contains data." .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_F2B.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F3/RAax9bnZ3lsx7ifXhF81GwSH15ophmxS1SDBNV7TPCGEc> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F3/RAax9bnZ3lsx7ifXhF81GwSH15ophmxS1SDBNV7TPCGEc#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_F3 a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-F3";
foaf:primaryTopic fair:F3;
fairmi:comments """A future iteration of this MI will require the use of specific predicates such as schema:identifier to
point to the GUID of the Metadata document itself.""";
fairmi:examples "";
fairmi:measuring """Whether the metadata document contains both its own GUID (which may be different from its address),
and whether it also explicitly contains the GUID for the data resource it describes.""";
fairmi:procedure """Metadata is harvested by:
1) resolving the GUID (following all redirects) with a Content-Type header specifically searching for some form of structured data. e.g.
'Accept: text/turtle, application/n3, application/rdf+n3, application/turtle, application/x-turtle,text/n3,text/turtle, text/rdf+n3, text/rdf+turtle,application/json+ld, text/xhtml+xml,application/rdf+xml,application/n-triples'
2) resolving any Link 'meta' HTTP Headers (processed independently according to this same process, but not iteratively)
3) parsing the response body either as a hash (for non-linked data) or as a Graph for linked data, or both.
4) All other data is passed to the 'extruct' tool (https://github.com/scrapinghub/extruct) or to the Apache Tika tool (https://tika.apache.org/) for deep exploration
5) Any linked or hash-type data found by those tools are merged with the existing Hash or Graph data
To locate the data identifier, hash data is tested for the keys:
* codeRepository
* mainEntity
* primaryTopic
* IAO:0000136 (is about)
* IAO_0000136
* SIO:000332 (is about)
* SIO_000332
* distribution
* contains
Graph data is tested for the properties:
* schema:codeRepository
* schema:mainEntity
* foaf:primaryTopic
* IAO:0000136 (information artifact ontology 'is about')
* SIO:000332 (SemanticScience Integrated Ontology 'is about')
* schema:distribution
* DCAT:distribution (Data Catalogue vocabulary)
* ldp:contains (Linked Data Platform)
To locate the Metadata's GUID:
1) The values of all Hash keys are compared to the GUID provided to the test
(this is not a rigorous test, but the key name cannot be
predicted)
2) The Graph metadata is explored for the \"objects\" of each triple pattern-matching or exact-matching the provided GUID.""";
fairmi:rationale """The discovery of digital object should be possible from its metadata. For this to happen,
the metadata must explicitly contain the identifier for the digital resource it describes,
and this should be present in the form of a qualified reference, indicating some manner of
\"about\" relationship, to distinguish this identifier from the numerous others that will
be present in the metadata.
In addition, since many digital objects cannot be arbitrarily extended to
include references to their metadata, in many cases the only means to
discover the metadata related to a digital object will be to search based
on the GUID of the digital object itself.""";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "Match found" .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_F3.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F4/RA0B7k3GvigQ3VLeJkX-VPYAueJ87xnH88H-zUpZz3H1o> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_F4/RA0B7k3GvigQ3VLeJkX-VPYAueJ87xnH88H-zUpZz3H1o#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .
sub:Head {
this: np:hasAssertion sub:assertion;
np:hasProvenance sub:provenance;
np:hasPublicationInfo sub:pubinfo;
a np:Nanopublication .
}
sub:assertion {
fairmi:Gen2_MI_F4 a fairmi:FAIR-Maturity-Indicator;
rdfs:label "FAIR Maturity Indicator Gen2-MI-F4";
foaf:primaryTopic fair:F4;
fairmi:comments "";
fairmi:examples "";
fairmi:measuring "The degree to which the digital resource can be found using web-based search engines.";
fairmi:procedure """The provided GUID is resolved to its metadata (i.e. a document) and the address of that document
is captured (which may be distinct from the GUID itself)
The GUID is then used in a search. The top 50 results of that search are compared to the
address of the metadata document.
Hash metadata is parsed for the keys \"title\", and \"keywords\", and those values are captured
and used in a search. The top 50 results of that search are compared to the
address of the metadata document.
Graph metadata is queried for predicates containing \"title\" or \"keyword\", and those values are captured
and used in a search. The top 50 results of that search are compared to the
address of the metadata document.""";
fairmi:rationale """Most people use a search engine to initiate a search for a particular digital resource of interest.
If the resource or its metadata are not indexed by web search engines,
then this would substantially diminish an individual’s ability to find and reuse it.
Thus, the ability to discover the resource should be tested using i) its identifier,
ii) other text-based metadata.""";
fairmi:relevance "All";
fairmi:requirements "The Metadata GUID.";
fairmi:validation "Metadata document address is found in top 50 search results" .
}
sub:provenance {
sub:_1 dce:format "text/markdown";
a void:Dataset, dcat:Distribution;
dcat:downloadURL fairmi:Gen2_MI_F4.md .
sub:assertion pav:authoredBy orcid:0000-0001-5306-5690, orcid:0000-0001-6960-357X,
orcid:0000-0001-8888-635X, orcid:0000-0002-1164-1351, orcid:0000-0003-4727-9435;
dcat:distribution sub:_1 .
}
sub:pubinfo {
orcid:0000-0001-6960-357X foaf:name "Mark Wilkinson" .
this: dct:created "2019-02-26"^^xsd:dateTime;
dct:rights <https://creativecommons.org/publicdomain/zero/1.0/>;
dct:rightsHolder <http://fairmetrics.org>;
pav:authoredBy orcid:0000-0001-6960-357X;
pav:createdBy orcid:0000-0002-1267-0234 .
}
@prefix this: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_I1A/RAwLWHMBFaASrq-q9De9jC2O7hflUaT1sP5n-siIJ6DOI> .
@prefix sub: <https://w3id.org/fair/maturity_indicator/np/Gen2/Gen2_MI_I1A/RAwLWHMBFaASrq-q9De9jC2O7hflUaT1sP5n-siIJ6DOI#> .
@prefix fairmi: <https://w3id.org/fair/maturity_indicator/terms/Gen2/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dce: <http://purl.org/dc/elements/1.1/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix orcid: <https://orcid.org/> .
@prefix void: <http://rdfs.org/ns/void#> .