{ "$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-request-schema.json", "title": "CreateWorkspaceRequest", "description": "CreateWorkspaceRequest schema", "type": "object", "properties": { "description": { "allOf": [ { "$ref": "#/components/schemas/Description" }, { "description": "The description of the workspace." } ] }, "s3Location": { "allOf": [ { "$ref": "#/components/schemas/S3Location" }, { "description": "The ARN of the S3 bucket where resources associated with the workspace are stored." } ] }, "role": { "allOf": [ { "$ref": "#/components/schemas/RoleArn" }, { "description": "The ARN of the execution role associated with the workspace." } ] }, "tags": { "allOf": [ { "$ref": "#/components/schemas/TagMap" }, { "description": "Metadata that you can use to manage the workspace" } ] } }, "required": [ "s3Location", "role" ] }