Google Sheets · Schema

RowData

Data about each cell in a row.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
values array The values in the row, one per column.
View JSON Schema on GitHub

JSON Schema

google-sheets-row-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RowData",
  "type": "object",
  "description": "Data about each cell in a row.",
  "properties": {
    "values": {
      "type": "array",
      "description": "The values in the row, one per column."
    }
  }
}