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/digital-twins/concepts-twins-graph.md
+17-46Lines changed: 17 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,63 +77,34 @@ When represented as a JSON object, a digital twin will display the following fie
77
77
| --- | --- |
78
78
|`$dtId`| A user-provided string representing the ID of the digital twin |
79
79
|`$etag`| Standard HTTP field assigned by the web server |
80
-
|`$conformance`| An enum containing the conformance status of this digital twin (*conformant*, *non-conformant*, *unknown*) |
80
+
|`$metadata.$model`| The ID of the model interface that characterizes this digital twin |
81
+
|`$metadata.<property-name>`| Other metadata information about properties of the digital twin |
81
82
|`<property-name>`| The value of a property in JSON (`string`, number type, or object) |
82
83
|`$relationships`| The URL of the path to the relationships collection. This field is absent if the digital twin has no outgoing relationship edges. |
83
-
|`$metadata.$model`|[Optional] The ID of the model interface that characterizes this digital twin |
84
-
|`$metadata.<property-name>.desiredValue`|[Only for writable properties] The desired value of the specified property |
85
-
|`$metadata.<property-name>.desiredVersion`|[Only for writable properties] The version of the desired value |
86
-
|`$metadata.<property-name>.ackVersion`| The version acknowledged by the device app implementing the digital twin |
87
-
|`$metadata.<property-name>.ackCode`|[Only for writable properties] The `ack` code returned by the device app implementing the digital twin |
88
-
|`$metadata.<property-name>.ackDescription`|[Only for writable properties] The `ack` description returned by the device app implementing the digital twin |
89
84
|`<component-name>`| A JSON object containing the component's property values and metadata, similar to those of the root object. This object exists even if the component has no properties. |
90
-
|`<component-name>.<property-name>`| The value of the component's property in JSON (`string`, number type, or object) |
91
85
|`<component-name>.$metadata`| The metadata information for the component, similar to the root-level `$metadata`|
86
+
|`<component-name>.<property-name>`| The value of the component's property in JSON (`string`, number type, or object) |
92
87
93
-
Here's an example of a digital twin formatted as a JSON object:
88
+
Here's an example of a digital twin formatted as a JSON object. This twin has two properties, Humidity and Temperature, and a component called Thermostat.
0 commit comments