You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -227,22 +227,22 @@ goal is to know, at call time:
227
227
228
228
| Key | Description |
229
229
| --- | ----------- |
230
-
|`p`| Patient demographics. |
231
-
|`a1c`| Most recent Hemoglobin A1c reading for this patient. |
232
-
| `u` | Information on the current user (Practitioner).
230
+
|`patient`| Patient demographics. |
231
+
|`hemoglobin-a1c`| Most recent Hemoglobin A1c reading for this patient. |
232
+
| `user` | Information on the current user (Practitioner).
233
233
234
234
#### Example prefetch response
235
235
236
236
```json
237
237
{
238
238
"prefetch": {
239
-
"p":{
239
+
"patient":{
240
240
"resourceType": "Patient",
241
241
"gender": "male",
242
242
"birthDate": "1974-12-25",
243
243
"...": "<snipped for brevity>"
244
244
},
245
-
"a1c": {
245
+
"hemoglobin-a1c": {
246
246
"resourceType": "Bundle",
247
247
"type": "searchset",
248
248
"entry": [{
@@ -264,9 +264,9 @@ goal is to know, at call time:
264
264
```
265
265
266
266
The response is augmented to include two prefetch values, where the dictionary
267
-
keys match the request keys (`p` and `a1c` in this case).
267
+
keys match the request keys (`patient` and `hemoglobin-a1c` in this case).
268
268
269
-
Note that the missing `u` key indicates that either the EHR has decided not to satisfy this particular prefetch template or it was not able to retrieve this prefetched data. The CDS Service is responsible for retrieving this Practitioner data from the FHIR server (if required).
269
+
Note that the missing `user` key indicates that either the EHR has decided not to satisfy this particular prefetch template or it was not able to retrieve this prefetched data. The CDS Service is responsible for retrieving this Practitioner data from the FHIR server (if required).
0 commit comments