-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorcs-base.obo
7583 lines (7045 loc) · 388 KB
/
orcs-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: orcs/releases/2021-11-13/orcs-base.owl
subsetdef: ro-eco ""
subsetdef: RO:0002259 ""
ontology: orcs/orcs-base
property_value: http://purl.org/dc/elements/1.1/contributor "Amanda Hicks" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Josh Hanna" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "S. Clint Dowland" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: http://purl.org/dc/elements/1.1/date "2019-08-03" xsd:string
property_value: http://purl.org/dc/elements/1.1/title "Ontology for Representing CDM Semantics" xsd:string
property_value: http://purl.org/dc/elements/1.1/type IAO:8000001
property_value: owl:versionInfo "2021-11-13" xsd:string
[Term]
id: APOLLO_SV:00000242
name: name of temporal interval
def: "A name of temporal region that specifies a time span on a specified time scale by giving a start time and a duration." []
is_a: APOLLO_SV:00000395 ! name of temporal region
property_value: APOLLO_SV:0000040 "TimeSpanCategoryDefinition" xsd:string
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/apollo_sv/v4.1.1./apollo_sv.owl xsd:string
property_value: IAO:0000600 "An information content entity that specifies a time span on a specified time scale by giving a start time and a duration." xsd:string
[Term]
id: APOLLO_SV:00000376
name: name of a temporal boundary
def: "A name of temporal region that designates a temporal boundary" []
is_a: APOLLO_SV:00000395 ! name of temporal region
property_value: APOLLO_SV:0000040 "RealTimePointCategoryDefinition" xsd:string
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/apollo_sv/v4.1.1./apollo_sv.owl xsd:string
property_value: IAO:0000600 "An information content entity that designates a temporal boundary" xsd:string
[Term]
id: APOLLO_SV:00000395
name: name of temporal region
is_a: IAO:0020000
property_value: IAO:0000412 http://purl.obolibrary.org/obo/apollo_sv/v4.1.1./apollo_sv.owl xsd:string
[Term]
id: APOLLO_SV:00000429
name: date
def: "A name of a temporal region that is systematized according to a particular calendar system, such as the Gregorian calendar." []
is_a: APOLLO_SV:00000395 ! name of temporal region
property_value: APOLLO_SV:0000040 "date" xsd:string
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/apollo_sv/v4.1.1./apollo_sv.owl xsd:string
property_value: IAO:0000600 "A name of a temporal region that is systematized according to a particular calendar system, such as the Gregorian calendar." xsd:string
[Term]
id: BFO:0000202
name: temporal interval
is_a: BFO:0000038
property_value: definition "(Elucidation) a temporal interval is a one-dimensional temporal region that is continuous, thus without gaps or breaks" xsd:string
property_value: example "The year 2018. " xsd:string
property_value: http://purl.org/dc/elements/1.1/identifier "155-BFO" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo/2020/bfo.owl xsd:string
property_value: prefLabel "temporal interval" xsd:string
property_value: scopeNote "A one-dimensional temporal region can include as parts not only temporal intervals but also temporal instants separated from other parts by gaps. " xsd:string
[Term]
id: BFO:0000203
name: temporal instant
is_a: BFO:0000148
property_value: definition "(Elucidation) a temporal instant is a zero-dimensional temporal region that has no proper temporal part" xsd:string
property_value: example "The millennium." xsd:string
property_value: http://purl.org/dc/elements/1.1/identifier "209-BFO" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo/2020/bfo.owl xsd:string
property_value: prefLabel "temporal instant" xsd:string
[Term]
id: C49474
name: obsolete International Classification of Diseases
is_a: IAO:0020020
is_obsolete: true
[Term]
id: ENVO:00002004
name: mesoscopic physical object
name: physical object of mesoscopic geological size
def: "An environmental feature that is, or can be, contained and is predominantly composed of one or a few types of stuff." []
def: "An object which is large enough to be visible to humans, but small enough that humans can handle the object (i.e. transport it, examine it, etc) in its entirety with little to no technological assistance." []
comment: https://en.oxforddictionaries.com/definition/mesoscopic
comment: This is a legacy class from ENVO's early versions. It will be depopulated and filled in by inference using a PATO quality. Not to be confused with "mesoscopic" as defined in physics, which deals with objects typically between 10e-6 and 10-8 meters in diameter.
xref: MA:ma
is_a: BFO:0000030
property_value: IAO:0000118 "mesoscopic physical object" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl xsd:string
[Term]
id: ENVO:00003074
name: manufactured product
def: "A material entity that has been processed by humans or their technology in any way, including intermediate products as well as final products." []
comment: https://en.wikipedia.org/wiki/Manufactured_product
synonym: "manufactured good" EXACT []
is_a: ENVO:00003075 ! anthropogenic abiotic mesoscopic feature
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl xsd:string
[Term]
id: ENVO:00003075
name: anthropogenic abiotic mesoscopic feature
namespace: ENVO
is_a: ENVO:01000010 ! abiotic mesoscopic physical object
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl xsd:string
[Term]
id: ENVO:01000010
name: abiotic mesoscopic physical object
namespace: ENVO
is_a: ENVO:00002004 ! mesoscopic physical object
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl xsd:string
[Term]
id: ENVO:01000254
name: environmental system
def: "A system which has the disposition to environ one or more material entities." []
comment: In ENVO's alignment with the Basic Formal Ontology, this class is being considered as a subclass of a proposed BFO class "system". The relation "environed_by" is also under development. Roughly, a system which includes a material entity (at least partially) within its site and causally influences that entity may be considered to environ it. Following the completion of this alignment, this class' definition and the definitions of its subclasses will be revised.
synonym: "environment" EXACT []
xref: DOI:10.1186/2041-1480-4-43
xref: EcoLexicon:environment
is_a: RO:0002577 ! system
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl xsd:string
creation_date: 2013-09-23T16:04:08Z
[Term]
id: ENVO:01000604
name: vehicle
def: "A vehicle is a mobile machine which transports people or cargo." []
xref: https://en.wikipedia.org/wiki/Vehicle
is_a: ENVO:00003074 ! manufactured product
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl xsd:string
[Term]
id: IAO:0000027
relationship: IAO:0000136 NCBITaxon:9606
[Term]
id: IAO:0000650
name: database extract, transform, and load process
def: "A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second." []
is_a: OBI:0000011
relationship: OBI:0000293 IAO:0000030
relationship: OBI:0000299 IAO:0000030
property_value: http://xmlns.com/foaf/0.1/page https://en.wikipedia.org/wiki/Extract,_transform,_load
property_value: IAO:0000111 "database extract, transform, and load process" xsd:string
property_value: IAO:0000116 "Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second" xsd:string
property_value: IAO:0000116 "Alan Ruttenberg 12/21/16: We don't define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output." xsd:string
property_value: IAO:0000117 "PERSON:Alan Ruttenberg" xsd:string
property_value: IAO:0000118 "ETL" xsd:string
property_value: IAO:0000119 WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load xsd:string
property_value: IAO:0000233 https://github.com/information-artifact-ontology/IAO/issues/187
property_value: isDefinedBy https://github.com/information-artifact-ontology/IAO
[Term]
id: NCIT:C53489
name: obsolete Systematized Nomenclature of Medicine
is_a: IAO:0020020
is_obsolete: true
[Term]
id: OGMS:0000031
name: disease
def: "A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism." []
is_a: BFO:0000016
property_value: IAO:0000117 "Albert Goldfain" xsd:string
property_value: IAO:0000119 http://ontology.buffalo.edu/medo/Disease_and_Diagnosis.pdf xsd:string
property_value: IAO:0000232 "creation date: 2009-06-23T11:21:20Z" xsd:string
property_value: IAO:0000412 https://github.com/OGMS/ogms/releases/tag/v2019-04-30 xsd:string
[Term]
id: OGMS:0000073
name: diagnosis
def: "The representation of a conclusion of a diagnostic process." []
is_a: OGMS:0000123 ! clinical data item
relationship: OBI:0000312 OGMS:0000104 ! diagnostic process
property_value: IAO:0000117 "Albert Goldfain" xsd:string
property_value: IAO:0000119 http://ontology.buffalo.edu/medo/Disease_and_Diagnosis.pdf xsd:string
property_value: IAO:0000232 "creation date: 2009-06-23T12:42:23Z" xsd:string
property_value: IAO:0000412 https://github.com/OGMS/ogms/releases/tag/v2019-04-30 xsd:string
[Term]
id: OGMS:0000096
name: health care process
def: "A planned process with the objective to improve the health status of a patient that directly involves the treatment, diagnosis, or prevention of disease or injury of a patient" []
is_a: OBI:0000011
property_value: IAO:0000117 "Albert Goldfain\nSagar Jain" xsd:string
property_value: IAO:0000119 http://groups.google.com/group/ogms-discuss/browse_thread/thread/a2dbc2ed1dff99d6 xsd:string
property_value: IAO:0000232 "creation date: 2011-02-21T09:57:44Z\neditor date: 2017-04-18\n" xsd:string
property_value: IAO:0000412 https://github.com/OGMS/ogms/releases/tag/v2019-04-30 xsd:string
[Term]
id: OGMS:0000099
name: outpatient encounter
def: "TODO" []
is_a: OGMS:0000097
property_value: IAO:0000117 "Albert Goldfain" xsd:string
property_value: IAO:0000119 http://groups.google.com/group/ogms-discuss/browse_thread/thread/a2dbc2ed1dff99d6 xsd:string
property_value: IAO:0000232 "creation date: 2011-02-21T09:57:44Z" xsd:string
property_value: IAO:0000412 https://github.com/OGMS/ogms/releases/tag/v2019-04-30 xsd:string
[Term]
id: OGMS:0000100
is_a: OGMS:0000097
property_value: IAO:0000117 "Albert Goldfain" xsd:string
property_value: IAO:0000119 http://groups.google.com/group/ogms-discuss/browse_thread/thread/a2dbc2ed1dff99d6 xsd:string
property_value: IAO:0000232 "creation date: 2011-02-21T09:57:44Z" xsd:string
property_value: IAO:0000412 https://github.com/OGMS/ogms/releases/tag/v2019-04-30 xsd:string
[Term]
id: OGMS:0000104
name: diagnostic process
def: "A health care process that involves the interpretation of a clinical picture from a given patient (input) and the assertion to the effect that the patient has a disease, disorder, or syndrome of a certain type, or none of these (output)." []
is_a: OGMS:0000096 ! health care process
property_value: IAO:0000117 "Albert Goldfain" xsd:string
property_value: IAO:0000119 http://groups.google.com/group/ogms-discuss/browse_thread/thread/2a7008f311fac766/e7de486c94dfd82e xsd:string
property_value: IAO:0000232 "creation date: 2011-09-20T09:57:44Z" xsd:string
property_value: IAO:0000412 https://github.com/OGMS/ogms/releases/tag/v2019-04-30 xsd:string
[Term]
id: OGMS:0000123
name: clinical data item
def: "a data item that is about a patient and is the specified output of a health care process assay or diagnostic process" []
is_a: IAO:0000027
property_value: IAO:0000232 "creation date: 2018-11-27" xsd:string
property_value: IAO:0000412 https://github.com/OGMS/ogms/releases/tag/v2019-04-30 xsd:string
[Term]
id: ORCS:00000027
name: admitting diagnosis
def: "a diagnosis that is about some patient and that is the specified output of a diagnostic process that occurs before or during the admission of that patient" []
is_a: OGMS:0000073 ! diagnosis
disjoint_from: ORCS:00000045 ! interim diagnosis
relationship: IAO:0000219 OGMS:0000073 ! diagnosis
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
property_value: IAO:0000119 "PCORnet CDM 4.1" xsd:string
[Term]
id: ORCS:00000028
name: obsolete PCORnet racial identity datum
comment: A racial identity that is the output of a racial identification process that uses the PCORnet CDM race or terminology. PCORnet CDM claims to use the OMB racial classification, but the crucial difference is that PCORnet CDM requires persons to identify with only one category whereas the OMB allows for multiple racial identities as outputs of an identification process.
is_a: OMRSE:00000098
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet racial identity information content entity'
[Term]
id: ORCS:00000030
name: obsolete PCORnet American Indian or Alaska Native identity datum
is_a: ORCS:00000028 ! obsolete PCORnet racial identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet American Indian or Alaska Native identity information content entity'
[Term]
id: ORCS:00000031
name: obsolete PCORnet Asian identity datum
is_a: ORCS:00000028 ! obsolete PCORnet racial identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet Asian identity information content entity'
[Term]
id: ORCS:00000032
name: obsolete PCORnet black or African American identity datum
name: obsolete PCORnet item
is_a: ORCS:00000028 ! obsolete PCORnet racial identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet black or African American identity information content entity'
[Term]
id: ORCS:00000033
name: obsolete PCORnet CDM item identifier
is_a: IAO:0000030
is_obsolete: true
[Term]
id: ORCS:00000034
name: obsolete PCORnet item
is_a: IAO:0000030
is_obsolete: true
[Term]
id: ORCS:00000035
name: obsolete PCORnet Native Hawaiian or other Pacific Islander identity datum
is_a: ORCS:00000028 ! obsolete PCORnet racial identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet Native Hawaiian or other Pacific Islander identity information content entity'
[Term]
id: ORCS:00000036
name: obsolete PCORnet white identity datum
is_a: ORCS:00000028 ! obsolete PCORnet racial identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet white identity information content entity'
[Term]
id: ORCS:00000037
name: obsolete PCORnet multiple race identity datum
is_a: ORCS:00000028 ! obsolete PCORnet racial identity datum
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet multiple race identity information content entity'
[Term]
id: ORCS:00000038
name: obsolete PCORnet Hispanic identity datum
comment: From PCORnet CDM "A person of Cuban, Mexican, Puerto Rican, South or Central American, or other Spanish culture or origin, regardless of race."
is_a: OMRSE:00000127
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet Hispanic identity information content entity'
[Term]
id: ORCS:00000039
name: obsolete PCORnet not Hispanic identity datum
is_a: OMRSE:00000128
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet non-Hispanic identity information content entity'
[Term]
id: ORCS:00000040
name: obsolete PCORnet ethnic identity datum
is_a: OMRSE:00000100
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'PCORnet ethnic identity information content entity'
[Term]
id: ORCS:00000041
name: PCORnet patient identifier
def: "A centrally registered identifier that denotes a person in a PCORnet data mart and is used to link across tables. This identifier is not necessarily unique within PCORnet." []
is_a: IAO:0020000
property_value: IAO:0000117 "Amanda Hicks" xsd:string
[Term]
id: ORCS:00000042
name: obsolete admission process
def: "a social act in which a patient is registered with a health care provider for the purposes of recieving care in an inpatient encounter" []
is_a: IAO:0021002
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'admission process'\nhttp://purl.obolibrary.org/obo/OMRSE_00000201
[Term]
id: ORCS:00000043
name: discharge diagnosis
def: "a diagnosis that is about some patient and that is the specified output of a diagnostic process that occurs before or simultaneously with the discharge of that patient" []
is_a: OGMS:0000073 ! diagnosis
disjoint_from: ORCS:00000045 ! interim diagnosis
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
property_value: IAO:0000119 "PCORnet CDM 4.1" xsd:string
[Term]
id: ORCS:00000044
name: final diagnosis
def: "a diagnosis that is about some patient and that is the specified output of a diagnostic process that occurs during an outpatient encounter" []
is_a: OGMS:0000073 ! diagnosis
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
property_value: IAO:0000119 "PCORnet CDM 4.1" xsd:string
[Term]
id: ORCS:00000045
name: interim diagnosis
def: "a diagnosis that is about some patient and that is the specified output of a diagnostic process that occurs during an inpatient encounter, after admission, and before discharge of that patient" []
is_a: OGMS:0000073 ! diagnosis
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
property_value: IAO:0000119 "PCORnet CDM 4.1" xsd:string
[Term]
id: ORCS:00000046
name: PCORnet racial identification process
is_a: OMRSE:00000099
[Term]
id: ORCS:00000047
name: obsolete PCORnet sexual orientation identity datum
is_a: ORCS:00000050 ! obsolete sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet sexual orientation identity information content entity'
[Term]
id: ORCS:00000048
name: ambulatory visit
def: "An outpatient encounter that occurs in an outpatient clinic, physician\noffice, ambulatory surgery facility, urgent care\nfacilitu, or a hospital encounters and\nthat does not occur in an emergency department facillity." []
is_a: OGMS:0000099 ! outpatient encounter
disjoint_from: ORCS:00000049 ! deprecated emergency department encounter
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000119 "PCORnet CDM 4.1" xsd:string
property_value: ORCS:00000090 "Includes visits at outpatient clinics, physician\noffices, same day/ambulatory surgery centers, urgent care\nfacilities, and other same-day ambulatory hospital encounters, but\nexcludes emergency department encounters" xsd:string
[Term]
id: ORCS:00000049
name: deprecated emergency department encounter
def: "A health care encounter that occurs in an emergency department facillity and realizes the health care provider role of an organization and the emergency department function of the facility." []
is_a: OGMS:0000097
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000119 "PCORnet CDM 4.1" xsd:string
property_value: ORCS:00000090 "Includes ED encounters that become inpatient stays (in which case inpatient stays would be a separate encounter). Excludes urgent care facility visits. ED claims should be pulled before hospitalization claims to ensure that ED with subsequent admission won't be rolled up in the hospital event. Does not include observation stays, where known." xsd:string
is_obsolete: true
[Term]
id: ORCS:00000050
name: obsolete sexual orientation identity datum
comment: A sexual orientation identity datum sis an information content entity that is the output of some sexual orientation identitification process and is intended to be a truthful statement about the subjective feelings of sexual attration, emotional attraction, and romantic attatchments of the person. Unlike data items they are not necessilary contributed or acquired by a reliable method.
is_a: OMRSE:00000132
property_value: IAO:0000117 "Amanda Hicks" xsd:string
is_obsolete: true
replaced_by: 'sexual orientation identity information content entity'
[Term]
id: ORCS:00000051
name: obsolete inpatient hospital encounter
name: obsolete PCORnet asexual identity datum
is_a: ORCS:00000047 ! obsolete PCORnet sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet asexual identity information content entity'
[Term]
id: ORCS:00000052
name: obsolete PCORnet gay identity datum
is_a: ORCS:00000047 ! obsolete PCORnet sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet gay identity information content entity'
[Term]
id: ORCS:00000053
name: obsolete PCORnet lesbian identity datum
is_a: ORCS:00000047 ! obsolete PCORnet sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet lesbian identity information content entity'
[Term]
id: ORCS:00000054
name: obsolete PCORnet multiple sexual orientations identity datum
is_a: ORCS:00000047 ! obsolete PCORnet sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet multiple sexual orientations identity information content entity'
[Term]
id: ORCS:00000055
name: obsolete PCORnet queer identity datum
is_a: ORCS:00000047 ! obsolete PCORnet sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet queer identity information content entity'
[Term]
id: ORCS:00000056
name: obsolete PCORnet questioning identity datum
is_a: ORCS:00000047 ! obsolete PCORnet sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet questioning sexual orientation identity information content entity'
[Term]
id: ORCS:00000057
name: obsolete PCORnet something else identity datum
is_a: ORCS:00000047 ! obsolete PCORnet sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet something else sexual orientation identity information content entity'
[Term]
id: ORCS:00000058
name: obsolete PCORnet straight identity datum
is_a: ORCS:00000047 ! obsolete PCORnet sexual orientation identity datum
is_obsolete: true
replaced_by: 'PCORnet straight identity information content entity'
[Term]
id: ORCS:00000059
name: obsolete PCORnet gender identity datum
comment: A gender identity that is the output of a racial identification process that uses the PCORnet CDM race or terminology. PCORnet CDM claims to use the 2015 Edition Health Information Technology (Health IT) Certification Criteria, 2015 Edition Base Electronic Health Record (EHR) Definition, but the crucial difference is that PCORnet CDM requires persons to identify with only one category whereas the other does not have a multiple gender option, which changes the meaning of the values in the value set.
is_a: OMRSE:00000133
is_obsolete: true
replaced_by: 'PCORnet gender identity information content entity'
[Term]
id: ORCS:00000060
name: obsolete PCORnet genderqueer identity datum
is_a: ORCS:00000059 ! obsolete PCORnet gender identity datum
is_obsolete: true
replaced_by: 'PCORnet genderqueer/non-binary identity information content entity'
[Term]
id: ORCS:00000061
name: obsolete PCORnet man identity datum
is_a: ORCS:00000059 ! obsolete PCORnet gender identity datum
is_obsolete: true
replaced_by: 'PCORnet man identity information content entity'
[Term]
id: ORCS:00000062
name: obsolete PCORnet multiple genders datum
is_a: ORCS:00000059 ! obsolete PCORnet gender identity datum
is_obsolete: true
replaced_by: 'PCORnet multiple gender categories identity information content entity'
[Term]
id: ORCS:00000063
name: obsolete PCORnet something else identity datum
is_a: ORCS:00000059 ! obsolete PCORnet gender identity datum
is_obsolete: true
replaced_by: 'PCORnet something else gender identity information content entity'
[Term]
id: ORCS:00000064
name: obsolete PCORnet transgenderfemale/transwoman/male-to-female identity datum
is_a: ORCS:00000059 ! obsolete PCORnet gender identity datum
is_obsolete: true
replaced_by: 'PCORnet transgender female/trans woman/male-to-female identity information content entity'
[Term]
id: ORCS:00000065
name: obsolete PCORnet transgendermale/transman/female-to-male identity datum
is_a: ORCS:00000059 ! obsolete PCORnet gender identity datum
is_obsolete: true
replaced_by: 'PCORnet transgender male/trans man/female-to-male identity information content entity'
[Term]
id: ORCS:00000066
name: obsolete PCORnet woman identity datum
is_a: ORCS:00000059 ! obsolete PCORnet gender identity datum
is_obsolete: true
replaced_by: 'PCORnet woman identity information content entity'
[Term]
id: ORCS:00000067
name: PCORnet diagnosis identifier
def: "An identifier that denotes a diagnosis." []
is_a: IAO:0020000
[Term]
id: ORCS:00000068
name: DEPRECATED obsolete code set
comment: This class is superfluous, given the addition of PNO: code set.
property_value: seeAlso IAO:0020020
is_obsolete: true
[Term]
id: ORCS:00000069
name: PCORnet discharge status data item
def: "A data item that is about a documentation activity that records either (i) that some healthcare encounter ends with a patient discharge; (ii) that some healthcare encounter is terminated by a patient without any patient discharge; or (iii) that some healthcare encounter continues while the patient remains in the same hospital and while the hospital is billing a healthcare payor for services after a specified period." []
is_a: IAO:0000027
property_value: IAO:0000116 "If the healthcare encounter ends with a patient discharge, then the status might also indicate the type of facility or organization, if any, to which the patient is discharged." xsd:string
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
[Term]
id: ORCS:00000070
name: PCORnet skilled nursing facility discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged to a skilled nursing facility." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000071
name: PCORnet adult foster home facility discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged to an adult foster home facility." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000072
name: PCORnet assisted living facility discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged to an assisted living facility." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000073
name: PCORnet other acute inpatient hospital discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged to another hospital." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Amanda Hicks" xsd:string
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000074
name: PCORnet nursing home facility discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged to a nursing home facility." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000075
name: PCORnet rehabilitation facility discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged to a rehabilitation facility." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000076
name: PCORnet residential facility discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged to a residential facility." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000077
name: PCORnet hospice discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged under the care of a hospice organization." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000078
name: PCORnet against medical advice discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged upon deciding to end the encounter against the advice of a healthcare provider." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000079
name: PCORnet still in hospital discharge status data item
def: "A PCORnet discharge status data item that is about a healthcare encounter that continues while the patient remains in the same hospital, and while the hospital is billing a healthcare payor for services after a specified period (typically 90 days)." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
[Term]
id: ORCS:00000080
name: PCORnet home health discharge status data item
def: "A PCORnet discharge status data item that is about a discharge process in which a patient is discharged (i) to a housing unit, and (ii) under the care of a home healthcare organization." []
is_a: ORCS:00000069 ! PCORnet discharge status data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
[Term]
id: ORCS:00000081
name: PCORnet admitting source data item
def: "A data item that is about a patient admission and the type of facility from which a patient was discharged prior to admission." []
is_a: IAO:0000027
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000082
name: PCORnet home health admitting source data item
def: "A PCORnet data item that is about a home healthcare organization and the household from which a patient was discharged prior to admission." []
is_a: ORCS:00000081 ! PCORnet admitting source data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000083
name: PCORnet skilled nursing facility admitting source data item
def: "A PCORnet data item that is about a skilled nursing facility from which a patient was discharged prior to admission." []
is_a: ORCS:00000081 ! PCORnet admitting source data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000091
name: PCORnet ethnic identity information content entity
def: "An ethnic identity information content entity that uses PCORnet CDM terminology for ethnicity, where this terminology corresponds to values for the \"Hispanic\" field of the Demographic Table." []
is_a: OMRSE:00000205
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000092
name: PCORnet Hispanic identity information content entity
def: "A PCORnet ethnic identity information content entity that is about some person's identifying as Hispanic, which is intended to mean being of Cuban, Mexican, Puerto Rican, South or Central American, or other Spanish culture or origin, regardless of race." []
is_a: ORCS:00000091 ! PCORnet ethnic identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Amanda Hicks" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000093
name: PCORnet non-Hispanic identity information content entity
def: "A PCORnet ethnic identity information content entity that is about some person's identifying as not Hispanic, where \"Hispanic\" is intended to mean being of Cuban, Mexican, Puerto Rican, South or Central American, or other Spanish culture or origin, regardless of race." []
is_a: ORCS:00000091 ! PCORnet ethnic identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000094
name: PCORnet gender identity information content entity
def: "A gender identity information content entity that uses the PCORnet CDM terminology for gender, where this terminology corresponds to values for the \"gender identity\" field of the Demographic Table." []
comment: The PCORnet CDM cites the "2015 Edition Health Information Technology (Health IT) Certification Criteria, 2015 Edition Base Electronic Health Record (EHR) Definition, and ONC Health IT Certification Program Modifications" of the US Department of Health and Human Services as the source for its terminology, but the two differ in that the PCORnet CDM allows one to select only one value for gender and includes 'multiple gender' as an option, while the other lacks a 'multiple gender' option and allows multiple options to be selected. For that source used by PCORnet, see here: https://www.federalregister.gov/documents/2015/10/16/2015-25597/2015-edition-health-information-technology-health-it-certification-criteria-2015-edition-base
is_a: OMRSE:00000209
property_value: http://purl.org/dc/elements/1.1/contributor "Amanda Hicks" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000095
name: PCORnet genderqueer/non-binary identity information content entity
def: "A PCORnet gender identity information content entity that is about some person's identifying as neither exclusively male nor exclusively female in gender." []
is_a: ORCS:00000094 ! PCORnet gender identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000096
name: PCORnet man identity information content entity
def: "A PCORnet gender identity information content entity that is about some person's identifying as a man." []
is_a: ORCS:00000094 ! PCORnet gender identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000097
name: PCORnet multiple gender categories identity information content entity
def: "A PCORnet gender identity information content entity that is about some person's identifying as more than one gender." []
is_a: ORCS:00000094 ! PCORnet gender identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000098
name: PCORnet something else gender identity information content entity
def: "A PCORnet gender identity information content entity that is about some person's identifying as some gender that is not referred to or described by the other value options for the \"gender identity\" field of the PCORnet Demographic Table." []
is_a: ORCS:00000094 ! PCORnet gender identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000099
name: PCORnet transgender female/trans woman/male-to-female identity information content entity
def: "A PCORnet gender identity information content entity that is about some person's identifying as transgender female, a trans woman, or male-to-female." []
is_a: ORCS:00000094 ! PCORnet gender identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000100
name: PCORnet transgender male/trans man/female-to-male identity information content entity
def: "A PCORnet gender identity information content entity that is about some person's identifying as transgender male, a trans man, or female-to-male." []
is_a: ORCS:00000094 ! PCORnet gender identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: IAO:0000117 "Mathias Brochhausen" xsd:string
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
property_value: IAO:0000117 "William R. Hogan" xsd:string
[Term]
id: ORCS:00000123
name: PCORnet woman identity information content entity
def: "A PCORnet gender identity information content entity that is about some person's identifying as a woman." []
is_a: ORCS:00000094 ! PCORnet gender identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000124
name: PCORnet racial identity information content entity
def: "A racial identity information content entity that uses the PCORnet CDM terminology for race, where this terminology corresponds to the values for the \"race\" field of the Demographic Table." []
comment: The PCORnet CDM's values for the race field are based on the OMB racial classification, but differ in that the PCORnet CDM allows one to select only one value for race and includes "multiple race" as an option, while OMB lacks a 'multiple race' option and allows multiple options to be selected.
is_a: OMRSE:00000213
property_value: http://purl.org/dc/elements/1.1/contributor "Amanda Hicks" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000125
name: PCORnet American Indian or Alaska Native identity information content entity
def: "A PCORnet racial identity information content entity that is about some person's identifying as American Indian or Alaska Native, which is intended to mean having origins in any of the original peoples of North and South America (including Central America), and maintains tribal affiliation or community attachment." []
comment: This definition corresponds to that used by OMB, which is PCORnet's source for the terminology used for the value options of the 'race' field. It is worth noting that the OMB definition from which this one is derived is problematic, in that it implies that one's race cannot be Native American or Alaskan Native unless one maintains tribal affiliations or community attachment.
is_a: ORCS:00000124 ! PCORnet racial identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000126
name: PCORnet Asian identity information content entity
def: "A PCORnet racial identity information content entity that is about some person's identifying as Asian, which is intended to mean having origins in any of the original peoples of the Far East, Southeast Asia, or the Indian subcontinent." []
is_a: ORCS:00000124 ! PCORnet racial identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000127
name: PCORnet black or African American identity information content entity
def: "A PCORnet racial identity information content entity that is about some person's identifying as black or African American, which is intended to mean having origins in any of the black racial groups of Africa." []
is_a: ORCS:00000124 ! PCORnet racial identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000128
name: PCORnet multiple race identity information content entity
def: "A PCORnet racial identity information content entity that is about some person's identifying as more than one race." []
is_a: ORCS:00000124 ! PCORnet racial identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000129
name: PCORnet Native Hawaiian or other Pacific Islander identity information content entity
def: "A PCORnet racial identity information content entity that is about some person's identifying as Native Hawaiian or other Pacific Islander, which is intended to mean having origins in any of the original peoples of Hawaii, Guam, Samoa, or other Pacific Islands." []
is_a: ORCS:00000124 ! PCORnet racial identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000130
name: PCORnet white identity information content entity
def: "A PCORnet racial identity information content entity that is about some person's identifying as white which is intended to mean having origins in any of the original peoples of Europe, the Middle East, or North Africa." []
is_a: ORCS:00000124 ! PCORnet racial identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000131
name: PCORnet sexual orientation identity information content entity
def: "A sexual orientation identity information content entity that uses the PCORnet terminology for sexual orientation, where this terminology corresponds to the permitted values for the \"sexual orientation\" field of the Demographic Table." []
comment: The labels and definitions used for the subclasses of 'PCORnet sexual orientation identity information content entity' are based on the terminology used for the value set options for the PCORnet Common Data Model's 'sexual orientation' field, which is a modifed version of the terms for, and categories of, sexual orientation that are found in the "2015 Edition Health Information Technology (Health IT) Certification Criteria, 2015 Edition Base Electronic Health Record (EHR) Definition, and ONC Health IT Certification Program Modifications" of the US Department of Health and Human Services (https://www.federalregister.gov/documents/2015/10/16/2015-25597/2015-edition-health-information-technology-health-it-certification-criteria-2015-edition-base). Neither the PCORnet CDM nor the other source provide definitions of their terms for sexual orientations. Our definitions for the corresponding classes thus point to the terms, rather than explain what they mean, as it is unclear how PCORnet intends them to be understood. Furthermore, these terms may be understood differently by different patients who select them as self-descriptions, as some may understand them to be defined in terms of phenotypic sex, others in terms of gender, and others in terms of some combination of the two.
is_a: OMRSE:00000220
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000132
name: PCORnet asexual identity information content entity
def: "A PCORnet sexual orientation identity information content entity that is about some person's identifying as having a sexual orientation referred to by the PCORnet CDM with the term \"asexual.\"" []
comment: The labels and definitions used for the subclasses of 'PCORnet sexual orientation identity information content entity' are based on the terminology used for the value set options for the PCORnet Common Data Model's 'sexual orientation' field, which is a modifed version of the terms for, and categories of, sexual orientation that are found in the "2015 Edition Health Information Technology (Health IT) Certification Criteria, 2015 Edition Base Electronic Health Record (EHR) Definition, and ONC Health IT Certification Program Modifications" of the US Department of Health and Human Services (https://www.federalregister.gov/documents/2015/10/16/2015-25597/2015-edition-health-information-technology-health-it-certification-criteria-2015-edition-base). Neither the PCORnet CDM nor the other source provide definitions of their terms for sexual orientations. Our definitions for the corresponding classes thus point to the terms, rather than explain what they mean, as it is unclear how PCORnet intends them to be understood. Furthermore, these terms may be understood differently by different patients who select them as self-descriptions, as some may understand them to be defined in terms of phenotypic sex, others in terms of gender, and others in terms of some combination of the two.
is_a: ORCS:00000131 ! PCORnet sexual orientation identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000133
name: PCORnet bisexual identity information content entity
def: "A PCORnet sexual orientation identity information content entity that is about some person's identifying as having a sexual orientation referred to by the PCORnet CDM with the term \"bisexual.\"" []
comment: The labels and definitions used for the subclasses of 'PCORnet sexual orientation identity information content entity' are based on the terminology used for the value set options for the PCORnet Common Data Model's 'sexual orientation' field, which is a modifed version of the terms for, and categories of, sexual orientation that are found in the "2015 Edition Health Information Technology (Health IT) Certification Criteria, 2015 Edition Base Electronic Health Record (EHR) Definition, and ONC Health IT Certification Program Modifications" of the US Department of Health and Human Services (https://www.federalregister.gov/documents/2015/10/16/2015-25597/2015-edition-health-information-technology-health-it-certification-criteria-2015-edition-base). Neither the PCORnet CDM nor the other source provide definitions of their terms for sexual orientations. Our definitions for the corresponding classes thus point to the terms, rather than explain what they mean, as it is unclear how PCORnet intends them to be understood. Furthermore, these terms may be understood differently by different patients who select them as self-descriptions, as some may understand them to be defined in terms of phenotypic sex, others in terms of gender, and others in terms of some combination of the two.
is_a: ORCS:00000131 ! PCORnet sexual orientation identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000134
name: PCORnet gay identity information content entity
def: "A PCORnet sexual orientation identity information content entity that is about some person's identifying as having a sexual orientation referred to by the PCORnet CDM with the term \"gay.\"" []
comment: The labels and definitions used for the subclasses of 'PCORnet sexual orientation identity information content entity' are based on the terminology used for the value set options for the PCORnet Common Data Model's 'sexual orientation' field, which is a modifed version of the terms for, and categories of, sexual orientation that are found in the "2015 Edition Health Information Technology (Health IT) Certification Criteria, 2015 Edition Base Electronic Health Record (EHR) Definition, and ONC Health IT Certification Program Modifications" of the US Department of Health and Human Services (https://www.federalregister.gov/documents/2015/10/16/2015-25597/2015-edition-health-information-technology-health-it-certification-criteria-2015-edition-base). Neither the PCORnet CDM nor the other source provide definitions of their terms for sexual orientations. Our definitions for the corresponding classes thus point to the terms, rather than explain what they mean, as it is unclear how PCORnet intends them to be understood. Furthermore, these terms may be understood differently by different patients who select them as self-descriptions, as some may understand them to be defined in terms of phenotypic sex, others in terms of gender, and others in terms of some combination of the two.
is_a: ORCS:00000131 ! PCORnet sexual orientation identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000135
name: PCORnet lesbian identity information content entity
def: "A PCORnet sexual orientation identity information content entity that is about some person's identifying as having a sexual orientation referred to by the PCORnet CDM with the term \"lesbian.\"" []
comment: The labels and definitions used for the subclasses of 'PCORnet sexual orientation identity information content entity' are based on the terminology used for the value set options for the PCORnet Common Data Model's 'sexual orientation' field, which is a modifed version of the terms for, and categories of, sexual orientation that are found in the "2015 Edition Health Information Technology (Health IT) Certification Criteria, 2015 Edition Base Electronic Health Record (EHR) Definition, and ONC Health IT Certification Program Modifications" of the US Department of Health and Human Services (https://www.federalregister.gov/documents/2015/10/16/2015-25597/2015-edition-health-information-technology-health-it-certification-criteria-2015-edition-base). Neither the PCORnet CDM nor the other source provide definitions of their terms for sexual orientations. Our definitions for the corresponding classes thus point to the terms, rather than explain what they mean, as it is unclear how PCORnet intends them to be understood. Furthermore, these terms may be understood differently by different patients who select them as self-descriptions, as some may understand them to be defined in terms of phenotypic sex, others in terms of gender, and others in terms of some combination of the two.
is_a: ORCS:00000131 ! PCORnet sexual orientation identity information content entity
property_value: http://purl.org/dc/elements/1.1/contributor "Mathias Brochhausen" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Matthew Diller" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "Sarah Bost" xsd:string
property_value: http://purl.org/dc/elements/1.1/contributor "William R. Hogan" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000136
name: Internationalized Resource Identifier
def: "An identifier that is the specified output of a planned process that realizes the Internet standard RFC 3987 which is available from http://www.ietf.org/rfc/rfc3987.txt." []
comment: RFC 3987 has the title "Internationalized Resource Identifiers (IRIs)". It was published in 2005.
is_a: IAO:0020000
property_value: IAO:0000111 "Internationalized Resource Identifier" xsd:string
property_value: IAO:0000118 "IRI" xsd:string
[Term]
id: ORCS:00000137
name: PCORnet emergency department admitting source data item
def: "A PCORnet data item that is about an emergency department from which a patient was discharged prior to admission." []
is_a: ORCS:00000081 ! PCORnet admitting source data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000138
name: PCORnet intra-hospital admitting source data item
def: "A PCORnet data item that is about another department in the same hospital from which a patient was discharged prior to admission." []
is_a: ORCS:00000081 ! PCORnet admitting source data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000139
name: PCORnet ambulatory visit admitting source data item
def: "A PCORnet data item that is about a patient admission that is causally upstream of an outpatient encounter." []
is_a: ORCS:00000081 ! PCORnet admitting source data item
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000140
name: PCORnet health care encounter identifier
def: "An identifier that denotes a health care encounter and has part some symbol." []
is_a: IAO:0020000
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000141
name: PCORnet facility identifier
def: "An identifier that denotes a health care facility and has part some symbol." []
is_a: IAO:0020000
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000142
name: institutional professional consult
def: "A health care encounter that realizes some health care provider role that inheres in some Homo sapiens." []
is_a: OGMS:0000097
property_value: IAO:0000117 "Matthew Diller" xsd:string
property_value: IAO:0000117 "S. Clint Dowland" xsd:string
[Term]
id: ORCS:00000143
name: non-acute institutional stay
def: "A health care encounter that occurs in some hospice facility, skilled nursing facility, rehabilitation facility, nursing home facility, residential home facility, overnight non-hospital dialysis facility, adult foster home facility, or assisted living facility." []