Google Sheets · JSON Structure

Google Sheets Text Format Structure

Type: object Properties: 6
Google WorkspaceProductivitySpreadsheets

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

Properties

fontFamily fontSize bold italic strikethrough underline

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "TextFormat",
  "type": "object",
  "properties": {
    "fontFamily": {
      "type": "string"
    },
    "fontSize": {
      "type": "integer"
    },
    "bold": {
      "type": "boolean"
    },
    "italic": {
      "type": "boolean"
    },
    "strikethrough": {
      "type": "boolean"
    },
    "underline": {
      "type": "boolean"
    }
  }
}