Merge pull request #116 from gowthamrao/master
visit_detail - some minor corrections - condition_occurrence and visit_type_concept_id
This commit is contained in:
commit
df2d439ac0
|
@ -15,7 +15,8 @@ Field|Required|Type|Description
|
|||
| condition_type_concept_id | Yes | integer | A foreign key to the predefined Concept identifier in the Standardized Vocabularies reflecting the source data from which the condition was recorded, the level of standardization, and the type of occurrence. |
|
||||
| stop_reason | No | varchar(20) | The reason that the condition was no longer present, as indicated in the source data. |
|
||||
| provider_id | No | integer | A foreign key to the Provider in the PROVIDER table who was responsible for capturing (diagnosing) the Condition. |
|
||||
| visit_occurrence_id | No | integer | A foreign key to the visit in the VISIT_OCCURRENCE table during which the Condition was determined (diagnosed). | visit_detail_id | No | integer | A foreign key to the visit in the VISIT_DETAIL table during which the Condition was determined (diagnosed). |
|
||||
| visit_occurrence_id | No | integer | A foreign key to the visit in the VISIT_OCCURRENCE table during which the Condition was determined (diagnosed). |
|
||||
| visit_detail_id | No | integer | A foreign key to the visit in the VISIT_DETAIL table during which the Condition was determined (diagnosed). | visit_detail_id | No | integer | A foreign key to the visit in the VISIT_DETAIL table during which the Condition was determined (diagnosed). |
|
||||
| condition_source_value | No | varchar(50) | The source code for the condition as it appears in the source data. This code is mapped to a standard condition concept in the Standardized Vocabularies and the original code is stored here for reference. |
|
||||
| condition_source_concept_id | No | integer | A foreign key to a Condition Concept that refers to the code used in the source. |
|
||||
| condition_status_source_value | No | varchar(50) | The source code for the condition status as it appears in the source data. |
|
||||
|
|
|
@ -5,7 +5,7 @@ Field|Required|Type|Description
|
|||
:------------------------|:--------|:-----|:-------------------------------------------------
|
||||
|visit_detail_id|Yes|integer|A unique identifier for each Person's visit or encounter at a healthcare provider.|
|
||||
|person_id|Yes|integer|A foreign key identifier to the Person for whom the visit is recorded. The demographic details of that Person are stored in the PERSON table.|
|
||||
|visit_detail_concept_id|Yes|integer|A foreign key that refers to a visit Concept identifier in the Standardized Vocabularies.|
|
||||
|visit_concept_id|Yes|integer|A foreign key that refers to a visit Concept identifier in the Standardized Vocabularies.|
|
||||
|visit_start_date|Yes|date|The start date of the visit.|
|
||||
|visit_start_datetime|No|datetime|The date and time of the visit started.|
|
||||
|visit_end_date|Yes|date|The end date of the visit. If this is a one-day visit the end date should match the start date.|
|
||||
|
|
Loading…
Reference in New Issue