Amazon IoT TwinMaker · JSON Structure

Iot Twinmaker Status Structure

An object that represents the status of an entity, component, component type, or workspace.

Type: object Properties: 2
3D VisualizationDigital TwinIndustrial IoTIoT

Status 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

state error

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-status-structure.json",
  "name": "Status",
  "description": "An object that represents the status of an entity, component, component type, or workspace.",
  "type": "object",
  "properties": {
    "state": {
      "allOf": [
        {
          "$ref": "#/components/schemas/State"
        },
        {
          "description": "The current state of the entity, component, component type, or workspace."
        }
      ]
    },
    "error": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorDetails"
        },
        {
          "description": "The error message."
        }
      ]
    }
  }
}