Amazon IoT TwinMaker · Schema
WorkspaceSummary
An object that contains information about a workspace.
3D VisualizationDigital TwinIndustrial IoTIoT
Properties
| Name | Type | Description |
|---|---|---|
| workspaceId | object | |
| arn | object | |
| description | object | |
| creationDateTime | object | |
| updateDateTime | object |
JSON 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-workspace-summary-schema.json",
"title": "WorkspaceSummary",
"description": "An object that contains information about a workspace.",
"type": "object",
"properties": {
"workspaceId": {
"allOf": [
{
"$ref": "#/components/schemas/Id"
},
{
"description": "The ID of the workspace."
}
]
},
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/TwinMakerArn"
},
{
"description": "The ARN of the workspace."
}
]
},
"description": {
"allOf": [
{
"$ref": "#/components/schemas/Description"
},
{
"description": "The description of the workspace."
}
]
},
"creationDateTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The date and time when the workspace was created."
}
]
},
"updateDateTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The date and time when the workspace was last updated."
}
]
}
},
"required": [
"workspaceId",
"arn",
"creationDateTime",
"updateDateTime"
]
}