Amazon IoT Core · JSON Structure

Iot Core Create Thing Type Response Structure

The output of the CreateThingType operation.

Type: object Properties: 3
Device ManagementIoTMQTTMessage Routing

CreateThingTypeResponse is a JSON Structure definition published by Amazon IoT Core, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

thingTypeName thingTypeArn thingTypeId

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-core/refs/heads/main/json-structure/iot-core-create-thing-type-response-structure.json",
  "name": "CreateThingTypeResponse",
  "description": "The output of the CreateThingType operation.",
  "type": "object",
  "properties": {
    "thingTypeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingTypeName"
        },
        {
          "description": "The name of the thing type."
        }
      ]
    },
    "thingTypeArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingTypeArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the thing type."
        }
      ]
    },
    "thingTypeId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingTypeId"
        },
        {
          "description": "The thing type ID."
        }
      ]
    }
  }
}