Amazon IoT TwinMaker · JSON Structure

Iot Twinmaker Create Scene Request Structure

CreateSceneRequest schema

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

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

Properties

sceneId contentLocation description capabilities tags sceneMetadata

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-create-scene-request-structure.json",
  "name": "CreateSceneRequest",
  "description": "CreateSceneRequest schema",
  "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."
        }
      ]
    },
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "The description for this scene."
        }
      ]
    },
    "capabilities": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SceneCapabilities"
        },
        {
          "description": "A list of capabilities that the scene uses to render itself."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "Metadata that you can use to manage the scene."
        }
      ]
    },
    "sceneMetadata": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SceneMetadataMap"
        },
        {
          "description": "The request metadata."
        }
      ]
    }
  },
  "required": [
    "sceneId",
    "contentLocation"
  ]
}