ExecuteQueryResponse 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-execute-query-response-schema.json", "title": "ExecuteQueryResponse", "description": "ExecuteQueryResponse schema", "type": "object", "properties": { "columnDescriptions": { "allOf": [ { "$ref": "#/components/schemas/ColumnDescriptions" }, { "description": "A list of ColumnDescription objects." } ] }, "rows": { "allOf": [ { "$ref": "#/components/schemas/Rows" }, { "description": "Represents a single row in the query results." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "The string that specifies the next page of results." } ] } } }