Last active
July 27, 2020 17:05
-
-
Save louismullie/345b03cee9704c2dece489270395b6f6 to your computer and use it in GitHub Desktop.
JSON template for the Encounter FHIR resource
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
{ | |
// The type of resource | |
"resourceType" : "Encounter", | |
// Identifier. No special coding system. | |
"id": "some-encounter-id", | |
// The status of the encounter | |
"status": "in-progress", | |
// The type of the encounter | |
"class": { | |
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", | |
"code": "IMP", | |
"display": "inpatient encounter" | |
}, | |
"subject": { | |
"reference": "Patient/24235135" | |
}, | |
"period": { | |
"start": "YYYY-MM-DDThh:mm:ss+zz:zz", | |
"end": "YYYY-MM-DDThh:mm:ss+zz:zz" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment