Skip to content

Commit 054d987

Browse files
committed
Incorp
1 parent 6281438 commit 054d987

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/digital-twins/how-to-manage-twin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ You can use the [Import Jobs API](concepts-apis-sdks.md#bulk-import-with-the-imp
8686
>[!TIP]
8787
>The Import Jobs API also allows models and relationships to be imported in the same call, to create all parts of a graph at once. For more about this process, see [Upload models, twins, and relationships in bulk with the Import Jobs API](how-to-manage-graph.md#upload-models-twins-and-relationships-in-bulk-with-the-import-jobs-api).
8888
89-
To import twins in bulk, you need to structure your twins (and any other resources included in the bulk import job) as an *NDJSON* file. The `Twins` section comes after the `Models` section (and before the `Relationships` section). Twins defined in the file can reference models that are either defined in this file or already present in the instance. The twins defined in the file can optionally include initialization of the twin's properties.
89+
To import twins in bulk, you need to structure your twins (and any other resources included in the bulk import job) as an *NDJSON* file. The `Twins` section comes after the `Models` section (and before the `Relationships` section). Twins defined in the file can reference models that are either defined in this file or already present in the instance. The twins defined in the file can optionally include initialization of twin properties.
9090
9191
You can view an example import file and a sample project for creating these files in the [Import Jobs API introduction](concepts-apis-sdks.md#bulk-import-with-the-import-jobs-api).
9292
@@ -112,7 +112,7 @@ The `BasicDigitalTwin` helper class also gives you access to properties defined
112112
Only properties that are set at least once are returned when you retrieve a twin with the `GetDigitalTwin()` method.
113113
114114
>[!TIP]
115-
>The `displayName` for a twin is part of its model metadata, so it shows when getting data for the twin instance. To see this value, you can [retrieve it from the model](how-to-manage-model.md#retrieve-models).
115+
>The `displayName` for a twin is part of its model metadata, so it doesn't show when getting data for the twin instance. To see this value, you can [retrieve it from the model](how-to-manage-model.md#retrieve-models).
116116
117117
To retrieve multiple twins using a single API call, see the Query API examples in [Query the twin graph](how-to-query-graph.md).
118118
@@ -171,7 +171,7 @@ A single patch call can update as many properties on a single twin as you want (
171171
> [!TIP]
172172
> After you create or update a twin, there might be a latency of up to 10 seconds before the changes will be reflected in [queries](how-to-query-graph.md). The `GetDigitalTwin` API (described [earlier in this article](#get-data-for-a-digital-twin)) doesn't experience this delay, so use the API call instead of querying to see your newly updated twins if you need an instant response.
173173
174-
Here's an example of JSON Patch code. This document replaces the *mass* and *radius* property values of the applicable digital twin. This example shows the JSON Patch `replace` operation, which replaces the value of an existing property.
174+
Here's an example of JSON Patch code. This document replaces the *mass* and *radius* property values of a digital twin. This example shows the JSON Patch `replace` operation, which replaces the value of an existing property.
175175

176176
:::code language="json" source="~/digital-twins-docs-samples/models/patch.json":::
177177

0 commit comments

Comments
 (0)