forked from peta-pico/FAIR-nanopubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icc.trig.pre
1785 lines (1525 loc) · 94.4 KB
/
icc.trig.pre
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
# Use this file (with '.pre' extension) for editing. The respective file
# without that extension is automatically generated.
# Introduce working group:
@prefix : <https://w3id.org/fair/icc/np/FAIR-Principles-Explained-Working-Group/> .
@prefix latest: <https://w3id.org/fair/icc/latest/FAIR-Principles-Explained-Working-Group> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:FAIR-Principles-Explained-Working-Group rdfs:label "FAIR Principles Explained Working Group"@en ;
a foaf:Group ;
foaf:member orcid:0000-0003-4818-2360 ,
orcid:0000-0002-7641-6446 ,
orcid:0000-0001-5306-5690 ,
orcid:0000-0003-2687-1982 ,
orcid:0000-0001-9853-5668 ,
orcid:0000-0002-2036-8350 ,
orcid:0000-0002-1267-0234 ,
orcid:0000-0003-4014-4394 ,
orcid:0000-0001-9773-4008 ,
orcid:0000-0002-7633-1442 ,
orcid:0000-0002-1215-167X ,
orcid:0000-0002-4182-7560 ,
orcid:0000-0003-0413-2003 ,
orcid:0000-0003-2376-9755 ,
orcid:0000-0002-9551-6370 ,
orcid:0000-0002-7664-3331 ,
orcid:0000-0001-6441-6716 ,
orcid:0000-0003-0627-8014 ,
orcid:0000-0003-3357-3027 ,
orcid:0000-0002-1704-5980 ,
orcid:0000-0003-2195-3997 ,
orcid:0000-0001-7030-7030 ,
orcid:0000-0002-4451-8042 ,
orcid:0000-0001-8414-9272 ,
orcid:0000-0002-4040-0215 ,
orcid:0000-0001-6594-9178 ,
orcid:0000-0002-3452-553X ,
orcid:0000-0001-7542-0286 ,
orcid:0000-0002-5301-3142 ,
orcid:0000-0003-4098-0464 ,
orcid:0000-0002-8042-4131 ,
orcid:0000-0003-2980-4400 ,
orcid:0000-0003-3538-0106 ,
orcid:0000-0003-4053-7825 ,
orcid:0000-0002-8691-772X ,
orcid:0000-0001-6960-357X ,
orcid:0000-0002-1164-1351 ,
orcid:0000-0003-3934-0072 ,
orcid:0000-0001-8888-635X ;
rdfs:isDefinedBy latest: .
orcid:0000-0003-4818-2360 rdfs:label "Annika Jacobsen" .
orcid:0000-0002-7641-6446 rdfs:label "Ricardo de Miranda Azevedo" .
orcid:0000-0001-5306-5690 rdfs:label "Susanna-Assunta Sansone" .
orcid:0000-0003-2687-1982 rdfs:label "Peter McQuilton" .
orcid:0000-0001-9853-5668 rdfs:label "Philippe Rocca-Serra" .
orcid:0000-0002-2036-8350 rdfs:label "Nick Juty" .
orcid:0000-0002-1267-0234 rdfs:label "Tobias Kuhn" .
orcid:0000-0003-4014-4394 rdfs:label "Ali Hasnain" .
orcid:0000-0001-9773-4008 rdfs:label "Andra Waagmeester" .
orcid:0000-0002-7633-1442 rdfs:label "Mark Thompson" .
orcid:0000-0002-1215-167X rdfs:label "Rajaram Kaliyaperumal" .
orcid:0000-0002-4182-7560 rdfs:label "Kristina Hettne" .
orcid:0000-0003-0413-2003 rdfs:label "Annalisa Montesanti" .
orcid:0000-0003-2376-9755 rdfs:label "Melanie Imming" .
orcid:0000-0002-9551-6370 rdfs:label "Mélanie Courtot" .
orcid:0000-0002-7664-3331 rdfs:label "Juliane Schneider" .
orcid:0000-0001-6441-6716 rdfs:label "Natalie Meyers" .
orcid:0000-0003-0627-8014 rdfs:label "Mirjam van Reisen" .
orcid:0000-0003-3357-3027 rdfs:label "Martijn Kersloot" .
orcid:0000-0002-1704-5980 rdfs:label "Ronal Cornet" .
orcid:0000-0003-2195-3997 rdfs:label "Barbara Magagna" .
orcid:0000-0001-7030-7030 rdfs:label "Ignasi Labastida" .
orcid:0000-0002-4451-8042 rdfs:label "Christine R. Kirkpatrick" .
orcid:0000-0001-8414-9272 rdfs:label "Simon Coles" .
orcid:0000-0002-4040-0215 rdfs:label "Tobias Weigel" .
orcid:0000-0001-6594-9178 rdfs:label "Christopher Brewster" .
orcid:0000-0002-3452-553X rdfs:label "Giancarlo Guizzardi" .
orcid:0000-0001-7542-0286 rdfs:label "Egon Willighagen" .
orcid:0000-0002-5301-3142 rdfs:label "Chris T. Evelo" .
orcid:0000-0003-4098-0464 rdfs:label "George Strawn" .
orcid:0000-0002-8042-4131 rdfs:label "Myles Axton" .
orcid:0000-0003-2980-4400 rdfs:label "Robert Pergl" .
orcid:0000-0003-3538-0106 rdfs:label "Peter Wittenburg" .
orcid:0000-0003-4053-7825 rdfs:label "Keith Jeffery" .
orcid:0000-0002-8691-772X rdfs:label "Marco Roos" .
orcid:0000-0001-6960-357X rdfs:label "Mark D. Wilkinson" .
orcid:0000-0002-1164-1351 rdfs:label "Luiz Olavo Bonino da Silva Santos" .
orcid:0000-0003-3934-0072 rdfs:label "Barend Mons" .
orcid:0000-0001-8888-635X rdfs:label "Erik Schultes" .
}
:provenance {
:assertion prov:wasAttributedTo icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:rights <https://creativecommons.org/publicdomain/zero/1.0> ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime .
}
# Introduce ontology:
@prefix : <https://w3id.org/fair/icc/np/FAIR-ICC-Model/> .
@prefix latest: <https://w3id.org/fair/icc/latest/FAIR-ICC-Model> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix sio: <http://semanticscience.org/resource/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:FAIR-ICC-Model a owl:Ontology ;
vann:preferredNamespaceUri "https://w3id.org/fair/icc/terms/" ;
vann:preferredNamespacePrefix "icc" ;
dct:title "FAIR Implementation Choices and Challenges Model" ;
dct:description "This is the formal model describing the Implementation Choices and Challenges for the FAIR principles." ;
rdfs:seeAlso fair:FAIR ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
# Class definitions:
@prefix : <https://w3id.org/fair/icc/np/Choice/> .
@prefix latest: <https://w3id.org/fair/icc/latest/Choice> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:Choice rdfs:label "Choice"@en ;
a owl:Class ;
skos:definition "The kind of choice communities have to make (can be expressed as a question)"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/Challenge/> .
@prefix latest: <https://w3id.org/fair/icc/latest/Challenge> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:Challenge rdfs:label "Challenge"@en ;
a owl:Class ;
skos:definition "The kind of challenge that some communities face if the lack of existing resources doesn't allow them to make a choice yet"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/Declaration/> .
@prefix latest: <https://w3id.org/fair/icc/latest/Declaration> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:Declaration rdfs:label "Declaration"@en ;
a owl:Class ;
skos:definition "Something that is either a ChoiceDeclaration or a ChallengeDeclaration"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/ChoiceDeclaration/> .
@prefix latest: <https://w3id.org/fair/icc/latest/ChoiceDeclaration> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:ChoiceDeclaration rdfs:label "Choice Declaration"@en ;
rdfs:subClassOf icc:Declaration ;
skos:definition "The expression of a community of their choice made (corresponds to an answer to a question)"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/ChallengeDeclaration/> .
@prefix latest: <https://w3id.org/fair/icc/latest/ChallengeDeclaration> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:ChallengeDeclaration rdfs:label "Challenge Declaration"@en ;
rdfs:subClassOf icc:Declaration ;
skos:definition "The expression of a community of a challenge they accepted"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/Community/> .
@prefix latest: <https://w3id.org/fair/icc/latest/Community> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:Community rdfs:label "Community"@en ;
a owl:Class ;
skos:definition "A non-empty set of people and/or organizations that form a self-declared community with the aim to implement the FAIR principles for their fields of interest"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/Resource/> .
@prefix latest: <https://w3id.org/fair/icc/latest/Resource> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:Resource rdfs:label "Resource"@en ;
a owl:Class ;
skos:definition "An artifact or service that can contribute to the implementation of the FAIR principles"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/Explanation/> .
@prefix latest: <https://w3id.org/fair/icc/latest/Explanation> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:Explanation rdfs:label "Explanation"@en ;
a owl:Class ;
skos:definition "An explanation of a FAIR (sub)principle"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
# Property definitions:
@prefix : <https://w3id.org/fair/icc/np/explains-principle/> .
@prefix latest: <https://w3id.org/fair/icc/latest/explains-principle> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:explains-principle rdfs:label "explains principle"@en ;
a rdf:Property ;
rdfs:domain icc:Explanation ;
rdfs:range fair:FAIR-Principle-or-SubPrinciple ;
skos:definition "Links an explanation to the FAIR (sub)principle it explains"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/implementation-considerations/> .
@prefix latest: <https://w3id.org/fair/icc/latest/implementation-considerations> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:implementation-considerations rdfs:label "implementation consideration"@en ;
a owl:DatatypeProperty ;
rdfs:domain icc:Explanation ;
skos:definition "Explains considerations for communities who are about to implement the given principle."@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/implementation-examples/> .
@prefix latest: <https://w3id.org/fair/icc/latest/implementation-examples> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:implementation-examples rdfs:label "implementation examples"@en ;
a owl:DatatypeProperty ;
rdfs:domain icc:Explanation ;
skos:definition "Describes examples around the implementation of the given principle."@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/refers-to-principle/> .
@prefix latest: <https://w3id.org/fair/icc/latest/refers-to-principle> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:refers-to-principle rdfs:label "refers to principle"@en ;
a rdf:Property ;
rdfs:range fair:FAIR-Principle-or-SubPrinciple ;
skos:definition "Connects an entity (for example a choice or challenge) to a FAIR (sub)principle it refers to"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/related-challenge/> .
@prefix latest: <https://w3id.org/fair/icc/latest/related-challenge> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:related-challenge rdfs:label "related challenge"@en ;
a rdf:Property ;
rdfs:domain icc:Choice ;
rdfs:range icc:Challenge ;
skos:definition "Connects a Choice to a Challenge that some communities might face before they can make the given kind of choice"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/refers-to-choice/> .
@prefix latest: <https://w3id.org/fair/icc/latest/refers-to-choice> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:refers-to-choice rdfs:label "refers to choice"@en ;
a rdf:Property ;
rdfs:domain icc:ChoiceDeclaration ;
rdfs:range icc:Choice ;
skos:definition "Connects a ChoiceDeclaration to the Choice it is derived from"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/refers-to-challenge/> .
@prefix latest: <https://w3id.org/fair/icc/latest/refers-to-challenge> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:refers-to-challenge rdfs:label "refers to challenge"@en ;
a rdf:Property ;
rdfs:domain icc:ChallengeDeclaration ;
rdfs:range icc:Challenge ;
skos:definition "Connects a ChallengeDeclaration to the Challenge it is derived from"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/declared-by/> .
@prefix latest: <https://w3id.org/fair/icc/latest/declared-by> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:declared-by rdfs:label "declared by"@en ;
a rdf:Property ;
rdfs:domain icc:Declaration ;
rdfs:range icc:Community ;
skos:definition "Connects a Declaration to the Community that made the declaration"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/chosen-resource/> .
@prefix latest: <https://w3id.org/fair/icc/latest/chosen-resource> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:chosen-resource rdfs:label "chosen resource"@en ;
a rdf:Property ;
rdfs:domain icc:ChoiceDeclaration ;
rdfs:range icc:Resource ;
skos:definition "Connects ChoiceDeclaration to the Resource that was chosen through the declaration"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
@prefix : <https://w3id.org/fair/icc/np/had-challenge/> .
@prefix latest: <https://w3id.org/fair/icc/latest/had-challenge> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:had-challenge rdfs:label "has open challenge"@en ;
a rdf:Property ;
rdfs:domain icc:ChoiceDeclaration ;
rdfs:range icc:ChallengeDeclaration ;
skos:definition "Connects a ChoiceDeclaration to a ChallengeDeclaration that describes a challenge that had to be met before the choice could be made"@en ;
rdfs:isDefinedBy latest: .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
# Explanation of F1:
@prefix : <https://w3id.org/fair/icc/np/F1-Explanation/> .
@prefix latest: <https://w3id.org/fair/icc/latest/F1-Explanation> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix refers-to: <http://semanticscience.org/resource/SIO_000628> .
@prefix dbpedia: <http://dbpedia.org/resource/> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:F1-Explanation rdfs:label "Explanation of FAIR principle F1" ;
a icc:Explanation ;
icc:explains-principle fair:F1 ;
rdfs:comment "Principle F1 states that digital resources, i.e. data and metadata, must be assigned a globally unique and persistent identifier in order to be found and resolved by computers. This is the most fundamental of the FAIR principles, as globally unique and persistent identifiers are essential elements found in all of the other FAIR principles. Globally unique means that the identifier is guaranteed to unambiguously refer to exactly one resource in the world. Therefore, it is insufficient for it to be unique only locally (e.g. unique within a single, local database). Persistence refers to the requirement that this globally unique identifier is never reused in another context, and continues to identify the same resource, even if that resource no longer exists, or moves. In practice, this often involves using a third-party to generate an identifier that has guaranteed longevity and is project/organization-independent." ;
icc:implementation-considerations "Current challenges relate to ensuring the longevity of identifiers - in particular, that identifiers created by a project/community should survive the termination of the project or the dissolution of the community. Obtaining a persistent identifier, therefore, may require reliance on a third-party organization that promises longevity, and maintains these identifiers independently of the project/community. Current choices are for each community to choose, for all appropriate digital resources (i.e. data and metadata), identifier registration service(s) such as these that ensure global uniqueness and that also comply with the community-defined criteria for identifier persistence and resolvability." ;
icc:implementation-examples "A common example of a useful identifier is the Digital Object Identifier (DOI) which is guaranteed by the DOI specification to be globally unique and persistent. DOIs provide an additional service, under principle A1, of being able to direct calls to the source data to the location of that data, even if the identified data moves. This ensures that identifiers are stable and valid beyond the project that generated them. In some circumstances, again with DOIs being an example, third-party persistent identifiers may also provide support for principle A2 (that metadata exists beyond the lifespan of the data) since these identifiers may still be responsive to Web calls, and be capable of providing metadata, even if the source resource is no longer active. For a discussion on identifiers see doi:10.1371/journal.pbio.2001414 and doi:10.5281/zenodo.3267434 ." ;
rdfs:seeAlso <https://doi.org/10.1371/journal.pbio.2001414> ;
rdfs:seeAlso <https://doi.org/10.5281/zenodo.3267434> ;
rdfs:seeAlso dbpedia:Digital_object_identifier ;
rdfs:isDefinedBy latest: .
fair:F1 rdfs:label "F1" .
<https://doi.org/10.1371/journal.pbio.2001414> rdfs:label "McMurry et al. 2017" .
<https://doi.org/10.5281/zenodo.3267434> rdfs:label "Juty et al. 2019" .
dbpedia:Digital_object_identifier rdfs:label "Digital object identifier" .
}
:provenance {
:assertion pav:authoredBy icc:FAIR-Principles-Explained-Working-Group .
}
:pubinfo {
: dct:created "2019-11-22T18:41:24.945+01:00"^^xsd:dateTime ;
dct:creator orcid:0000-0001-8888-635X , orcid:0000-0002-1267-0234, orcid:0000-0003-4818-2360 ;
dct:license <https://creativecommons.org/publicdomain/zero/1.0/> .
}
# Explanation of F2:
@prefix : <https://w3id.org/fair/icc/np/F2-Explanation/> .
@prefix latest: <https://w3id.org/fair/icc/latest/F2-Explanation> .
@prefix icc: <https://w3id.org/fair/icc/terms/> .
@prefix fair: <https://w3id.org/fair/principles/terms/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix npx: <http://purl.org/nanopub/x/> .
@prefix orcid: <https://orcid.org/> .
@prefix refers-to: <http://semanticscience.org/resource/SIO_000628> .
@prefix dbpedia: <http://dbpedia.org/resource/> .
:Head {
: a np:Nanopublication;
np:hasAssertion :assertion ;
np:hasProvenance :provenance ;
np:hasPublicationInfo :pubinfo .
}
:assertion {
icc:F2-Explanation rdfs:label "Explanation of FAIR principle F2" ;
a icc:Explanation ;
icc:explains-principle fair:F2 ;