Amazon IoT TwinMaker · JSON Structure

Iot Twinmaker Relationship Value Structure

A value that associates a component and an entity.

Type: object Properties: 2
3D VisualizationDigital TwinIndustrial IoTIoT

RelationshipValue is a JSON Structure definition published by Amazon IoT TwinMaker, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

targetEntityId targetComponentName

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-structure/iot-twinmaker-relationship-value-structure.json",
  "name": "RelationshipValue",
  "description": "A value that associates a component and an entity.",
  "type": "object",
  "properties": {
    "targetEntityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": "The ID of the target entity associated with this relationship value."
        }
      ]
    },
    "targetComponentName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the target component associated with the relationship value."
        }
      ]
    }
  }
}