From 1804b851272fc10ae811c752258215040a78ca59 Mon Sep 17 00:00:00 2001 From: Benny Neugebauer Date: Wed, 28 Aug 2024 16:24:58 +0200 Subject: [PATCH] Adding healthData output --- typescript/examples/healthData/README.md | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/typescript/examples/healthData/README.md b/typescript/examples/healthData/README.md index 078ffc93..05d2aa1d 100644 --- a/typescript/examples/healthData/README.md +++ b/typescript/examples/healthData/README.md @@ -28,3 +28,34 @@ For example, given the following input statement: ``` **Output**: + +```json +{ + "data": { + "medication": [ + { + "name": "Claritin", + "dose": { + "displayText": "unknown" + }, + "frequency": { + "displayText": "unknown" + }, + "strength": { + "displayText": "unknown" + } + } + ], + "condition": [ + { + "name": "Allergies", + "startDate": { + "displayText": "unknown" + }, + "status": "unknown" + } + ] + }, + "message": "Can you provide more details about your medication and condition? For example, the dose and frequency of your medication, and the start date and status of your condition." +} +```