Rows

Rows schema

3D VisualizationDigital TwinIndustrial IoTIoT
View JSON Schema on GitHub

JSON Schema

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