From bc348c725b0986d6065e32ffe7d760fb9c40b3fd Mon Sep 17 00:00:00 2001 From: Anna Date: Thu, 25 May 2023 08:40:12 +0200 Subject: [PATCH] #335 updated patient id and added patient name --- input/pagecontent/quick-start.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/input/pagecontent/quick-start.xml b/input/pagecontent/quick-start.xml index 4414a2d6..be0c7733 100644 --- a/input/pagecontent/quick-start.xml +++ b/input/pagecontent/quick-start.xml @@ -248,7 +248,7 @@

Now the sandbox is configured to use the CDS Hooks service that you created above. The next step is to push a Patient resource to that service that we can then use to query via the Sandbox. To do this, you're going to want to copy the JSON representation of a Patient resource from the request-example-rec-10-patient-view-no-screenings.json file above and then PUT that to the FHIR server created above.

-  PUT http://localhost:8080/fhir/Patient/example-rec-10-no-screenings
+  PUT http://localhost:8080/fhir/Patient/example-rec-10-patient-view-no-screenings
     

The patient resource JSON:

@@ -257,8 +257,16 @@ { "resourceType": "Patient", "id": "example-rec-10-patient-view-no-screenings", + "name": [ + { + "family": "Smith", + "given": [ + "Jane" + ] + } + ], "gender": "female", - "birthDate": "2003-05-01" + "birthDate": "1983-01-10" }