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
Copy file name to clipboardExpand all lines: articles/healthcare-apis/iot/how-to-configure-device-mappings.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ author: msjasteppe
5
5
ms.service: healthcare-apis
6
6
ms.subservice: fhir
7
7
ms.topic: how-to
8
-
ms.date: 1/12/2023
8
+
ms.date: 02/09/2023
9
9
ms.author: jasteppe
10
10
---
11
11
@@ -198,7 +198,7 @@ You can define one or more templates within the MedTech service device mapping.
198
198
199
199
|Template Type|Description|
200
200
|-------------|-----------|
201
-
|[CalculatedContentTemplate](how-to-use-calculatedcontenttemplate-mappings.md)|A template that supports writing expressions using one of several expression languages. Supports data transformation via the use of JMESPath functions.|
201
+
|[CalculatedContent](how-to-use-calculatedcontent-mappings.md)|A template that supports writing expressions using one of several expression languages. Supports data transformation via the use of JMESPath functions.|
202
202
|[IotJsonPathContentTemplate](how-to-use-iot-jsonpath-content-mappings.md)|A template that supports messages sent from Azure Iot Hub or the Legacy Export Data feature of Azure Iot Central.
Copy file name to clipboardExpand all lines: articles/healthcare-apis/iot/how-to-use-calculatedcontent-mappings.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,21 @@
1
1
---
2
-
title: How to use CalculatedContentTemplate mappings with the MedTech service device mappings - Azure Health Data Services
3
-
description: This article describes how to use CalculatedContentTemplate mappings with the MedTech service device mappings.
2
+
title: How to use CalculatedContentT mappings with the MedTech service device mappings - Azure Health Data Services
3
+
description: This article describes how to use CalculatedContent mappings with the MedTech service device mappings.
4
4
author: msjasteppe
5
5
ms.service: healthcare-apis
6
6
ms.subservice: fhir
7
7
ms.topic: how-to
8
-
ms.date: 1/12/2023
8
+
ms.date: 02/09/2023
9
9
ms.author: jasteppe
10
10
---
11
11
12
-
# How to use CalculatedContentTemplate mappings
12
+
# How to use CalculatedContent mappings
13
13
14
-
This article describes how to use CalculatedContentTemplate mappings with MedTech service device mapping template.
14
+
This article describes how to use CalculatedContent mappings with MedTech service device mappings.
15
15
16
-
## CalculatedContentTemplate
16
+
## CalculatedContent mappings
17
17
18
-
MedTech service provides an expression-based content template to both match the wanted template and extract values. **Expressions** may be used by either JSONPath or JMESPath. Each expression within the template may choose its own expression language.
18
+
The MedTech service provides an expression-based content template to both match the wanted template and extract values. **Expressions** may be used by either JSONPath or JMESPath. Each expression within the template may choose its own expression language.
19
19
20
20
> [!NOTE]
21
21
> If an expression language isn't defined, the default expression language configured for the template will be used. The default is JSONPath but can be overwritten if needed.
@@ -44,7 +44,7 @@ In the example below, *typeMatchExpression* is defined as:
44
44
```
45
45
46
46
> [!TIP]
47
-
> The default expression language to use for a MedTech service device mapping template is JsonPath. If you want to use JsonPath, the expression alone may be supplied.
47
+
> The default expression language to use for a MedTech service device mappings is JsonPath. If you want to use JsonPath, the expression alone may be supplied.
48
48
49
49
```json
50
50
"templateType": "CalculatedContent",
@@ -55,7 +55,7 @@ In the example below, *typeMatchExpression* is defined as:
55
55
}
56
56
```
57
57
58
-
The default expression language to use for a MedTech service device template can be explicitly set using the `defaultExpressionLanguage` parameter:
58
+
The default expression language to use for a MedTech service device mappings can be explicitly set using the `defaultExpressionLanguage` parameter:
59
59
60
60
```json
61
61
"templateType": "CalculatedContent",
@@ -67,7 +67,7 @@ The default expression language to use for a MedTech service device template can
67
67
}
68
68
```
69
69
70
-
The CalculatedContentTemplate allows matching on and extracting values from an Azure Event Hubs message using **Expressions** as defined below:
70
+
The CalculatedContent mappings allow matching on and extracting values from an Azure Event Hubs message using **Expressions** as defined below:
71
71
72
72
|Property|Description|Example|
73
73
|--------|-----------|-------|
@@ -92,13 +92,13 @@ When specifying the language to use for the expression, the below values are val
92
92
| JMESPath |**JmesPath**|
93
93
94
94
>[!TIP]
95
-
> For more information on JSONPath, see [JSONPath](https://goessner.net/articles/JsonPath/). The [CalculatedContentTemplate](#calculatedcontenttemplate) uses the [JSON .NET implementation](https://www.newtonsoft.com/json/help/html/QueryJsonSelectTokenJsonPath.htm) for resolving JSONPath expressions.
95
+
> For more information on JSONPath, see [JSONPath](https://goessner.net/articles/JsonPath/). CalculatedContent mappings use the [JSON .NET implementation](https://www.newtonsoft.com/json/help/html/QueryJsonSelectTokenJsonPath.htm) for resolving JSONPath expressions.
96
96
>
97
-
> For more information on JMESPath, see [JMESPath](https://jmespath.org/specification.html). The [CalculatedContentTemplate](#calculatedcontenttemplate) uses the [JMESPath .NET implementation](https://github.com/jdevillard/JmesPath.Net) for resolving JMESPath expressions.
97
+
> For more information on JMESPath, see [JMESPath](https://jmespath.org/specification.html). CalculatedContent mappings use the [JMESPath .NET implementation](https://github.com/jdevillard/JmesPath.Net) for resolving JMESPath expressions.
98
98
99
99
### Custom functions
100
100
101
-
A set of MedTech service custom functions is also available. The MedTech service custom functions are outside of the functions provided as part of the JMESPath specification. For more information on the MedTech service custom functions, see [How to use MedTech service custom functions](how-to-use-custom-functions.md).
101
+
A set of MedTech service custom functions are also available. The MedTech service custom functions are outside of the functions provided as part of the JMESPath specification. For more information on the MedTech service custom functions, see [How to use MedTech service custom functions](how-to-use-custom-functions.md).
102
102
103
103
### Matched Token
104
104
@@ -542,7 +542,7 @@ In the below example, height data arrives in either inches or meters. We want al
542
542
543
543
## Next steps
544
544
545
-
In this article, you learned how to configure the MedTech service device mappings using CalculatedContentTemplate mappings.
545
+
In this article, you learned how to configure the MedTech service device mappings using CalculatedContent mappings.
546
546
547
547
To learn how to configure FHIR destination mappings, see
Copy file name to clipboardExpand all lines: articles/healthcare-apis/release-notes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -537,7 +537,7 @@ Enabled DICOM service to work with workspaces that have names beginning with a l
537
537
538
538
**MedTech service normalized improvements with calculations to support and enhance health data standardization.**
539
539
540
-
See [Use Device mappings](./../healthcare-apis/iot/how-to-use-device-mappings.md) and [Calculated Content Templates](./../healthcare-apis/iot/how-to-use-calculatedcontenttemplate-mappings.md)
540
+
See [Use device mappings](./../healthcare-apis/iot/how-to-use-device-mappings.md) and [CalculatedContent](./../healthcare-apis/iot/how-to-use-calculatedcontent-mappings.md)
0 commit comments