Google Sheets · Schema

SpreadsheetTheme

Represents spreadsheet theme.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
primaryFontFamily string Name of the primary font family.
themeColors array The spreadsheet theme color pairs.
View JSON Schema on GitHub

JSON Schema

google-sheets-spreadsheet-theme-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SpreadsheetTheme",
  "type": "object",
  "description": "Represents spreadsheet theme.",
  "properties": {
    "primaryFontFamily": {
      "type": "string",
      "description": "Name of the primary font family."
    },
    "themeColors": {
      "type": "array",
      "description": "The spreadsheet theme color pairs."
    }
  }
}