forked from mcwdsi/OMRSE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
omrse-base.obo
2327 lines (2052 loc) · 131 KB
/
omrse-base.obo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format-version: 1.2
data-version: omrse/releases/2021-08-30/omrse-base.owl
remark: This ontology grew out of efforts to represent the reality underlying the demographic information required by the US federal government's \"meaningful use\" criteria for electronic medical records and a presentation by Dr. William Hogan at the Electronic Health Record of the Future conference in Buffalo, NY http://ontology.buffalo.edu/EHR/Demographics_Hogan_Buffalo_2010_09_22.ppt
ontology: omrse/omrse-base
property_value: http://purl.org/dc/elements/1.1/contributor "Daniel Welch" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "Amanda Hicks" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "Shariq Tariq" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "Swetha Garimalla" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "William Hogan" xsd:string
property_value: http://purl.org/dc/elements/1.1/type IAO:8000001
property_value: http://purl.org/dc/terms/license https://creativecommons.org/licenses/by/4.0/ xsd:string
property_value: owl:versionInfo "2020-10-27" xsd:string
property_value: owl:versionInfo "2021-08-30" xsd:string
name: The Ontology of Medically Related Social Entities
[Term]
id: OMRSE:00000000
name: social security number
def: "Social Security Number(SSN) is a Centrally Registered IDentifier that is a nine-digit number issued to U.S. citizens, permanent residents, and temporary (working) residents under section 205(c) of the Social Security Act, codified as 42 U.S.C. § 405(c). The number is issued to an individual by the Social Security Administration, an independent agency of the United States government. Its primary purpose is to track individuals for Social Security purposes." []
is_a: IAO:0000578
property_value: http://purl.org/dc/elements/1.1/creator "Cheng Chen([email protected])" xsd:string
property_value: IAO:0000118 "SSN" xsd:string
property_value: IAO:0000119 http://en.wikipedia.org/wiki/Social_Security_number xsd:string
[Term]
id: OMRSE:00000001
name: human social role
def: "A social role inhering in a human being." []
is_a: OMRSE:00000026 ! organism social role
relationship: RO:0000052 NCBITaxon:9606
property_value: IAO:0000117 "Mathias Brochhausen\n" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
[Term]
id: OMRSE:00000002
name: party to a legal entity
is_a: OMRSE:00000024 ! role in human social processes
[Term]
id: OMRSE:00000003
name: party to a legal proceeding
is_a: OMRSE:00000002 ! party to a legal entity
[Term]
id: OMRSE:00000004
name: party to a legal agreement
is_a: OMRSE:00000002 ! party to a legal entity
[Term]
id: OMRSE:00000005
name: party to a marriage contract
is_a: OMRSE:00000004 ! party to a legal agreement
relationship: RO:0000052 NCBITaxon:9606
[Term]
id: OMRSE:00000006
name: party to a power of attorney
is_a: OMRSE:00000002 ! party to a legal entity
[Term]
id: OMRSE:00000007
name: gender role
def: "A human social role borne by a human being being realized in behaviour which is considered socially appropriate for individuals of a specific sex in the context of a specific culture." []
is_a: BFO:0000023
relationship: RO:0000052 OBI:0100026
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000119 http://en.wikipedia.org/wiki/Gender_role xsd:string
[Term]
id: OMRSE:00000008
name: male gender role
def: "A gender role borne by a human being that is realized in behaviour which is considered socially appropriate for individuals of the male sex in the context of the culture in question." []
is_a: OMRSE:00000007 ! gender role
relationship: RO:0000052 OBI:0100026
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000118 "male gender" xsd:string
[Term]
id: OMRSE:00000009
name: female gender role
def: "A gender role borne by a human being that is realized in behaviour which is considered socially appropriate for individuals of the female sex in the context of the culture in question." []
is_a: OMRSE:00000007 ! gender role
relationship: RO:0000052 OBI:0100026
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000118 "female gender" xsd:string
[Term]
id: OMRSE:00000010
name: human health care role
def: "A role in human social processes that is realized by health care processes such as seeking or providing treatment for disease and injury, diagnosing disease and injury, or undergoing diagnosis. " []
comment: Mathias Brochhausen
is_a: OMRSE:00000024 ! role in human social processes
relationship: BFO:0000054 OGMS:0000097
property_value: IAO:0000117 "William R. Hogan" xsd:string
property_value: IAO:0000118 "health care role" xsd:string
[Term]
id: OMRSE:00000011
name: patient role
def: "A role borne by an organism and that is realized by presenting to a health care provider in a clinical encounter." []
comment: In order to avoid the presumption of the formal structures and institutions of Western civilization, bearing a patient role does not entail that the organism presents at an official place of business, with an organization formally and legally registered with various gov't entities, with a person endowed by the gov't with certain certifications.
is_a: OMRSE:00000010 ! human health care role
relationship: RO:0000052 OBI:0100026
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000118 "patient" xsd:string
property_value: IAO:0000119 "CAFE domain expert working group." xsd:string
[Term]
id: OMRSE:00000012
name: health care provider role
def: "A human health care role inhering in an organization or human being that is realized by a process of providing health care services to an organism." []
comment: William R. Hogan
is_a: OMRSE:00000010 ! human health care role
property_value: IAO:0000117 "Mathias Brochhausen\n" xsd:string
[Term]
id: OMRSE:00000013
name: physician role
def: "A health care role borne by a human being and realized by promoting, maintaining or restoring human health through the study, diagnosis, and treatment of disease, injury and other physical and mental impairments." []
is_a: OMRSE:00000012 ! health care provider role
relationship: RO:0000052 NCBITaxon:9606
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000118 "physician" xsd:string
property_value: IAO:0000119 http://en.wikipedia.org/wiki/Physician xsd:string
[Term]
id: OMRSE:00000014
name: nurse role
def: "A health care role borne by a human being and realized by the care of individuals, families, and communities so they may attain, maintain, or recover optimal health and quality of life." []
is_a: OMRSE:00000012 ! health care provider role
relationship: RO:0000052 NCBITaxon:9606
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000118 "nurse" xsd:string
property_value: IAO:0000119 "based on: http://en.wikipedia.org/wiki/Nursing" xsd:string
[Term]
id: OMRSE:00000015
name: health care provider organization role
def: "A role that inheres in an organization and that is realized by the providing of services in a health care encounter." []
is_a: OMRSE:00000027 ! organization health care role
relationship: BFO:0000054 OGMS:0000097
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/creator "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000016
name: person health care provider role
is_a: OMRSE:00000001 ! human social role
[Term]
id: OMRSE:00000017
name: physician practice
def: "A health care provider organization role that inheres in an organization consisting of two or more physicians." []
is_a: OMRSE:00000015 ! health care provider organization role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000018
name: obsolete_hospital role
def: "A role borne by an organization and realized by providing healthcare services by healthcare professionals of multiple different disciplines of medicine and enabling stationary treatment." []
is_a: ObsoleteClass
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000118 "hospital" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000019
name: integrated delivery network
def: "A health care provider organization role that inheres in an organization that is comprised of other organizations." []
is_a: OMRSE:00000015 ! health care provider organization role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000022
name: aggregate of objectual organisms
def: "An object aggregate of objectual organisms." []
comment: Any arbitrary collection of organisms. They need not be of the same taxonomic class.
is_a: BFO:0000027
[Term]
id: OMRSE:00000023
name: collection of humans
def: "An object aggregate all of whose components are human beings." []
is_a: OMRSE:00000022 ! aggregate of objectual organisms
relationship: RO:0002351 NCBITaxon:9606
[Term]
id: OMRSE:00000024
name: role in human social processes
def: "A role inhering in an entity realized by social interactions in human society." []
comment: Previous definition: A role played by an entity in human social processes.
is_a: BFO:0000023
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000025
name: organization social role
def: "A role in human social processes that inheres in an organization." []
comment: Defined class that we will ultimately move to an application ontology. We are leaving here for now until we determine which application ontology: it is likely going to be an ontology that does not currently (2012-06-05) exist.\n\nDitto for its current descendants.
is_a: OMRSE:00000024 ! role in human social processes
relationship: RO:0000052 OBI:0000245
property_value: IAO:0000117 "William R. Hogan" xsd:string
[Term]
id: OMRSE:00000026
name: organism social role
def: "A role in human social processes that inheres in an organism." []
comment: Defined class that we will ultimately move to an application ontology. We are leaving here for now until we determine which application ontology: it is likely going to be an ontology that does not currently (2012-06-05) exist.\n\nDitto for its current descendants.
comment: Includes animals as well as humans. For example, pet, assistance animal, animal grown for food, work animal, domesticated animal, K-9, etc. Human roles include gender role, party to legal entities, health care provider roles like doctor, nurse, etc.
comment: Previous definition: A role in human social processes played by an organism.
is_a: OMRSE:00000024 ! role in human social processes
relationship: RO:0000052 OBI:0100026
property_value: IAO:0000117 "William R. Hogan\nMathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000027
name: organization health care role
def: "An organization social role that, if realized, is realized by either a health care process or an ancillary health care process" []
comment: Previous definition: An organization social role played by an organization in health care processes.
is_a: OMRSE:00000025 ! organization social role
[Term]
id: OMRSE:00000028
name: obsolete geopolitical organization
def: "An organization that governs the people living in a particular geographical region or aggregate of geographical regions. The geographical region it governs can change over time (such as the westward expansion of the United States and the addition of Hawaii)." []
is_a: ObsoleteClass
property_value: IAO:0000117 "William R. Hogan" xsd:string
property_value: IAO:0000118 "geopolitical organization" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000029
name: obsolete geopoli organization
is_a: ObsoleteClass
property_value: IAO:0000118 "geopoli organization" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000030
name: human patient role
def: "A patient role that inheres in a human being." []
intersection_of: OMRSE:00000011 ! patient role
intersection_of: RO:0000052 NCBITaxon:9606
[Term]
id: OMRSE:00000031
name: obsolete major administrative subdivision
def: "A subnational entity that is the primary organizational member of a nation, is subject to the full set of laws of the nation, enjoys all the privileges established under the laws of the nation, is not a member of any other geopolitical entity, and itself governs a part of the geographical region governed by the nation." []
comment: example: Northern Ireland
is_a: ObsoleteClass
property_value: IAO:0000118 "major administrative subdivision" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000032
name: obsolete geopolitical dependency
def: "A subnational entity that does not possess full political independence or sovereignty as a sovereign state, but remains politically outside of the controlling state and controls a geographical region that is outside the controlling state's integral region." []
comment: Typically, the common feature is that the dependency does not conduct foreign affairs, and relegates this authority to the sovereign state. BUt otherwise, it is largely or completely autonomous relative to the administrative subdivisions. Examples include Puerto Rico (U.S.), Guam (U.S.), Greenland (Denmark), French Polynesia (France), and Falkland Islands (United Kingdom).
is_a: ObsoleteClass
property_value: IAO:0000118 "geopolitical dependency" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000033
name: aggregate of organizations
def: "An object aggregate that is not itself an organization and whose members are only organizations that have some feature in common" []
comment: It is often convenient to group organizations together that otherwise might not even interact with one another.
is_a: BFO:0000040
property_value: IAO:0000117 "William R. Hogan\nAmanda Hicks" xsd:string
[Term]
id: OMRSE:00000034
name: obsolete aggregate of sovereign states
def: "An aggregate of sovereign states that share some feature in common, but is not an organization nor necessarily the outcome of some treaty among them." []
is_a: ObsoleteClass
property_value: IAO:0000117 "An aggregate of geopoli organizations that is not itself a sovereign state and whose members are only sovereign states that have some feature in common" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
property_value: IAO:0000118 "aggregate of sovereign states" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000035
name: obsolete aggregate of geopoli organizations
def: "An object aggregate that is not itself a geopolitical organization and whose members are only geopolitical organizations that have some feature in common" []
is_a: ObsoleteClass
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "William R. Hogan\n" xsd:string
property_value: IAO:0000118 "aggregate of geopoli organizations" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000036
name: obsolete aggregate of dependencies
def: "An aggregate of geopoli organizations that is not itself a geopolitical dependency and whose members are only geopolitical dependencies that have some feature in common." []
is_a: ObsoleteClass
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "aggregate of dependencies" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000037
name: obsolete aggregate of major administrative subdivisions
def: "An aggregate of geopoli organizations that is not itself a major administrative subdivision and whose members are only major administrative subdivisions that have some feature in common" []
is_a: ObsoleteClass
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "aggregate of major administrative subdivisions" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000038
name: legal person role
def: "A role borne by a human individual or by a collection of humans regarded as possessing rights and duties enforeable at law." []
comment: We are aware of the fact that Wikipedia's definition differs from ours by saying that "Legal personality (...) is the characteristic of a non-living entity regarded by law to have the status of personhood" (http://en.wikipedia.org/wiki/Legal_personality) \nHowever, Shaw explicates:\n"In any legal system, certain entities, whether they be individuals or companies, will be regarded as possessing rights and duties enforceable at law. Thus an individual may prosecute or be prosecuted for assault and a company can sue for breach of contract. They are able to do this because the law recognises them as 'legal persons' possessing the capacity to have and to maintain certain rights, and being subject to perform specific duties. (...) In municipal law individuals, limited companies and public corporations are recognized as each possessing a distinct legal personality, the terms of which are circumscribed by the relevant legislation" (Shaw MN: International Law. Sixth Edition. Cambridge University Press, Cambridge, 2008). We hold that Shaw's position is ontological more prolific since it not only allows to explain how groups of individuals become recognized as unities at law, but also how different individuals can hold different legal personality roles (always against the context of one legal system). The latter will proof useful when dealing with the representing comatous patients or minorsat law in ontologies.
is_a: OMRSE:00000024 ! role in human social processes
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000119 "Malcolm N. Shaw: International Law. Cambridge University Press, Cambridge, 2008." xsd:string
[Term]
id: OMRSE:00000039
name: smoker role
def: "A role that inheres in an organism and is realized by habitually smoking tobacco products." []
is_a: BFO:0000023
relationship: RO:0000052 NCBITaxon:9606
[Term]
id: OMRSE:00000040
name: intravenous drug user
is_a: BFO:0000023
relationship: RO:0000052 NCBITaxon:9606
[Term]
id: OMRSE:00000041
name: obsolete intergovernmental organization
def: "an intergovernmental organization that has at least three member states, that has activies in at least three states, and that is unified by some formal intergovernmental agreement" []
comment: examples:\nNorth American Free Trade Argreement [NAFTA] , Universal Postal Union [UPU], Oragnaization of American States [OAS], World Bank), Organization of Petroleum exporting countries [OPEC] United Nations [UN[, The World Trade Organization [WTO], The World Health Organization [WHO], UNICEF
is_a: ObsoleteClass
property_value: http://purl.org/dc/elements/1.1/contributor "Katrina Donovan" xsd:string
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "intergovernmental organization" xsd:string
property_value: IAO:0000119 "\"IGOs are organizations whose memebers include at lesat three states, that have activities in several states, and whose members are held together by a formal intergovernmental agreement ... These organizations range in size from three members (North American Free Trade Argreement [NAFTA]) to more than 190 memembers (Universal Postal Union (UPU)]. Memebers may come from primarily one georgraphic regioni (Oragnaization of American States [OAS]) or from all geographic regions (World Bank). although soem IGOs are designed to achieve a single purpose (Organization of Petroleum exporting countries [OPEC]), others have been developed for multiple tasks (United Nations [UN}). ... IGOs are recognized subjects of international law with separate standing fromt heir member states.\" Karns and Mingst I(2004) p. 7" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000042
name: obsolete nongovernmental organization
def: "a geopolitical organization that is voluntary and private, whose members are individual persons or organizations that come together to acheive a common purpose." []
comment: Examples:\nInternaltion Federation of Red Cross and Red Crescent Societies, Oxfam, CARE, Doctors Without Borders, World Wildlife Fund, Transparency International, Human Rights Watch, Amnesty International, and Save the Children.
is_a: ObsoleteClass
property_value: http://purl.org/dc/elements/1.1/contributor "Katrina Donovan" xsd:string
property_value: IAO:0000118 "nongovernmental organizations" xsd:string
property_value: IAO:0000119 "NGOs are private voluntary organizations whose members are individuals or associations that come together to acheive a common purpose. Some organizations are formed to advocate a particular cause such as human rights, peace, or envirnomental projetion. Others are established to provide services such as disaster relief, humantarian aid in war-torn socieities, or development assistance. ... National level groups are often called interest or pressure groups, and many of them are now linked to counterpart groups in other countries through transnational networks or federations. International NGOs, like IGOs, may draw their members from one region or several regions, and they may have very specific functions or be multi-functional.\n\nKarns and Mingst (2004) p. 10f." xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000043
name: obsolete private governance organizations
comment: Examples: private bond-rating agencies such as Moody's Investors Service, International Chamber of Commerce, Worldwide Responsible Apparel Manufacturing Principles, Forest Stewardship
is_a: ObsoleteClass
property_value: http://purl.org/dc/elements/1.1/contributor "Katrina Donovan" xsd:string
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "private governance organizations" xsd:string
property_value: IAO:0000119 "\"Although the very meaning of the term is controversial, it involves authoritative decsionmaking in areas that once were part of national legal frameworks, the government, the sovereign state, or the public sector.\"\n\nKarns and Mingst (2004) p. 14." xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000044
name: obsolete governmental organization
def: "An organization that governs the people living in a particular geographical region or aggregate of geographical regions. The geographical region it governs can change over time (such as the westward expansion of the United States and the addition of Hawaii). \n\nNote: this definition was taken over from \"geopolitical organization\"." []
comment: IMPORTANT: The label "geopolitical organization" was previously used for OMRSE_00000044 (governmental organization). "geopoli organization" is a label for a new and different class.
is_a: ObsoleteClass
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "governmental organization" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000045
name: obsolete sovereign state
def: "A governmental organization with a defined territory on which it exercises internal and external sovereignty, a permanent population, a government, and the capacity to enter into relations with other sovereign states." []
comment: Per Wikipedia, the word 'nation' does not always refer to soverign states. For example, the "nation of Islam".
is_a: ObsoleteClass
property_value: IAO:0000117 "William R. Hogan" xsd:string
property_value: IAO:0000118 "nation" xsd:string
property_value: IAO:0000118 "nation state" xsd:string
property_value: IAO:0000118 "sovereign state" xsd:string
property_value: IAO:0000119 http://en.wikipedia.org/wiki/Sovereign_state xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000046
name: obsolete subnational entity
def: "a governmental organization that has a local, regional, or territorial government that recognizes a sovereign state as its higher political authority" []
is_a: ObsoleteClass
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
property_value: IAO:0000118 "subnational entity" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000047
name: obsolete supranational entity
comment: e.g., the EU
is_a: ObsoleteClass
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "supranational entity" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000048
name: material entity role
intersection_of: BFO:0000023
intersection_of: RO:0000052 BFO:0000040
relationship: RO:0000052 BFO:0000040
[Term]
id: OMRSE:00000049
name: organism role
intersection_of: OMRSE:00000048 ! material entity role
intersection_of: RO:0000052 OBI:0100026
relationship: RO:0000052 OBI:0100026
[Term]
id: OMRSE:00000050
name: Homo sapiens role
intersection_of: OMRSE:00000049 ! organism role
intersection_of: RO:0000052 NCBITaxon:9606
relationship: RO:0000052 NCBITaxon:9606
[Term]
id: OMRSE:00000051
name: organization role
is_a: OMRSE:00000048 ! material entity role
intersection_of: BFO:0000023
intersection_of: RO:0000052 OBI:0000245
relationship: RO:0000052 OBI:0000245
[Term]
id: OMRSE:00000052
name: hospital function
def: "A function inhering in a material entity that, if realized, is realized by the material entity being the site at which inpatient and outpatient healthcare is provided to a patient population." []
is_a: BFO:0000034
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000053
name: school function
def: "A function inhering in a material entity that, if realized, is realized by that material entity being the site at which formal education is provided to a student population." []
is_a: BFO:0000034
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000054
name: hospital role
def: "A healthcare provider role that inheres in an organization and is realized by providing inpatient and outpatient care." []
is_a: OMRSE:00000015 ! health care provider organization role
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000055
name: school role
is_a: OMRSE:00000025 ! organization social role
property_value: IAO:0000117 "An organization social role that inheres in an organization and is realized by providing formal education to students." xsd:string
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000056
name: hospital organization
def: "An organization that is the bearer of a hospital role." []
is_a: OBI:0000245
intersection_of: OBI:0000245
intersection_of: RO:0000053 OMRSE:00000054 ! hospital role
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000057
name: school organization
def: "An organization that is the bearer of a school role." []
is_a: OBI:0000245
intersection_of: OBI:0000245
intersection_of: RO:0000053 OMRSE:00000055 ! school role
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000058
name: student role
def: "A human social role that, if realized, is realized by the process of formal education that the bearer undergoes." []
is_a: OMRSE:00000086 ! human role within an organization
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000059
name: nursery school role
is_a: OMRSE:00000055 ! school role
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000060
name: primary school role
is_a: OMRSE:00000055 ! school role
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000061
name: architectural structure
def: "A material entity that is a human made strcuture with firm connection between its foundation and the ground." []
comment: "Building" is a subclass of this.
comment: This type of entity is referred to as "Bauwerk" or "Bauliche Anlage".
is_a: BFO:0000040
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000119 http://de.wikipedia.org/wiki/Bauwerk xsd:string
[Term]
id: OMRSE:00000062
name: facility
def: "An architectural structure that bears some function." []
is_a: OMRSE:00000061 ! architectural structure
intersection_of: OMRSE:00000061 ! architectural structure
intersection_of: RO:0000053 BFO:0000034
relationship: OMRSE:00000068 OBI:0000245 {http://www.w3.org/2002/07/owl#versionInfo="09/09/2017"} ! is administered by
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000063
name: hospital facility
def: "A health care facility that bears the function to provide acute and intensive healthcare services and that is run by a hospital organization and is the bearer of a hospital function." []
is_a: OMRSE:00000102 ! health care facility
relationship: BFO:0000067 OMRSE:00000160 ! acute care encounter
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000117 "William Hogan" xsd:string
[Term]
id: OMRSE:00000064
name: school facility
def: "A facility that is run by a school organization and is the bearer of a school function." []
is_a: OMRSE:00000062 ! facility
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000065
name: secondary school role
is_a: OMRSE:00000055 ! school role
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
[Term]
id: OMRSE:00000066
name: pediatric trauma patient role
def: "A trauma patient role that inheres in a homo sapiens who is under the age of 15 years." []
is_a: OMRSE:00000030 ! human patient role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "pediatric trauma patient" xsd:string
property_value: IAO:0000119 "The following definition for 'pediatric trauma patient' was approved by the CAFE team of domain experts (experts in trauma care) May 29, 2015.\n\n\"A trauma patient who is under the age of 15 years.\"" xsd:string
[Term]
id: OMRSE:00000067
name: injured patient role
def: "A patient role that inheres an organism suffering one or more injuries." []
is_a: OMRSE:00000011 ! patient role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "injured patient" xsd:string
property_value: IAO:0000119 "The following definition for 'injured patient' was approved by the CAFE team of domain experts (experts in trauma care) May 29, 2015.\n\nA patient suffering one or more injuries." xsd:string
[Term]
id: OMRSE:00000069
name: burn patient role
def: "A patient role that inheres in an organism suffering a thermal, electrical, chemical or radiation burn." []
is_a: OMRSE:00000067 ! injured patient role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "burn patient" xsd:string
property_value: IAO:0000117 "The following definition for 'burn patient' was approved by the CAFE team of domain experts (experts in trauma care) May 29, 2015.\n\nA patient suffering a thermal, electrical, chemical or radiation burn." xsd:string
[Term]
id: OMRSE:00000072
name: physiatrist role
def: "A physician role that is created by training and certification in rehabilitation/physical medicine and that is realized by the provision of or supervising of the provision of rehabilitation or physical therapy to a patient." []
comment: Definition updated May 5, 2016. Original definitions was, a health care role borne by a human being and realized by training and certification in rehabilitation medicine.
is_a: OMRSE:00000013 ! physician role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "physiatrist" xsd:string
property_value: IAO:0000119 "The following definition for 'physiatrist' was approved by the CAFE team of domain experts (experts in trauma care) May 29, 2015.\n\nA physician with training and certification in rehabilitation/physical medicine." xsd:string
[Term]
id: OMRSE:00000073
name: trauma patient role
def: "A patient role that inheres in an organism with some non-superficial traumatic injury. The role is realized by admision to a hospital, transfer from one hospital to another for the purpose of trauma care, or has death as a result of the traumatic injury." []
is_a: OMRSE:00000011 ! patient role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "trauma patient" xsd:string
property_value: IAO:0000119 "The following definition for 'trauma patient' was approved by the CAFE team of domain experts (experts in trauma care) May 29, 2015.\n\nA patient sustaining an injury who has been admitted to the hospital, transferred from one hospital to another for the purpose of trauma care, or has died as a result of the traumatic injury." xsd:string
[Term]
id: OMRSE:00000074
name: housing unit
def: "A material entity that has as parts one or more sites large enough to contain humans, has as part one or more material entities that separates it from other sites, and bears a residence function." []
comment: Housing units are individuated by their residence functions.
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000119 https://github.com/ufbmi/OMRSE/wiki/Housing-unit-and-Household xsd:string
[Term]
id: OMRSE:00000075
name: residence function
def: "A function that inheres in a material entity and, if realized, is realized by protecting persons and their possessions from weather and by some person or group of persons habitually sleeping in at least one site that is contained by that material entity." []
is_a: BFO:0000034
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000076
name: household
def: "A human or collection of humans that occupies a housing unit by storing their possessions there and habitually sleeping there thereby participating in the realization of that housing unit's residence function." []
comment: Note in OMRSE it is the housing unit, not the people living there, that are the bearers of a "residence function". Note the distinction between being a residence and a resident.
comment: Note that it is not possible in OWL 2, at least that we have yet found, to say that the housing unit in which the process occurs is the same one that is the bearer of the residence function (that the process realizes).
is_a: BFO:0000040
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000077
name: job role
def: "A role in human social processes that, if realized, is realized when the bearer provides labor or services in exchange for a wage or salary as specified by some deontic declaration." []
is_a: OMRSE:00000024 ! role in human social processes
relationship: BFO:0000054 OMRSE:00000146 ! employment process
property_value: IAO:0000117 "Amanda hicks" xsd:string
property_value: IAO:0000118 "employee" xsd:string
[Term]
id: OMRSE:00000078
name: workplace facility
is_a: OMRSE:00000062 ! facility
relationship: RO:0000053 OMRSE:00000079 ! workplace function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000079
name: workplace function
def: "a function inhering in a material entity that, if realized, is realized by that material entity being the site where the work of some organization is carried out" []
is_a: BFO:0000034
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000081
name: US census householder role
def: "A US Census householder role is a human social role that, if realized, is realized by that person being a member of a household and either owning or renting the housing unit in which that household resides and being designated as the householder. If there is only one member of the household who owns or rents the housing unit, that person is designated the householder by default." []
is_a: OMRSE:00000001 ! human social role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000119 "http://www.census.gov/cps/about/cpsdef.html\n\nlast accessed on June 30, 2015" xsd:string
[Term]
id: OMRSE:00000082
name: US Census reference person role
def: "A US cenus reference person role is a human social role that inheres in a Homo sapiens who is a member of a household and is realized by other persons in the household being recorded in the US census in relation to that person." []
is_a: OMRSE:00000001 ! human social role
relationship: BFO:0000054 IAO:0000572
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000119 "http://www.census.gov/cps/about/cpsdef.html\n\nlast accessed June 30, 2015" xsd:string
[Term]
id: OMRSE:00000083
name: obsolete OMB ethnic identity datum
def: "An ethnic identity datum that is the output of an ethnic identification process that uses OMB terminology for ethnicity or terminology that is mapped the OMB ethnicity terms." []
is_a: OMRSE:00000100 ! obsolete ethnic identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: OMB ethnic identity information content entity
[Term]
id: OMRSE:00000084
name: enrollment end date
is_a: BFO:0000038
[Term]
id: OMRSE:00000085
name: obsolete socio-legal human social role
is_a: ObsoleteClass
is_a: OMRSE:00000001 ! human social role
property_value: IAO:0000117 "A role that concretizes a socio-lega generically dependent continuant" xsd:string
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
[Term]
id: OMRSE:00000086
name: human role within an organization
def: "A human social role that is created by a deontic declaration performed by an organization." []
is_a: OMRSE:00000001 ! human social role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "human organizational role" xsd:string
[Term]
id: OMRSE:00000087
name: employer role
def: "a role in human social processes that is realized when the bearer provides a wage or salary in exchange for some labour or services as specified by some declaration" []
is_a: OMRSE:00000024 ! role in human social processes
relationship: BFO:0000054 OMRSE:00000146 ! employment process
[Term]
id: OMRSE:00000088
name: age measurement datum
is_a: IAO:0000416
[Term]
id: OMRSE:00000089
name: contract
def: "A document that records a legally binding agreement between two or more parties." []
is_a: IAO:0000310
property_value: IAO:0000116 "A contract is a document that is the specified output of a legally binding document act and records a legally binding agreement between two or more parties." xsd:string
[Term]
id: OMRSE:00000090
name: indemnity contract
def: "A contract by which one party secures the other against pecuniary loss by payment of a sum of money if a specified event occurs." []
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000091
name: insurance policy
def: "An indemnity contract that distributes risk among a group of people" []
is_a: OMRSE:00000090 ! indemnity contract
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000092
name: insured party role
def: "A role that inheres in an organism that is able to receive benefits from an insurance policy. The role, if realized, is realized by receiving benefits that are covered by the insurance policy." []
is_a: OMRSE:00000024 ! role in human social processes
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000093
name: insurance company
def: "An organization that secures a group of people against pecuniary loss by payment of a sum of money if a a specified event occurs." []
is_a: OBI:0000245
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000094
name: policy holder role
def: "An insured party role that inheres in a person who participates in the creation of the insurance contract and is eligible to receive benefits as specified by the insurance contract." []
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000095
name: payer role
is_a: OMRSE:00000024 ! role in human social processes
[Term]
id: OMRSE:00000096
name: party to an insurance policy
is_a: OMRSE:00000004 ! party to a legal agreement
[Term]
id: OMRSE:00000097
name: enrollment start date
is_a: BFO:0000038
[Term]
id: OMRSE:00000098
name: obsolete racial identity datum
def: "A racial identity is an information content entity that is the output of some racial identitification process and is intended to be a truthful statement about the genetic or cultural race of a person. Unlike data items they are not necessilary contributed or acquired by a reliable method." []
is_obsolete: true
replaced_by: racial identity information content entity
[Term]
id: OMRSE:00000099
name: racial identification process
[Term]
id: OMRSE:00000100
name: obsolete ethnic identity datum
def: "An ethnic identity datum is an information content entity that is the output of some ethnic identitification process and is intended to be a truthful statement about the cultural or national heritage of a person. Unlike data items they are not necessilary contributed or acquired by a reliable method." []
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: ethnic identity information content entity
[Term]
id: OMRSE:00000101
name: ethnic identification process
[Term]
id: OMRSE:00000102
name: health care facility
is_a: OMRSE:00000062 ! facility
property_value: IAO:0000117 "A facility bearing the function to provide healthcare and that is administered by a health care organization for the purpose of providing health care to a patient or patient population." xsd:string
property_value: IAO:0000117 "William Hogan" xsd:string
[Term]
id: OMRSE:00000103
name: US Census unemployed role
def: "A human social role that inheres in a human who is legally eligible to work, is conferred by the U.S. Census Bureau, and is realized by the bearer not working and either making active efforts to find employment in the four weeks prior to the reference week or waiting to be recalled from temporary layoff." []
is_a: OMRSE:00000001 ! human social role
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000104
name: hospice facility
def: "A health care facility that bears a function to provide healthcare to the sick or terminally ill" []
is_a: OMRSE:00000102 ! health care facility
relationship: BFO:0000067 OMRSE:00000152 ! skilled nursing encounter
relationship: RO:0000053 OMRSE:00000117 ! hospice function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "Emma Norris" xsd:string
property_value: IAO:0000117 "William Hogan" xsd:string
property_value: IAO:0000119 "Human Behaviour Change Project" xsd:string
[Term]
id: OMRSE:00000105
name: skilled nursing facility
is_a: OMRSE:00000150 ! community living health care facility
relationship: BFO:0000067 OMRSE:00000152 ! skilled nursing encounter
relationship: RO:0000053 OMRSE:00000123 ! skilled nursing function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000106
name: rehabilitation facility
def: "A facility to assist in physical or addiction recovery" []
is_a: OMRSE:00000150 ! community living health care facility
relationship: BFO:0000067 OMRSE:00000152 ! skilled nursing encounter
relationship: RO:0000053 OMRSE:00000122 ! rehabilitation function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "Emma Norris" xsd:string
property_value: IAO:0000117 "William Hogan" xsd:string
property_value: IAO:0000119 "Human Behaviour Change Project" xsd:string
[Term]
id: OMRSE:00000107
name: nursing home facility
def: "A facility that is run by a nursing home organization and is the bearer of a nursing home function." []
is_a: OMRSE:00000150 ! community living health care facility
relationship: BFO:0000067 OMRSE:00000152 ! skilled nursing encounter
relationship: RO:0000053 OMRSE:00000125 ! nursing home function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000108
name: residential health care facility
def: "A community living health care facility that provides health care services in a home-like setting" []
is_a: OMRSE:00000150 ! community living health care facility
relationship: BFO:0000067 OMRSE:00000153 ! assistive care encounter
relationship: RO:0000053 OMRSE:00000124 ! residential function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "William Hogan" xsd:string
[Term]
id: OMRSE:00000109
name: overnight dialysis facility
is_a: OMRSE:00000102 ! health care facility
relationship: BFO:0000067 OBI:0600052
relationship: BFO:0000067 OMRSE:00000152 ! skilled nursing encounter
relationship: RO:0000053 OMRSE:00000121 ! overnight dialysis function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000110
name: outpatient clinic facility
def: "A health care facility that bears a function to provide low intensity healthcare services to patients on a short-term basis, with patients leaving on the same date as arriving (i.e., without them staying overnight)" []
comment: Broadened from treatment to healthcare services generally. "Low intensity" is not defined at the moment, but is needed to differentiate from same-day surgery centers or observation stays in hospitals that last <24 hours. The idea is that few invasive procedures are performed, and the ones that are invasive are not typically much worse than a blood draw. Maybe bone marrow biopsy is as aggressive as it gets. I wonder if hematologists do that on an outpatient basis.
is_a: OMRSE:00000102 ! health care facility
relationship: RO:0000053 OMRSE:00000120 ! outpatient clinic function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "Emma Norris" xsd:string
property_value: IAO:0000117 "William Hogan" xsd:string
property_value: IAO:0000119 "Human Behaviour Change Project" xsd:string
[Term]
id: OMRSE:00000111
name: physician office facility
is_a: OMRSE:00000102 ! health care facility
relationship: RO:0000053 OMRSE:00000119 ! physician office function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000112
name: ambulatory surgery facility
is_a: OMRSE:00000102 ! health care facility
relationship: BFO:0000067 OAE:0000067
relationship: RO:0000053 OMRSE:00000116 ! ambulatory surgery function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000113
name: urgent care facility
is_a: OMRSE:00000102 ! health care facility
relationship: RO:0000053 OMRSE:00000115 ! urgent care function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000114
name: emergency department facility
def: "A health care facility that bears a function to provide emergency healthcare services and the acute care of patients who present without prior appointment, having arrived either by their own means or by ambulance" []
is_a: OMRSE:00000102 ! health care facility
relationship: BFO:0000067 OMRSE:00000160 ! acute care encounter
relationship: RO:0000053 OMRSE:00000118 ! emergency department function
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "Emma Norris" xsd:string
property_value: IAO:0000117 "William Hogan" xsd:string
property_value: IAO:0000119 "Adapted from Human Behaviour Change Project" xsd:string
[Term]
id: OMRSE:00000115
name: urgent care function
is_a: BFO:0000034
[Term]
id: OMRSE:00000116
name: ambulatory surgery function
is_a: BFO:0000034
relationship: BFO:0000054 OAE:0000067
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: OMRSE:00000117
name: hospice function
is_a: OMRSE:00000169 ! palliative function
[Term]
id: OMRSE:00000118
name: emergency department function
is_a: BFO:0000034
[Term]
id: OMRSE:00000119
name: physician office function
is_a: BFO:0000034
[Term]
id: OMRSE:00000120
name: outpatient clinic function
is_a: BFO:0000034
[Term]
id: OMRSE:00000121
name: overnight dialysis function
is_a: BFO:0000034
relationship: BFO:0000054 OBI:0600052
[Term]
id: OMRSE:00000122
name: rehabilitation function
is_a: BFO:0000034
[Term]
id: OMRSE:00000123
name: skilled nursing function
is_a: BFO:0000034
[Term]
id: OMRSE:00000124
name: residential function
is_a: BFO:0000034
[Term]
id: OMRSE:00000125
name: nursing home function
is_a: BFO:0000034
[Term]
id: OMRSE:00000126
name: patient discharge
def: "A deontic document act that concludes an inpatient encounter." []
is_a: IAO:0021001
relationship: RO:0002229 OGMS:0000100
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000118 "discharge process" xsd:string
[Term]
id: OMRSE:00000127
name: obsolete hispanic or latino identity datum
def: "An OMB ethnic identity datum that indicates the person identified is of Cuban, Mexican, Puerto Rican, South or Central American, or other Spanish culture or origin regardless of race." []
is_a: OMRSE:00000083 ! obsolete OMB ethnic identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: OMB Hispanic or Latino identity information content entity
[Term]
id: OMRSE:00000128
name: obsolete not hispanic or latino identity datum
def: "An OMB ethnic identity datum that indicates the person identified is not of Cuban, Mexican, Puerto Rican, South or Central American, or other Spanish culture or origin regardless of race." []
is_a: OMRSE:00000083 ! obsolete OMB ethnic identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: OMB not Hispanic or Latino identity information content entity
[Term]
id: OMRSE:00000129
name: US physician assistant role
def: "A human health care provider role that inheres in a human being that is created by state licensing and that is realized by taking patient histories, performing physical exams, diagnosing illnesses, developing treatment plans, ordering lab tests, prescribing medications, counselling and educating patients, suturing wounds, and assisting in surgery under the supervision of a physician or a surgeon." []
is_a: OMRSE:00000012 ! health care provider role
relationship: RO:0000052 NCBITaxon:9606
[Term]
id: OMRSE:00000130
name: anesthesiologist role
def: "A physician role that inheres a human being and, if it is realized, is realized either by administering medication for the temporary general or local suppression of sensory or motor nerve function during some health care encounter or by making decisions independently of a supervising physician regarding the adminstration of such medication." []
is_a: OMRSE:00000013 ! physician role
[Term]
id: OMRSE:00000131
name: OMB racial identification process
is_a: OMRSE:00000099 ! racial identification process
relationship: OBI:0000299 OMRSE:00000185 ! obsolete OMB racial identity datum
[Term]