Google Sheets · JSON Structure

Google Sheets Grid Data Structure

Type: object Properties: 5
Google WorkspaceProductivitySpreadsheets

GridData is a JSON Structure definition published by Google Sheets, describing 5 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

startRow startColumn rowData rowMetadata columnMetadata

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "GridData",
  "type": "object",
  "properties": {
    "startRow": {
      "type": "integer"
    },
    "startColumn": {
      "type": "integer"
    },
    "rowData": {
      "type": "array"
    },
    "rowMetadata": {
      "type": "array"
    },
    "columnMetadata": {
      "type": "array"
    }
  }
}