Skip to content

Commit 0bf6c71

Browse files
committed
Minor fix
1 parent 27ab5bd commit 0bf6c71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/healthcare-apis/iot/how-to-use-iotjsonpathcontent-templates.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ In this example, we're using a device message that is capturing `heartRate` data
9090
```json
9191
{
9292
"PatientId": "patient1",
93-
"HeartRate" : "78"
93+
"HeartRate" : 78
9494
}
9595
```
9696

@@ -105,7 +105,7 @@ The IoT hub enriches and routes the device message to the event hub before the M
105105
{
106106
"Body": {
107107
"PatientId": "patient1",
108-
"HeartRate": "78"
108+
"HeartRate": 78
109109
},
110110
"SystemProperties": {
111111
"iothub-enqueuedtime": "2023-07-25T20:41:26.046Z",

0 commit comments

Comments
 (0)