-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patht4fs.obo
5195 lines (4604 loc) · 347 KB
/
t4fs.obo
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
format-version: 1.2
data-version: releases/2025-02-09
idspace: dce http://purl.org/dc/elements/1.1/
idspace: dcterms http://purl.org/dc/terms/
idspace: foaf http://xmlns.com/foaf/0.1/
idspace: oboInOwl http://www.geneontology.org/formats/oboInOwl#
idspace: protege http://protege.stanford.edu/plugins/owl/protege#
idspace: swrl http://www.w3.org/2003/11/swrl#
idspace: swrlb http://www.w3.org/2003/11/swrlb#
remark: 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.
ontology: t4fs
property_value: dcterms:description "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." xsd:string
property_value: dcterms:license http://creativecommons.org/licenses/by/4.0/
property_value: dcterms:title "terms4FAIRskills (T4FS)" xsd:string
property_value: owl:versionInfo "2025-02-09" xsd:string
[Term]
id: BFO:0000001
name: entity
property_value: BFO:0000179 "entity" xsd:string
property_value: BFO:0000180 "Entity" xsd:string
property_value: IAO:0000112 "Julius Caesar" xsd:string
property_value: IAO:0000112 "the Second World War" xsd:string
property_value: IAO:0000112 "Verdi’s Requiem" xsd:string
property_value: IAO:0000112 "your body mass index" xsd:string
property_value: IAO:0000116 "BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81" xsd:string
property_value: IAO:0000116 "Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000004", comment="per discussion with Barry Smith", seeAlso="http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"}
property_value: IAO:0000600 "An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/001-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000002
name: continuant
def: "An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts." []
is_a: BFO:0000001 ! entity
disjoint_from: BFO:0000003 ! occurent
property_value: BFO:0000179 "continuant" xsd:string
property_value: BFO:0000180 "Continuant" xsd:string
property_value: IAO:0000116 "BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240" xsd:string
property_value: IAO:0000116 "Continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster's other portions of reality, questions are raised as to whether universals are continuants" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000007"}
property_value: IAO:0000600 "A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/008-002"}
property_value: IAO:0000601 "if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/126-001"}
property_value: IAO:0000601 "if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/009-002"}
property_value: IAO:0000601 "if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/011-002"}
property_value: IAO:0000602 "(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/009-002"}
property_value: IAO:0000602 "(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/126-001"}
property_value: IAO:0000602 "(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/008-002"}
property_value: IAO:0000602 "(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/011-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000003
name: occurent
name: occurrent
def: "An entity that has temporal parts and that happens, unfolds or develops through time." []
is_a: BFO:0000001 ! entity
property_value: BFO:0000179 "occurrent" xsd:string
property_value: BFO:0000180 "Occurrent" xsd:string
property_value: IAO:0000116 "BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region" xsd:string
property_value: IAO:0000116 "BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players." xsd:string
property_value: IAO:0000116 "Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process." xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000006", comment="per discussion with Barry Smith"}
property_value: IAO:0000116 "Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame." xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000012"}
property_value: IAO:0000600 "An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/077-002"}
property_value: IAO:0000601 "b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/079-001"}
property_value: IAO:0000601 "Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/108-001"}
property_value: IAO:0000602 "(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/108-001"}
property_value: IAO:0000602 "(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/079-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000004
name: independent continuant
def: "b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])" [] {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/017-002"}
is_a: BFO:0000002 ! continuant
disjoint_from: BFO:0000020 ! specifically dependent continuant
disjoint_from: BFO:0000031 ! generically dependent continuant
property_value: BFO:0000179 "ic" xsd:string
property_value: BFO:0000180 "IndependentContinuant" xsd:string
property_value: IAO:0000112 "a chair" xsd:string
property_value: IAO:0000112 "a heart" xsd:string
property_value: IAO:0000112 "a leg" xsd:string
property_value: IAO:0000112 "a molecule" xsd:string
property_value: IAO:0000112 "a spatial region" xsd:string
property_value: IAO:0000112 "an atom" xsd:string
property_value: IAO:0000112 "an orchestra." xsd:string
property_value: IAO:0000112 "an organism" xsd:string
property_value: IAO:0000112 "the bottom right portion of a human torso" xsd:string
property_value: IAO:0000112 "the interior of your mouth" xsd:string
property_value: IAO:0000601 "For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/134-001"}
property_value: IAO:0000601 "For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/018-002"}
property_value: IAO:0000602 "(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/018-002"}
property_value: IAO:0000602 "(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/134-001"}
property_value: IAO:0000602 "(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/017-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000015
name: process
def: "p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])" [] {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/083-003"}
is_a: BFO:0000003 ! occurent
property_value: BFO:0000179 "process" xsd:string
property_value: BFO:0000180 "Process" xsd:string
property_value: IAO:0000112 "a process of cell-division, \\ a beating of the heart" xsd:string
property_value: IAO:0000112 "a process of meiosis" xsd:string
property_value: IAO:0000112 "a process of sleeping" xsd:string
property_value: IAO:0000112 "the course of a disease" xsd:string
property_value: IAO:0000112 "the flight of a bird" xsd:string
property_value: IAO:0000112 "the life of an organism" xsd:string
property_value: IAO:0000112 "your process of aging." xsd:string
property_value: IAO:0000116 "BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)" xsd:string
property_value: IAO:0000602 "(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/083-003"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000016
name: disposition
is_a: BFO:0000017 ! realizable entity
disjoint_from: BFO:0000023 ! role
property_value: BFO:0000179 "disposition" xsd:string
property_value: BFO:0000180 "Disposition" xsd:string
property_value: IAO:0000112 "an atom of element X has the disposition to decay to an atom of element Y" xsd:string
property_value: IAO:0000112 "certain people have a predisposition to colon cancer" xsd:string
property_value: IAO:0000112 "children are innately disposed to categorize objects in certain ways." xsd:string
property_value: IAO:0000112 "the cell wall is disposed to filter chemicals in endocytosis and exocytosis" xsd:string
property_value: IAO:0000116 "BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type." xsd:string
property_value: IAO:0000600 "b is a disposition means: b is a realizable entity & b’s bearer is some material entity & b is such that if it ceases to exist, then its bearer is physically changed, & b’s realization occurs when and because this bearer is in some special physical circumstances, & this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/062-002"}
property_value: IAO:0000601 "If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/063-002"}
property_value: IAO:0000602 "(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/063-002"}
property_value: IAO:0000602 "(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/062-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000017
name: realizable entity
def: "A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances." []
is_a: BFO:0000020 ! specifically dependent continuant
disjoint_from: BFO:0000019 ! quality
property_value: BFO:0000179 "realizable" xsd:string
property_value: BFO:0000180 "RealizableEntity" xsd:string
property_value: IAO:0000112 "the disposition of this piece of metal to conduct electricity." xsd:string
property_value: IAO:0000112 "the disposition of your blood to coagulate" xsd:string
property_value: IAO:0000112 "the function of your reproductive organs" xsd:string
property_value: IAO:0000112 "the role of being a doctor" xsd:string
property_value: IAO:0000112 "the role of this boundary to delineate where Utah and Colorado meet" xsd:string
property_value: IAO:0000600 "To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/058-002"}
property_value: IAO:0000601 "All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/060-002"}
property_value: IAO:0000602 "(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/060-002"}
property_value: IAO:0000602 "(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/058-002"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000019
name: quality
is_a: BFO:0000020 ! specifically dependent continuant
property_value: BFO:0000179 "quality" xsd:string
property_value: BFO:0000180 "Quality" xsd:string
property_value: IAO:0000112 "the ambient temperature of this portion of air" xsd:string
property_value: IAO:0000112 "the color of a tomato" xsd:string
property_value: IAO:0000112 "the length of the circumference of your waist" xsd:string
property_value: IAO:0000112 "the mass of this piece of gold." xsd:string
property_value: IAO:0000112 "the shape of your nose" xsd:string
property_value: IAO:0000112 "the shape of your nostril" xsd:string
property_value: IAO:0000600 "a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/055-001"}
property_value: IAO:0000601 "If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/105-001"}
property_value: IAO:0000602 "(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/105-001"}
property_value: IAO:0000602 "(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/055-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000020
name: specifically dependent continuant
def: "b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])" [] {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/050-003"}
is_a: BFO:0000002 ! continuant
disjoint_from: BFO:0000031 ! generically dependent continuant
property_value: BFO:0000179 "sdc" xsd:string
property_value: BFO:0000180 "SpecificallyDependentContinuant" xsd:string
property_value: IAO:0000112 "of one-sided specifically dependent continuants: the mass of this tomato" xsd:string
property_value: IAO:0000112 "of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates." xsd:string
property_value: IAO:0000112 "Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key" xsd:string
property_value: IAO:0000112 "the disposition of this fish to decay" xsd:string
property_value: IAO:0000112 "the function of this heart: to pump blood" xsd:string
property_value: IAO:0000112 "the mutual dependence of proton donors and acceptors in chemical reactions [79" xsd:string
property_value: IAO:0000112 "the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction" xsd:string
property_value: IAO:0000112 "the pink color of a medium rare piece of grilled filet mignon at its center" xsd:string
property_value: IAO:0000112 "the role of being a doctor" xsd:string
property_value: IAO:0000112 "the shape of this hole." xsd:string
property_value: IAO:0000112 "the smell of this portion of mozzarella" xsd:string
property_value: IAO:0000116 "Specifically dependent continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. We're not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc." xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/0000005", comment="per discussion with Barry Smith"}
property_value: IAO:0000602 "(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/050-003"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000023
name: role
def: "A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts." []
is_a: BFO:0000017 ! realizable entity
relationship: T4FS:0000558 T4FS:0000012 ! has/wants competency in data stewardship activity
relationship: T4FS:0000559 T4FS:0000372 ! has/wants knowledge about data stewardship technical concept
relationship: T4FS:0000559 T4FS:0000446 ! has/wants knowledge about data stewardship guideline
relationship: T4FS:0000561 T4FS:0000372 ! has/wants practical skill about data stewardship technical concept
relationship: T4FS:0000562 T4FS:0000548 ! has aptitude for data stewardship soft skill
property_value: BFO:0000179 "role" xsd:string
property_value: BFO:0000180 "Role" xsd:string
property_value: IAO:0000112 "John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married." xsd:string
property_value: IAO:0000112 "the priest role" xsd:string
property_value: IAO:0000112 "the role of a boundary to demarcate two neighboring administrative territories" xsd:string
property_value: IAO:0000112 "the role of a building in serving as a military target" xsd:string
property_value: IAO:0000112 "the role of a stone in marking a property boundary" xsd:string
property_value: IAO:0000112 "the role of subject in a clinical trial" xsd:string
property_value: IAO:0000112 "the student role" xsd:string
property_value: IAO:0000116 "BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives." xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000600 "b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/061-001"}
property_value: IAO:0000602 "(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/061-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000031
name: generically dependent continuant
def: "b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])" [] {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/074-001"}
is_a: BFO:0000002 ! continuant
property_value: BFO:0000179 "gdc" xsd:string
property_value: BFO:0000180 "GenericallyDependentContinuant" xsd:string
property_value: IAO:0000112 "The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity." xsd:string
property_value: IAO:0000112 "the pdf file on your laptop, the pdf file that is a copy thereof on my laptop" xsd:string
property_value: IAO:0000112 "the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule." xsd:string
property_value: IAO:0000602 "(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/074-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000034
name: function
is_a: BFO:0000016 ! disposition
property_value: BFO:0000179 "function" xsd:string
property_value: BFO:0000180 "Function" xsd:string
property_value: IAO:0000112 "the function of a hammer to drive in nails" xsd:string
property_value: IAO:0000112 "the function of a heart pacemaker to regulate the beating of a heart through electricity" xsd:string
property_value: IAO:0000112 "the function of amylase in saliva to break down starch into sugar" xsd:string
property_value: IAO:0000116 "BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc." xsd:string
property_value: IAO:0000600 "A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])" xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/064-001"}
property_value: IAO:0000602 "(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] " xsd:string {IAO:0010000="http://purl.obolibrary.org/obo/bfo/axiom/064-001"}
property_value: isDefinedBy http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: IAO:0000027
name: data item
def: "An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements." []
is_a: IAO:0000030 ! information content entity
property_value: IAO:0000111 "data item" xsd:string
property_value: IAO:0000112 "Data items include counts of things, analyte concentrations, and statistical summaries." xsd:string
property_value: IAO:0000114 IAO:0000125
property_value: IAO:0000116 "2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers." xsd:string
property_value: IAO:0000116 "2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum." xsd:string
property_value: IAO:0000116 "2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym." xsd:string
property_value: IAO:0000116 "2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/" xsd:string
property_value: IAO:0000116 "JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief" xsd:string
property_value: IAO:0000117 "PERSON: Alan Ruttenberg" xsd:string
property_value: IAO:0000117 "PERSON: Chris Stoeckert" xsd:string
property_value: IAO:0000117 "PERSON: Jonathan Rees" xsd:string
property_value: IAO:0000118 "data" xsd:string
[Term]
id: IAO:0000030
name: information content entity
def: "A generically dependent continuant that is about some thing." []
is_a: BFO:0000031 ! generically dependent continuant
relationship: IAO:0000136 BFO:0000001 ! is about entity
property_value: IAO:0000111 "information content entity" xsd:string
property_value: IAO:0000112 "Examples of information content entites include journal articles, data, graphical layouts, and graphs." xsd:string
property_value: IAO:0000114 IAO:0000122
property_value: IAO:0000116 "2014-03-10: The use of \"thing\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ)." xsd:string
property_value: IAO:0000116 "information_content_entity 'is_encoded_in' some digital_entity in obi before split (040907). information_content_entity 'is_encoded_in' some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that 'is encoded in' some digital or physical entity." xsd:string
property_value: IAO:0000117 "PERSON: Chris Stoeckert" xsd:string
property_value: IAO:0000119 "OBI_0000142" xsd:string
[Term]
id: IAO:0000078
name: curation status specification
def: "The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value." []
is_a: IAO:0000102 ! data about an ontology part
property_value: IAO:0000111 "curation status specification" xsd:string
property_value: IAO:0000114 IAO:0000125
property_value: IAO:0000116 "Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)" xsd:string
property_value: IAO:0000117 "PERSON:Bill Bug" xsd:string
property_value: IAO:0000119 "GROUP:OBI:<http://purl.obolibrary.org/obo/obi>" xsd:string
property_value: IAO:0000119 "OBI_0000266" xsd:string
[Term]
id: IAO:0000102
name: data about an ontology part
def: "Data about an ontology part is a data item about a part of an ontology, for example a term" []
is_a: IAO:0000027 ! data item
property_value: IAO:0000111 "data about an ontology part" xsd:string
property_value: IAO:0000117 "Person:Alan Ruttenberg" xsd:string
[Term]
id: IAO:0000225
name: obsolescence reason specification
def: "The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value." []
is_a: IAO:0000102 ! data about an ontology part
property_value: IAO:0000111 "obsolescence reason specification" xsd:string
property_value: IAO:0000114 IAO:0000125
property_value: IAO:0000116 "The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology." xsd:string
property_value: IAO:0000117 "PERSON: Alan Ruttenberg" xsd:string
property_value: IAO:0000117 "PERSON: Melanie Courtot" xsd:string
[Term]
id: IAO:0000409
name: denotator type
def: "A denotator type indicates how a term should be interpreted from an ontological perspective." []
is_a: IAO:0000102 ! data about an ontology part
property_value: IAO:0000111 "denotator type" xsd:string
property_value: IAO:0000112 "The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \"natural kinds\" and the latter arbitrary collections of entities." xsd:string
property_value: IAO:0000117 "Alan Ruttenberg" xsd:string
property_value: IAO:0000119 "Barry Smith, Werner Ceusters" xsd:string
[Term]
id: T4FS:0000002
name: pipe separated values
def: "Values in a table presented as a series of ASCII text lines organised so that each column value is separated by a pipe ( | )." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/pipe-separated-values"}
is_a: T4FS:0000372 ! data stewardship technical concept
relationship: T4FS:0000563 T4FS:0000137 ! contributes to the implementation of I1. (meta)data use a formal, accessible, shared, and broadly applicable language for knowledge representation
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000004
name: software preservation
def: "Software preservation involves the collection and long-term storage of software for archiving as well as maintaining availability and accessibility." [] {IAO:0000119="https://orcid.org/0000-0002-7702-4495 8.2.22"}
comment: 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.
is_a: T4FS:0000156 ! archiving
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "Kristina Hettne" xsd:string
property_value: IAO:0000117 "Victoria Dominguez Del Angel" xsd:string
property_value: IAO:0000117 "Yann Le Franc" xsd:string
[Term]
id: T4FS:0000005
name: repository access
def: "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." [] {IAO:0000119="Definition from now-deprecated CASRAI Glossary term: repository-access"}
is_a: T4FS:0000489 ! repository
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000006
name: develop fair and open research vision
def: "Include FAIR and open research in the strategic framework for the organization and set objectives and timeframe." []
is_a: T4FS:0000008 ! develop open research strategy and vision
property_value: IAO:0000117 "Angus Whyte" xsd:string
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000008
name: develop open research strategy and vision
def: "The activity of developing an open research strategy and vision." [] {IAO:0000119="PMQ 3.2022"}
is_a: T4FS:0000514 ! strategic/long-term planning
property_value: IAO:0000117 "Angus Whyte" xsd:string
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000009
name: data management policy
def: "Statement of an organisation’s processes for the management of a specified set of data assets." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-management-policy"}
is_a: T4FS:0000372 ! data stewardship technical concept
relationship: T4FS:0000563 T4FS:0000447 ! contributes to the implementation of fair principle
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000010
name: understand research code of conduct
def: "Understand how the governing principles of research integrity and FAIR overlap" []
is_a: T4FS:0000525 ! research integrity, attribution, impact awareness
property_value: IAO:0000117 "Angus Whyte" xsd:string
property_value: IAO:0000117 "Celia van Gelder" xsd:string
[Term]
id: T4FS:0000011
name: choosing the appropriate reporting guideline for your data
def: "To be able to choose the appropriate reporting guideline/checklist for your data, based on community-adopted standards." [] {IAO:0000119="[PMQ]"}
is_a: T4FS:0000175 ! fair evaluation of repositories for data deposition
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000012
name: data stewardship activity
def: "A specific deed, action, function or sphere of action in relation with the role of data stewardship" []
is_a: BFO:0000015 ! process
relationship: T4FS:0000556 T4FS:0000548 ! requires/improves personal attribute data stewardship soft skill
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000117 "Yann Le Franc" xsd:string
property_value: T4FS:0000564 "Set of actions carried out during data stewardship processes" xsd:string
[Term]
id: T4FS:0000013
name: data munging
def: "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." [] {IAO:0000119="Definition from now-deprecated CASRAI Glossary term: data-munging"}
is_a: T4FS:0000036 ! curation
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000014
name: interoperability of digital assets
is_a: T4FS:0000447 ! fair principle
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000016
name: skills for resource management
def: "Bin for Skills related to Resource management" []
is_a: T4FS:0000353 ! resource management
property_value: IAO:0000117 "leightonlc" xsd:string
[Term]
id: T4FS:0000017
name: preservation
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/preservation"}
is_a: T4FS:0000156 ! archiving
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000118 "Conservation" xsd:string
[Term]
id: T4FS:0000018
name: data categorisation
is_a: T4FS:0000036 ! curation
property_value: IAO:0000118 "Data Categorization" xsd:string
property_value: IAO:0000118 "Data Classification" xsd:string
created_by: https://orcid.org/0000-0003-2687-1982
creation_date: 2021-02-17T22:30:31.531624Z
[Term]
id: T4FS:0000019
name: data registration
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-registration"}
is_a: T4FS:0000021 ! exposing data
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000020
name: interoperability
def: "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." [] {IAO:0000119="Definition from now-deprecated CASRAI Glossary term: interoperability"}
is_a: T4FS:0000372 ! data stewardship technical concept
relationship: T4FS:0000563 T4FS:0000014 ! contributes to the implementation of interoperability of digital assets
property_value: IAO:0000117 "v" xsd:string
[Term]
id: T4FS:0000021
name: exposing data
def: "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." [] {IAO:0000119="[PMQ 3.2022, AL 15.3.22]"}
comment: 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.
is_a: T4FS:0000012 ! data stewardship activity
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000023
name: aptitudes for workflow technologies management
def: "Bin for Aptitudes related to Workflow technologies management." []
is_a: T4FS:0000177 ! workflow technologies management
property_value: IAO:0000117 "leightonlc" xsd:string
[Term]
id: T4FS:0000024
name: de facto standard
def: "A standard that is widely accepted and used, but lacks formal approval by a recognized standards developing organization (e.g., the QWERTY keyboard)." [] {IAO:0000119="Definition from now-deprecated CASRAI Glossary term: de-facto-standard"}
is_a: T4FS:0000372 ! data stewardship technical concept
relationship: T4FS:0000563 T4FS:0000137 ! contributes to the implementation of I1. (meta)data use a formal, accessible, shared, and broadly applicable language for knowledge representation
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000025
name: data entity
def: "Object, event or phenomenon about which data are stored in a database and which has intermediate representation in a Data Model." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-entity"}
is_a: T4FS:0000372 ! data stewardship technical concept
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000026
name: real-time data
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/real-time-data"}
is_a: T4FS:0000430 ! data
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000027
name: storage security risk assessment and mitigation
def: "Detect and analysis security risk of storage periodically, and minimize the impact of the risks detected" []
is_a: T4FS:0000470 ! storage security management
property_value: IAO:0000117 "Angus Whyte" xsd:string
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000028
name: remote access
def: "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." [] {IAO:0000119="Definition from now-deprecated CASRAI Glossary term: remote-access"}
is_a: T4FS:0000372 ! data stewardship technical concept
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000029
name: fair stewardship supervising
def: "The activity of supervision of other people to ensure FAIR data practices." [] {IAO:0000119="PMQ"}
is_a: T4FS:0000259 ! fair training
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000117 "Philippe Rocca-Serra" xsd:string
property_value: IAO:0000117 "Susanna Sansone" xsd:string
[Term]
id: T4FS:0000030
name: skills related to high performance computing management
def: "Bin for Skills needed for High performance computing management." []
is_a: T4FS:0000308 ! high performance computing management
property_value: IAO:0000117 "leightonlc" xsd:string
[Term]
id: T4FS:0000031
name: fair metrics selection skills
def: "Ability to select the appropriate FAIR metrics among the existing ones in relation to the type of digital object concerned." []
is_a: T4FS:0000252 ! fairness assessment
property_value: IAO:0000117 "Kristina Hettne" xsd:string
property_value: IAO:0000117 "Victoria Dominguez Del Angel" xsd:string
property_value: IAO:0000117 "Yann Le Franc" xsd:string
[Term]
id: T4FS:0000032
name: relational database
def: "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)." [] {IAO:0000119="Definition from now-deprecated CASRAI Glossary term: relational-database"}
is_a: T4FS:0000372 ! data stewardship technical concept
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000033
name: non identifiable data
def: "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." [] {IAO:0000119="Modified by AL on 6.5.22 from CASRAI. https://casrai.org/term/non-identifiable-data/"}
comment: 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.
is_a: T4FS:0000430 ! data
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000034
name: database developer
is_a: BFO:0000023 ! role
[Term]
id: T4FS:0000036
name: curation
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/curation"}
is_a: T4FS:0000012 ! data stewardship activity
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000038
name: A1. (meta)data are retrievable by their identifier using a standardised communications protocol
is_a: T4FS:0000478 ! accessibility of digital assets
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000039
name: version control
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/version-control"}
is_a: T4FS:0000372 ! data stewardship technical concept
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000118 "Versioning, Revision control, Source control" xsd:string
[Term]
id: T4FS:0000041
name: understanding fair and open research challenges in your organization
def: "Understand the FAIR and open research practices, and the research landscape / current data management practices in the organization." []
is_a: T4FS:0000008 ! develop open research strategy and vision
property_value: IAO:0000117 "Angus Whyte" xsd:string
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000042
name: ethical application of patents, licenses
is_a: T4FS:0000106 ! publish data
[Term]
id: T4FS:0000043
name: data access protocol
def: "System that allows users to be granted access to a database under specified conditions." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-access-protocol"}
is_a: T4FS:0000283 ! access
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000044
name: data processing
def: "Generic concept referring to all kinds of procedures being executed on data at any point in the data lifecycle." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-processing"}
is_a: T4FS:0000036 ! curation
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000045
name: data organization
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-organisation"}
is_a: T4FS:0000372 ! data stewardship technical concept
relationship: T4FS:0000563 T4FS:0000447 ! contributes to the implementation of fair principle
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000046
name: data rescue
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-rescue"}
is_a: T4FS:0000156 ! archiving
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000047
name: understand societal impact of research
def: "Anticipate possible implications of the research and making its outputs FAIR, reflecting on rmotivations and areas of uncertainty" []
is_a: T4FS:0000525 ! research integrity, attribution, impact awareness
property_value: IAO:0000117 "Angus Whyte" xsd:string
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000048
name: searching via algorithms and software
def: "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." [] {IAO:0000119="[PMQ]"}
is_a: T4FS:0000145 ! search repositories and knowledge-bases
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000118 "Algorithm searching" xsd:string
property_value: IAO:0000118 "batch search" xsd:string
property_value: IAO:0000118 "Programmatic search" xsd:string
[Term]
id: T4FS:0000049
name: audit
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/audit"}
is_a: T4FS:0000126 ! assessment
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000050
name: wiki site
is_a: T4FS:0000095 ! online documentation
created_by: https://orcid.org/0000-0003-2687-1982
creation_date: 2020-10-01T21:03:37.147424Z
[Term]
id: T4FS:0000051
name: skills related to authorisation management
def: "Bin for Skills needed for Authorization management." []
is_a: T4FS:0000142 ! authorisation management
property_value: IAO:0000117 "leightonlc" xsd:string
[Term]
id: T4FS:0000053
name: storage management
def: "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." [] {IAO:0000119="(webopedia.com/TERM/S/storage_management.html)[VDA]"}
is_a: T4FS:0000353 ! resource management
property_value: IAO:0000117 "Kristina Hettne" xsd:string
property_value: IAO:0000117 "Simon Hodson" xsd:string
property_value: IAO:0000117 "Victoria Dominguez Del Angel" xsd:string
[Term]
id: T4FS:0000054
name: data warehouse
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-warehouse"}
is_a: T4FS:0000215 ! data store
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000055
name: data driven disaster
def: "Serious problem caused by one or more ineffective data analysis processes." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-driven-disaster"}
is_a: T4FS:0000012 ! data stewardship activity
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000056
name: data identifier
def: "An identifier that uniquely distinguishes one set of data from all others." [] {IAO:0000119="Definition from now-deprecated CASRAI Glossary term: data-identifier"}
is_a: T4FS:0000453 ! persistent identifier
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000057
name: data splitting
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-splitting"}
is_a: T4FS:0000107 ! information security
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000058
name: manage access
def: "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." []
is_a: T4FS:0000107 ! information security
property_value: IAO:0000117 "Angus Whyte" xsd:string
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000059
name: system metadata
def: "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)." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/system-metadata"}
is_a: T4FS:0000527 ! metadata
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000060
name: tactical/short-term planning
is_a: T4FS:0000320 ! project management activities
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000117 "Philippe Rocca-Serra" xsd:string
property_value: IAO:0000117 "Susanna Sansone" xsd:string
[Term]
id: T4FS:0000061
name: electronic medical record
def: "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." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/electronic-medical-record"}
is_a: T4FS:0000372 ! data stewardship technical concept
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000062
name: aptitudes for provenance information management
def: "Bin for Aptitudes related to Provenance information management." []
is_a: T4FS:0000368 ! provenance information management
property_value: IAO:0000117 "leightonlc" xsd:string
[Term]
id: T4FS:0000065
name: data modeling
def: "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)." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-modelling"}
is_a: T4FS:0000036 ! curation
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000067
name: use of aggregator sites
def: "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." [] {IAO:0000119="[PMQ]"}
is_a: T4FS:0000145 ! search repositories and knowledge-bases
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000118 "Searching aggregator sites" xsd:string
[Term]
id: T4FS:0000068
name: manage metadata catalog
def: "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.)." [] {IAO:0000119="Definition from now-deprecated CASRAI Glossary term: manage-metadata-catalog"}
is_a: T4FS:0000353 ! resource management
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000069
name: data transformation
def: "Manipulation of raw data to produce a single output." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-transformation"}
is_a: T4FS:0000352 ! data analysis
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000070
name: cataloguing
def: "An intellectual process of describing objects in accordance with accepted library principles, particularly those of subject and classification order." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/catalogue-verb"}
is_a: T4FS:0000036 ! curation
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000071
name: design and apply processes for attribution
def: "Iniitate and develop processes for crediting the contributions of researchers and professional groups towards making FAIR outputs" []
is_a: T4FS:0000525 ! research integrity, attribution, impact awareness
property_value: IAO:0000117 "Angus Whyte" xsd:string
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000072
name: dataset series
def: "Collection of datasets sharing the same product specification. A dataset series is a type of aggregation or collection with some “logical grouping” such as by a topic (specification) with the (product) unit being a dataset series." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/dataset-series"}
is_a: T4FS:0000397 ! database
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000073
name: data dictionary
def: "Collection of descriptions of the data objects or items in a data model. After each data object or item is given a descriptive name, its relationship is described (or it becomes part of some structure that implicitly describes relationship), the type of data (such as text or image or binary value) is described, possible predefined values are listed, and a brief textual description is provided. This collection can be organised for reference into a data dictionary." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-dictionary"}
is_a: T4FS:0000372 ! data stewardship technical concept
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000074
name: data selection
def: "Process that creates a new dataset from an original source." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/data-selection"}
is_a: T4FS:0000231 ! data acquisition
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000075
name: apply data access policy
def: "Define data access policy based on project requirements. Provide access to autorised parties." []
is_a: T4FS:0000469 ! access control and management
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000076
name: data discovery
def: "The ability to find and comprehend data produced by people other than yourself." [] {IAO:0000119="[PMQ]"}
comment: AL 15.3.22: tidied label from "discover other peoples data" to "Data discovery
is_a: T4FS:0000012 ! data stewardship activity
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000118 "Data search" xsd:string
[Term]
id: T4FS:0000078
name: documented data
def: "Data that are delivered with all associated metadata, data dictionary, description of methods and instruments used to collect and process the data, and other supporting data (such as duplicate sample results, replicate analyses, percent recovery, etc.) with the purpose of providing the full context in which the data were created." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/documented-data"}
is_a: T4FS:0000430 ! data
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000079
name: conducting operations
is_a: T4FS:0000320 ! project management activities
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000117 "Philippe Rocca-Serra" xsd:string
property_value: IAO:0000117 "Susanna Sansone" xsd:string
[Term]
id: T4FS:0000080
name: dynamic data
def: "Data that are changing frequently and at asynchronous moments." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/dynamic-data"}
is_a: T4FS:0000372 ! data stewardship technical concept
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000081
name: reference model
def: "Design covering a class of frameworks with the following characteristics: (1) it can be used to generate more specific models that still belong to the class and (2) it can be used to compare a concrete framework design to identify whether it belongs to the same class." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/reference-model"}
is_a: T4FS:0000372 ! data stewardship technical concept
relationship: T4FS:0000563 T4FS:0000137 ! contributes to the implementation of I1. (meta)data use a formal, accessible, shared, and broadly applicable language for knowledge representation
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000082
name: online workbook
is_a: T4FS:0000095 ! online documentation
created_by: https://orcid.org/0000-0003-2687-1982
creation_date: 2020-10-01T20:52:57.551905Z
[Term]
id: T4FS:0000084
name: engaging in open innovation beyond academia
is_a: T4FS:0000106 ! publish data
[Term]
id: T4FS:0000085
name: registered data
def: "Data that have gone through a registration process and have been assigned an identifier metadata to aid in their search and retrieval." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/registered-data"}
is_a: T4FS:0000430 ! data
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000086
name: integrity
def: "In the context of data and network security, assurance that information can only be accessed or modified by those authorised to do so. Measures taken to ensure integrity include controlling the physical environment of networked terminals and servers, restricting access to data, and maintaining rigorous authentication practices. Data integrity can also be threatened by environmental hazards, such as heat, dust, and electrical surges." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/integrity"}
is_a: T4FS:0000012 ! data stewardship activity
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000087
name: digital scholarship
def: "Scholarship which is dependent upon digital methods, tools or resources. May include building a digital collection of information for further study and analysis; creating appropriate tools for collection-building; creating appropriate tools for the analysis and study of collections; using digital collections and analytical tools to generate new intellectual products; or creating authoring tools for these new intellectual products, either in traditional forms or in digital form." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/digital-scholarship"}
is_a: T4FS:0000012 ! data stewardship activity
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
[Term]
id: T4FS:0000088
name: a knowledge for resource management
def: "Bin for types of Knowledge related to Resource management" []
is_a: T4FS:0000353 ! resource management
property_value: IAO:0000117 "leightonlc" xsd:string
[Term]
id: T4FS:0000089
name: aptitudes for resource management
def: "Bin for Aptitudes related to Resource management." []
is_a: T4FS:0000353 ! resource management
property_value: IAO:0000117 "leightonlc" xsd:string
[Term]
id: T4FS:0000091
name: knowledge of storage management
def: "Bin for types of Knowledge related to Storage management." []
is_a: T4FS:0000053 ! storage management
property_value: IAO:0000117 "leightonlc" xsd:string
[Term]
id: T4FS:0000092
name: understand open access publishing
def: "Know about the open access publishing procedure, journals' policies on OA publishing, project funder and institutions policy as well as the financial support on OA publishing" []
is_a: T4FS:0000193 ! open access publishing
property_value: IAO:0000117 "Celia van Gelder" xsd:string
property_value: IAO:0000117 "Mateusz Kuzak" xsd:string
property_value: IAO:0000117 "Yan Wang" xsd:string
[Term]
id: T4FS:0000093
name: use of persistent, resolvable identifiers (pids)
def: "OBSOLETE. The use of persistent identifiers or PIDs to uniquely and persistently identify an entity." [] {IAO:0000119="[PMQ 3.2022]"}
comment: This term is redundant with http://purl.obolibrary.org/obo/T4FS_0000388 and has been deprecated.
is_a: oboInOwl:ObsoleteClass ! Obsolete Class
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000117 "Nancy Hoebelheinrich" xsd:string
property_value: IAO:0000233 "https://github.com/terms4fairskills/FAIRterminology/issues/21" xsd:string
is_obsolete: true
[Term]
id: T4FS:0000094
name: record standardization
def: "Process in which files are first parsed (assigned to appropriate fields in a record) and then translated to a common format. Data often lack consistency simply because there are many ways of saying the same thing. Standardising the record ensures that when a query is run for a particular field, accurate results will be returned." [] {IAO:0000119="RDMT. https://terms.codata.org/rdmt/record-standardisation"}
is_a: T4FS:0000012 ! data stewardship activity
property_value: IAO:0000117 "https://orcid.org/0000-0002-5214-4466" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0002-7702-4495" xsd:string
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
property_value: IAO:0000233 "https://github.com/terms4fairskills/FAIRterminology/issues/32" xsd:string
[Term]
id: T4FS:0000095
name: online documentation
is_a: T4FS:0000519 ! learning medium
property_value: IAO:0000117 "https://orcid.org/0000-0003-2687-1982" xsd:string
created_by: https://orcid.org/0000-0003-2687-1982
creation_date: 2020-10-01T20:53:59.107153Z