-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathemro-base.owl
More file actions
1583 lines (1171 loc) · 89.7 KB
/
Copy pathemro-base.owl
File metadata and controls
1583 lines (1171 loc) · 89.7 KB
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/emro/emro-base.owl#"
xml:base="http://purl.obolibrary.org/obo/emro/emro-base.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:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/emro/emro-base.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/emro/releases/2026-06-22/emro-base.owl"/>
<dc:type rdf:resource="http://purl.obolibrary.org/obo/IAO_8000001"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-6906-5548"/>
<terms:contributor rdf:resource="https://orcid.org/0009-0002-7282-0836"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2025-11-24</terms:created>
<terms:creator rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:creator rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:creator rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:description>The Emotion Response Ontology represents emotions as behavioral responses to a situation or event, or internal process which evokes positive feelings, negative feelings, or surprise (i.e., emotional experiences).</terms:description>
<terms:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
<terms:title>Emotion Response Ontology</terms:title>
<oboInOwl:date>22:06:2026 18:07</oboInOwl:date>
<owl:versionInfo>2026-06-22</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000231 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000231"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000589 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000589"/>
<!-- http://purl.org/dc/elements/1.1/type -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/type"/>
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created"/>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/source"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://www.geneontology.org/formats/oboInOwl#date -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#date"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasExactSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"/>
<!-- http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"/>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<!-- http://purl.obolibrary.org/obo/RO_0000052 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000052"/>
<!-- http://purl.obolibrary.org/obo/RO_0002353 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002353"/>
<!-- http://purl.obolibrary.org/obo/RO_0002410 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002410"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000015"/>
<!-- http://purl.obolibrary.org/obo/COB_0000502 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/COB_0000502"/>
<!-- http://purl.obolibrary.org/obo/EMRO_0000000 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000000">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0007610"/>
<obo:IAO_0000115 xml:lang="en">A behavioral response that includes overt action, cognitive response, verbal response, or physiological reaction in response to a situation or event, or internal process which evokes positive feelings, negative feelings, or surprise (i.e., emotional experiences).</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">emotion process (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T20:50:19Z</terms:created>
<rdfs:label xml:lang="en">emotion process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0050890"/>
<obo:IAO_0000115 xml:lang="en">A cognitive process during which an organism is aware of something either internal or external to itself.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">phenomenal cognitive experience (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T20:52:17Z</terms:created>
<rdfs:label xml:lang="en">phenomenal cognitive experience</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000001"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A cognitive process during which an organism is aware of something either internal or external to itself.</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.apa.org/consciousness</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000002">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/EMRO_0000001"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<obo:IAO_0000115 xml:lang="en">A phenomenal cognitive experience evaluated as pleasant or unpleasant.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">emotional experience (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T20:52:39Z</terms:created>
<rdfs:label xml:lang="en">emotional experience</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000002"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A phenomenal cognitive experience evaluated as pleasant or unpleasant.</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.apa.org/feeling</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
<obo:IAO_0000115 xml:lang="en">An emotion process that is a response that occurs more distally in time or physical space with regard to threatening stimuli. Anxiety typically involves worrying about experiencing threats that could or will be experienced in the future.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">anxiety process (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T20:56:47Z</terms:created>
<rdfs:label xml:lang="en">anxiety process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000004 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000004">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
<obo:IAO_0000115 xml:lang="en">An emotion process that is an in-the-moment response to a perceived threat. Fear is typically associated with organized, robust visceral arousal.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">fear process (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T20:57:08Z</terms:created>
<rdfs:label xml:lang="en">fear process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000001"/>
<obo:IAO_0000115 xml:lang="en">A phenomenal cognitive experience produced by the parts of the nervous sysem involved in awareness of the external world (i.e., external stimulus) or changes to internal organs. A sensory experience does not necessarily entail the existence phenomenon experiences (e.g., hallucinations).</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">sensory experience (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T20:59:47Z</terms:created>
<rdfs:label xml:lang="en">sensory experience</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000005"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A phenomenal cognitive experience produced by the parts of the nervous sysem involved in awareness of the external world (i.e., external stimulus) or changes to internal organs. A sensory experience does not necessarily entail the existence phenomenon experiences (e.g., hallucinations).</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.apa.org/sensation</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0061744"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/GO_0006936"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002410"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A motor behavior that happens as a response to an emotion process. The motoric response includes muscle contractions that may move parts of the body or prevent the body from moving (e.g., freezing).</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">motoric response to emotion (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T21:02:42Z</terms:created>
<rdfs:label xml:lang="en">motoric response to emotion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000007">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GO_0003012"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GO_0003013"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GO_0003016"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GO_0050877"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GO_0061744"/>
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/GO_0160269"/>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002410"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0007610"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A psychophysiological process that is part of an emotion process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">psychophysiological response to emotion (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T21:10:13Z</terms:created>
<rdfs:label xml:lang="en">psychophysiological response to emotion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0160269"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002410"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">Sweat screation that happens as a response to an emotion process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">sweat secretion response to emotion (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T22:22:47Z</terms:created>
<rdfs:label xml:lang="en">sweat secretion response to emotion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000009">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000035"/>
<obo:IAO_0000115 xml:lang="en">An emotional valence which is inherently pleasant or attractive.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">positive emotional valence (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-17T19:27:16Z</terms:created>
<rdfs:comment xml:lang="en">Emotional valences exist on a continuum from pleasant to unpleasant, or from attractive to aversive.</rdfs:comment>
<rdfs:label xml:lang="en">positive emotional valence</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000009"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">An emotional valence which is inherently pleasant or attractive.</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.apa.org/emotional-valence</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000010">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0006936"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002410"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">Muscle contraction that happens as a response to an emotion process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">muscle tension response to emotion (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T22:36:17Z</terms:created>
<rdfs:label xml:lang="en">muscle tension response to emotion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0003015"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002410"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A heart process during which the rate at which the heart beats increases as a response to an emotion process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">increased heart response to emotion (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T22:39:24Z</terms:created>
<rdfs:label xml:lang="en">increased heart response to emotion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000012 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000012">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0003016"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002410"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A respiratory system process during which the rate at which an organism moves air in and out of its lungs increases as a response to an emotion process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">increased breathing rate response to emotion (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-11-24T22:44:09Z</terms:created>
<rdfs:label xml:lang="en">increased breathing rate response to emotion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000013 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000013">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0050890"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002410"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A cognitive process that happens as a response to an emotion process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">cognitive response to emotion (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-12-17T17:11:45Z</terms:created>
<rdfs:label xml:lang="en">cognitive response to emotion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000014 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/GO_0050890"/>
<obo:IAO_0000115 xml:lang="en">A cognitive process during which the nature and significance of a phenomenon or event is evaluated.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">cognitive appraisal process (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-12-17T17:18:23Z</terms:created>
<rdfs:label xml:lang="en">cognitive appraisal process</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000007"/>
<obo:IAO_0000115 xml:lang="en">A transient loss of consciousness and postural tone that happens as a result of an emotion process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">syncope response to emotion (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T11:54:16Z</terms:created>
<oboInOwl:hasBroadSynonym xml:lang="en">fainting</oboInOwl:hasBroadSynonym>
<oboInOwl:hasBroadSynonym xml:lang="en">syncope</oboInOwl:hasBroadSynonym>
<oboInOwl:hasExactSynonym xml:lang="en">fainting response to emotion</oboInOwl:hasExactSynonym>
<oboInOwl:hasRelatedSynonym xml:lang="en">vasovagal syncope</oboInOwl:hasRelatedSynonym>
<rdfs:label xml:lang="en">syncope response to emotion</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000015"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A transient loss of consciousness and postural tone that happens as a result of an emotion process.</owl:annotatedTarget>
<obo:IAO_0000119>Adapted from MeSH definition for syncope. See https://meshb.nlm.nih.gov/record/ui?ui=D013575 or http://purl.bioontology.org/ontology/SNOMEDCT/271594007.</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000035"/>
<obo:IAO_0000115 xml:lang="en">An emotional valence which is inherently unpleasant or aversive.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">negative emotional valence (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-17T19:27:31Z</terms:created>
<rdfs:comment xml:lang="en">Emotional valences exist on a continuum from pleasant to unpleasant, or from attractive to aversive.</rdfs:comment>
<rdfs:label xml:lang="en">negative emotional valence</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000016"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">An emotional valence which is inherently unpleasant or aversive.</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.apa.org/emotional-valence</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000035"/>
<obo:IAO_0000115 xml:lang="en">An emotional valence which is inherently neither pleasant nor unpleasant.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">neutral emotional valence (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-17T19:29:48Z</terms:created>
<rdfs:comment xml:lang="en">Emotional valences exist on a continuum from pleasant to unpleasant, or from attractive to aversive. Neutral emotional valences are in the center of this continuum.</rdfs:comment>
<rdfs:label xml:lang="en">neutral emotional valence</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000017"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">An emotional valence which is inherently neither pleasant nor unpleasant.</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.apa.org/emotional-valence</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000010"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000004"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">Muscle contraction that happens as a response to a fear process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">muscle tension response to fear (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:16:30Z</terms:created>
<rdfs:label xml:lang="en">muscle tension response to fear</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000020">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/EMRO_0000007"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000004"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<obo:IAO_0000115 xml:lang="en">psychophysiological response to emotion that is part of a fear process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">psychophysiological response to fear (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:20:49Z</terms:created>
<rdfs:label xml:lang="en">psychophysiological response to fear</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000021 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000021">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/EMRO_0000007"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000003"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<obo:IAO_0000115 xml:lang="en">psychophysiological response to emotion that is part of an anxiety process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">psychophysiological response to anxiety (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:21:09Z</terms:created>
<rdfs:label xml:lang="en">psychophysiological response to anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000022 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000022">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000010"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000003"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">Muscle contraction that happens as a response to an anxiety process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">muscle tension response to anxiety (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:24:05Z</terms:created>
<rdfs:label xml:lang="en">muscle tension response to anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000013"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000004"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A cognitive process that happens as a response to fear process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">cognitive response to fear (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:26:16Z</terms:created>
<rdfs:label xml:lang="en">cognitive response to fear</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000024">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000013"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000003"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A cognitive process that happens as a response to an anxiety process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">cognitive response to anxiety (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:26:25Z</terms:created>
<rdfs:label xml:lang="en">cognitive response to anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000008"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000004"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">Sweat screation that happens as a response to a fear process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">sweat secretion response to fear (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:31:28Z</terms:created>
<rdfs:label xml:lang="en">sweat secretion response to fear</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000008"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000003"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">Sweat screation that happens as a response to an anxiety process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">sweat secretion response to anxiety (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:31:36Z</terms:created>
<rdfs:label xml:lang="en">sweat secretion response to anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000027">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000011"/>
<obo:IAO_0000115 xml:lang="en">A heart process during which the rate at which the heart beats increases as a response to a fear process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">increased heart response to fear (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:32:52Z</terms:created>
<rdfs:label xml:lang="en">increased heart response to fear</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000028 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000028">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000011"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000003"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A heart process during which the rate at which the heart beats increases as a response to an anxiety process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">increased heart response to anxiety (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:33:04Z</terms:created>
<rdfs:label xml:lang="en">increased heart response to anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000029">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000012"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000004"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A respiratory system process during which the rate at which an organism moves air in and out of its lungs increases as a response to a fear process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">increased breathing rate response to fear (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="http://orcid.org/0000-0001-9625-1899"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:34:20Z</terms:created>
<rdfs:label xml:lang="en">increased breathing rate response to fear</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000012"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000003"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A respiratory system process during which the rate at which an organism moves air in and out of its lungs increases as a response to an anxiety process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">increased breathing rate response to anxiety (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:34:30Z</terms:created>
<rdfs:label xml:lang="en">increased breathing rate response to anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000031 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000031">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000015"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000004"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A transient loss of consciousness and postural tone that happens as a result of a fear process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">syncope response to fear (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:42:51Z</terms:created>
<rdfs:label xml:lang="en">syncope response to fear</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000031"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A transient loss of consciousness and postural tone that happens as a result of a fear process.</owl:annotatedTarget>
<obo:IAO_0000119>Adapted from MeSH definition for syncope. See https://meshb.nlm.nih.gov/record/ui?ui=D013575 or http://purl.bioontology.org/ontology/SNOMEDCT/271594007.</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000015"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000003"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A transient loss of consciousness and postural tone that happens as a result of an anxiety process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">syncope response to anxiety (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T21:43:01Z</terms:created>
<rdfs:label xml:lang="en">syncope response to anxiety</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000032"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A transient loss of consciousness and postural tone that happens as a result of an anxiety process.</owl:annotatedTarget>
<obo:IAO_0000119>Adapted from MeSH definition for syncope. See https://meshb.nlm.nih.gov/record/ui?ui=D013575 or http://purl.bioontology.org/ontology/SNOMEDCT/271594007.</obo:IAO_0000119>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/EMRO_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000006"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000004"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A motor behavior that happens as a response to a fear process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">motoric response to fear (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="http://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T22:03:57Z</terms:created>
<rdfs:label xml:lang="en">motoric response to fear</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000034">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000006"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000050"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000003"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A motor behavior that happens as a response to an anxiety process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">motoric response to anxiety (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-05T22:04:12Z</terms:created>
<rdfs:label xml:lang="en">motoric response to anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/EMRO_0000035 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/EMRO_0000035">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0001236"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000052"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000000"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0002353"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000014"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 xml:lang="en">A process quality that characterizes the degree of positivity or negativity of an emotion process.</obo:IAO_0000115>
<obo:IAO_0000589 xml:lang="en">emotional valence (EMRO)</obo:IAO_0000589>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9625-1899"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0001-9990-8331"/>
<terms:contributor rdf:resource="https://orcid.org/0000-0002-0766-8455"/>
<terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-03-17T20:06:41Z</terms:created>
<terms:description xml:lang="en">the value associated with a stimulus as expressed on a continuum from pleasant to unpleasant or from attractive to aversive. In factor analysis and multidimensional scaling studies, emotional valence is one of two axes (or dimensions) on which an emotion can be located, the other axis being arousal (expressed as a continuum from high to low). For example, happiness is typically characterized by pleasant valence and relatively high arousal, whereas sadness or depression is typically characterized by unpleasant valence and relatively low arousal.</terms:description>
<oboInOwl:hasRelatedSynonym xml:lang="en">hedonic tone</oboInOwl:hasRelatedSynonym>
<rdfs:comment xml:lang="en">According to cognitive appraisal theory, an individual's cognitive appraisal of a stimulus contributes to producing an emotion (with its corresponding emotional valence).</rdfs:comment>
<rdfs:label xml:lang="en">emotional valence</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/EMRO_0000035"/>
<owl:annotatedProperty rdf:resource="http://purl.obolibrary.org/obo/IAO_0000115"/>
<owl:annotatedTarget xml:lang="en">A process quality that characterizes the degree of positivity or negativity of an emotion process.</owl:annotatedTarget>
<obo:IAO_0000119>https://dictionary.apa.org/emotional-valence</obo:IAO_0000119>
</owl:Axiom>