Amazon IoT TwinMaker · JSON Structure

Iot Twinmaker Create Entity Response Structure

CreateEntityResponse schema

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

CreateEntityResponse 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

entityId arn creationDateTime 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-create-entity-response-structure.json",
  "name": "CreateEntityResponse",
  "description": "CreateEntityResponse schema",
  "type": "object",
  "properties": {
    "entityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntityId"
        },
        {
          "description": "The ID of the entity."
        }
      ]
    },
    "arn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TwinMakerArn"
        },
        {
          "description": "The ARN of the entity."
        }
      ]
    },
    "creationDateTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date and time when the entity was created."
        }
      ]
    },
    "state": {
      "allOf": [
        {
          "$ref": "#/components/schemas/State"
        },
        {
          "description": "The current state of the entity."
        }
      ]
    }
  },
  "required": [
    "entityId",
    "arn",
    "creationDateTime",
    "state"
  ]
}