-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patht4fs-simple.json
12266 lines (12266 loc) · 528 KB
/
t4fs-simple.json
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
{
"graphs" : [ {
"id" : "http://purl.obolibrary.org/obo/t4fs/t4fs-simple.json",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.org/dc/terms/description",
"val" : "terms4FAIRskills describes the competencies, skills and knowledge associated with making and keeping data FAIR.\\nThis terminology applies to a variety of use cases, including: assisting with the creation and assessment of stewardship curricula; facilitating the annotation, discovery and evaluation of FAIR-enabling materials \\(e.g. training\\) and resources; enabling the formalisation of job descriptions and CVs with recognised, structured competencies.\\nIt is intended to be of use to trainers who teach FAIR data skills, researchers who wish to identify skill gaps in their teams and managers who need to recruit individuals to relevant roles."
}, {
"pred" : "http://purl.org/dc/terms/license",
"val" : "http://creativecommons.org/licenses/by/4.0/"
}, {
"pred" : "http://purl.org/dc/terms/title",
"val" : "terms4FAIRskills (T4FS)"
}, {
"pred" : "http://www.w3.org/2000/01/rdf-schema#comment",
"val" : "terms4FAIRskills by the terms4FAIRskills developers is licensed under CC BY 4.0. You are free to share (copy and redistribute the material in any medium or format) and adapt (remix, transform, and build upon the material) for any purpose, even commercially. for any purpose, even commercially. The licensor cannot revoke these freedoms as long as you follow the license terms. You must give appropriate credit (by using the original ontology IRI for the whole ontology and original term IRIs for individual terms), provide a link to the license, and indicate if any changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use."
}, {
"pred" : "http://www.w3.org/2002/07/owl#versionInfo",
"val" : "2025-02-09"
} ],
"version" : "http://purl.obolibrary.org/obo/t4fs/releases/2025-02-09/t4fs-simple.json"
},
"nodes" : [ {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000002",
"lbl" : "pipe separated values",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Values in a table presented as a series of ASCII text lines organised so that each column value is separated by a pipe ( | )."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000004",
"lbl" : "software preservation",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Software preservation involves the collection and long-term storage of software for archiving as well as maintaining availability and accessibility."
},
"comments" : [ "AL 8.2.22: Refactored \"software review and preservation\" to \"software preservation\", as the review process is not within the remit of terms4FAIRskills. Added definition and source." ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Kristina Hettne"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Victoria Dominguez Del Angel"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yann Le Franc"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000005",
"lbl" : "repository access",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "In accessing a repository one uses a client (application) to discover relevant digital objects within a repository, and then retrieve a copy of a desired digital object."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000006",
"lbl" : "develop fair and open research vision",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Include FAIR and open research in the strategic framework for the organization and set objectives and timeframe."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Angus Whyte"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Celia van Gelder"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Mateusz Kuzak"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yan Wang"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000008",
"lbl" : "develop open research strategy and vision",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The activity of developing an open research strategy and vision."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Angus Whyte"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Celia van Gelder"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Mateusz Kuzak"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yan Wang"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000009",
"lbl" : "data management policy",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Statement of an organisation’s processes for the management of a specified set of data assets."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000010",
"lbl" : "understand research code of conduct",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Understand how the governing principles of research integrity and FAIR overlap"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Angus Whyte"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Celia van Gelder"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000011",
"lbl" : "choosing the appropriate reporting guideline for your data",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "To be able to choose the appropriate reporting guideline/checklist for your data, based on community-adopted standards."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000012",
"lbl" : "data stewardship activity",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A specific deed, action, function or sphere of action in relation with the role of data stewardship"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yann Le Franc"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
}, {
"pred" : "http://purl.obolibrary.org/obo/T4FS_0000564",
"val" : "Set of actions carried out during data stewardship processes"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000013",
"lbl" : "data munging",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A series of potentially destructive or irrevocable changes to a piece of data or a file. Common munging operations include removing punctuation or html tags, data parsing, filtering, and transformation."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000014",
"lbl" : "interoperability of digital assets",
"type" : "CLASS",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000016",
"lbl" : "skills for resource management",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Bin for Skills related to Resource management"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "leightonlc"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000017",
"lbl" : "preservation",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An activity within archiving in which specific items of data are maintained over time so that they can still be accessed and understood through changes in technology."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "Conservation"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000018",
"lbl" : "data categorisation",
"type" : "CLASS",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "Data Categorization"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "Data Classification"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#created_by",
"val" : "https://orcid.org/0000-0003-2687-1982"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date",
"val" : "2021-02-17T22:30:31.531624Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000019",
"lbl" : "data registration",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Curation process on a data object by which it receives a persistent identifier (PID) from a trusted registration authority. Registration must be accompanied by the step(s) to create and submit metadata describing the object to the registry."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000020",
"lbl" : "interoperability",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The capability to communicate, execute programs, or transfer data among various functional units in a useful and meaningful manner that requires the user to have little or no knowledge of the unique characteristics of those units. Foundational, syntactic, and semantic interoperability are the three necessary aspects of interoperability."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "v"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000021",
"lbl" : "exposing data",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Exposing data is the activity of exposing your data to collaborators, the public, or other interested parties. A data producer makes the data accessible to external users in a machine- and/or human-readable way."
},
"comments" : [ "AL 15.3.22: Was \"expose your data\", which was not in the style of other term labels. Also updated definition, but might need revisiting later for a more formal definition." ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000023",
"lbl" : "aptitudes for workflow technologies management",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Bin for Aptitudes related to Workflow technologies management."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "leightonlc"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000024",
"lbl" : "de facto standard",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A standard that is widely accepted and used, but lacks formal approval by a recognized standards developing organization (e.g., the QWERTY keyboard)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000025",
"lbl" : "data entity",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Object, event or phenomenon about which data are stored in a database and which has intermediate representation in a Data Model."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000026",
"lbl" : "real-time data",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Data that are being received, processed and stored at the time of their occurrence with only small delays. Examples include: stock quotes, manufacturing statistics, Web server loads, data warehouse activity and sensor feeds to data collectors. Real-time data are often used for navigation or tracking. Real-time data are data streams that are typically generated by sensors and received via direct networking connections."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000027",
"lbl" : "storage security risk assessment and mitigation",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Detect and analysis security risk of storage periodically, and minimize the impact of the risks detected"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Angus Whyte"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Celia van Gelder"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Mateusz Kuzak"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yan Wang"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000028",
"lbl" : "remote access",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The ability to get access to a computer or a network from a remote distance. Access may be through an Internet service provider (ISP) or through a dedicated line between a computer or a remote local area network and the central or main corporate local area network. A dedicated line is more expensive and less flexible but offers faster data rates."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000029",
"lbl" : "fair stewardship supervising",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The activity of supervision of other people to ensure FAIR data practices."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Philippe Rocca-Serra"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Susanna Sansone"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000030",
"lbl" : "skills related to high performance computing management",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Bin for Skills needed for High performance computing management."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "leightonlc"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000031",
"lbl" : "fair metrics selection skills",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Ability to select the appropriate FAIR metrics among the existing ones in relation to the type of digital object concerned."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Kristina Hettne"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Victoria Dominguez Del Angel"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yann Le Franc"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000032",
"lbl" : "relational database",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "A collection of data items organized as a set of formally-described tables from which data can be accessed or reassembled in many different ways without having to reorganize the database tables. The standard user and application program interface to a relational database is the structured query language (SQL)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000033",
"lbl" : "non identifiable data",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Data that could not lead to the identification of a specific object of interest. These may be data that have been de-identified, or that could not lead to identifiable information in the first place."
},
"comments" : [ "AL 6.5.22: Modifed CASRAI definition to distinguish this term from 'non personally identifiable information.' Further work may determine whether or not both terms are required." ],
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000034",
"lbl" : "database developer",
"type" : "CLASS"
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000036",
"lbl" : "curation",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Managing and promoting the use of assets from their point of creation to ensure that they are fit for contemporary purpose and available for discovery and reuse. For dynamic datasets this may mean continuous enrichment or updating to keep them fit for purpose. Higher levels of curation will also involve links with annotation and with other published materials."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000038",
"lbl" : "A1. (meta)data are retrievable by their identifier using a standardised communications protocol",
"type" : "CLASS",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000039",
"lbl" : "version control",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Control over time of data, computer code, software, and documents that allows for the ability to revert to a previous revision, which is critical for data traceability, tracking edits, and correcting mistakes. Version control generates a (changed) copy of a data object that is uniquely labelled with a version number. The intent is to track changes to a data object, by making versioned copies. Note that a version is different from a backup copy, which is typically a copy made at a specific point in time, or a replica."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "Versioning, Revision control, Source control"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000041",
"lbl" : "understanding fair and open research challenges in your organization",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Understand the FAIR and open research practices, and the research landscape / current data management practices in the organization."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Angus Whyte"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Celia van Gelder"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Mateusz Kuzak"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yan Wang"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000042",
"lbl" : "ethical application of patents, licenses",
"type" : "CLASS"
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000043",
"lbl" : "data access protocol",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "System that allows users to be granted access to a database under specified conditions."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000044",
"lbl" : "data processing",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Generic concept referring to all kinds of procedures being executed on data at any point in the data lifecycle."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000045",
"lbl" : "data organization",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Set of measures that are used by a repository to form aggregations of data objects (including collections and metadata) to describe the properties of data objects, to register PIDs, to build the PID records, to link between all components, and to set up the containers (in the form of the software stack) that are used to store all components."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000046",
"lbl" : "data rescue",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Recovery and/or transformation and digitization of dark data and at-risk data so that they can be preserved, accessed, shared, and used. Data rescue also involves the addition of rich metadata to make the content understandable and more easily re-usable."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000047",
"lbl" : "understand societal impact of research",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Anticipate possible implications of the research and making its outputs FAIR, reflecting on rmotivations and areas of uncertainty"
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Angus Whyte"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Celia van Gelder"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Mateusz Kuzak"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yan Wang"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000048",
"lbl" : "searching via algorithms and software",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "To be able to search using software with a GUI or terminal access. For example using BLAST or genomic search tools in the life sciences."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "Algorithm searching"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "Programmatic search"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "batch search"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000049",
"lbl" : "audit",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Evaluation of an organisation, system, group, project or product with respect to its data and processes around this, often in accordance with a standard, guide, or framework used to structure the work. This can involve assessing, describing, and classifying any data held. An audit can be carried out internally by those who have access to the data or participate in related processes regularly, or by an independent, external actor."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000050",
"lbl" : "wiki site",
"type" : "CLASS",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://www.geneontology.org/formats/oboInOwl#created_by",
"val" : "https://orcid.org/0000-0003-2687-1982"
}, {
"pred" : "http://www.geneontology.org/formats/oboInOwl#creation_date",
"val" : "2020-10-01T21:03:37.147424Z"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000051",
"lbl" : "skills related to authorisation management",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Bin for Skills needed for Authorization management."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "leightonlc"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000053",
"lbl" : "storage management",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "The term storage management encompasses the technologies and processes organizations use to maximize or improve the performance of their data storage resources. It is a broad category that includes virtualization, replication, mirroring, security, compression, traffic analysis, process automation, storage provisioning and related techniques."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Kristina Hettne"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Simon Hodson"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Victoria Dominguez Del Angel"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000054",
"lbl" : "data warehouse",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Central repository for all or significant parts of the data that an organisation’s various business systems collect, containing harmonised, highly-structured, quality data integrated from multiple sources. Data warehousing emphasises the capture of data from diverse sources for useful analysis and access, but does not generally start from the point-of-view of the end user who may need access to specialised data marts. There are two approaches to data warehousing: The top-down approach spins off data marts for specific groups of users after the complete data warehouse has been created. The bottom-up approach builds the data marts first and then combines them into a single, all-encompassing data warehouse."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000055",
"lbl" : "data driven disaster",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Serious problem caused by one or more ineffective data analysis processes."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000056",
"lbl" : "data identifier",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "An identifier that uniquely distinguishes one set of data from all others."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000057",
"lbl" : "data splitting",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Protecting sensitive data from unauthorised access by encrypting the data and storing different portions of a file on different servers. An unauthorised person would need to know the locations of the servers containing the parts, be able to get access to each server, know what data to combine, and how to decrypt it. Data splitting can be made even more effective by periodically retrieving and recombining the parts, and then splitting the data in a different way among different servers, and using a different encryption key."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000058",
"lbl" : "manage access",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Monitor the status of information access of different stakeholder groups. Evaluate new access request and authorize or decline it. Update the organizational information access overview."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Angus Whyte"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Celia van Gelder"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Mateusz Kuzak"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Yan Wang"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000059",
"lbl" : "system metadata",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Digital entity properties that are generated by the data management system (e.g., creation time; owner; storage location; data retention period; the length of time a digital entity will be retained)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000060",
"lbl" : "tactical/short-term planning",
"type" : "CLASS",
"meta" : {
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Philippe Rocca-Serra"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "Susanna Sansone"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000061",
"lbl" : "electronic medical record",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Electronic version of the paper record that doctors have traditionally maintained for their patients and which is typically only accessible within the facility or office that controls it."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000062",
"lbl" : "aptitudes for provenance information management",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Bin for Aptitudes related to Provenance information management."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "leightonlc"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000065",
"lbl" : "data modeling",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Formalising and documenting existing processes and events. A first step in analysing a system of objects with which users interact is to identify each object and its relationship to other objects. This process is called data modelling and results in a picture of object relationships. Data modellers often use multiple models to view the same data and ensure that all processes, entities, relationships and data flows have been identified. There are several different approaches to data modelling, including: Conceptual Data Modelling (identifies the highest-level relationships between different entities); Enterprise Data Modelling (similar to conceptual data modelling, but addresses the unique requirements of a specific organisation); Logical Data Modelling (illustrates the specific entities, attributes and relationships involved in a business function. Serves as the basis for the creation of the physical data model); Physical Data Modelling (represents an application and database-specific implementation of a logical data model)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000067",
"lbl" : "use of aggregator sites",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "To be able to search and understand the results from dataset aggregrator sites. To understand the implications of the provenance of the data and how to integrate and analyse data with differing metadata."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000118",
"val" : "Searching aggregator sites"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000068",
"lbl" : "manage metadata catalog",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Implement the policies that govern the choice of metadata schema, reserved vocabularies, metadata organization in tables, and metadata properties (creation date, access control, ownership, etc.)."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000069",
"lbl" : "data transformation",
"type" : "CLASS",
"meta" : {
"definition" : {
"val" : "Manipulation of raw data to produce a single output."
},
"basicPropertyValues" : [ {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-5214-4466"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0002-7702-4495"
}, {
"pred" : "http://purl.obolibrary.org/obo/IAO_0000117",
"val" : "https://orcid.org/0000-0003-2687-1982"
} ]
}
}, {
"id" : "http://purl.obolibrary.org/obo/T4FS_0000070",
"lbl" : "cataloguing",
"type" : "CLASS",
"meta" : {
"definition" : {