Row

Represents a single row in the query results.

3D VisualizationDigital TwinIndustrial IoTIoT

Properties

Name Type Description
rowData object
View JSON Schema on GitHub

JSON Schema

iot-twinmaker-row-schema.json Raw ↑
{
  "$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-row-schema.json",
  "title": "Row",
  "description": "Represents a single row in the query results.",
  "type": "object",
  "properties": {
    "rowData": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RowData"
        },
        {
          "description": "The data in a row of query results."
        }
      ]
    }
  }
}