-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patht4fs-simple.owl
10773 lines (8452 loc) · 745 KB
/
t4fs-simple.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/t4fs/t4fs-simple.owl#"
xml:base="http://purl.obolibrary.org/obo/t4fs/t4fs-simple.owl"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/t4fs/t4fs-simple.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/t4fs/releases/2025-02-09/t4fs-simple.owl"/>
<terms: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.</terms:description>
<terms:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
<terms:title>terms4FAIRskills (T4FS)</terms:title>
<rdfs:comment>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.</rdfs:comment>
<owl:versionInfo>2025-02-09</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000111 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<obo:IAO_0000111 xml:lang="en">definition</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 xml:lang="en">The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">2012-04-05:
Barry Smith
The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible.
Can you fix to something like:
A statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.
Alan Ruttenberg
Your proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can't be evaluated by those criteria.
On the specifics of the proposed definition:
We don't have definitions of 'meaning' or 'expression' or 'property'. For 'reference' in the intended sense I think we use the term 'denotation'. For 'expression', I think we you mean symbol, or identifier. For 'meaning' it differs for class and property. For class we want documentation that let's the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let's the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The 'intended reader' part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition.
Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable.
We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. </obo:IAO_0000116>
<obo:IAO_0000117 xml:lang="en">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">GROUP:OBI:<http://purl.obolibrary.org/obo/obi></obo:IAO_0000119>
<oboInOwl:created_by xml:lang="en">https://orcid.org/0000-0002-7702-4495</oboInOwl:created_by>
<rdfs:comment xml:lang="en">Allyson Lister 8.10.2019: Although the IAO definition has been included here, we have made a curation decision to allow non-Aristotelian definitions.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
<rdfs:label xml:lang="en">definition</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">IAO</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117">
<obo:IAO_0000111 xml:lang="en">term editor</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 xml:lang="en">Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people</obo:IAO_0000115>
<obo:IAO_0000116 xml:lang="en">20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.</obo:IAO_0000116>
<obo:IAO_0000117 xml:lang="en">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">GROUP:OBI:<http://purl.obolibrary.org/obo/obi></obo:IAO_0000119>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:created_by xml:lang="en">https://orcid.org/0000-0002-7702-4495</oboInOwl:created_by>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
<rdfs:label xml:lang="en">term editor</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/IAO_0000117"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">IAO</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118">
<obo:IAO_0000111 xml:lang="en">alternative label</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.</obo:IAO_0000115>
<obo:IAO_0000115 xml:lang="en">An alternative name for a class or property which means the same thing as the preferred name (semantically equivalent)</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000117>OBO Operations committee</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">GROUP:OBI:<http://purl.obolibrary.org/obo/obi></obo:IAO_0000119>
<rdfs:comment>Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
<rdfs:label xml:lang="en">alternative label</rdfs:label>
<rdfs:label xml:lang="en">alternative term</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/IAO_0000118"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">An alternative name for a class or property which means the same thing as the preferred name (semantically equivalent)</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">IAO</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119">
<obo:IAO_0000111 xml:lang="en">definition source</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 xml:lang="en">Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w</obo:IAO_0000119>
<obo:IAO_0000119 xml:lang="en">GROUP:OBI:<http://purl.obolibrary.org/obo/obi></obo:IAO_0000119>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:created_by xml:lang="en">https://orcid.org/0000-0002-7702-4495</oboInOwl:created_by>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/iao.owl"/>
<rdfs:label xml:lang="en">definition source</rdfs:label>
</owl:AnnotationProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/IAO_0000119"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">IAO</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/IAO_0000233 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000233">
<obo:IAO_0000111 xml:lang="en">term tracker item</obo:IAO_0000111>
<obo:IAO_0000112 xml:lang="en">the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000125"/>
<obo:IAO_0000115 xml:lang="en">An IRI or similar locator for a request or discussion of an ontology term.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg</obo:IAO_0000117>
<obo:IAO_0000119 xml:lang="en">Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg</obo:IAO_0000119>
<rdfs:comment xml:lang="en">The 'tracker item' can associate a tracker with a specific ontology term.</rdfs:comment>
<rdfs:label xml:lang="en">term tracker item</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/T4FS_0000564 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000564">
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:creation_date>2019-10-17T13:38:16.742124Z</oboInOwl:creation_date>
<rdfs:label xml:lang="en">alternative definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/T4FS_0000565 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000565">
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:creation_date>2019-10-17T13:39:13.568975Z</oboInOwl:creation_date>
<rdfs:label xml:lang="en">alternative definition source</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://www.geneontology.org/formats/oboInOwl#created_by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by">
<rdfs:label xml:lang="en">created by</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#creation_date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#creation_date">
<rdfs:label xml:lang="en">creation date</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2002/07/owl#versionInfo -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#versionInfo"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/T4FS_0000554 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000554">
<owl:inverseOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000575"/>
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000012"/>
<obo:IAO_0000115 xml:lang="en">Describes how a learning medium is intended to confer a competence or capability regarding a particular data stewardship activity, e.g. a presentation confering competency in metadata creation.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Peter McQuilton</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:creation_date>2020-10-01T21:36:11.080721Z</oboInOwl:creation_date>
<rdfs:label xml:lang="en">confers competency about</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000554"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Describes how a learning medium is intended to confer a competence or capability regarding a particular data stewardship activity, e.g. a presentation confering competency in metadata creation.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000555 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000555">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<obo:IAO_0000115 xml:lang="en">Describes how a learning medium is intended to confer knowledge of a particular data stewardship technical concept in order for that learning medium to perform its function, e.g. a presentation conferring competency in metadata.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Peter McQuilton</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:creation_date>2020-12-06 00:00:00</oboInOwl:creation_date>
<rdfs:label xml:lang="en">confers knowledge about</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000555"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Describes how a learning medium is intended to confer knowledge of a particular data stewardship technical concept in order for that learning medium to perform its function, e.g. a presentation conferring competency in metadata.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000556 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000556">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/T4FS_0000012"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/T4FS_0000519"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000548"/>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<rdfs:label xml:lang="en">requires/improves personal attribute</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/T4FS_0000557 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000557">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<obo:IAO_0000115 xml:lang="en">Describes how a learning medium confers practical skills regarding a particular data stewardship technical concept in order for that learning medium to perform its function e.g. a workshop conferring a practical skill in repository access.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Peter McQuilton</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:creation_date>2020-12-06 00:00:00</oboInOwl:creation_date>
<rdfs:label xml:lang="en">confers practical skill about</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000557"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Describes how a learning medium confers practical skills regarding a particular data stewardship technical concept in order for that learning medium to perform its function e.g. a workshop conferring a practical skill in repository access.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000558 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000558">
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000012"/>
<obo:IAO_0000115 xml:lang="en">Describes how an expertise level or role (e.g. "data steward") is associated with a data stewardship activity (e.g. ‘workflow set-up and management’) to indicate whether someone has an awareness of the area, or an ability to do it, or expert knowledge of it.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Peter McQuilton</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<rdfs:comment xml:lang="en">Definition added 8.2.22</rdfs:comment>
<rdfs:label xml:lang="en">has/wants competency in</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000558"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Describes how an expertise level or role (e.g. "data steward") is associated with a data stewardship activity (e.g. ‘workflow set-up and management’) to indicate whether someone has an awareness of the area, or an ability to do it, or expert knowledge of it.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000559 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000559">
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/T4FS_0000446"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<obo:IAO_0000117 xml:lang="en">Peter McQuilton</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<rdfs:label xml:lang="en">has/wants knowledge about</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/T4FS_0000560 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000560">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000446"/>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<rdfs:label xml:lang="en">supports implementation of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/T4FS_0000561 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000561">
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<obo:IAO_0000115 xml:lang="en">Desires/has a competence or capability acquired or applied in a specific context, e.g. producing a research output or deploying a service. A skill may be specified in a ‘skills user story’. A badge or certificate may provide evidence that a skill has been acquired, and a publication, personal profile, portfolio or CV may provide evidence that a skill has been applied.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Peter McQuilton</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<rdfs:label xml:lang="en">has/wants practical skill about</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000561"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Desires/has a competence or capability acquired or applied in a specific context, e.g. producing a research output or deploying a service. A skill may be specified in a ‘skills user story’. A badge or certificate may provide evidence that a skill has been acquired, and a publication, personal profile, portfolio or CV may provide evidence that a skill has been applied.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">FAIR4S</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000562 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000562">
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000548"/>
<obo:IAO_0000117 xml:lang="en">Peter McQuilton</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:creation_date>2021-03-24T15:33:43.476917Z</oboInOwl:creation_date>
<rdfs:label xml:lang="en">has aptitude for</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/T4FS_0000563 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000563">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000446"/>
<obo:IAO_0000117 xml:lang="en">Peter McQuilton</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">Peter McQuilton</oboInOwl:created_by>
<oboInOwl:creation_date>2021-03-22T15:25:13.443153Z</oboInOwl:creation_date>
<rdfs:label xml:lang="en">contributes to the implementation of</rdfs:label>
</owl:ObjectProperty>
<!-- http://purl.obolibrary.org/obo/T4FS_0000575 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000575">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000012"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<obo:IAO_0000115 xml:lang="en">The learning media that creates a competence or capability.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<oboInOwl:created_by xml:lang="en">https://orcid.org/0000-0002-7702-4495</oboInOwl:created_by>
<rdfs:comment xml:lang="en">Allyson Lister 13.9.22: This class is created as the inverse of confers/requires competency about to allow consistent reasoning and access to the Data stewardship guidelines for Data stewardship activities. It needs to be revisited by the entire team to check the model.</rdfs:comment>
<rdfs:label xml:lang="en">competency gained through</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000575"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">The learning media that creates a competence or capability.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000576 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000576">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000012"/>
<obo:IAO_0000115 xml:lang="en">Describes how a learning medium requires competency in a particular data stewardship activity in order for that learning medium to perform its function, e.g. a presentation requiring competency in metadata creation prior to engaging with that learning medium.</obo:IAO_0000115>
<rdfs:label xml:lang="en">requires competency about</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000576"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Describes how a learning medium requires competency in a particular data stewardship activity in order for that learning medium to perform its function, e.g. a presentation requiring competency in metadata creation prior to engaging with that learning medium.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000577 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000577">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<obo:IAO_0000115 xml:lang="en">Describes how a learning medium requires knowledge of a particular data stewardship technical concept in order for that learning medium to perform its function, e.g. a presentation requiring knowledge of metadata.</obo:IAO_0000115>
<rdfs:label xml:lang="en">requires knowledge about</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000577"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Describes how a learning medium requires knowledge of a particular data stewardship technical concept in order for that learning medium to perform its function, e.g. a presentation requiring knowledge of metadata.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000578 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000578">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<obo:IAO_0000115 xml:lang="en">Describes how a learning medium requires practical skills of a particular data stewardship technical concept in order for that learning medium to perform its function e.g. a workshop requiring a practical skill in repository access.</obo:IAO_0000115>
<rdfs:label xml:lang="en">requires practical skill about</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000578"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Describes how a learning medium requires practical skills of a particular data stewardship technical concept in order for that learning medium to perform its function e.g. a workshop requiring a practical skill in repository access.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000581 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000581">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000580"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000446"/>
<obo:IAO_0000115 xml:lang="en">Describes how an evaluation indicator may confer compliance with a particular guideline or set of guidelines</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000233 xml:lang="en">https://github.com/terms4fairskills/FAIRterminology/issues/22</obo:IAO_0000233>
<rdfs:label xml:lang="en">confers compliance with</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000581"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Describes how an evaluation indicator may confer compliance with a particular guideline or set of guidelines</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000582 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000582">
<rdfs:domain rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<rdfs:range rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000580"/>
<obo:IAO_0000115 xml:lang="en">A learning medium may demonstrate how to meet the requirements for a particular evaluation indicator(s).</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000233 xml:lang="en">https://github.com/terms4fairskills/FAIRterminology/issues/22</obo:IAO_0000233>
<rdfs:label xml:lang="en">demonstrates how to fulfil the requirements for</rdfs:label>
</owl:ObjectProperty>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000582"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A learning medium may demonstrate how to meet the requirements for a particular evaluation indicator(s).</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000119>
</owl:Axiom>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/T4FS_0000553 -->
<owl:DatatypeProperty rdf:about="http://purl.obolibrary.org/obo/T4FS_0000553">
<rdfs:label xml:lang="en">reference URL</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/T4FS_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000002">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000563"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000137"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">Values in a table presented as a series of ASCII text lines organised so that each column value is separated by a pipe ( | ).</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">pipe separated values</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000002"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Values in a table presented as a series of ASCII text lines organised so that each column value is separated by a pipe ( | ).</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">RDMT. https://terms.codata.org/rdmt/pipe-separated-values</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000156"/>
<obo:IAO_0000115 xml:lang="en">Software preservation involves the collection and long-term storage of software for archiving as well as maintaining availability and accessibility.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Kristina Hettne</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Victoria Dominguez Del Angel</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Yann Le Franc</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<rdfs:label xml:lang="en">software preservation</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000004"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Software preservation involves the collection and long-term storage of software for archiving as well as maintaining availability and accessibility.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">https://orcid.org/0000-0002-7702-4495 8.2.22</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000489"/>
<obo:IAO_0000115 xml:lang="en">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.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">repository access</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000005"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">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.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">Definition from now-deprecated CASRAI Glossary term: repository-access</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000008"/>
<obo:IAO_0000115 xml:lang="en">Include FAIR and open research in the strategic framework for the organization and set objectives and timeframe.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Angus Whyte</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Celia van Gelder</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Mateusz Kuzak</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Yan Wang</obo:IAO_0000117>
<rdfs:label xml:lang="en">develop fair and open research vision</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/T4FS_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000514"/>
<obo:IAO_0000115 xml:lang="en">The activity of developing an open research strategy and vision.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Angus Whyte</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Celia van Gelder</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Mateusz Kuzak</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Yan Wang</obo:IAO_0000117>
<rdfs:label xml:lang="en">develop open research strategy and vision</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000008"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">The activity of developing an open research strategy and vision.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">PMQ 3.2022</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000009">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000563"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000447"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">Statement of an organisation’s processes for the management of a specified set of data assets.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">data management policy</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000009"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Statement of an organisation’s processes for the management of a specified set of data assets.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">RDMT. https://terms.codata.org/rdmt/data-management-policy</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000010">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000525"/>
<obo:IAO_0000115 xml:lang="en">Understand how the governing principles of research integrity and FAIR overlap</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Angus Whyte</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">Celia van Gelder</obo:IAO_0000117>
<rdfs:label xml:lang="en">understand research code of conduct</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/T4FS_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000175"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000575"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000560"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000137"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000575"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000560"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000452"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">To be able to choose the appropriate reporting guideline/checklist for your data, based on community-adopted standards.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">choosing the appropriate reporting guideline for your data</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000011"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">To be able to choose the appropriate reporting guideline/checklist for your data, based on community-adopted standards.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">[PMQ]</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000012">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000556"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000548"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A specific deed, action, function or sphere of action in relation with the role of data stewardship</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">Yann Le Franc</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<obo:T4FS_0000564 xml:lang="en">Set of actions carried out during data stewardship processes</obo:T4FS_0000564>
<rdfs:label xml:lang="en">data stewardship activity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/T4FS_0000013 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000013">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000036"/>
<obo:IAO_0000115 xml:lang="en">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.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">data munging</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000013"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">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.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">Definition from now-deprecated CASRAI Glossary term: data-munging</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000014 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000447"/>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">interoperability of digital assets</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/T4FS_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000353"/>
<obo:IAO_0000115 xml:lang="en">Bin for Skills related to Resource management</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">leightonlc</obo:IAO_0000117>
<rdfs:label xml:lang="en">skills for resource management</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/T4FS_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000156"/>
<obo:IAO_0000115 xml:lang="en">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.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<obo:IAO_0000118 xml:lang="en">Conservation</obo:IAO_0000118>
<rdfs:label xml:lang="en">preservation</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000017"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">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.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">RDMT. https://terms.codata.org/rdmt/preservation</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000018 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000018">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000036"/>
<obo:IAO_0000118 xml:lang="en">Data Categorization</obo:IAO_0000118>
<obo:IAO_0000118 xml:lang="en">Data Classification</obo:IAO_0000118>
<oboInOwl:created_by xml:lang="en">https://orcid.org/0000-0003-2687-1982</oboInOwl:created_by>
<oboInOwl:creation_date>2021-02-17T22:30:31.531624Z</oboInOwl:creation_date>
<rdfs:label xml:lang="en">data categorisation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/T4FS_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000021"/>
<obo:IAO_0000115 xml:lang="en">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.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">data registration</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000019"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">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.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">RDMT. https://terms.codata.org/rdmt/data-registration</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000563"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000014"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">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.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">v</obo:IAO_0000117>
<rdfs:label xml:lang="en">interoperability</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000020"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">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.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">Definition from now-deprecated CASRAI Glossary term: interoperability</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000021 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000021">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000012"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000575"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/T4FS_0000519"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000560"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000447"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">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.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<rdfs:label xml:lang="en">exposing data</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000021"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">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.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">[PMQ 3.2022, AL 15.3.22]</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000177"/>
<obo:IAO_0000115 xml:lang="en">Bin for Aptitudes related to Workflow technologies management.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">leightonlc</obo:IAO_0000117>
<rdfs:label xml:lang="en">aptitudes for workflow technologies management</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/T4FS_0000024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000024">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000563"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000137"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A standard that is widely accepted and used, but lacks formal approval by a recognized standards developing organization (e.g., the QWERTY keyboard).</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">de facto standard</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000024"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A standard that is widely accepted and used, but lacks formal approval by a recognized standards developing organization (e.g., the QWERTY keyboard).</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">Definition from now-deprecated CASRAI Glossary term: de-facto-standard</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000372"/>
<obo:IAO_0000115 xml:lang="en">Object, event or phenomenon about which data are stored in a database and which has intermediate representation in a Data Model.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">data entity</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000025"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">Object, event or phenomenon about which data are stored in a database and which has intermediate representation in a Data Model.</owl:annotatedTarget>
<obo:IAO_0000119 xml:lang="en">RDMT. https://terms.codata.org/rdmt/data-entity</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/T4FS_0000026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/T4FS_0000026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/T4FS_0000430"/>
<obo:IAO_0000115 xml:lang="en">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.</obo:IAO_0000115>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-5214-4466</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0002-7702-4495</obo:IAO_0000117>
<obo:IAO_0000117 xml:lang="en">https://orcid.org/0000-0003-2687-1982</obo:IAO_0000117>
<rdfs:label xml:lang="en">real-time data</rdfs:label>
</owl:Class>
<owl:Axiom>