CreateComponentTypeResponse schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-twinmaker/refs/heads/main/json-schema/iot-twinmaker-create-component-type-response-schema.json", "title": "CreateComponentTypeResponse", "description": "CreateComponentTypeResponse schema", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/TwinMakerArn" }, { "description": "The ARN of the component type." } ] }, "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 component type." } ] } }, "required": [ "arn", "creationDateTime", "state" ] }