Amazon IoT TwinMaker · JSON Structure

Iot Twinmaker Update Component Type Response Structure

UpdateComponentTypeResponse schema

Type: object Properties: 4 Required: 4
3D VisualizationDigital TwinIndustrial IoTIoT

UpdateComponentTypeResponse is a JSON Structure definition published by Amazon IoT TwinMaker, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

workspaceId arn componentTypeId state

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-update-component-type-response-structure.json",
  "name": "UpdateComponentTypeResponse",
  "description": "UpdateComponentTypeResponse schema",
  "type": "object",
  "properties": {
    "workspaceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "description": "The ID of the workspace that contains the component type."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TwinMakerArn"
        },
        {
          "description": "The ARN of the component type."
        }
      ]
    },
    "componentTypeId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentTypeId"
        },
        {
          "description": "The ID of the component type."
        }
      ]
    },
    "state": {
      "allOf": [
        {
          "$ref": "#/components/schemas/State"
        },
        {
          "description": "The current state of the component type."
        }
      ]
    }
  },
  "required": [
    "workspaceId",
    "arn",
    "componentTypeId",
    "state"
  ]
}