ParentEntityUpdateRequest

The parent entity update request.

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
updateType object
parentEntityId object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-parent-entity-update-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-parent-entity-update-request-schema.json",
  "title": "ParentEntityUpdateRequest",
  "description": "The parent entity update request.",
  "type": "object",
  "properties": {
    "updateType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ParentEntityUpdateType"
        },
        {
          "description": "The type of the update."
        }
      ]
    },
    "parentEntityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ParentEntityId"
        },
        {
          "description": "The ID of the parent entity."
        }
      ]
    }
  },
  "required": [
    "updateType"
  ]
}