Skip to content

Commit 83c23f2

Browse files
authored
Adding healthData output (#259)
1 parent b370c8a commit 83c23f2

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

typescript/examples/healthData/README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,34 @@ For example, given the following input statement:
2828
```
2929

3030
**Output**:
31+
32+
```json
33+
{
34+
"data": {
35+
"medication": [
36+
{
37+
"name": "Claritin",
38+
"dose": {
39+
"displayText": "unknown"
40+
},
41+
"frequency": {
42+
"displayText": "unknown"
43+
},
44+
"strength": {
45+
"displayText": "unknown"
46+
}
47+
}
48+
],
49+
"condition": [
50+
{
51+
"name": "Allergies",
52+
"startDate": {
53+
"displayText": "unknown"
54+
},
55+
"status": "unknown"
56+
}
57+
]
58+
},
59+
"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."
60+
}
61+
```

0 commit comments

Comments
 (0)