Google Sheets · Schema

EmbeddedObjectPosition

The position of an embedded object such as a chart.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
sheetId integer The sheet this is on.
overlayPosition object The position at which the object is overlaid on top of a grid.
newSheet boolean If true, the embedded object is put on a new sheet whose ID is chosen for you.
View JSON Schema on GitHub

JSON Schema

google-sheets-embedded-object-position-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EmbeddedObjectPosition",
  "type": "object",
  "description": "The position of an embedded object such as a chart.",
  "properties": {
    "sheetId": {
      "type": "integer",
      "description": "The sheet this is on."
    },
    "overlayPosition": {
      "type": "object",
      "description": "The position at which the object is overlaid on top of a grid."
    },
    "newSheet": {
      "type": "boolean",
      "description": "If true, the embedded object is put on a new sheet whose ID is chosen for you."
    }
  }
}