-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcro.owl
1912 lines (1380 loc) · 109 KB
/
cro.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/cro.owl#"
xml:base="http://purl.obolibrary.org/obo/cro.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
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:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/cro.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/cro/releases/2019-12-11/cro.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/cro/imports/bfo_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/cro/imports/credit_import.owl"/>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/cro/imports/iao_import.owl"/>
<rdfs:comment>Contributor Role Ontology</rdfs:comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000234 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000234">
<rdfs:label>ontology term requester</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/IAO_0000412 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
<!-- http://purl.obolibrary.org/obo/IAO_0100001 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0100001">
<rdfs:label>term replaced by</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#created_by -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#created_by"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasSynonym"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000001 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000001">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/BFO_0000002 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000002">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000001"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/BFO_0000020 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/BFO_0000031 -->
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/BFO_0000031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000002"/>
</rdf:Description>
<!-- http://purl.obolibrary.org/obo/CRO_0000000 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000000">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000111>contributor role</obo:IAO_0000111>
<obo:IAO_0000114>http://purl.obolibrary.org/obo/IAO_0000120</obo:IAO_0000114>
<obo:IAO_0000115>A high-level classification of the diverse roles performed in the work leading to a published research output in the sciences. Its purpose to provide transparency in contributions to scholarly published work, to enable improved systems of attribution, credit, and accountability.</obo:IAO_0000115>
<obo:IAO_0000117>https://orcid.org/0000-0001-5059-4132</obo:IAO_0000117>
<obo:IAO_0000119>http://dictionary.casrai.org/Contributor_Roles</obo:IAO_0000119>
<oboInOwl:hasDbXref>9dbb95f4-55ed-4e43-9301-a9f0e3e17afe</oboInOwl:hasDbXref>
<oboInOwl:hasSynonym rdf:resource="http://purl.org/credit/ontology#CREDIT_00000000"/>
<rdfs:label xml:lang="en">contributor role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>Creation and/or presentation of a published research object, such as books, journal articles, and other publications like technical documentation, web sites, code, ontologies, or data models.</obo:IAO_0000115>
<obo:IAO_0000118>writer role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:47:01Z</dc:date>
<rdfs:label>author role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000001"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Creation and/or presentation of a published research object, such as books, journal articles, and other publications like technical documentation, web sites, code, ontologies, or data models.</owl:annotatedTarget>
<obo:IAO_0000119>https://orcid.org/0000-0002-1048-5019</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000012"/>
<obo:IAO_0000115>Preparation, creation and/or presentation of figures for a manuscript, presentation or other use.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:49:22Z</dc:date>
<rdfs:label>figure development role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000003"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Preparation, creation and/or presentation of figures for a manuscript, presentation or other use.</owl:annotatedTarget>
<obo:IAO_0000119>http://dictionary.casrai.org/Contributor_Roles/Visualization</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000004">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000008"/>
<obo:IAO_0000115>Translating words or text from one language to another.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:49:51Z</dc:date>
<rdfs:label>translator role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000111"/>
<obo:IAO_0000115>Includes literature searches and contributions to review activities (systematic reviews, scoping reviews, etc.)</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:51:01Z</dc:date>
<rdfs:label>background and literature search role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000007">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>Coordination of research dissemination through popular media and the press, as well as community outreach and liaising of project directly to the community.</obo:IAO_0000115>
<obo:IAO_0000116>Similar to vivo:OutreachProviderRole?</obo:IAO_0000116>
<obo:IAO_0000118>communication role</obo:IAO_0000118>
<obo:IAO_0000118>outreach role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:51:26Z</dc:date>
<rdfs:label>marketing and communication role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000007"/>
<obo:IAO_0000115>Creation or refinement of a website, a set of related web pages served from a single web domain.</obo:IAO_0000115>
<obo:IAO_0000118>website development role</obo:IAO_0000118>
<obo:IAO_0000118>website maintenance role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:51:53Z</dc:date>
<rdfs:label>website role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000008"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Creation or refinement of a website, a set of related web pages served from a single web domain.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q35127</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000009">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115>A communication role that encompasses facilitate co-operation between people or organizations.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:52:02Z</dc:date>
<rdfs:label>obsolete networking facilitation role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000009"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A communication role that encompasses facilitate co-operation between people or organizations.</owl:annotatedTarget>
<obo:IAO_0000119>(2009) The functions and roles of network facilitators. In: Franz HW., Sarcina R. (eds) Building Leadership in Project and Network Management. Springer, Berlin, Heidelberg</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000010">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115>A communication role that involves the activity, set of institutions, and processes for creating, communicating, delivering, and exchanging offerings that have value for customers, clients, partners, and society at large.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:52:12Z</dc:date>
<rdfs:label>obsolete marketing role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000010"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A communication role that involves the activity, set of institutions, and processes for creating, communicating, delivering, and exchanging offerings that have value for customers, clients, partners, and society at large.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.ama.org/the-definition-of-marketing/</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000007"/>
<obo:IAO_0000115>A communication role in which one records the details of an event, a process, a workflow, etc.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:52:17Z</dc:date>
<rdfs:label>documentation role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000011"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A communication role in which one records the details of an event, a process, a workflow, etc.</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.cambridge.org/us/dictionary/english/document</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000012">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000012"/>
<obo:IAO_0000115>A communication role that utilizes the art or profession of using design elements (such as typography and images) to convey information, create visualizations, or create an effect.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:52:27Z</dc:date>
<rdfs:label>graphic design role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000012"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A communication role that utilizes the art or profession of using design elements (such as typography and images) to convey information, create visualizations, or create an effect.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.merriam-webster.com/dictionary/graphic%20design</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000014 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000001"/>
<obo:IAO_0000115>Creation of software documentation.</obo:IAO_0000115>
<obo:IAO_0000118>software documentation role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:26:05Z</dc:date>
<rdfs:label>technical documentation role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>A role that encompasses effective and efficient operation and usage of data, including, but not limited to management, handling, or manipulation.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:55:34Z</dc:date>
<rdfs:label>data role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>A role in which a person participates in the transfer of knowledge and skills, through teaching, development of educational materials or curriculum, through program development or other means.</obo:IAO_0000115>
<obo:IAO_0000118>educational role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:55:45Z</dc:date>
<rdfs:label>education and training role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000018 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000018">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115>A role that involves the development, management, and use of computer-based information systems.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:56:05Z</dc:date>
<rdfs:label>obsolete information technology systems role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000018"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A role that involves the development, management, and use of computer-based information systems.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q11661</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000019">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000009"/>
<obo:IAO_0000115>Verification that software meets requirements; validation that software meets users' needs, identification of software bugs, assessment of software performance and usability.</obo:IAO_0000115>
<obo:IAO_0000118>Software Quality Assurance Role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:26:00Z</dc:date>
<rdfs:label>software testing role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000078"/>
<obo:IAO_0000115>A role related to creations of the mind, such as inventions; literary and artistic works; designs; and symbols, names and images used in commerce. from.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T19:56:34Z</dc:date>
<rdfs:label>intellectual property role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000020"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A role related to creations of the mind, such as inventions; literary and artistic works; designs; and symbols, names and images used in commerce. from.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wipo.int/about-ip/en/</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000022 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000022">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>Policy development generally involves research, analysis, consultation and synthesis of information to produce recommendations for action by an individual or an organization. It should also involve an evaluation of options against a set of criteria used to assess each option.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:04:29Z</dc:date>
<rdfs:label>policy development role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>Set of activities aimed at prolonging the life of a record.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:04:39Z</dc:date>
<rdfs:label>preservation role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000023"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Set of activities aimed at prolonging the life of a record.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q830393</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000078"/>
<obo:IAO_0000115>Manage regulatory and compliance issues for the research project.</obo:IAO_0000115>
<obo:IAO_0000118>regulatory administration role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:05:56Z</dc:date>
<rdfs:label>regulatory and compliance role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>A person that is responsible for usage of instrumentation, such as equipment or devices, or instruments like a survey or questionnaire.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:06:00Z</dc:date>
<rdfs:label>instrumentation role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000023"/>
<obo:IAO_0000115>Management activities to annotate, maintain, research, and preserve physical objects to maximize their use for research and education now and into the future.</obo:IAO_0000115>
<obo:IAO_0000234>https://orcid.org/0000-0002-2908-3327</obo:IAO_0000234>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<rdfs:label>curator role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000028 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000028">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>Activities to obtain physical objects for research or scholarly purposes or to add to a collection.</obo:IAO_0000115>
<obo:IAO_0000234>https://orcid.org/0000-0002-2908-3327</obo:IAO_0000234>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<rdfs:label>collection role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000078"/>
<obo:IAO_0000115>Coordination of diverse team members, often across different disciplines and locations.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:06:26Z</dc:date>
<rdfs:label>team management role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000033">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115>The compiling of information with intent to prepare combined datasets for data processing.</obo:IAO_0000115>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/CRO_0000036"/>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:11:23Z</dc:date>
<rdfs:label>obsolete data aggregation role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000033"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The compiling of information with intent to prepare combined datasets for data processing.</owl:annotatedTarget>
<obo:IAO_0000119>Stanley, Jay; Steinhardt, Barry (January 2003). "Bigger Monster, Weaker Chains: The Growth of an American Surveillance Society". American Civil Liberties Union.</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000035">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000003"/>
<obo:IAO_0000115>Statistical aspects of research, including data collection, organization, analysis, interpretation and presentation of data from surveys and experiments</obo:IAO_0000115>
<obo:IAO_0000118>statistical data analysis role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:11:35Z</dc:date>
<rdfs:label>statistical analysis role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000035"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Statistical aspects of research, including data collection, organization, analysis, interpretation and presentation of data from surveys and experiments</owl:annotatedTarget>
<obo:IAO_0000119>https://en.wikipedia.org/wiki/Statistics</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000036 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000036">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000015"/>
<obo:IAO_0000115>The process of gathering and measuring data, information or any variables of interest in a standardized and established manner that enables the collector to answer or test hypothesis and evaluate outcomes of the particular collection.</obo:IAO_0000115>
<obo:IAO_0000118>data aggregation role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:11:40Z</dc:date>
<rdfs:label>data collection role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000036"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The process of gathering and measuring data, information or any variables of interest in a standardized and established manner that enables the collector to answer or test hypothesis and evaluate outcomes of the particular collection.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.techopedia.com/definition/30318/data-collection</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000038 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000038">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000015"/>
<obo:IAO_0000115>The annotation of data with descriptive information that describes the data (metadata), with the goal of making the data more usuable or reusable for future use.</obo:IAO_0000115>
<obo:IAO_0000118>metadata application role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:11:50Z</dc:date>
<rdfs:label>metadata role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000038"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The annotation of data with descriptive information that describes the data (metadata), with the goal of making the data more usuable or reusable for future use.</owl:annotatedTarget>
<obo:IAO_0000119>https://whatis.techtarget.com/definition/metadata-management</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000039 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000039">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000015"/>
<obo:IAO_0000115>The process of inputting data into a computerized form.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:11:54Z</dc:date>
<rdfs:label>data entry role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000039"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The process of inputting data into a computerized form.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.dictionary.com/browse/data-entry</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000040">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000015"/>
<obo:IAO_0000115>The process of combining data from different sources to provide a standardized or unified view.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:12:00Z</dc:date>
<rdfs:label>data integration role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000040"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The process of combining data from different sources to provide a standardized or unified view.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q386824</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000041 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000041">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000015"/>
<obo:IAO_0000115>The process of creating a data model for an information system by applying certain formal techniques.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:12:07Z</dc:date>
<rdfs:label>data modeling role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000041"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The process of creating a data model for an information system by applying certain formal techniques.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q367664</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000042 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000042">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000015"/>
<obo:IAO_0000115>A procedure intended to verify the efficiency and reliability of data.</obo:IAO_0000115>
<obo:IAO_0000118>Data Scrubbing Role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:12:14Z</dc:date>
<rdfs:label>data quality assurance role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000042"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A procedure intended to verify the efficiency and reliability of data.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.techopedia.com/definition/14653/data-quality</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000043 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000043">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115>The process of creating data standards, which are the rules by which data are described and recorded in order to share, exchange, and understand data. Examples include development of an ontology, terminology, code lists, etc.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:12:25Z</dc:date>
<rdfs:label>obsolete data standards developer role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000043"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>The process of creating data standards, which are the rules by which data are described and recorded in order to share, exchange, and understand data. Examples include development of an ontology, terminology, code lists, etc.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.usgs.gov/products/data-and-tools/data-management/data-standards</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000045 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000045">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000016"/>
<obo:IAO_0000115>An educational role in which a person develops educational or training materials that are intended to transfer knowledge, for use in a classroom, indpendent learning or other settings.</obo:IAO_0000115>
<obo:IAO_0000118>educational material development role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:15:18Z</dc:date>
<rdfs:label>training material role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000046 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000046">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000016"/>
<obo:IAO_0000115>An educational role in which a person participates in the development of an educational program, designed for learners to achieve a set of compentencies around a given topic or area of focus.</obo:IAO_0000115>
<obo:IAO_0000118>educational program development role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:15:23Z</dc:date>
<rdfs:label>training program development role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000047 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000047">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000016"/>
<obo:IAO_0000115>An educational role in which knowledge and skills are transferred through teaching.</obo:IAO_0000115>
<obo:IAO_0000116>This may be equivalent to vivo:Teacher Role.</obo:IAO_0000116>
<obo:IAO_0000118>educational instruction role</obo:IAO_0000118>
<obo:IAO_0000118>educational training role</obo:IAO_0000118>
<obo:IAO_0000118>teaching role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:15:29Z</dc:date>
<rdfs:label>instruction role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000047"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>An educational role in which knowledge and skills are transferred through teaching.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q8434</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000048 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000048">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000000"/>
<obo:IAO_0000115>An information technology systems role that specifically focuses on the computer hardware, the physical components of a computer system.</obo:IAO_0000115>
<obo:IAO_0000118>hardware systems role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:17:16Z</dc:date>
<rdfs:label>hardware role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000048"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>An information technology systems role that specifically focuses on the computer hardware, the physical components of a computer system.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q3966</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000049 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000049">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115>An information technology systems role that specifically focuses on the computer software, the non-tangible executable component of a computer.</obo:IAO_0000115>
<obo:IAO_0100001 rdf:resource="http://purl.org/credit/ontology#CREDIT_00000009"/>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:17:20Z</dc:date>
<rdfs:label>obsolete software systems role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000049"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>An information technology systems role that specifically focuses on the computer software, the non-tangible executable component of a computer.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q7397</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000050 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000050">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000108"/>
<obo:IAO_0000115>A role usually within the Information Technology department, charged with the creation, maintenance, backups, querying, tuning, user rights assignment and security of an organization's databases.</obo:IAO_0000115>
<obo:IAO_0000118>database administration role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:17:25Z</dc:date>
<rdfs:label>database administrator role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000050"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A role usually within the Information Technology department, charged with the creation, maintenance, backups, querying, tuning, user rights assignment and security of an organization's databases.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.techopedia.com/definition/1187/database-administrator-dba</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000051 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000051">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000009"/>
<obo:IAO_0000115>A software systems role that involves maintenance and operation of a computer system and/or network.</obo:IAO_0000115>
<obo:IAO_0000118>sysadmin role</obo:IAO_0000118>
<obo:IAO_0000118>systems administration role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:17:32Z</dc:date>
<rdfs:label>system administrator role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000051"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A software systems role that involves maintenance and operation of a computer system and/or network.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q327353</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000052 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000052">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000006"/>
<obo:IAO_0000115>A methodology role that involves development of information that suggests how something should be done.</obo:IAO_0000115>
<obo:IAO_0000118>Best Practices Role</obo:IAO_0000118>
<obo:IAO_0000118>guideline development role</obo:IAO_0000118>
<obo:IAO_0000118>standard operating procedure development role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:19:52Z</dc:date>
<rdfs:label>standards role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000052"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A methodology role that involves development of information that suggests how something should be done.</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.cambridge.org/us/dictionary/english/guideline</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000053 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000053">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000006"/>
<obo:IAO_0000115>A methodology role that involves creation of a detailed plan of a scientific or medical experiment, treatment, or procedure.</obo:IAO_0000115>
<obo:IAO_0000118>protocol development role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:19:56Z</dc:date>
<rdfs:label>protocol creation role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000053"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A methodology role that involves creation of a detailed plan of a scientific or medical experiment, treatment, or procedure.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.merriam-webster.com/dictionary/protocol</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000054 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000054">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115>A methodology role that involves the development or creation of an established or prescribed methods to be followed routinely for the performance of designated operations or in designated situations.</obo:IAO_0000115>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/CRO_0000052"/>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:20:02Z</dc:date>
<rdfs:label>obsolete standard operating procedure development role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000054"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A methodology role that involves the development or creation of an established or prescribed methods to be followed routinely for the performance of designated operations or in designated situations.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.merriam-webster.com/dictionary/standard%20operating%20procedure</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000055 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000055">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000006"/>
<obo:IAO_0000115>Detailed design of study components including data collection, analysis, and dissemination.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:20:06Z</dc:date>
<rdfs:label>study design role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000056 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000056">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000006"/>
<obo:IAO_0000115>A methodology role that involves the creation or refinement of a manner or method by which an activity is performed.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:20:11Z</dc:date>
<rdfs:label>technique development role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000056"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A methodology role that involves the creation or refinement of a manner or method by which an activity is performed.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q2695280</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000057 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000057">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000026"/>
<obo:IAO_0000115>A role charged with conceptualization, design, development and marketing of complex equipment.</obo:IAO_0000115>
<obo:IAO_0000118>instrument development role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:23:39Z</dc:date>
<rdfs:label>device development role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000057"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A role charged with conceptualization, design, development and marketing of complex equipment.</owl:annotatedTarget>
<obo:IAO_0000119>https://searchcio.techtarget.com/definition/product-development-or-new-product-development-NPD</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000058 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000058">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000026"/>
<obo:IAO_0000115>A person that is responsible for operating equipment or instrumentation and/or that ensures equipment is well-maintained, properly configured, and safely functional.</obo:IAO_0000115>
<obo:IAO_0000118>instrument technician role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:23:44Z</dc:date>
<rdfs:label>equipment technician role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000058"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>A person that is responsible for operating equipment or instrumentation and/or that ensures equipment is well-maintained, properly configured, and safely functional.</owl:annotatedTarget>
<obo:IAO_0000119>https://en.wikipedia.org/wiki/Biomedical_equipment_technician</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000059 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000059">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000106"/>
<obo:IAO_0000115>Creation or refinement of a survey or questionnaire, a list of questions aimed at extracting specific data from a particular group of people.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:23:49Z</dc:date>
<rdfs:label>survey and questionnaire development role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000059"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Creation or refinement of a survey or questionnaire, a list of questions aimed at extracting specific data from a particular group of people.</owl:annotatedTarget>
<obo:IAO_0000119>https://www.wikidata.org/wiki/Q7257997</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000060 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000060">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CRO_0000101"/>
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000009"/>
<obo:IAO_0000115>Examination of software code to identify build-breaking changes prior to acceptance into a codebase.</obo:IAO_0000115>
<obo:IAO_0000118>software code review role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:25:30Z</dc:date>
<rdfs:label>code review role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000061 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000061">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<obo:IAO_0000115>Algorithm development and implementation of software in a computer programming language.</obo:IAO_0000115>
<obo:IAO_0100001 rdf:resource="http://purl.obolibrary.org/obo/CRO_0000064"/>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:25:35Z</dc:date>
<rdfs:label>obsolete computer programming role</rdfs:label>
<owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000062 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000062">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000009"/>
<obo:IAO_0000115>Creation of high-level structures of a software system.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:25:40Z</dc:date>
<rdfs:label>software architecture role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000063 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000063">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000009"/>
<obo:IAO_0000115>Creation of low-level software component and algorithm design.</obo:IAO_0000115>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:25:45Z</dc:date>
<rdfs:label>software design role</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/CRO_0000063"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget>Creation of low-level software component and algorithm design.</owl:annotatedTarget>
<obo:IAO_0000119>https://en.wikipedia.org/wiki/Low-level_design</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/CRO_0000064 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CRO_0000064">
<rdfs:subClassOf rdf:resource="http://purl.org/credit/ontology#CREDIT_00000009"/>
<obo:IAO_0000115>Systematic application of scientific and technological knowledge, methods, and experience to the design, implementation, testing, and documentation of software.</obo:IAO_0000115>
<obo:IAO_0000118>computer programming role</obo:IAO_0000118>
<dc:creator rdf:resource="http://orcid.org/0000-0001-5208-3432"/>
<dc:date rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2018-09-14T20:25:49Z</dc:date>
<rdfs:label>software engineering role</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CRO_0000065 -->