Amazon IoT TwinMaker · JSON Structure

Iot Twinmaker Scene Summary Structure

An object that contains information about a scene.

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

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

Properties

sceneId contentLocation arn creationDateTime updateDateTime description

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-scene-summary-structure.json",
  "name": "SceneSummary",
  "description": "An object that contains information about a scene.",
  "type": "object",
  "properties": {
    "sceneId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "description": "The ID of the scene."
        }
      ]
    },
    "contentLocation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/S3Url"
        },
        {
          "description": "The relative path that specifies the location of the content definition file."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TwinMakerArn"
        },
        {
          "description": "The ARN of the scene."
        }
      ]
    },
    "creationDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time when the scene was created."
        }
      ]
    },
    "updateDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time when the scene was last updated."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "The scene description."
        }
      ]
    }
  },
  "required": [
    "sceneId",
    "contentLocation",
    "arn",
    "creationDateTime",
    "updateDateTime"
  ]
}