Amazon IoT TwinMaker · Schema
WorkspaceSummaries
WorkspaceSummaries schema
3D VisualizationDigital TwinIndustrial IoTIoT
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-summaries-schema.json",
"title": "WorkspaceSummaries",
"description": "WorkspaceSummaries schema",
"type": "array",
"items": {
"type": "object",
"required": [
"workspaceId",
"arn",
"creationDateTime",
"updateDateTime"
],
"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."
}
]
}
},
"description": "An object that contains information about a workspace."
}
}