Google Sheets · Schema
SheetProperties
Properties of a sheet.
Google WorkspaceProductivitySpreadsheets
Properties
| Name | Type | Description |
|---|---|---|
| sheetId | integer | The ID of the sheet. Must be non-negative. This field cannot be changed once set. |
| title | string | The name of the sheet. |
| index | integer | The index of the sheet within the spreadsheet. |
| sheetType | string | The type of sheet. |
| hidden | boolean | True if the sheet is hidden in the UI, false if visible. |
| rightToLeft | boolean | True if the sheet is an RTL sheet instead of an LTR sheet. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "SheetProperties",
"type": "object",
"description": "Properties of a sheet.",
"properties": {
"sheetId": {
"type": "integer",
"description": "The ID of the sheet. Must be non-negative. This field cannot be changed once set."
},
"title": {
"type": "string",
"description": "The name of the sheet."
},
"index": {
"type": "integer",
"description": "The index of the sheet within the spreadsheet."
},
"sheetType": {
"type": "string",
"description": "The type of sheet."
},
"hidden": {
"type": "boolean",
"description": "True if the sheet is hidden in the UI, false if visible."
},
"rightToLeft": {
"type": "boolean",
"description": "True if the sheet is an RTL sheet instead of an LTR sheet."
}
}
}