Amazon IoT TwinMaker · Schema
ListComponentTypesResponse
ListComponentTypesResponse schema
3D VisualizationDigital TwinIndustrial IoTIoT
Properties
| Name | Type | Description |
|---|---|---|
| workspaceId | object | |
| componentTypeSummaries | object | |
| nextToken | object | |
| maxResults | 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-list-component-types-response-schema.json",
"title": "ListComponentTypesResponse",
"description": "ListComponentTypesResponse schema",
"type": "object",
"properties": {
"workspaceId": {
"allOf": [
{
"$ref": "#/components/schemas/Id"
},
{
"description": "The ID of the workspace."
}
]
},
"componentTypeSummaries": {
"allOf": [
{
"$ref": "#/components/schemas/ComponentTypeSummaries"
},
{
"description": "A list of objects that contain information about the component types."
}
]
},
"nextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The string that specifies the next page of results."
}
]
},
"maxResults": {
"allOf": [
{
"$ref": "#/components/schemas/MaxResults"
},
{
"description": "Specifies the maximum number of results to display."
}
]
}
},
"required": [
"workspaceId",
"componentTypeSummaries"
]
}