The demographicaddresses table manages address records that are associated with patients and caregivers.
Table Schema
Name |
Type
|
Description |
id |
VARCHAR |
Surrogate key. Primary key for the demographicaddresses table.
|
street1 |
VARCHAR |
Street component of the address.
|
street2 |
VARCHAR |
Street component of the address.
|
street3 |
VARCHAR |
Street component of the address.
|
city |
VARCHAR |
City component of the address.
|
state |
VARCHAR |
State component of the address. Commonly a two character U.S. state code.
|
postalcode |
VARCHAR |
Postal component of the address. Commonly a five or nine digit U.S. zip code.
|
county |
VARCHAR |
County component of the address.
|
country |
VARCHAR |
Country component of the addresss. Blank or null value indicates USA.
|
activefrom |
VARCHAR |
If applicable, the begin date for period during which the individual resided at this address.
|
activeto |
VARCHAR |
If applicable, the end date for period during which the individual resided at this address.
|
typeterm_id |
INTEGER |
Surrogate key. Foreign key reference to terms.id. A term that describes the address type. For example, Home Address.
|
demographic_id |
VARCHAR |
Surrogate key. Foreign key reference to demographics.id
|
inserteddate |
TIMESTAMP |
Timestamp (UTC) indicating the date the row was first inserted into HIEBus.
|
insertedbyapplication_id |
SMALLINT |
The application that first inserted the row into HIEBus. Foreign key reference to applications.id.
|
insertedbyuser_id |
VARCHAR |
The user associated with the process that first inserted the row into HIEBus. Foreign key reference to users.id.
|
modifieddate |
TIMESTAMP |
Timestamp (UTC) indicating the date the row was last modified.
|
modifiedbyapplication_id |
SMALLINT |
The application that last modified the row. Foreign key reference to applications.id.
|
modifiedbyuser_id |
VARCHAR |
The user associated with the process that last modified the row. Foreign key reference to users.id.
|
properties |
VARCHAR |
An xml formatted field with additional properties of the address managed as key-value pairs.
|
tenant_id |
SMALLINT |
Surrogate key. Foreign key reference to tenants.id
|
Back to Tables