Created
October 29, 2020 11:42
-
-
Save alexanderkiel/8c806b6b2f7a4d74a202d372bf478cbe to your computer and use it in GitHub Desktop.
Corona Contact Form
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
{ | |
"resourceType": "bundle", | |
"entry": [ | |
{ | |
"fullUrl": "urn:uuid:38f5cc57-a667-4c44-b9a9-8e8ce1bd86a8", | |
"resource": { | |
"resourceType": "Patient", | |
"name": { | |
"family": "___________________________", | |
"given": [ | |
"___________________________________" | |
] | |
}, | |
"telecom": [ | |
{ | |
"system": "phone", | |
"value": "__________________________" | |
}, | |
{ | |
"system": "email", | |
"value": "__________________________" | |
} | |
], | |
"address": [ | |
{ | |
"use": "home", | |
"postalCode": "_____________________" | |
} | |
] | |
} | |
}, | |
{ | |
"resource": { | |
"resourceType": "Encounter", | |
"subject": { | |
"reference": "urn:uuid:38f5cc57-a667-4c44-b9a9-8e8ce1bd86a8" | |
}, | |
"period": { | |
"start": "____________________________", | |
"end": "______________________________" | |
} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment