Amazon IoT TwinMaker · JSON Structure

Iot Twinmaker Workspace Summary Structure

An object that contains information about a workspace.

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

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

Properties

workspaceId arn description creationDateTime updateDateTime

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-workspace-summary-structure.json",
  "name": "WorkspaceSummary",
  "description": "An object that contains information about a workspace.",
  "type": "object",
  "properties": {
    "workspaceId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "description": "The ID of the workspace."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TwinMakerArn"
        },
        {
          "description": "The ARN of the workspace."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "The description of the workspace."
        }
      ]
    },
    "creationDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time when the workspace was created."
        }
      ]
    },
    "updateDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time when the workspace was last updated."
        }
      ]
    }
  },
  "required": [
    "workspaceId",
    "arn",
    "creationDateTime",
    "updateDateTime"
  ]
}