-
-
Notifications
You must be signed in to change notification settings - Fork 3
Where to locate HMIS Data Elements and Descriptions within the Big Data Warehouse
The Big Data Warehouse contains all the fields in all of the operational PostgreSQL schemas, searchable here: https://docs.hslynk.com/db/metadata/metadata.html .
Additionally, the source entity relational models, providing more detail, are here: https://github.com/servinglynk/hslynk-open-source-docs/wiki/HSLynk-PostgreSQL-operational-database-schema-locations-and-documentation . Each schema has an Entity-Relational Diagram and field list. There is one schema per HMIS Data Standard version (2014, 2015, 2017/18, 2020).
When inside an HMIS data entity (tables in the relational schema), such as enrollment, the data will appear as shown in the image below in a Big Data Warehouse view, with a *_desc field showing the plain English data value, alongside the code value.
To see all the values for a given HMIS data element,
select * from hmis_type_v207 where lower(name) ='disablingcondition'
This will yield all the picklist values for DisablingCondition.
A table of all the picklist values is located in each hmis_type_v* table, with an example hmis_type_v2017 table shown below.
Outside of the HMIS Version Specific Schema data, there is also also Survey Service that can optionally reference HMIS data elements (double-posted to the HMIS Version Specific Schema). Here is an example HMIS 2017 survey question detail table in the Big Data Warehouse, showing the various available HUD questions, HMIS data standard numerals, and question display text.
related: issue #549 https://github.com/servinglynk/hslynk-open-source-docs/issues/549