| Class | Description |
|---|---|
| Address |
CREATE TABLE OMOP.address
(
person_id NUMBER(19) NOT NULL ,
location_id NUMBER(19) NOT NULL
);
|
| CareSite |
Represents records in the care_site table.
|
| ConditionOccurrence |
Represents records in the condition_occurrence table.
|
| Death |
CREATE TABLE OMOP.death
(
person_id NUMBER(19) NOT NULL ,
death_date DATE NOT NULL ,
death_datetime TIMESTAMP NOT NULL ,
death_type_concept_id INTEGER NOT NULL ,
cause_concept_id INTEGER NOT NULL ,
cause_source_value VARCHAR(50) NOT NULL ,
cause_source_concept_id INTEGER NOT NULL ,
death_type_source_value VARCHAR(50) NOT NULL
);
|
| DrugExposure |
* Represents records in the drug_exposure table.
|
|
CREATE TABLE OMOP.email
(
person_id NUMBER(19) NOT NULL ,
email VARCHAR(50) NULL ,
email_type VARCHAR(50) NULL
);
|
|
| Location |
Represents records in the location table.
|
| Measurement |
Represents records in the measurement table.
|
| Mrn |
CREATE TABLE OMOP.mrn
(
person_id NUMBER(19) NOT NULL ,
health_system VARCHAR(50) NULL ,
mrn VARCHAR(50) NOT NULL
);
|
| Name |
CREATE TABLE OMOP.name
(
person_id NUMBER(19) NOT NULL ,
first_name VARCHAR(50) NOT NULL ,
middle_name VARCHAR(50) NULL ,
last_name VARCHAR(50) NOT NULL ,
suffix VARCHAR(50) NULL ,
prefix VARCHAR(50) NULL
);
|
| OmopTableHandler | |
| Person |
Represents records in the Person table.
|
| PhoneNumber |
CREATE TABLE OMOP.phone_number
(
person_id NUMBER(19) NOT NULL ,
phone_number VARCHAR(50) NULL ,
phone_type VARCHAR(50) NULL
);
|
| ProcedureOccurrence |
Represents records in the visit_occurrence table.
|
| Provider |
Represents records in the provider table.
|
| VisitOccurrence |
Represents records in the visit_occurrence table.
|
Copyright © 2019 Emory University. All rights reserved.