...
| Code Block | ||
|---|---|---|
| ||
{
"resourceType": "Observation",
"status": "final",
"code": {
"coding": []
},
"subject": {
"reference": "Patient/<id>"
},
"performer": [
{
"reference": "Practitioner/<id>"
}
],
"interpretation": []
} |
Appointment
| Code Block | ||
|---|---|---|
| ||
{
"resourceType": "Appointment",
"id": "example",
"status": "booked",
"priority": 5,
"description": "Discussion on the results of your recent MRI",
"start": "2013-12-10T09:00:00Z",
"end": "2013-12-10T11:00:00Z",
"created": "2013-10-10",
"comment": "Further expand on the results of the MRI and determine the next actions that may be appropriate.",
"basedOn": [],
"participant": [
{
"actor": {
"reference": "Patient/<id>",
"display": "Peter James Chalmers"
},
"required": "required",
"status": "accepted"
}
]
} |
DiagnosticReport
| Code Block | ||
|---|---|---|
| ||
{
"resourceType": "DiagnosticReport",
"id": "f001",
"status": "final",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "58410-2",
"display": "Complete blood count (hemogram) panel - Blood by Automated count"
}
]
},
"subject": {
"reference": "Patient/<id>",
"display": "P. van den Heuvel"
},
"issued": "2013-05-15T19:32:52+01:00",
"performer": [
{
"reference": "Organization/<id>",
"display": "Burgers University Medical Centre"
}
],
"result": [
{
"reference": "Observation/<id>"
}
],
"conclusion": "Core lab"
} |
Encounter
| Code Block | ||
|---|---|---|
| ||
{
"resourceType": "Encounter",
"id": "example",
"status": "in-progress",
"class": {
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
"code": "IMP",
"display": "inpatient encounter"
},
"subject": {
"reference": "Patient/<id>"
}
} |