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.
[DC-1308] Add pii_* files to aou-ehr-file-check script (#16)
- Loading branch information
1 parent
73eb1e2
commit c5efcfc
Showing
5 changed files
with
100 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,14 @@ | ||
[ | ||
{ | ||
"type": "integer", | ||
"name": "person_id", | ||
"mode": "required", | ||
"description": "The participant ID for this row" | ||
}, | ||
{ | ||
"type": "integer", | ||
"name": "location_id", | ||
"mode": "required", | ||
"description": "A foreign key to the location OMOP table for additional addresses (integer)." | ||
} | ||
] |
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,14 @@ | ||
[ | ||
{ | ||
"type": "integer", | ||
"name": "person_id", | ||
"mode": "required", | ||
"description": "The participant ID for this row" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "email", | ||
"mode": "required", | ||
"description": "The participant's email address" | ||
} | ||
] |
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,20 @@ | ||
[ | ||
{ | ||
"type": "integer", | ||
"name": "person_id", | ||
"mode": "required", | ||
"description": "The participant ID for this row" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "health_system", | ||
"mode": "required", | ||
"description": "The health system for which the MRN applies." | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "MRN", | ||
"mode": "required", | ||
"description": "A medical record number (or similar patient identifier)" | ||
} | ||
] |
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,38 @@ | ||
[ | ||
{ | ||
"type": "integer", | ||
"name": "person_id", | ||
"mode": "required", | ||
"description": "The participant ID for this row" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "first_name", | ||
"mode": "required", | ||
"description": "The participant’s first (given) name" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "middle_name", | ||
"mode": "nullable", | ||
"description": "The participant’s middle name (or initial)" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "last_name", | ||
"mode": "required", | ||
"description": "The participant’s last (family) name" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "suffix", | ||
"mode": "nullable", | ||
"description": "The participant’s provided suffix (eg, III)" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "prefix", | ||
"mode": "nullable", | ||
"description": "The participant’s provided prefix or title (eg, Dr.)" | ||
} | ||
] |
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,14 @@ | ||
[ | ||
{ | ||
"type": "integer", | ||
"name": "person_id", | ||
"mode": "required", | ||
"description": "The participant ID for this row" | ||
}, | ||
{ | ||
"type": "string", | ||
"name": "phone_number", | ||
"mode": "required", | ||
"description": "The participant's phone number" | ||
} | ||
] |