forked from cukarthik/aou-ehr-file-check
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add JSON file to define participant_match table. (#17)
* Add JSON file to define participant_match table. * Update participant_match.json to have exactly the specced description, and multi-line format. Co-authored-by: jp3477 <[email protected]> Co-authored-by: jp3477 <[email protected]>
- Loading branch information
Showing
1 changed file
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
[ | ||
{ | ||
"type": "integer", | ||
"name": "person_id", | ||
"mode": "required", | ||
"description": "A unique identifier for each person." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "first_name", | ||
"mode": "nullable", | ||
"description": "Allowed values for this field is match, no_match, missing, and excluded." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "last_name", | ||
"mode": "nullable", | ||
"description": "Allowed values for this field is match, no_match, missing, and excluded." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "dob", | ||
"mode": "nullable", | ||
"description": "Allowed values for this field is match, no_match, missing, and excluded." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "sex", | ||
"mode": "nullable", | ||
"description": "Allowed values for this field is match, no_match, missing, and excluded." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "address", | ||
"mode": "nullable", | ||
"description": "Allowed values for this field is match, no_match, missing, and excluded." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "phone_number", | ||
"mode": "nullable", | ||
"description": "Allowed values for this field is match, no_match, missing, and excluded." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "email", | ||
"mode": "nullable", | ||
"description": "Allowed values for this field is match, no_match, missing, and excluded." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "algorithm_validation", | ||
"mode": "nullable", | ||
"description": "Algorithm Validation is for the sites’ “automated” matching approach: eg, first name, last name, and DOB all matched." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "manual_validation", | ||
"mode": "nullable", | ||
"description": "Manual validation additionally tracks whether an individual manually reviewed the EHR-AoU linkage. The expectation is that every submitted participant would match either by algorithm or manually." | ||
} | ||
] |