recap / tests /fixtures /tiny_fhir.json
afif-ahmed's picture
deploy: sync from fe7cce1
ba54ea9 verified
{
"resourceType": "Bundle",
"type": "transaction",
"entry": [
{
"resource": {
"resourceType": "Patient",
"id": "p1",
"name": [{"family": "Doe123", "given": ["Jane45"]}],
"birthDate": "1957-04-12",
"gender": "female"
}
},
{
"resource": {
"resourceType": "Observation",
"id": "o1",
"status": "final",
"code": {"text": "Creatinine"},
"effectiveDateTime": "2022-03-14T10:00:00Z",
"valueQuantity": {"value": 1.4, "unit": "mg/dL"},
"subject": {"reference": "Patient/p1"}
}
},
{
"resource": {
"resourceType": "Encounter",
"id": "e1",
"status": "finished",
"class": {"code": "AMB", "display": "Ambulatory"},
"period": {"start": "2022-03-14T09:30:00Z", "end": "2022-03-14T10:15:00Z"},
"reasonCode": [{"text": "Nephrology consult"}],
"subject": {"reference": "Patient/p1"}
}
},
{
"resource": {
"resourceType": "MedicationRequest",
"id": "m1",
"status": "active",
"intent": "order",
"medicationCodeableConcept": {"text": "Lisinopril 10 mg"},
"authoredOn": "2022-03-14",
"subject": {"reference": "Patient/p1"}
}
},
{
"resource": {
"resourceType": "Condition",
"id": "c1",
"clinicalStatus": {"coding": [{"code": "active"}]},
"code": {"text": "Chronic kidney disease, stage 3"},
"onsetDateTime": "2022-04-01T00:00:00Z",
"subject": {"reference": "Patient/p1"}
}
},
{
"resource": {
"resourceType": "Procedure",
"id": "pr1",
"status": "completed",
"code": {"text": "Renal ultrasound"},
"performedDateTime": "2022-04-15T11:00:00Z",
"subject": {"reference": "Patient/p1"}
}
},
{
"resource": {
"resourceType": "DiagnosticReport",
"id": "dr1",
"status": "final",
"code": {"text": "Comprehensive metabolic panel"},
"effectiveDateTime": "2022-03-14T10:30:00Z",
"conclusion": "Mildly elevated creatinine consistent with stage 3 CKD.",
"subject": {"reference": "Patient/p1"}
}
}
]
}