forked from ocorcho/GnossDeustoOnto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrohes-v2.owl
2771 lines (1906 loc) · 127 KB
/
rohes-v2.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.org/rohes#"
xml:base="http://purl.org/rohes"
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:iao="http://purl.org/roh/mirror/obo/iao#"
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:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:skos1="http://purl.org/roh/mirror/skos#"
xmlns:terms="http://purl.org/dc/terms/">
<owl:Ontology rdf:about="http://purl.org/rohes">
<owl:versionIRI rdf:resource="http://purl.org/rohes/1.0"/>
<terms:license rdf:resource="https://creativecommons.org/licenses/by-sa/4.0/"/>
<rdfs:comment xml:lang="en">The University of Murcia signed on November 29, 2017, a Covenant with the Ministry of Economy, Industry and Competitiveness backing the “HÉRCULES: Semantic University Research Data” Project with a budget of FIVE MILLION FOUR HUNDRED AND SIXTY-TWO THOUSAND SIX HUNDRED euros with an 80% of co-financiering from the European Regional Development Fund program (ERDF) within the 2014-2020 period.
The project arose as a CRUE initiative, to create the basis for a new collaboration model between universities, to develop the information management systems and with the main objective of encouraging this type of collaboration.
Therefore, the purpose of this agreement was to contribute to the improvement of public services and business innovation and research through the improvement of:
efficiency in public investment by decreasing the duplication of investment in R&D.
efficiency of research in universities.
scientific dissemination of research results.
detection of synergies in R&D between universities.
transfer of R&D results to companies.
efficiency in the management of research.
by creating a research management system with semantic capacities based on semantic open data and that will provide a global view of the research data contained in the Spanish University System.</rdfs:comment>
</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_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000412 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000412"/>
<!-- http://purl.org/dc/terms/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/roh/mirror/obo/iao#IAO_0000111 -->
<owl:AnnotationProperty rdf:about="http://purl.org/roh/mirror/obo/iao#IAO_0000111"/>
<!-- http://purl.org/roh/mirror/obo/iao#IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.org/roh/mirror/obo/iao#IAO_0000112"/>
<!-- http://purl.org/roh/mirror/obo/iao#IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.org/roh/mirror/obo/iao#IAO_0000115"/>
<!-- http://purl.org/roh/mirror/obo/iao#IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.org/roh/mirror/obo/iao#IAO_0000117"/>
<!-- http://purl.org/roh/mirror/obo/iao#IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.org/roh/mirror/obo/iao#IAO_0000118"/>
<!-- http://purl.org/roh/mirror/obo/iao#IAO_0000412 -->
<owl:AnnotationProperty rdf:about="http://purl.org/roh/mirror/obo/iao#IAO_0000412"/>
<!-- http://purl.org/roh/mirror/skos#definition -->
<owl:AnnotationProperty rdf:about="http://purl.org/roh/mirror/skos#definition"/>
<!-- http://www.w3.org/2003/06/sw-vocab-status/ns#term_status -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
<!-- http://www.w3.org/2004/02/skos/core#scopeNote -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#scopeNote"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/roh#metricOf -->
<owl:ObjectProperty rdf:about="http://purl.org/roh#metricOf"/>
<!-- http://purl.org/roh/mirror/obo/bfo#BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.org/roh/mirror/obo/bfo#BFO_0000051"/>
<!-- http://purl.org/roh/mirror/vivo#dateTimeInterval -->
<owl:ObjectProperty rdf:about="http://purl.org/roh/mirror/vivo#dateTimeInterval"/>
<!-- http://purl.org/roh/mirror/vivo#hasGoverningAuthority -->
<owl:ObjectProperty rdf:about="http://purl.org/roh/mirror/vivo#hasGoverningAuthority"/>
<!-- http://purl.org/roh/mirror/vivo#hasSubjectArea -->
<owl:ObjectProperty rdf:about="http://purl.org/roh/mirror/vivo#hasSubjectArea"/>
<!-- http://purl.org/roh/mirror/vivo#relates -->
<owl:ObjectProperty rdf:about="http://purl.org/roh/mirror/vivo#relates"/>
<!-- http://purl.org/roh/mirror/vivo#validIn -->
<owl:ObjectProperty rdf:about="http://purl.org/roh/mirror/vivo#validIn"/>
<!-- http://purl.org/rohes#chargedTo -->
<owl:ObjectProperty rdf:about="http://purl.org/rohes#chargedTo">
<owl:inverseOf rdf:resource="http://purl.org/rohes#charges"/>
<rdfs:domain rdf:resource="http:/purl.org/roh#Expense"/>
<rdfs:range rdf:resource="http://purl.org/rohes#Account"/>
</owl:ObjectProperty>
<!-- http://purl.org/rohes#charges -->
<owl:ObjectProperty rdf:about="http://purl.org/rohes#charges">
<rdfs:domain rdf:resource="http://purl.org/rohes#Account"/>
<rdfs:range rdf:resource="http:/purl.org/roh#Expense"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#contractOf -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#contractOf">
<owl:inverseOf rdf:resource="http:/purl.org/roh#hasContract"/>
<rdfs:domain rdf:resource="http://purl.org/roh/mirror/vivo#Contract"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#fundedBy -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#fundedBy">
<owl:inverseOf rdf:resource="http:/purl.org/roh#funds"/>
<rdfs:domain rdf:resource="http://purl.org/roh#Funding"/>
<rdfs:range rdf:resource="http://purl.org/roh/mirror/vivo#FundingOrganization"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#fundingSource -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#fundingSource">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<owl:inverseOf rdf:resource="http:/purl.org/roh#fundingSourceOf"/>
<rdfs:domain rdf:resource="http://purl.org/roh#Funding"/>
<rdfs:range rdf:resource="http:/purl.org/roh#FundingSource"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#fundingSourceOf -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#fundingSourceOf">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<rdfs:domain rdf:resource="http:/purl.org/roh#FundingSource"/>
<rdfs:range rdf:resource="http://purl.org/roh#Funding"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#funds -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#funds">
<rdfs:domain rdf:resource="http://purl.org/roh/mirror/vivo#FundingOrganization"/>
<rdfs:range rdf:resource="http://purl.org/roh#Funding"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#hasContract -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#hasContract">
<rdfs:range rdf:resource="http://purl.org/roh/mirror/vivo#Contract"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#hasKnowledgeArea -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#hasKnowledgeArea">
<owl:inverseOf rdf:resource="http:/purl.org/roh#knowledgeAreaOf"/>
<rdfs:range rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#knowledgeAreaOf -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#knowledgeAreaOf">
<rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#participatedBy -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#participatedBy">
<owl:inverseOf rdf:resource="http:/purl.org/roh#participates"/>
<rdfs:domain rdf:resource="http://purl.org/roh#Activity"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#participates -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#participates">
<rdfs:range rdf:resource="http://purl.org/roh#Activity"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#spends -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#spends">
<owl:inverseOf rdf:resource="http:/purl.org/roh#spentBy"/>
<rdfs:range rdf:resource="http:/purl.org/roh#Expense"/>
</owl:ObjectProperty>
<!-- http:/purl.org/roh#spentBy -->
<owl:ObjectProperty rdf:about="http:/purl.org/roh#spentBy">
<rdfs:domain rdf:resource="http:/purl.org/roh#Expense"/>
<rdfs:range rdf:resource="http://purl.org/roh/mirror/vivo#Project"/>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/roh#cumLaude -->
<owl:DatatypeProperty rdf:about="http://purl.org/roh#cumLaude"/>
<!-- http://purl.org/roh#mark -->
<owl:DatatypeProperty rdf:about="http://purl.org/roh#mark"/>
<!-- http://purl.org/roh#metricName -->
<owl:DatatypeProperty rdf:about="http://purl.org/roh#metricName"/>
<!-- http://purl.org/roh/mirror/vivo#description -->
<owl:DatatypeProperty rdf:about="http://purl.org/roh/mirror/vivo#description"/>
<!-- http://purl.org/roh/mirror/vivo#freetextKeyword -->
<owl:DatatypeProperty rdf:about="http://purl.org/roh/mirror/vivo#freetextKeyword"/>
<!-- http://purl.org/roh/mirror/vivo#identifier -->
<owl:DatatypeProperty rdf:about="http://purl.org/roh/mirror/vivo#identifier"/>
<!-- http://purl.org/rohes#code -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#code">
<rdfs:label xml:lang="en">code</rdfs:label>
<rdfs:label xml:lang="es">código</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/rohes#doctoradoEuropeo -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#doctoradoEuropeo">
<rdfs:domain rdf:resource="http://purl.org/roh#PhDThesisMetric"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:comment xml:lang="es">La mención europea en el título de Doctor está regulada en el artículo 14 del Real Decreto 56/2005, de 21 de enero, sobre estudios universitarios oficiales de posgrado y en el artículo 22 del Real Decreto 1393/2007, de 29 de octubre, por el que se establece la ordenación de las enseñanzas universitarias oficiales. Los doctorandos que hayan comenzado sus estudios de doctorado con posterioridad al 11 de febrero de 2011 podrán obtener la mención internacional pero no la mención europea en el título de Doctor, ya que ésta ha sido derogada por el RD 99/2011. Los doctorandos que comenzaron sus estudios antes del 11 de febrero de 2011 y que hayan leído o lean sus tesis con posterioridad a dicha fecha, podrán obtener la mención europea, de acuerdo con la anterior normativa, o la mención internacional.</rdfs:comment>
<rdfs:label xml:lang="es">Doctorado Europeo</rdfs:label>
<rdfs:label xml:lang="en">European PhD</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/rohes#doctoradoInternacional -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#doctoradoInternacional">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:label xml:lang="es">Doctorado Internacional</rdfs:label>
<rdfs:label xml:lang="es">International PhD</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/rohes#finalist -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#finalist">
<rdfs:domain rdf:resource="http://purl.org/roh/mirror/vivo#Project"/>
<rdfs:range>
<rdfs:Datatype>
<owl:oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>F</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>N</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>P</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</owl:oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>A finalist project can have one value of the following three types: a) finalist (F), non-finalist (N), and partially finalist (P).</rdfs:comment>
</owl:DatatypeProperty>
<!-- http://purl.org/rohes#limitative -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#limitative">
<rdfs:domain rdf:resource="http://purl.org/roh/mirror/vivo#Project"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:DatatypeProperty>
<!-- http://purl.org/rohes#mencionCalidad -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#mencionCalidad">
<rdfs:domain rdf:resource="http://purl.org/roh#PhDThesisMetric"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:comment xml:lang="es">La mención de calidad es una expresión de reconocimiento a la solvencia científico/técnica y formadora otorgada al programa de doctorado en su conjunto y a los grupos de investigación y departamentos que intervienen en el mismo. La mención de calidad ha sido sustituida por la mención hacia la excelencia, distinción con la que el Ministerio de Educación reconoce la calidad de los mejores programas oficiales de Doctorado, y supone un proceso previo de acreditación de los méritos y la trayectoria del programa ante la ANECA (artículo 16.1 del Real Decreto 99/2011, de 28 de enero, por el que se regulan las enseñanzas oficiales de doctorado: http://www.boe.es/boe/dias/2011/02/10/pdfs/BOE-A-2011-2541.pdf)</rdfs:comment>
<rdfs:label xml:lang="es">Mención de Calidad</rdfs:label>
<rdfs:label xml:lang="en">Quality mention</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/rohes#premioExtraordinarioDoctorado -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#premioExtraordinarioDoctorado">
<rdfs:domain rdf:resource="http://purl.org/roh#PhDThesisMetric"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
<rdfs:comment xml:lang="es">El premio extraordinario de doctorado se concede a aquellos Doctores que, habiendo obtenido la mención "cum laude", sean beneficiarios asimismo de dicho premio.</rdfs:comment>
<rdfs:label xml:lang="es">PhD extraordinary award</rdfs:label>
<rdfs:label xml:lang="es">Premio extraordinario del doctorado</rdfs:label>
</owl:DatatypeProperty>
<!-- http://purl.org/rohes#rate -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#rate">
<rdfs:domain rdf:resource="http://purl.org/rohes#Tax"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
</owl:DatatypeProperty>
<!-- http://purl.org/rohes#secondFamilyName -->
<owl:DatatypeProperty rdf:about="http://purl.org/rohes#secondFamilyName">
<rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://pur.org/roh#Accreditation -->
<owl:Class rdf:about="http://pur.org/roh#Accreditation">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh/mirror/vivo#hasGoverningAuthority"/>
<owl:allValuesFrom rdf:resource="http://purl.org/roh/mirror/foaf#Organization"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh/mirror/vivo#hasSubjectArea"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so.</obo:IAO_0000115>
<rdfs:label xml:lang="en">Accreditation</rdfs:label>
<rdfs:label xml:lang="es">Acreditación</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#AcademicAccreditation -->
<owl:Class rdf:about="http://purl.org/roh#AcademicAccreditation">
<rdfs:subClassOf rdf:resource="http://pur.org/roh#Accreditation"/>
<rdfs:comment xml:lang="en">An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so in the academic field.</rdfs:comment>
<rdfs:label xml:lang="en">Academic Accreditation</rdfs:label>
<rdfs:label xml:lang="en">Acreditación Académica</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#Activity -->
<owl:Class rdf:about="http://purl.org/roh#Activity">
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Only use if no specific subclasses of event:Event are appropriate.</obo:IAO_0000112>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This class will also display instances of subclasses under Event, e.g. Philosophy Department Discussion Club; 2009 Racker Lecture; screening of a documentary. In addition to a location in space and time, an event may have any or all the following qualities: actively participating agents, passive factors, work products. Also, it may be in a virtual space or part of a series such as a lecture series.
The previous short definition was: "An arbitrary classification of a space/time region, by a cognitive agent."</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Something that happens at a given place and time.</obo:IAO_0000115>
<rdfs:comment>The entity research activity (roh:Activity), new in ROH represents the activities in which People participate (roh:participates) and organized by Organizations (foaf:Organization) reflected through the roh:hasRole relationship that connects with the intermediary entity vivo:OrganizerRole. Each activity is usually linked to a project through the relationship (roh:participates) and causes a project expenditure linked through (vivo:relates). A detailed hierarchy of activity subtypes is defined as roh:Activity: bibo:Conference, vivo:Internship or roh:ThesisViva.</rdfs:comment>
<rdfs:label xml:lang="es">Actividad</rdfs:label>
<rdfs:label xml:lang="en">Activity</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#CurriculumVitae -->
<owl:Class rdf:about="http://purl.org/roh#CurriculumVitae"/>
<!-- http://purl.org/roh#DegreeMetric -->
<owl:Class rdf:about="http://purl.org/roh#DegreeMetric">
<rdfs:subClassOf rdf:resource="http://purl.org/roh#Metric"/>
<owl:disjointWith rdf:resource="http://purl.org/roh#PublicationMetric"/>
<rdfs:label xml:lang="en">Degree Metric</rdfs:label>
<rdfs:label xml:lang="es">Métrica de Grado Universitario</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#Expense -->
<owl:Class rdf:about="http://purl.org/roh#Expense">
<rdfs:label xml:lang="en">Expense</rdfs:label>
<rdfs:label xml:lang="es">Gasto</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#Funding -->
<owl:Class rdf:about="http://purl.org/roh#Funding">
<rdfs:comment>The roh:Funding entity, new in ROH, represents the funding associated with a project (roh:Project) whose funding is associated with a funding program (roh:FundingProgram) and comes from a (roh:FundingSource), which in turn is associated with a funding organization (vivo:FundingOrganization). A funding is divided into several amounts (roh:FundingAmount), associated with the different entities that participate in a project and the annuities in which they do so. Funding gathers information about the total funding received for a project and its currency through the roh:monetaryAmount and roh:currency properties.
The funding organization (vivo:FundingOrganization), imported from VIVO, inherits from foaf:Organization, finances (roh:funds) through different funding aids (roh:Funding) to projects (roh:Project) through the roh:supports relationship and through the roh:FundingAmounts into which a roh:Funding is divided. A funding organization in turn divides a roh:Funding into several roh:FundingAmounts associated with different foaf:Organizations through the roh:grants relationship.
The Funding Program entity (roh:FundingProgram), new in ROH, defines the funding initiatives promoted (roh:promotedBy) by a Funding Organization (vivo:FundingOrganization) and is in operation during a time interval (vivo:dateTimeInterval) and is usually linked to a geographical scope (geonames:Feature).</rdfs:comment>
<rdfs:label xml:lang="es">Financiación</rdfs:label>
<rdfs:label xml:lang="en">Funding</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#FundingAmount -->
<owl:Class rdf:about="http://purl.org/roh#FundingAmount">
<rdfs:label xml:lang="en">Funding Amount</rdfs:label>
<rdfs:label xml:lang="es">Monto de Financiación</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#FundingProgram -->
<owl:Class rdf:about="http://purl.org/roh#FundingProgram">
<rdfs:label xml:lang="en">Funding Program</rdfs:label>
<rdfs:label xml:lang="es">Programa de Financiación</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#Infrastructure -->
<owl:Class rdf:about="http://purl.org/roh#Infrastructure">
<rdfs:label xml:lang="es">Infraestructura</rdfs:label>
<rdfs:label xml:lang="en">Infrastructure</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#KnowledgeArea -->
<owl:Class rdf:about="http://purl.org/roh#KnowledgeArea">
<owl:disjointWith rdf:resource="http://purl.org/roh#ProjectClassification"/>
<rdfs:label xml:lang="en">Knowledge Area</rdfs:label>
<rdfs:label xml:lang="es">Área de Conocimiento</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#Metric -->
<owl:Class rdf:about="http://purl.org/roh#Metric">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh#metricOf"/>
<owl:allValuesFrom rdf:resource="http://purl.org/roh#ResearchObject"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh#metricName"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment>Metric based on cfMetric, including attributes Identifier, Uniform Resource Identifier, Name, Description and linked to foaf:Agent, Keyword and optionally to ResearchObject</rdfs:comment>
<rdfs:label xml:lang="en">Metric</rdfs:label>
<rdfs:label xml:lang="es">Métrica</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#National -->
<owl:Class rdf:about="http://purl.org/roh#National">
<rdfs:subClassOf rdf:resource="http://purl.org/roh#ProjectClassification"/>
</owl:Class>
<!-- http://purl.org/roh#PhDThesisMetric -->
<owl:Class rdf:about="http://purl.org/roh#PhDThesisMetric">
<rdfs:subClassOf rdf:resource="http://purl.org/roh#Thesis_Metric"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh#cumLaude"/>
<owl:someValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh#mark"/>
<owl:someValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh#cumLaude"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh#mark"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/rohes#doctoradoEuropeo"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/rohes#doctoradoInternacional"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/rohes#mencionCalidad"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/rohes#premioExtraordinarioDoctorado"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="es">Métrica de tesis doctoral</rdfs:label>
<rdfs:label xml:lang="en">PhD Thesis Metric</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#ProjectClassification -->
<owl:Class rdf:about="http://purl.org/roh#ProjectClassification">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</owl:Class>
<!-- http://purl.org/roh#PublicationMetric -->
<owl:Class rdf:about="http://purl.org/roh#PublicationMetric">
<rdfs:label xml:lang="es">Métrica de Publicación</rdfs:label>
<rdfs:label xml:lang="en">Publication Metric</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#ResearchAccreditation -->
<owl:Class rdf:about="http://purl.org/roh#ResearchAccreditation">
<rdfs:subClassOf rdf:resource="http://pur.org/roh#Accreditation"/>
<rdfs:comment xml:lang="en">An attestation of qualification, competence, or authority issued to an individual by a third party with a relevant or de facto authority or assumed competence to do so in the research field.</rdfs:comment>
<rdfs:label xml:lang="es">Acreditación de Investigación</rdfs:label>
<rdfs:label xml:lang="en">Research Accreditation</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh#ResearchObject -->
<owl:Class rdf:about="http://purl.org/roh#ResearchObject"/>
<!-- http://purl.org/roh#Thesis_Metric -->
<owl:Class rdf:about="http://purl.org/roh#Thesis_Metric">
<rdfs:subClassOf rdf:resource="http://purl.org/roh#DegreeMetric"/>
</owl:Class>
<!-- http://purl.org/roh/mirror/foaf#Agent -->
<owl:Class rdf:about="http://purl.org/roh/mirror/foaf#Agent">
<rdfs:label xml:lang="en">Agent</rdfs:label>
<rdfs:label xml:lang="es">Agente</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/foaf#Document -->
<owl:Class rdf:about="http://purl.org/roh/mirror/foaf#Document">
<rdfs:label xml:lang="en">Document</rdfs:label>
<rdfs:label xml:lang="es">Documento</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/foaf#Organization -->
<owl:Class rdf:about="http://purl.org/roh/mirror/foaf#Organization">
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organization</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Only use if no specific subclasses of foaf:organization desribe the organization.</obo:IAO_0000112>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This class will display all the instances in the subclasses below it, as well as any organizations that were added as part of this generic class because there wasn't a specific class available.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A generic class encompassing several types of organizations.</obo:IAO_0000115>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A kind of Agent corresponding to social instititutions such as companies, societies etc.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Scott Hoffmann</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"></obo:IAO_0000118>
<rdfs:comment>An Organization in ROH is a foaf:Organization which carries out several roh:Project. It is a child of foaf:Agent. Some organization can emit roh:Acreditation (e.g. ANECA or CENAI in Spain), those belonging to subclass roh:AccreditationIssuer, or award degrees (vivo:AwardedDegree), those of subclass vivo:University. An Organization may receive several roh:FundingAmount, corresponding to a roh:Funding, obtained through a roh:FundingProgram provided by a vivo:FundingOrganization through a roh:FundingSource. As a foaf:Agent an Organization may be involved in several roh:Actitity, has several instances of attribute roh:researchLine, is associated through roh:hasKnowledgeArea with roh:KnowledgeArea and bound to a geographical scope through gn:locatedIn with gn:Feature, it may also have a time span through vivo:dateTimeInterval linking it with an instance of vivo:DateTimeInterval.
Based on FOAF, the foaf:Organization entity takes into account the object properties (attributes: roh:acronym, headcount, turnover, foaf:homepage) and data properties (links) defined by the Organization Unit in CERIF. It also takes into account and supports the relationships of CERIF Equipment (via roh:Equipment and roh:hasInfrastructure), ElectronicAddress (obo:hasContactInfo), Event (roh:Activity), Expertise and Skill (via vivo:keywords and roh:hasKnowledgeArea), Facility (roh:Facility and roh:hasInfrastructure), Funding (roh:Funding), Organization Unit (kinship relationships between organizations can be established with vivo:hasPart and vivo:partOf), Prize Award (through roh:Accreditation), Result Patent, Result Product, Result Publication and Service - all of them through roh:ResearchObject which can be obtained through the roh:produces relationship from the Projects in which an organization participates by playing a declared role through roh:hasRole, Person (through roh:hasPosition). Therefore, the CERIF data model for Organization is covered.
An exhaustive hierarchy of organizations is includes, e.g. roh:AccreditationIssuer, vivo:Company or vivo:University, among many others.
Besides, an instance of a foaf:Organization is associated to the following entities through object properties:
- roh:Accreditation, where an organization of type roh:AccrediationIssuer issues (roh:issues) accreditations, e.g. roh:ResearchAccreditation or roh:AcademicAccreditation.
- roh:Activity, where an organization may play vivo:OrganizerRole through roh:hasRole in an activity or may through its participation role in a project participate (roh:participates) in an activity.
- vivo:AwardedDegree, where and organization may roh:awards degrees which are related to both a concrete vivo:AcademicDegree and an instance of foaf:Person.
- skos:Concept, where an organization through roh:hasKnowledgeArea may be associated to several knowledge areas, defined as instance data of thesaurus created with SKOS ontology.
- vivo:DateTimeInterval, where an organization may exist during a given time interval
- gn:Feature through relationship gn:locatedIn, where an organization may be associated a geographical scope.
- roh:FundingAmount where an organization may receive several funding amounts part of a roh:Funding through roh:grants object property.
- vcard:Individual, where an organization obo:hasContactInfo described through ontology vcard.
- roh:Infrastructure, where an organization may roh:hasInfrastructure, belonging to any of its subclasses, e.g. roh:Equipment or roh:Facility.
- foaf:Organization, where a foaf:Organization may be linked through vivo:hasSucessorOrganization or vivo:hasPredecessorOrganization with another foaf:Organization or may be part of (vivo:partOf) or include (vivo:hasPart) other several foaf:Organization.</rdfs:comment>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization</rdfs:comment>
<rdfs:comment>An organization.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.org/roh/mirror/foaf#"/>
<rdfs:label xml:lang="es">Organización</rdfs:label>
<rdfs:label xml:lang="en">Organization</rdfs:label>
<ns:term_status>stable</ns:term_status>
<skos:scopeNote xml:lang="en">Ued to describe an organization related to bibliographic items such as a publishing company, etc.</skos:scopeNote>
</owl:Class>
<!-- http://purl.org/roh/mirror/geonames#Feature -->
<owl:Class rdf:about="http://purl.org/roh/mirror/geonames#Feature">
<rdfs:label xml:lang="es">Característica</rdfs:label>
<rdfs:label xml:lang="en">Feature</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/obo/bfo#BFO_0000008 -->
<owl:Class rdf:about="http://purl.org/roh/mirror/obo/bfo#BFO_0000008"/>
<!-- http://purl.org/roh/mirror/obo/bfo#BFO_0000023 -->
<owl:Class rdf:about="http://purl.org/roh/mirror/obo/bfo#BFO_0000023">
<rdfs:comment>Based on VIVO defined roles, however in ROH, roles might be specific to a country or a university in a country. Therefore, their types have to refined per country and university case.</rdfs:comment>
<rdfs:label xml:lang="es">Rol</rdfs:label>
<rdfs:label xml:lang="en">Role</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/obo/ero#ERO_0000005 -->
<owl:Class rdf:about="http://purl.org/roh/mirror/obo/ero#ERO_0000005"/>
<!-- http://purl.org/roh/mirror/obo/iao#IAO_0000030 -->
<owl:Class rdf:about="http://purl.org/roh/mirror/obo/iao#IAO_0000030"/>
<!-- http://purl.org/roh/mirror/vcard#Kind -->
<owl:Class rdf:about="http://purl.org/roh/mirror/vcard#Kind">
<rdfs:label xml:lang="en">Kind</rdfs:label>
<rdfs:label xml:lang="es">Tipo</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/vivo#AcademicDegree -->
<owl:Class rdf:about="http://purl.org/roh/mirror/vivo#AcademicDegree">
<rdfs:label xml:lang="en">Academic Degree</rdfs:label>
<rdfs:label xml:lang="es">Grado Académico</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/vivo#Contract -->
<owl:Class rdf:about="http://purl.org/roh/mirror/vivo#Contract">
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An agreement involving specific deliverables and payment</obo:IAO_0000115>
<rdfs:label xml:lang="en">Contract</rdfs:label>
<rdfs:label xml:lang="es">Contracto</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/vivo#DateTimeInterval -->
<owl:Class rdf:about="http://purl.org/roh/mirror/vivo#DateTimeInterval">
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">a specific period or duration, defined by (optional) start and end date/times.</obo:IAO_0000115>
<rdfs:comment>Models a time span, very similarly as in CERIF but more nicely encompasses the time interval as instance of class vivo:DateTimeInterval</rdfs:comment>
<rdfs:label xml:lang="en">Date/Time Interval</rdfs:label>
<rdfs:label xml:lang="es">Intervalo Fecha/Hora</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/vivo#FacultyPosition -->
<owl:Class rdf:about="http://purl.org/roh/mirror/vivo#FacultyPosition">
<rdfs:subClassOf rdf:resource="http://purl.org/roh/mirror/vivo#Position"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Professor, associate professor and assistant professor are common positions for academic faculty.</obo:IAO_0000112>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Professor; Associate Professor; Assistant Professor</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Academic position in a university or institution</obo:IAO_0000115>
<rdfs:label xml:lang="en">Faculty Position</rdfs:label>
<rdfs:label xml:lang="es">Posición en Facultad</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/vivo#FundingOrganization -->
<owl:Class rdf:about="http://purl.org/roh/mirror/vivo#FundingOrganization">
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">National Institute of Health (NIH)</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A defined class of organizations that fund Grants</obo:IAO_0000115>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organization that provides financial support to individuals or organizations to carry out specified activities.</obo:IAO_0000115>
<obo:IAO_0000412 rdf:resource="http://purl.org/roh/mirror/vivo"/>
<rdfs:comment>A Funder inherits from foaf:Organization, it funds several Projects, “funds” several Fundings
The funding organization (vivo:FundingOrganization), imported from VIVO, inherits from foaf:Organization, finances (roh:funds) through different funding aids (roh:Funding) to projects (roh:Project) through the roh:supports relationship and through the roh:FundingAmounts into which a roh:Funding is divided. A funding organization in turn divides a roh:Funding into several roh:FundingAmounts associated with different foaf:Organizations through the roh:grants relationship.</rdfs:comment>
<rdfs:label xml:lang="en">Funding Organization</rdfs:label>
<rdfs:label xml:lang="es">Organización financiadora</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/vivo#Position -->
<owl:Class rdf:about="http://purl.org/roh/mirror/vivo#Position">
<rdfs:subClassOf rdf:resource="http://purl.org/roh/mirror/vivo#Relationship"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An employment activity, whether compensated or not. Short definition comes from http://en.wikipedia.org/wiki/Position, and has been modified.</obo:IAO_0000112>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Director of Admissions and Placement; Associate University Librarian</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Particular position in an organization, commonly identified by job title, and normally associated with a job description that details the tasks and responsibilities that go with the position.</obo:IAO_0000115>
<rdfs:comment>Position is reused from vivo:Position and is refined into AcademicPosition (non-existing in VIVO) and NonAcademicPosition, for each position a range of possible figures is considered. This entiy is subject to refinement according to the country where it is applied.</rdfs:comment>
<rdfs:label xml:lang="es">Posición</rdfs:label>
<rdfs:label xml:lang="en">Position</rdfs:label>
</owl:Class>
<!-- http://purl.org/roh/mirror/vivo#Project -->
<owl:Class rdf:about="http://purl.org/roh/mirror/vivo#Project">
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh/mirror/obo/bfo#BFO_0000051"/>
<owl:allValuesFrom rdf:resource="http://purl.org/roh/mirror/vivo#Project"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh/mirror/vivo#dateTimeInterval"/>
<owl:allValuesFrom rdf:resource="http://purl.org/roh/mirror/vivo#DateTimeInterval"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh/mirror/vivo#relates"/>
<owl:allValuesFrom rdf:resource="http://purl.org/roh/mirror/obo/bfo#BFO_0000023"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http:/purl.org/roh#fundedBy"/>
<owl:allValuesFrom rdf:resource="http://purl.org/roh#Funding"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http:/purl.org/roh#hasKnowledgeArea"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http:/purl.org/roh#participates"/>
<owl:allValuesFrom rdf:resource="http://purl.org/roh#Activity"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http:/purl.org/roh#spends"/>
<owl:allValuesFrom rdf:resource="http:/purl.org/roh#ProjectExpense"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh/mirror/vivo#freetextKeyword"/>
<owl:someValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh/mirror/vivo#description"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.org/roh/mirror/vivo#identifier"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.
</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An endeavor, frequently collaborative, that occurs over a finite period of time and is intended to achieve a particular aim.</obo:IAO_0000115>
<rdfs:comment>A project in business and science is typically defined as a collaborative enterprise, frequently involving research or design, that is carefully planned to achieve a particular aim. Its configuration is inspired by the swrc:project and takes into account cerif:Project’s data properties. It encompasss all those properties and adds some new ones, e.g. projectStatus or projectType. This entiry is linked with classes Organization, Person, ResearchResult and Funding</rdfs:comment>
<rdfs:label xml:lang="en">Project</rdfs:label>