CreateWorkspaceResponse 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-workspace-response-schema.json", "title": "CreateWorkspaceResponse", "description": "CreateWorkspaceResponse schema", "type": "object", "properties": { "arn": { "allOf": [ { "$ref": "#/components/schemas/TwinMakerArn" }, { "description": "The ARN of the workspace." } ] }, "creationDateTime": { "allOf": [ { "$ref": "#/components/schemas/Timestamp" }, { "description": "The date and time when the workspace was created." } ] } }, "required": [ "arn", "creationDateTime" ] }