-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test case for fixing bug evaluating resolve() in contained resources …
…when doing slicing
- Loading branch information
Grahame Grieve
committed
Oct 14, 2024
1 parent
050e265
commit 5d90800
Showing
3 changed files
with
1,835 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,40 @@ | ||
{ | ||
"resourceType" : "List", | ||
"id" : "ListExample", | ||
"text" : { | ||
"status" : "generated", | ||
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: List ListExample</b></p><a name=\"ListExample\"> </a><a name=\"hcListExample\"> </a><a name=\"ListExample-en-US\"> </a><table class=\"clstu\"><tr><td>Mode: Snapshot List </td><td>Status: Current </td></tr><tr><td/></tr></table><table class=\"grid\"><tr style=\"backgound-color: #eeeeee\"><td><b>Items</b></td></tr><tr><td><a href=\"#hcListExample/MyAppointmentExample\">Appointment: status = proposed</a></td></tr></table></div>" | ||
}, | ||
"contained" : [{ | ||
"resourceType" : "Appointment", | ||
"id" : "MyAppointmentExample", | ||
"meta" : { | ||
"profile" : ["http://fhir.geniesolutions.io/StructureDefinition/my-appointment-profile"] | ||
}, | ||
"status" : "proposed", | ||
"supportingInformation" : [{ | ||
"reference" : "#DeviceExample" | ||
}], | ||
"participant" : [{ | ||
"actor" : { | ||
"display" : "Fred" | ||
}, | ||
"status" : "accepted" | ||
}] | ||
}, | ||
{ | ||
"resourceType" : "Device", | ||
"id" : "DeviceExample", | ||
"deviceName" : [{ | ||
"name" : "Saline bag prosthesis for imaging procedure", | ||
"type" : "user-friendly-name" | ||
}] | ||
}], | ||
"status" : "current", | ||
"mode" : "snapshot", | ||
"entry" : [{ | ||
"item" : { | ||
"reference" : "#MyAppointmentExample" | ||
} | ||
}] | ||
} |
Oops, something went wrong.