Google Sheets · Schema

DimensionProperties

Properties about a dimension.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
hiddenByFilter boolean True if this dimension is being filtered.
hiddenByUser boolean True if this dimension is explicitly hidden.
pixelSize integer The height (for rows) or width (for columns) of the dimension in pixels.
developerMetadata array The developer metadata associated with a single row or column.
View JSON Schema on GitHub

JSON Schema

google-sheets-dimension-properties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DimensionProperties",
  "type": "object",
  "description": "Properties about a dimension.",
  "properties": {
    "hiddenByFilter": {
      "type": "boolean",
      "description": "True if this dimension is being filtered."
    },
    "hiddenByUser": {
      "type": "boolean",
      "description": "True if this dimension is explicitly hidden."
    },
    "pixelSize": {
      "type": "integer",
      "description": "The height (for rows) or width (for columns) of the dimension in pixels."
    },
    "developerMetadata": {
      "type": "array",
      "description": "The developer metadata associated with a single row or column."
    }
  }
}