{ "version": "v4", "schemas": { "ValueRange": { "id": "ValueRange", "description": "Data within a range of the spreadsheet.", "type": "object", "properties": { "range": { "description": "The range the values cover, in [A1 notation](/sheets/api/guides/concepts#cell). For output, this range indicates the entire requested range, even though the values will exclude trailing rows and columns. When appending values, this field represents the range to search for a table, after which values will be appended.", "type": "string" }, "majorDimension": { "description": "The major dimension of the values. For output, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `range=A1:B2,majorDimension=ROWS` will return `[[1,2],[3,4]]`, whereas requesting `range=A1:B2,majorDimension=COLUMNS` will return `[[1,3],[2,4]]`. For input, with `range=A1:B2,majorDimension=ROWS` then `[[1,2],[3,4]]` will set `A1=1,B1=2,A2=3,B2=4`. With `range=A1:B2,majorDimension=COLUMNS` then `[[1,2],[3,4]]` will set `A1=1,B1=3,A2=2,B2=4`. When writing, if this field is not set, it defaults to ROWS.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] }, "values": { "description": "The data that was read or to be written. This is an array of arrays, the outer array representing all the data and each inner array representing a major dimension. Each item in the inner array corresponds with one cell. For output, empty trailing rows and columns will not be included. For input, supported value types are: bool, string, and double. Null values will be skipped. To set a cell to an empty value, set the string value to an empty string.", "type": "array", "items": { "type": "array", "items": { "type": "any" } } } } }, "UpdateValuesResponse": { "id": "UpdateValuesResponse", "description": "The response when updating a range of values in a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The spreadsheet the updates were applied to.", "type": "string" }, "updatedRange": { "description": "The range (in A1 notation) that updates were applied to.", "type": "string" }, "updatedRows": { "description": "The number of rows where at least one cell in the row was updated.", "type": "integer", "format": "int32" }, "updatedColumns": { "description": "The number of columns where at least one cell in the column was updated.", "type": "integer", "format": "int32" }, "updatedCells": { "description": "The number of cells updated.", "type": "integer", "format": "int32" }, "updatedData": { "description": "The values of the cells after updates were applied. This is only included if the request's `includeValuesInResponse` field was `true`.", "$ref": "ValueRange" } } }, "AppendValuesResponse": { "id": "AppendValuesResponse", "description": "The response when updating a range of values in a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The spreadsheet the updates were applied to.", "type": "string" }, "tableRange": { "description": "The range (in A1 notation) of the table that values are being appended to (before the values were appended). Empty if no table was found.", "type": "string" }, "updates": { "description": "Information about the updates that were applied.", "$ref": "UpdateValuesResponse" } } }, "ClearValuesRequest": { "id": "ClearValuesRequest", "description": "The request for clearing a range of values in a spreadsheet.", "type": "object", "properties": {} }, "ClearValuesResponse": { "id": "ClearValuesResponse", "description": "The response when clearing a range of values in a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The spreadsheet the updates were applied to.", "type": "string" }, "clearedRange": { "description": "The range (in A1 notation) that was cleared. (If the request was for an unbounded range or a ranger larger than the bounds of the sheet, this will be the actual range that was cleared, bounded to the sheet's limits.)", "type": "string" } } }, "BatchGetValuesResponse": { "id": "BatchGetValuesResponse", "description": "The response when retrieving more than one range of values in a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The ID of the spreadsheet the data was retrieved from.", "type": "string" }, "valueRanges": { "description": "The requested values. The order of the ValueRanges is the same as the order of the requested ranges.", "type": "array", "items": { "$ref": "ValueRange" } } } }, "BatchUpdateValuesRequest": { "id": "BatchUpdateValuesRequest", "description": "The request for updating more than one range of values in a spreadsheet.", "type": "object", "properties": { "valueInputOption": { "description": "How the input data should be interpreted.", "type": "string", "enumDescriptions": [ "Default input value. This value must not be used.", "The values the user has entered will not be parsed and will be stored as-is.", "The values will be parsed as if the user typed them into the UI. Numbers will stay as numbers, but strings may be converted to numbers, dates, etc. following the same rules that are applied when entering text into a cell via the Google Sheets UI." ], "enum": [ "INPUT_VALUE_OPTION_UNSPECIFIED", "RAW", "USER_ENTERED" ] }, "data": { "description": "The new values to apply to the spreadsheet.", "type": "array", "items": { "$ref": "ValueRange" } }, "includeValuesInResponse": { "description": "Determines if the update response should include the values of the cells that were updated. By default, responses do not include the updated values. The `updatedData` field within each of the BatchUpdateValuesResponse.responses contains the updated values. If the range to write was larger than the range actually written, the response includes all values in the requested range (excluding trailing empty rows and columns).", "type": "boolean" }, "responseValueRenderOption": { "description": "Determines how values in the response should be rendered. The default render option is FORMATTED_VALUE.", "type": "string", "enumDescriptions": [ "Values will be calculated & formatted in the response according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return `\"$1.23\"`.", "Values will be calculated, but not formatted in the reply. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return the number `1.23`.", "Values will not be calculated. The reply will include the formulas. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then A2 would return `\"=A1\"`. Sheets treats date and time values as decimal values. This lets you perform arithmetic on them in formulas. For more information on interpreting date and time values, see [About date & time values](https://developers.google.com/sheets/api/guides/formats#about_date_time_values)." ], "enum": [ "FORMATTED_VALUE", "UNFORMATTED_VALUE", "FORMULA" ] }, "responseDateTimeRenderOption": { "description": "Determines how dates, times, and durations in the response should be rendered. This is ignored if response_value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.", "type": "string", "enumDescriptions": [ "Instructs date, time, datetime, and duration fields to be output as doubles in \"serial number\" format, as popularized by Lotus 1-2-3. The whole number portion of the value (left of the decimal) counts the days since December 30th 1899. The fractional portion (right of the decimal) counts the time as a fraction of the day. For example, January 1st 1900 at noon would be 2.5, 2 because it's 2 days after December 30th 1899, and .5 because noon is half a day. February 1st 1900 at 3pm would be 33.625. This correctly treats the year 1900 as not a leap year.", "Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale)." ], "enum": [ "SERIAL_NUMBER", "FORMATTED_STRING" ] } } }, "BatchUpdateValuesResponse": { "id": "BatchUpdateValuesResponse", "description": "The response when updating a range of values in a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The spreadsheet the updates were applied to.", "type": "string" }, "totalUpdatedRows": { "description": "The total number of rows where at least one cell in the row was updated.", "type": "integer", "format": "int32" }, "totalUpdatedColumns": { "description": "The total number of columns where at least one cell in the column was updated.", "type": "integer", "format": "int32" }, "totalUpdatedCells": { "description": "The total number of cells updated.", "type": "integer", "format": "int32" }, "totalUpdatedSheets": { "description": "The total number of sheets where at least one cell in the sheet was updated.", "type": "integer", "format": "int32" }, "responses": { "description": "One UpdateValuesResponse per requested range, in the same order as the requests appeared.", "type": "array", "items": { "$ref": "UpdateValuesResponse" } } } }, "BatchClearValuesRequest": { "id": "BatchClearValuesRequest", "description": "The request for clearing more than one range of values in a spreadsheet.", "type": "object", "properties": { "ranges": { "description": "The ranges to clear, in [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell).", "type": "array", "items": { "type": "string" } } } }, "BatchClearValuesResponse": { "id": "BatchClearValuesResponse", "description": "The response when clearing a range of values in a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The spreadsheet the updates were applied to.", "type": "string" }, "clearedRanges": { "description": "The ranges that were cleared, in A1 notation. If the requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded to the sheet's limits.", "type": "array", "items": { "type": "string" } } } }, "BatchGetValuesByDataFilterRequest": { "id": "BatchGetValuesByDataFilterRequest", "description": "The request for retrieving a range of values in a spreadsheet selected by a set of DataFilters.", "type": "object", "properties": { "dataFilters": { "description": "The data filters used to match the ranges of values to retrieve. Ranges that match any of the specified data filters are included in the response.", "type": "array", "items": { "$ref": "DataFilter" } }, "majorDimension": { "description": "The major dimension that results should use. For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then a request that selects that range and sets `majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas a request that sets `majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] }, "valueRenderOption": { "description": "How values should be represented in the output. The default render option is FORMATTED_VALUE.", "type": "string", "enumDescriptions": [ "Values will be calculated & formatted in the response according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return `\"$1.23\"`.", "Values will be calculated, but not formatted in the reply. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return the number `1.23`.", "Values will not be calculated. The reply will include the formulas. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then A2 would return `\"=A1\"`. Sheets treats date and time values as decimal values. This lets you perform arithmetic on them in formulas. For more information on interpreting date and time values, see [About date & time values](https://developers.google.com/sheets/api/guides/formats#about_date_time_values)." ], "enum": [ "FORMATTED_VALUE", "UNFORMATTED_VALUE", "FORMULA" ] }, "dateTimeRenderOption": { "description": "How dates, times, and durations should be represented in the output. This is ignored if value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.", "type": "string", "enumDescriptions": [ "Instructs date, time, datetime, and duration fields to be output as doubles in \"serial number\" format, as popularized by Lotus 1-2-3. The whole number portion of the value (left of the decimal) counts the days since December 30th 1899. The fractional portion (right of the decimal) counts the time as a fraction of the day. For example, January 1st 1900 at noon would be 2.5, 2 because it's 2 days after December 30th 1899, and .5 because noon is half a day. February 1st 1900 at 3pm would be 33.625. This correctly treats the year 1900 as not a leap year.", "Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale)." ], "enum": [ "SERIAL_NUMBER", "FORMATTED_STRING" ] } } }, "DataFilter": { "id": "DataFilter", "description": "Filter that describes what data should be selected or returned from a request.", "type": "object", "properties": { "developerMetadataLookup": { "description": "Selects data associated with the developer metadata matching the criteria described by this DeveloperMetadataLookup.", "$ref": "DeveloperMetadataLookup" }, "a1Range": { "description": "Selects data that matches the specified A1 range.", "type": "string" }, "gridRange": { "description": "Selects data that matches the range described by the GridRange.", "$ref": "GridRange" } } }, "DeveloperMetadataLookup": { "id": "DeveloperMetadataLookup", "description": "Selects DeveloperMetadata that matches all of the specified fields. For example, if only a metadata ID is specified this considers the DeveloperMetadata with that particular unique ID. If a metadata key is specified, this considers all developer metadata with that key. If a key, visibility, and location type are all specified, this considers all developer metadata with that key and visibility that are associated with a location of that type. In general, this selects all DeveloperMetadata that matches the intersection of all the specified fields; any field or combination of fields may be specified.", "type": "object", "properties": { "locationType": { "description": "Limits the selected developer metadata to those entries which are associated with locations of the specified type. For example, when this field is specified as ROW this lookup only considers developer metadata associated on rows. If the field is left unspecified, all location types are considered. This field cannot be specified as SPREADSHEET when the locationMatchingStrategy is specified as INTERSECTING or when the metadataLocation is specified as a non-spreadsheet location: spreadsheet metadata cannot intersect any other developer metadata location. This field also must be left unspecified when the locationMatchingStrategy is specified as EXACT.", "type": "string", "enumDescriptions": [ "Default value.", "Developer metadata associated on an entire row dimension.", "Developer metadata associated on an entire column dimension.", "Developer metadata associated on an entire sheet.", "Developer metadata associated on the entire spreadsheet." ], "enum": [ "DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED", "ROW", "COLUMN", "SHEET", "SPREADSHEET" ] }, "metadataLocation": { "description": "Limits the selected developer metadata to those entries associated with the specified location. This field either matches exact locations or all intersecting locations according the specified locationMatchingStrategy.", "$ref": "DeveloperMetadataLocation" }, "locationMatchingStrategy": { "description": "Determines how this lookup matches the location. If this field is specified as EXACT, only developer metadata associated on the exact location specified is matched. If this field is specified to INTERSECTING, developer metadata associated on intersecting locations is also matched. If left unspecified, this field assumes a default value of INTERSECTING. If this field is specified, a metadataLocation must also be specified.", "type": "string", "enumDescriptions": [ "Default value. This value must not be used.", "Indicates that a specified location should be matched exactly. For example, if row three were specified as a location this matching strategy would only match developer metadata also associated on row three. Metadata associated on other locations would not be considered.", "Indicates that a specified location should match that exact location as well as any intersecting locations. For example, if row three were specified as a location this matching strategy would match developer metadata associated on row three as well as metadata associated on locations that intersect row three. If, for instance, there was developer metadata associated on column B, this matching strategy would also match that location because column B intersects row three." ], "enum": [ "DEVELOPER_METADATA_LOCATION_MATCHING_STRATEGY_UNSPECIFIED", "EXACT_LOCATION", "INTERSECTING_LOCATION" ] }, "metadataId": { "description": "Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_id.", "type": "integer", "format": "int32" }, "metadataKey": { "description": "Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_key.", "type": "string" }, "metadataValue": { "description": "Limits the selected developer metadata to that which has a matching DeveloperMetadata.metadata_value.", "type": "string" }, "visibility": { "description": "Limits the selected developer metadata to that which has a matching DeveloperMetadata.visibility. If left unspecified, all developer metadata visibile to the requesting project is considered.", "type": "string", "enumDescriptions": [ "Default value.", "Document-visible metadata is accessible from any developer project with access to the document.", "Project-visible metadata is only visible to and accessible by the developer project that created the metadata." ], "enum": [ "DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED", "DOCUMENT", "PROJECT" ] } } }, "DeveloperMetadataLocation": { "id": "DeveloperMetadataLocation", "description": "A location where metadata may be associated in a spreadsheet.", "type": "object", "properties": { "locationType": { "description": "The type of location this object represents. This field is read-only.", "type": "string", "enumDescriptions": [ "Default value.", "Developer metadata associated on an entire row dimension.", "Developer metadata associated on an entire column dimension.", "Developer metadata associated on an entire sheet.", "Developer metadata associated on the entire spreadsheet." ], "enum": [ "DEVELOPER_METADATA_LOCATION_TYPE_UNSPECIFIED", "ROW", "COLUMN", "SHEET", "SPREADSHEET" ] }, "spreadsheet": { "description": "True when metadata is associated with an entire spreadsheet.", "type": "boolean" }, "sheetId": { "description": "The ID of the sheet when metadata is associated with an entire sheet.", "type": "integer", "format": "int32" }, "dimensionRange": { "description": "Represents the row or column when metadata is associated with a dimension. The specified DimensionRange must represent a single row or column; it cannot be unbounded or span multiple rows or columns.", "$ref": "DimensionRange" } } }, "DimensionRange": { "id": "DimensionRange", "description": "A range along a single dimension on a sheet. All indexes are zero-based. Indexes are half open: the start index is inclusive and the end index is exclusive. Missing indexes indicate the range is unbounded on that side.", "type": "object", "properties": { "sheetId": { "description": "The sheet this span is on.", "type": "integer", "format": "int32" }, "dimension": { "description": "The dimension of the span.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] }, "startIndex": { "description": "The start (inclusive) of the span, or not set if unbounded.", "type": "integer", "format": "int32" }, "endIndex": { "description": "The end (exclusive) of the span, or not set if unbounded.", "type": "integer", "format": "int32" } } }, "GridRange": { "id": "GridRange", "description": "A range on a sheet. All indexes are zero-based. Indexes are half open, i.e. the start index is inclusive and the end index is exclusive -- [start_index, end_index). Missing indexes indicate the range is unbounded on that side. For example, if `\"Sheet1\"` is sheet ID 123456, then: `Sheet1!A1:A1 == sheet_id: 123456, start_row_index: 0, end_row_index: 1, start_column_index: 0, end_column_index: 1` `Sheet1!A3:B4 == sheet_id: 123456, start_row_index: 2, end_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1!A:B == sheet_id: 123456, start_column_index: 0, end_column_index: 2` `Sheet1!A5:B == sheet_id: 123456, start_row_index: 4, start_column_index: 0, end_column_index: 2` `Sheet1 == sheet_id: 123456` The start index must always be less than or equal to the end index. If the start index equals the end index, then the range is empty. Empty ranges are typically not meaningful and are usually rendered in the UI as `#REF!`.", "type": "object", "properties": { "sheetId": { "description": "The sheet this range is on.", "type": "integer", "format": "int32" }, "startRowIndex": { "description": "The start row (inclusive) of the range, or not set if unbounded.", "type": "integer", "format": "int32" }, "endRowIndex": { "description": "The end row (exclusive) of the range, or not set if unbounded.", "type": "integer", "format": "int32" }, "startColumnIndex": { "description": "The start column (inclusive) of the range, or not set if unbounded.", "type": "integer", "format": "int32" }, "endColumnIndex": { "description": "The end column (exclusive) of the range, or not set if unbounded.", "type": "integer", "format": "int32" } } }, "BatchGetValuesByDataFilterResponse": { "id": "BatchGetValuesByDataFilterResponse", "description": "The response when retrieving more than one range of values in a spreadsheet selected by DataFilters.", "type": "object", "properties": { "spreadsheetId": { "description": "The ID of the spreadsheet the data was retrieved from.", "type": "string" }, "valueRanges": { "description": "The requested values with the list of data filters that matched them.", "type": "array", "items": { "$ref": "MatchedValueRange" } } } }, "MatchedValueRange": { "id": "MatchedValueRange", "description": "A value range that was matched by one or more data filers.", "type": "object", "properties": { "valueRange": { "description": "The values matched by the DataFilter.", "$ref": "ValueRange" }, "dataFilters": { "description": "The DataFilters from the request that matched the range of values.", "type": "array", "items": { "$ref": "DataFilter" } } } }, "BatchUpdateValuesByDataFilterRequest": { "id": "BatchUpdateValuesByDataFilterRequest", "description": "The request for updating more than one range of values in a spreadsheet.", "type": "object", "properties": { "valueInputOption": { "description": "How the input data should be interpreted.", "type": "string", "enumDescriptions": [ "Default input value. This value must not be used.", "The values the user has entered will not be parsed and will be stored as-is.", "The values will be parsed as if the user typed them into the UI. Numbers will stay as numbers, but strings may be converted to numbers, dates, etc. following the same rules that are applied when entering text into a cell via the Google Sheets UI." ], "enum": [ "INPUT_VALUE_OPTION_UNSPECIFIED", "RAW", "USER_ENTERED" ] }, "data": { "description": "The new values to apply to the spreadsheet. If more than one range is matched by the specified DataFilter the specified values are applied to all of those ranges.", "type": "array", "items": { "$ref": "DataFilterValueRange" } }, "includeValuesInResponse": { "description": "Determines if the update response should include the values of the cells that were updated. By default, responses do not include the updated values. The `updatedData` field within each of the BatchUpdateValuesResponse.responses contains the updated values. If the range to write was larger than the range actually written, the response includes all values in the requested range (excluding trailing empty rows and columns).", "type": "boolean" }, "responseValueRenderOption": { "description": "Determines how values in the response should be rendered. The default render option is FORMATTED_VALUE.", "type": "string", "enumDescriptions": [ "Values will be calculated & formatted in the response according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return `\"$1.23\"`.", "Values will be calculated, but not formatted in the reply. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return the number `1.23`.", "Values will not be calculated. The reply will include the formulas. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then A2 would return `\"=A1\"`. Sheets treats date and time values as decimal values. This lets you perform arithmetic on them in formulas. For more information on interpreting date and time values, see [About date & time values](https://developers.google.com/sheets/api/guides/formats#about_date_time_values)." ], "enum": [ "FORMATTED_VALUE", "UNFORMATTED_VALUE", "FORMULA" ] }, "responseDateTimeRenderOption": { "description": "Determines how dates, times, and durations in the response should be rendered. This is ignored if response_value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.", "type": "string", "enumDescriptions": [ "Instructs date, time, datetime, and duration fields to be output as doubles in \"serial number\" format, as popularized by Lotus 1-2-3. The whole number portion of the value (left of the decimal) counts the days since December 30th 1899. The fractional portion (right of the decimal) counts the time as a fraction of the day. For example, January 1st 1900 at noon would be 2.5, 2 because it's 2 days after December 30th 1899, and .5 because noon is half a day. February 1st 1900 at 3pm would be 33.625. This correctly treats the year 1900 as not a leap year.", "Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale)." ], "enum": [ "SERIAL_NUMBER", "FORMATTED_STRING" ] } } }, "DataFilterValueRange": { "id": "DataFilterValueRange", "description": "A range of values whose location is specified by a DataFilter.", "type": "object", "properties": { "dataFilter": { "description": "The data filter describing the location of the values in the spreadsheet.", "$ref": "DataFilter" }, "majorDimension": { "description": "The major dimension of the values.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] }, "values": { "description": "The data to be written. If the provided values exceed any of the ranges matched by the data filter then the request fails. If the provided values are less than the matched ranges only the specified values are written, existing values in the matched ranges remain unaffected.", "type": "array", "items": { "type": "array", "items": { "type": "any" } } } } }, "BatchUpdateValuesByDataFilterResponse": { "id": "BatchUpdateValuesByDataFilterResponse", "description": "The response when updating a range of values in a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The spreadsheet the updates were applied to.", "type": "string" }, "totalUpdatedRows": { "description": "The total number of rows where at least one cell in the row was updated.", "type": "integer", "format": "int32" }, "totalUpdatedColumns": { "description": "The total number of columns where at least one cell in the column was updated.", "type": "integer", "format": "int32" }, "totalUpdatedCells": { "description": "The total number of cells updated.", "type": "integer", "format": "int32" }, "totalUpdatedSheets": { "description": "The total number of sheets where at least one cell in the sheet was updated.", "type": "integer", "format": "int32" }, "responses": { "description": "The response for each range updated.", "type": "array", "items": { "$ref": "UpdateValuesByDataFilterResponse" } } } }, "UpdateValuesByDataFilterResponse": { "id": "UpdateValuesByDataFilterResponse", "description": "The response when updating a range of values by a data filter in a spreadsheet.", "type": "object", "properties": { "updatedRange": { "description": "The range (in [A1 notation](/sheets/api/guides/concepts#cell)) that updates were applied to.", "type": "string" }, "updatedRows": { "description": "The number of rows where at least one cell in the row was updated.", "type": "integer", "format": "int32" }, "updatedColumns": { "description": "The number of columns where at least one cell in the column was updated.", "type": "integer", "format": "int32" }, "updatedCells": { "description": "The number of cells updated.", "type": "integer", "format": "int32" }, "dataFilter": { "description": "The data filter that selected the range that was updated.", "$ref": "DataFilter" }, "updatedData": { "description": "The values of the cells in the range matched by the dataFilter after all updates were applied. This is only included if the request's `includeValuesInResponse` field was `true`.", "$ref": "ValueRange" } } }, "BatchClearValuesByDataFilterRequest": { "id": "BatchClearValuesByDataFilterRequest", "description": "The request for clearing more than one range selected by a DataFilter in a spreadsheet.", "type": "object", "properties": { "dataFilters": { "description": "The DataFilters used to determine which ranges to clear.", "type": "array", "items": { "$ref": "DataFilter" } } } }, "BatchClearValuesByDataFilterResponse": { "id": "BatchClearValuesByDataFilterResponse", "description": "The response when clearing a range of values selected with DataFilters in a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The spreadsheet the updates were applied to.", "type": "string" }, "clearedRanges": { "description": "The ranges that were cleared, in [A1 notation](/sheets/api/guides/concepts#cell). If the requests are for an unbounded range or a ranger larger than the bounds of the sheet, this is the actual ranges that were cleared, bounded to the sheet's limits.", "type": "array", "items": { "type": "string" } } } }, "DeveloperMetadata": { "id": "DeveloperMetadata", "description": "Developer metadata associated with a location or object in a spreadsheet. Developer metadata may be used to associate arbitrary data with various parts of a spreadsheet and will remain associated at those locations as they move around and the spreadsheet is edited. For example, if developer metadata is associated with row 5 and another row is then subsequently inserted above row 5, that original metadata will still be associated with the row it was first associated with (what is now row 6). If the associated object is deleted its metadata is deleted too.", "type": "object", "properties": { "metadataId": { "description": "The spreadsheet-scoped unique ID that identifies the metadata. IDs may be specified when metadata is created, otherwise one will be randomly generated and assigned. Must be positive.", "type": "integer", "format": "int32" }, "metadataKey": { "description": "The metadata key. There may be multiple metadata in a spreadsheet with the same key. Developer metadata must always have a key specified.", "type": "string" }, "metadataValue": { "description": "Data associated with the metadata's key.", "type": "string" }, "location": { "description": "The location where the metadata is associated.", "$ref": "DeveloperMetadataLocation" }, "visibility": { "description": "The metadata visibility. Developer metadata must always have a visibility specified.", "type": "string", "enumDescriptions": [ "Default value.", "Document-visible metadata is accessible from any developer project with access to the document.", "Project-visible metadata is only visible to and accessible by the developer project that created the metadata." ], "enum": [ "DEVELOPER_METADATA_VISIBILITY_UNSPECIFIED", "DOCUMENT", "PROJECT" ] } } }, "SearchDeveloperMetadataRequest": { "id": "SearchDeveloperMetadataRequest", "description": "A request to retrieve all developer metadata matching the set of specified criteria.", "type": "object", "properties": { "dataFilters": { "description": "The data filters describing the criteria used to determine which DeveloperMetadata entries to return. DeveloperMetadata matching any of the specified filters are included in the response.", "type": "array", "items": { "$ref": "DataFilter" } } } }, "SearchDeveloperMetadataResponse": { "id": "SearchDeveloperMetadataResponse", "description": "A reply to a developer metadata search request.", "type": "object", "properties": { "matchedDeveloperMetadata": { "description": "The metadata matching the criteria of the search request.", "type": "array", "items": { "$ref": "MatchedDeveloperMetadata" } } } }, "MatchedDeveloperMetadata": { "id": "MatchedDeveloperMetadata", "description": "A developer metadata entry and the data filters specified in the original request that matched it.", "type": "object", "properties": { "developerMetadata": { "description": "The developer metadata matching the specified filters.", "$ref": "DeveloperMetadata" }, "dataFilters": { "description": "All filters matching the returned developer metadata.", "type": "array", "items": { "$ref": "DataFilter" } } } }, "Spreadsheet": { "id": "Spreadsheet", "description": "Resource that represents a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The ID of the spreadsheet. This field is read-only.", "type": "string" }, "properties": { "description": "Overall properties of a spreadsheet.", "$ref": "SpreadsheetProperties" }, "sheets": { "description": "The sheets that are part of a spreadsheet.", "type": "array", "items": { "$ref": "Sheet" } }, "namedRanges": { "description": "The named ranges defined in a spreadsheet.", "type": "array", "items": { "$ref": "NamedRange" } }, "spreadsheetUrl": { "description": "The url of the spreadsheet. This field is read-only.", "type": "string" }, "developerMetadata": { "description": "The developer metadata associated with a spreadsheet.", "type": "array", "items": { "$ref": "DeveloperMetadata" } }, "dataSources": { "description": "A list of external data sources connected with the spreadsheet.", "type": "array", "items": { "$ref": "DataSource" } }, "dataSourceSchedules": { "description": "Output only. A list of data source refresh schedules.", "readOnly": true, "type": "array", "items": { "$ref": "DataSourceRefreshSchedule" } } } }, "SpreadsheetProperties": { "id": "SpreadsheetProperties", "description": "Properties of a spreadsheet.", "type": "object", "properties": { "title": { "description": "The title of the spreadsheet.", "type": "string" }, "locale": { "description": "The locale of the spreadsheet in one of the following formats: * an ISO 639-1 language code such as `en` * an ISO 639-2 language code such as `fil`, if no 639-1 code exists * a combination of the ISO language code and country code, such as `en_US` Note: when updating this field, not all locales/languages are supported.", "type": "string" }, "autoRecalc": { "description": "The amount of time to wait before volatile functions are recalculated.", "type": "string", "enumDescriptions": [ "Default value. This value must not be used.", "Volatile functions are updated on every change.", "Volatile functions are updated on every change and every minute.", "Volatile functions are updated on every change and hourly." ], "enum": [ "RECALCULATION_INTERVAL_UNSPECIFIED", "ON_CHANGE", "MINUTE", "HOUR" ] }, "timeZone": { "description": "The time zone of the spreadsheet, in CLDR format such as `America/New_York`. If the time zone isn't recognized, this may be a custom time zone such as `GMT-07:00`.", "type": "string" }, "defaultFormat": { "description": "The default format of all cells in the spreadsheet. CellData.effectiveFormat will not be set if the cell's format is equal to this default format. This field is read-only.", "$ref": "CellFormat" }, "iterativeCalculationSettings": { "description": "Determines whether and how circular references are resolved with iterative calculation. Absence of this field means that circular references result in calculation errors.", "$ref": "IterativeCalculationSettings" }, "spreadsheetTheme": { "description": "Theme applied to the spreadsheet.", "$ref": "SpreadsheetTheme" }, "importFunctionsExternalUrlAccessAllowed": { "description": "Whether to allow external url access for image and import functions. Read only when true. When false, you can set to true.", "type": "boolean" } } }, "CellFormat": { "id": "CellFormat", "description": "The format of a cell.", "type": "object", "properties": { "numberFormat": { "description": "A format describing how number values should be represented to the user.", "$ref": "NumberFormat" }, "backgroundColor": { "description": "The background color of the cell. Deprecated: Use background_color_style.", "deprecated": true, "$ref": "Color" }, "backgroundColorStyle": { "description": "The background color of the cell. If background_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "borders": { "description": "The borders of the cell.", "$ref": "Borders" }, "padding": { "description": "The padding of the cell.", "$ref": "Padding" }, "horizontalAlignment": { "description": "The horizontal alignment of the value in the cell.", "type": "string", "enumDescriptions": [ "The horizontal alignment is not specified. Do not use this.", "The text is explicitly aligned to the left of the cell.", "The text is explicitly aligned to the center of the cell.", "The text is explicitly aligned to the right of the cell." ], "enum": [ "HORIZONTAL_ALIGN_UNSPECIFIED", "LEFT", "CENTER", "RIGHT" ] }, "verticalAlignment": { "description": "The vertical alignment of the value in the cell.", "type": "string", "enumDescriptions": [ "The vertical alignment is not specified. Do not use this.", "The text is explicitly aligned to the top of the cell.", "The text is explicitly aligned to the middle of the cell.", "The text is explicitly aligned to the bottom of the cell." ], "enum": [ "VERTICAL_ALIGN_UNSPECIFIED", "TOP", "MIDDLE", "BOTTOM" ] }, "wrapStrategy": { "description": "The wrap strategy for the value in the cell.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Lines that are longer than the cell width will be written in the next cell over, so long as that cell is empty. If the next cell over is non-empty, this behaves the same as `CLIP`. The text will never wrap to the next line unless the user manually inserts a new line. Example: | First sentence. | | Manual newline that is very long. \u003c- Text continues into next cell | Next newline. |", "This wrap strategy represents the old Google Sheets wrap strategy where words that are longer than a line are clipped rather than broken. This strategy is not supported on all platforms and is being phased out. Example: | Cell has a | | loooooooooo| \u003c- Word is clipped. | word. |", "Lines that are longer than the cell width will be clipped. The text will never wrap to the next line unless the user manually inserts a new line. Example: | First sentence. | | Manual newline t| \u003c- Text is clipped | Next newline. |", "Words that are longer than a line are wrapped at the character level rather than clipped. Example: | Cell has a | | loooooooooo| \u003c- Word is broken. | ong word. |" ], "enum": [ "WRAP_STRATEGY_UNSPECIFIED", "OVERFLOW_CELL", "LEGACY_WRAP", "CLIP", "WRAP" ] }, "textDirection": { "description": "The direction of the text in the cell.", "type": "string", "enumDescriptions": [ "The text direction is not specified. Do not use this.", "The text direction of left-to-right was set by the user.", "The text direction of right-to-left was set by the user." ], "enum": [ "TEXT_DIRECTION_UNSPECIFIED", "LEFT_TO_RIGHT", "RIGHT_TO_LEFT" ] }, "textFormat": { "description": "The format of the text in the cell (unless overridden by a format run). Setting a cell-level link here clears the cell's existing links. Setting the link field in a TextFormatRun takes precedence over the cell-level link.", "$ref": "TextFormat" }, "hyperlinkDisplayType": { "description": "If one exists, how a hyperlink should be displayed in the cell.", "type": "string", "enumDescriptions": [ "The default value: the hyperlink is rendered. Do not use this.", "A hyperlink should be explicitly rendered.", "A hyperlink should not be rendered." ], "enum": [ "HYPERLINK_DISPLAY_TYPE_UNSPECIFIED", "LINKED", "PLAIN_TEXT" ] }, "textRotation": { "description": "The rotation applied to text in the cell.", "$ref": "TextRotation" } } }, "NumberFormat": { "id": "NumberFormat", "description": "The number format of a cell.", "type": "object", "properties": { "type": { "description": "The type of the number format. When writing, this field must be set.", "type": "string", "enumDescriptions": [ "The number format is not specified and is based on the contents of the cell. Do not explicitly use this.", "Text formatting, e.g `1000.12`", "Number formatting, e.g, `1,000.12`", "Percent formatting, e.g `10.12%`", "Currency formatting, e.g `$1,000.12`", "Date formatting, e.g `9/26/2008`", "Time formatting, e.g `3:59:00 PM`", "Date+Time formatting, e.g `9/26/08 15:59:00`", "Scientific number formatting, e.g `1.01E+03`" ], "enum": [ "NUMBER_FORMAT_TYPE_UNSPECIFIED", "TEXT", "NUMBER", "PERCENT", "CURRENCY", "DATE", "TIME", "DATE_TIME", "SCIENTIFIC" ] }, "pattern": { "description": "Pattern string used for formatting. If not set, a default pattern based on the user's locale will be used if necessary for the given type. See the [Date and Number Formats guide](/sheets/api/guides/formats) for more information about the supported patterns.", "type": "string" } } }, "Color": { "id": "Color", "description": "Represents a color in the RGBA color space. This representation is designed for simplicity of conversion to and from color representations in various languages over compactness. For example, the fields of this representation can be trivially provided to the constructor of `java.awt.Color` in Java; it can also be trivially provided to UIColor's `+colorWithRed:green:blue:alpha` method in iOS; and, with just a little work, it can be easily formatted into a CSS `rgba()` string in JavaScript. This reference page doesn't have information about the absolute color space that should be used to interpret the RGB value—for example, sRGB, Adobe RGB, DCI-P3, and BT.2020. By default, applications should assume the sRGB color space. When color equality needs to be decided, implementations, unless documented otherwise, treat two colors as equal if all their red, green, blue, and alpha values each differ by at most `1e-5`. Example (Java): import com.google.type.Color; // ... public static java.awt.Color fromProto(Color protocolor) { float alpha = protocolor.hasAlpha() ? protocolor.getAlpha().getValue() : 1.0; return new java.awt.Color( protocolor.getRed(), protocolor.getGreen(), protocolor.getBlue(), alpha); } public static Color toProto(java.awt.Color color) { float red = (float) color.getRed(); float green = (float) color.getGreen(); float blue = (float) color.getBlue(); float denominator = 255.0; Color.Builder resultBuilder = Color .newBuilder() .setRed(red / denominator) .setGreen(green / denominator) .setBlue(blue / denominator); int alpha = color.getAlpha(); if (alpha != 255) { result.setAlpha( FloatValue .newBuilder() .setValue(((float) alpha) / denominator) .build()); } return resultBuilder.build(); } // ... Example (iOS / Obj-C): // ... static UIColor* fromProto(Color* protocolor) { float red = [protocolor red]; float green = [protocolor green]; float blue = [protocolor blue]; FloatValue* alpha_wrapper = [protocolor alpha]; float alpha = 1.0; if (alpha_wrapper != nil) { alpha = [alpha_wrapper value]; } return [UIColor colorWithRed:red green:green blue:blue alpha:alpha]; } static Color* toProto(UIColor* color) { CGFloat red, green, blue, alpha; if (![color getRed:&red green:&green blue:&blue alpha:&alpha]) { return nil; } Color* result = [[Color alloc] init]; [result setRed:red]; [result setGreen:green]; [result setBlue:blue]; if (alpha \u003c= 0.9999) { [result setAlpha:floatWrapperWithValue(alpha)]; } [result autorelease]; return result; } // ... Example (JavaScript): // ... var protoToCssColor = function(rgb_color) { var redFrac = rgb_color.red || 0.0; var greenFrac = rgb_color.green || 0.0; var blueFrac = rgb_color.blue || 0.0; var red = Math.floor(redFrac * 255); var green = Math.floor(greenFrac * 255); var blue = Math.floor(blueFrac * 255); if (!('alpha' in rgb_color)) { return rgbToCssColor(red, green, blue); } var alphaFrac = rgb_color.alpha.value || 0.0; var rgbParams = [red, green, blue].join(','); return ['rgba(', rgbParams, ',', alphaFrac, ')'].join(''); }; var rgbToCssColor = function(red, green, blue) { var rgbNumber = new Number((red \u003c\u003c 16) | (green \u003c\u003c 8) | blue); var hexString = rgbNumber.toString(16); var missingZeros = 6 - hexString.length; var resultBuilder = ['#']; for (var i = 0; i \u003c missingZeros; i++) { resultBuilder.push('0'); } resultBuilder.push(hexString); return resultBuilder.join(''); }; // ...", "type": "object", "properties": { "red": { "description": "The amount of red in the color as a value in the interval [0, 1].", "type": "number", "format": "float" }, "green": { "description": "The amount of green in the color as a value in the interval [0, 1].", "type": "number", "format": "float" }, "blue": { "description": "The amount of blue in the color as a value in the interval [0, 1].", "type": "number", "format": "float" }, "alpha": { "description": "The fraction of this color that should be applied to the pixel. That is, the final pixel color is defined by the equation: `pixel color = alpha * (this color) + (1.0 - alpha) * (background color)` This means that a value of 1.0 corresponds to a solid color, whereas a value of 0.0 corresponds to a completely transparent color. This uses a wrapper message rather than a simple float scalar so that it is possible to distinguish between a default value and the value being unset. If omitted, this color object is rendered as a solid color (as if the alpha value had been explicitly given a value of 1.0).", "type": "number", "format": "float" } } }, "ColorStyle": { "id": "ColorStyle", "description": "A color value.", "type": "object", "properties": { "rgbColor": { "description": "RGB color. The [`alpha`](/sheets/api/reference/rest/v4/spreadsheets/other#Color.FIELDS.alpha) value in the [`Color`](/sheets/api/reference/rest/v4/spreadsheets/other#color) object isn't generally supported.", "$ref": "Color" }, "themeColor": { "description": "Theme color.", "type": "string", "enumDescriptions": [ "Unspecified theme color", "Represents the primary text color", "Represents the primary background color", "Represents the first accent color", "Represents the second accent color", "Represents the third accent color", "Represents the fourth accent color", "Represents the fifth accent color", "Represents the sixth accent color", "Represents the color to use for hyperlinks" ], "enum": [ "THEME_COLOR_TYPE_UNSPECIFIED", "TEXT", "BACKGROUND", "ACCENT1", "ACCENT2", "ACCENT3", "ACCENT4", "ACCENT5", "ACCENT6", "LINK" ] } } }, "Borders": { "id": "Borders", "description": "The borders of the cell.", "type": "object", "properties": { "top": { "description": "The top border of the cell.", "$ref": "Border" }, "bottom": { "description": "The bottom border of the cell.", "$ref": "Border" }, "left": { "description": "The left border of the cell.", "$ref": "Border" }, "right": { "description": "The right border of the cell.", "$ref": "Border" } } }, "Border": { "id": "Border", "description": "A border along a cell.", "type": "object", "properties": { "style": { "description": "The style of the border.", "type": "string", "enumDescriptions": [ "The style is not specified. Do not use this.", "The border is dotted.", "The border is dashed.", "The border is a thin solid line.", "The border is a medium solid line.", "The border is a thick solid line.", "No border. Used only when updating a border in order to erase it.", "The border is two solid lines." ], "enum": [ "STYLE_UNSPECIFIED", "DOTTED", "DASHED", "SOLID", "SOLID_MEDIUM", "SOLID_THICK", "NONE", "DOUBLE" ] }, "width": { "description": "The width of the border, in pixels. Deprecated; the width is determined by the \"style\" field.", "deprecated": true, "type": "integer", "format": "int32" }, "color": { "description": "The color of the border. Deprecated: Use color_style.", "deprecated": true, "$ref": "Color" }, "colorStyle": { "description": "The color of the border. If color is also set, this field takes precedence.", "$ref": "ColorStyle" } } }, "Padding": { "id": "Padding", "description": "The amount of padding around the cell, in pixels. When updating padding, every field must be specified.", "type": "object", "properties": { "top": { "description": "The top padding of the cell.", "type": "integer", "format": "int32" }, "right": { "description": "The right padding of the cell.", "type": "integer", "format": "int32" }, "bottom": { "description": "The bottom padding of the cell.", "type": "integer", "format": "int32" }, "left": { "description": "The left padding of the cell.", "type": "integer", "format": "int32" } } }, "TextFormat": { "id": "TextFormat", "description": "The format of a run of text in a cell. Absent values indicate that the field isn't specified.", "type": "object", "properties": { "foregroundColor": { "description": "The foreground color of the text. Deprecated: Use foreground_color_style.", "deprecated": true, "$ref": "Color" }, "foregroundColorStyle": { "description": "The foreground color of the text. If foreground_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "fontFamily": { "description": "The font family.", "type": "string" }, "fontSize": { "description": "The size of the font.", "type": "integer", "format": "int32" }, "bold": { "description": "True if the text is bold.", "type": "boolean" }, "italic": { "description": "True if the text is italicized.", "type": "boolean" }, "strikethrough": { "description": "True if the text has a strikethrough.", "type": "boolean" }, "underline": { "description": "True if the text is underlined.", "type": "boolean" }, "link": { "description": "The link destination of the text, if any. Setting the link field in a TextFormatRun will clear the cell's existing links or a cell-level link set in the same request. When a link is set, the text foreground color will be set to the default link color and the text will be underlined. If these fields are modified in the same request, those values will be used instead of the link defaults.", "$ref": "Link" } } }, "Link": { "id": "Link", "description": "An external or local reference.", "type": "object", "properties": { "uri": { "description": "The link identifier.", "type": "string" } } }, "TextRotation": { "id": "TextRotation", "description": "The rotation applied to text in a cell.", "type": "object", "properties": { "angle": { "description": "The angle between the standard orientation and the desired orientation. Measured in degrees. Valid values are between -90 and 90. Positive angles are angled upwards, negative are angled downwards. Note: For LTR text direction positive angles are in the counterclockwise direction, whereas for RTL they are in the clockwise direction", "type": "integer", "format": "int32" }, "vertical": { "description": "If true, text reads top to bottom, but the orientation of individual characters is unchanged. For example: | V | | e | | r | | t | | i | | c | | a | | l |", "type": "boolean" } } }, "IterativeCalculationSettings": { "id": "IterativeCalculationSettings", "description": "Settings to control how circular dependencies are resolved with iterative calculation.", "type": "object", "properties": { "maxIterations": { "description": "When iterative calculation is enabled, the maximum number of calculation rounds to perform.", "type": "integer", "format": "int32" }, "convergenceThreshold": { "description": "When iterative calculation is enabled and successive results differ by less than this threshold value, the calculation rounds stop.", "type": "number", "format": "double" } } }, "SpreadsheetTheme": { "id": "SpreadsheetTheme", "description": "Represents spreadsheet theme", "type": "object", "properties": { "primaryFontFamily": { "description": "Name of the primary font family.", "type": "string" }, "themeColors": { "description": "The spreadsheet theme color pairs. To update you must provide all theme color pairs.", "type": "array", "items": { "$ref": "ThemeColorPair" } } } }, "ThemeColorPair": { "id": "ThemeColorPair", "description": "A pair mapping a spreadsheet theme color type to the concrete color it represents.", "type": "object", "properties": { "colorType": { "description": "The type of the spreadsheet theme color.", "type": "string", "enumDescriptions": [ "Unspecified theme color", "Represents the primary text color", "Represents the primary background color", "Represents the first accent color", "Represents the second accent color", "Represents the third accent color", "Represents the fourth accent color", "Represents the fifth accent color", "Represents the sixth accent color", "Represents the color to use for hyperlinks" ], "enum": [ "THEME_COLOR_TYPE_UNSPECIFIED", "TEXT", "BACKGROUND", "ACCENT1", "ACCENT2", "ACCENT3", "ACCENT4", "ACCENT5", "ACCENT6", "LINK" ] }, "color": { "description": "The concrete color corresponding to the theme color type.", "$ref": "ColorStyle" } } }, "Sheet": { "id": "Sheet", "description": "A sheet in a spreadsheet.", "type": "object", "properties": { "properties": { "description": "The properties of the sheet.", "$ref": "SheetProperties" }, "data": { "description": "Data in the grid, if this is a grid sheet. The number of GridData objects returned is dependent on the number of ranges requested on this sheet. For example, if this is representing `Sheet1`, and the spreadsheet was requested with ranges `Sheet1!A1:C10` and `Sheet1!D15:E20`, then the first GridData will have a startRow/startColumn of `0`, while the second one will have `startRow 14` (zero-based row 15), and `startColumn 3` (zero-based column D). For a DATA_SOURCE sheet, you can not request a specific range, the GridData contains all the values.", "type": "array", "items": { "$ref": "GridData" } }, "merges": { "description": "The ranges that are merged together.", "type": "array", "items": { "$ref": "GridRange" } }, "conditionalFormats": { "description": "The conditional format rules in this sheet.", "type": "array", "items": { "$ref": "ConditionalFormatRule" } }, "filterViews": { "description": "The filter views in this sheet.", "type": "array", "items": { "$ref": "FilterView" } }, "protectedRanges": { "description": "The protected ranges in this sheet.", "type": "array", "items": { "$ref": "ProtectedRange" } }, "basicFilter": { "description": "The filter on this sheet, if any.", "$ref": "BasicFilter" }, "charts": { "description": "The specifications of every chart on this sheet.", "type": "array", "items": { "$ref": "EmbeddedChart" } }, "bandedRanges": { "description": "The banded (alternating colors) ranges on this sheet.", "type": "array", "items": { "$ref": "BandedRange" } }, "developerMetadata": { "description": "The developer metadata associated with a sheet.", "type": "array", "items": { "$ref": "DeveloperMetadata" } }, "rowGroups": { "description": "All row groups on this sheet, ordered by increasing range start index, then by group depth.", "type": "array", "items": { "$ref": "DimensionGroup" } }, "columnGroups": { "description": "All column groups on this sheet, ordered by increasing range start index, then by group depth.", "type": "array", "items": { "$ref": "DimensionGroup" } }, "slicers": { "description": "The slicers on this sheet.", "type": "array", "items": { "$ref": "Slicer" } } } }, "SheetProperties": { "id": "SheetProperties", "description": "Properties of a sheet.", "type": "object", "properties": { "sheetId": { "description": "The ID of the sheet. Must be non-negative. This field cannot be changed once set.", "type": "integer", "format": "int32" }, "title": { "description": "The name of the sheet.", "type": "string" }, "index": { "description": "The index of the sheet within the spreadsheet. When adding or updating sheet properties, if this field is excluded then the sheet is added or moved to the end of the sheet list. When updating sheet indices or inserting sheets, movement is considered in \"before the move\" indexes. For example, if there were three sheets (S1, S2, S3) in order to move S1 ahead of S2 the index would have to be set to 2. A sheet index update request is ignored if the requested index is identical to the sheets current index or if the requested new index is equal to the current sheet index + 1.", "type": "integer", "format": "int32" }, "sheetType": { "description": "The type of sheet. Defaults to GRID. This field cannot be changed once set.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The sheet is a grid.", "The sheet has no grid and instead has an object like a chart or image.", "The sheet connects with an external DataSource and shows the preview of data." ], "enum": [ "SHEET_TYPE_UNSPECIFIED", "GRID", "OBJECT", "DATA_SOURCE" ] }, "gridProperties": { "description": "Additional properties of the sheet if this sheet is a grid. (If the sheet is an object sheet, containing a chart or image, then this field will be absent.) When writing it is an error to set any grid properties on non-grid sheets. If this sheet is a DATA_SOURCE sheet, this field is output only but contains the properties that reflect how a data source sheet is rendered in the UI, e.g. row_count.", "$ref": "GridProperties" }, "hidden": { "description": "True if the sheet is hidden in the UI, false if it's visible.", "type": "boolean" }, "tabColor": { "description": "The color of the tab in the UI. Deprecated: Use tab_color_style.", "deprecated": true, "$ref": "Color" }, "tabColorStyle": { "description": "The color of the tab in the UI. If tab_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "rightToLeft": { "description": "True if the sheet is an RTL sheet instead of an LTR sheet.", "type": "boolean" }, "dataSourceSheetProperties": { "description": "Output only. If present, the field contains DATA_SOURCE sheet specific properties.", "readOnly": true, "$ref": "DataSourceSheetProperties" } } }, "GridProperties": { "id": "GridProperties", "description": "Properties of a grid.", "type": "object", "properties": { "rowCount": { "description": "The number of rows in the grid.", "type": "integer", "format": "int32" }, "columnCount": { "description": "The number of columns in the grid.", "type": "integer", "format": "int32" }, "frozenRowCount": { "description": "The number of rows that are frozen in the grid.", "type": "integer", "format": "int32" }, "frozenColumnCount": { "description": "The number of columns that are frozen in the grid.", "type": "integer", "format": "int32" }, "hideGridlines": { "description": "True if the grid isn't showing gridlines in the UI.", "type": "boolean" }, "rowGroupControlAfter": { "description": "True if the row grouping control toggle is shown after the group.", "type": "boolean" }, "columnGroupControlAfter": { "description": "True if the column grouping control toggle is shown after the group.", "type": "boolean" } } }, "DataSourceSheetProperties": { "id": "DataSourceSheetProperties", "description": "Additional properties of a DATA_SOURCE sheet.", "type": "object", "properties": { "dataSourceId": { "description": "ID of the DataSource the sheet is connected to.", "type": "string" }, "columns": { "description": "The columns displayed on the sheet, corresponding to the values in RowData.", "type": "array", "items": { "$ref": "DataSourceColumn" } }, "dataExecutionStatus": { "description": "The data execution status.", "$ref": "DataExecutionStatus" } } }, "DataSourceColumn": { "id": "DataSourceColumn", "description": "A column in a data source.", "type": "object", "properties": { "reference": { "description": "The column reference.", "$ref": "DataSourceColumnReference" }, "formula": { "description": "The formula of the calculated column.", "type": "string" } } }, "DataSourceColumnReference": { "id": "DataSourceColumnReference", "description": "An unique identifier that references a data source column.", "type": "object", "properties": { "name": { "description": "The display name of the column. It should be unique within a data source.", "type": "string" } } }, "DataExecutionStatus": { "id": "DataExecutionStatus", "description": "The data execution status. A data execution is created to sync a data source object with the latest data from a DataSource. It is usually scheduled to run at background, you can check its state to tell if an execution completes There are several scenarios where a data execution is triggered to run: * Adding a data source creates an associated data source sheet as well as a data execution to sync the data from the data source to the sheet. * Updating a data source creates a data execution to refresh the associated data source sheet similarly. * You can send refresh request to explicitly refresh one or multiple data source objects.", "type": "object", "properties": { "state": { "description": "The state of the data execution.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The data execution has not started.", "The data execution has started and is running.", "The data execution is currently being cancelled.", "The data execution has completed successfully.", "The data execution has completed with errors." ], "enum": [ "DATA_EXECUTION_STATE_UNSPECIFIED", "NOT_STARTED", "RUNNING", "CANCELLING", "SUCCEEDED", "FAILED" ] }, "errorCode": { "description": "The error code.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The data execution timed out.", "The data execution returns more rows than the limit.", "The data execution returns more columns than the limit.", "The data execution returns more cells than the limit.", "Error is received from the backend data execution engine (e.g. BigQuery). Check error_message for details.", "One or some of the provided data source parameters are invalid.", "The data execution returns an unsupported data type.", "The data execution returns duplicate column names or aliases.", "The data execution is interrupted. Please refresh later.", "The data execution is currently in progress, can not be refreshed until it completes.", "Other errors.", "The data execution returns values that exceed the maximum characters allowed in a single cell.", "The database referenced by the data source is not found. */", "The user does not have access to the database referenced by the data source.", "The data execution returns columns with missing aliases.", "The data source object does not exist.", "The data source object is currently in error state. To force refresh, set force in RefreshDataSourceRequest.", "The data source object specification is invalid.", "The data execution has been cancelled." ], "enum": [ "DATA_EXECUTION_ERROR_CODE_UNSPECIFIED", "TIMED_OUT", "TOO_MANY_ROWS", "TOO_MANY_COLUMNS", "TOO_MANY_CELLS", "ENGINE", "PARAMETER_INVALID", "UNSUPPORTED_DATA_TYPE", "DUPLICATE_COLUMN_NAMES", "INTERRUPTED", "CONCURRENT_QUERY", "OTHER", "TOO_MANY_CHARS_PER_CELL", "DATA_NOT_FOUND", "PERMISSION_DENIED", "MISSING_COLUMN_ALIAS", "OBJECT_NOT_FOUND", "OBJECT_IN_ERROR_STATE", "OBJECT_SPEC_INVALID", "DATA_EXECUTION_CANCELLED" ] }, "errorMessage": { "description": "The error message, which may be empty.", "type": "string" }, "lastRefreshTime": { "description": "Gets the time the data last successfully refreshed.", "type": "string", "format": "google-datetime" } } }, "GridData": { "id": "GridData", "description": "Data in the grid, as well as metadata about the dimensions.", "type": "object", "properties": { "startRow": { "description": "The first row this GridData refers to, zero-based.", "type": "integer", "format": "int32" }, "startColumn": { "description": "The first column this GridData refers to, zero-based.", "type": "integer", "format": "int32" }, "rowData": { "description": "The data in the grid, one entry per row, starting with the row in startRow. The values in RowData will correspond to columns starting at start_column.", "type": "array", "items": { "$ref": "RowData" } }, "rowMetadata": { "description": "Metadata about the requested rows in the grid, starting with the row in start_row.", "type": "array", "items": { "$ref": "DimensionProperties" } }, "columnMetadata": { "description": "Metadata about the requested columns in the grid, starting with the column in start_column.", "type": "array", "items": { "$ref": "DimensionProperties" } } } }, "RowData": { "id": "RowData", "description": "Data about each cell in a row.", "type": "object", "properties": { "values": { "description": "The values in the row, one per column.", "type": "array", "items": { "$ref": "CellData" } } } }, "CellData": { "id": "CellData", "description": "Data about a specific cell.", "type": "object", "properties": { "userEnteredValue": { "description": "The value the user entered in the cell. e.g., `1234`, `'Hello'`, or `=NOW()` Note: Dates, Times and DateTimes are represented as doubles in serial number format.", "$ref": "ExtendedValue" }, "effectiveValue": { "description": "The effective value of the cell. For cells with formulas, this is the calculated value. For cells with literals, this is the same as the user_entered_value. This field is read-only.", "$ref": "ExtendedValue" }, "formattedValue": { "description": "The formatted value of the cell. This is the value as it's shown to the user. This field is read-only.", "type": "string" }, "userEnteredFormat": { "description": "The format the user entered for the cell. When writing, the new format will be merged with the existing format.", "$ref": "CellFormat" }, "effectiveFormat": { "description": "The effective format being used by the cell. This includes the results of applying any conditional formatting and, if the cell contains a formula, the computed number format. If the effective format is the default format, effective format will not be written. This field is read-only.", "$ref": "CellFormat" }, "hyperlink": { "description": "A hyperlink this cell points to, if any. If the cell contains multiple hyperlinks, this field will be empty. This field is read-only. To set it, use a `=HYPERLINK` formula in the userEnteredValue.formulaValue field. A cell-level link can also be set from the userEnteredFormat.textFormat field. Alternatively, set a hyperlink in the textFormatRun.format.link field that spans the entire cell.", "type": "string" }, "note": { "description": "Any note on the cell.", "type": "string" }, "textFormatRuns": { "description": "Runs of rich text applied to subsections of the cell. Runs are only valid on user entered strings, not formulas, bools, or numbers. Properties of a run start at a specific index in the text and continue until the next run. Runs will inherit the properties of the cell unless explicitly changed. When writing, the new runs will overwrite any prior runs. When writing a new user_entered_value, previous runs are erased.", "type": "array", "items": { "$ref": "TextFormatRun" } }, "dataValidation": { "description": "A data validation rule on the cell, if any. When writing, the new data validation rule will overwrite any prior rule.", "$ref": "DataValidationRule" }, "pivotTable": { "description": "A pivot table anchored at this cell. The size of pivot table itself is computed dynamically based on its data, grouping, filters, values, etc. Only the top-left cell of the pivot table contains the pivot table definition. The other cells will contain the calculated values of the results of the pivot in their effective_value fields.", "$ref": "PivotTable" }, "dataSourceTable": { "description": "A data source table anchored at this cell. The size of data source table itself is computed dynamically based on its configuration. Only the first cell of the data source table contains the data source table definition. The other cells will contain the display values of the data source table result in their effective_value fields.", "$ref": "DataSourceTable" }, "dataSourceFormula": { "description": "Output only. Information about a data source formula on the cell. The field is set if user_entered_value is a formula referencing some DATA_SOURCE sheet, e.g. `=SUM(DataSheet!Column)`.", "readOnly": true, "$ref": "DataSourceFormula" } } }, "ExtendedValue": { "id": "ExtendedValue", "description": "The kinds of value that a cell in a spreadsheet can have.", "type": "object", "properties": { "numberValue": { "description": "Represents a double value. Note: Dates, Times and DateTimes are represented as doubles in SERIAL_NUMBER format.", "type": "number", "format": "double" }, "stringValue": { "description": "Represents a string value. Leading single quotes are not included. For example, if the user typed `'123` into the UI, this would be represented as a `stringValue` of `\"123\"`.", "type": "string" }, "boolValue": { "description": "Represents a boolean value.", "type": "boolean" }, "formulaValue": { "description": "Represents a formula.", "type": "string" }, "errorValue": { "description": "Represents an error. This field is read-only.", "$ref": "ErrorValue" } } }, "ErrorValue": { "id": "ErrorValue", "description": "An error in a cell.", "type": "object", "properties": { "type": { "description": "The type of error.", "type": "string", "enumDescriptions": [ "The default error type, do not use this.", "Corresponds to the `#ERROR!` error.", "Corresponds to the `#NULL!` error.", "Corresponds to the `#DIV/0` error.", "Corresponds to the `#VALUE!` error.", "Corresponds to the `#REF!` error.", "Corresponds to the `#NAME?` error.", "Corresponds to the `#NUM!` error.", "Corresponds to the `#N/A` error.", "Corresponds to the `Loading...` state." ], "enum": [ "ERROR_TYPE_UNSPECIFIED", "ERROR", "NULL_VALUE", "DIVIDE_BY_ZERO", "VALUE", "REF", "NAME", "NUM", "N_A", "LOADING" ] }, "message": { "description": "A message with more information about the error (in the spreadsheet's locale).", "type": "string" } } }, "TextFormatRun": { "id": "TextFormatRun", "description": "A run of a text format. The format of this run continues until the start index of the next run. When updating, all fields must be set.", "type": "object", "properties": { "startIndex": { "description": "The zero-based character index where this run starts, in UTF-16 code units.", "type": "integer", "format": "int32" }, "format": { "description": "The format of this run. Absent values inherit the cell's format.", "$ref": "TextFormat" } } }, "DataValidationRule": { "id": "DataValidationRule", "description": "A data validation rule.", "type": "object", "properties": { "condition": { "description": "The condition that data in the cell must match.", "$ref": "BooleanCondition" }, "inputMessage": { "description": "A message to show the user when adding data to the cell.", "type": "string" }, "strict": { "description": "True if invalid data should be rejected.", "type": "boolean" }, "showCustomUi": { "description": "True if the UI should be customized based on the kind of condition. If true, \"List\" conditions will show a dropdown.", "type": "boolean" } } }, "BooleanCondition": { "id": "BooleanCondition", "description": "A condition that can evaluate to true or false. BooleanConditions are used by conditional formatting, data validation, and the criteria in filters.", "type": "object", "properties": { "type": { "description": "The type of condition.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "The cell's value must be greater than the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue.", "The cell's value must be greater than or equal to the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue.", "The cell's value must be less than the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue.", "The cell's value must be less than or equal to the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue.", "The cell's value must be equal to the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue for data validation, conditional formatting, and filters on non-data source objects and at least one ConditionValue for filters on data source objects.", "The cell's value must be not equal to the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue for data validation, conditional formatting, and filters on non-data source objects and at least one ConditionValue for filters on data source objects.", "The cell's value must be between the two condition values. Supported by data validation, conditional formatting and filters. Requires exactly two ConditionValues.", "The cell's value must not be between the two condition values. Supported by data validation, conditional formatting and filters. Requires exactly two ConditionValues.", "The cell's value must contain the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue.", "The cell's value must not contain the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue.", "The cell's value must start with the condition's value. Supported by conditional formatting and filters. Requires a single ConditionValue.", "The cell's value must end with the condition's value. Supported by conditional formatting and filters. Requires a single ConditionValue.", "The cell's value must be exactly the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue for data validation, conditional formatting, and filters on non-data source objects and at least one ConditionValue for filters on data source objects.", "The cell's value must be a valid email address. Supported by data validation. Requires no ConditionValues.", "The cell's value must be a valid URL. Supported by data validation. Requires no ConditionValues.", "The cell's value must be the same date as the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue for data validation, conditional formatting, and filters on non-data source objects and at least one ConditionValue for filters on data source objects.", "The cell's value must be before the date of the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue that may be a relative date.", "The cell's value must be after the date of the condition's value. Supported by data validation, conditional formatting and filters. Requires a single ConditionValue that may be a relative date.", "The cell's value must be on or before the date of the condition's value. Supported by data validation. Requires a single ConditionValue that may be a relative date.", "The cell's value must be on or after the date of the condition's value. Supported by data validation. Requires a single ConditionValue that may be a relative date.", "The cell's value must be between the dates of the two condition values. Supported by data validation. Requires exactly two ConditionValues.", "The cell's value must be outside the dates of the two condition values. Supported by data validation. Requires exactly two ConditionValues.", "The cell's value must be a date. Supported by data validation. Requires no ConditionValues.", "The cell's value must be listed in the grid in condition value's range. Supported by data validation. Requires a single ConditionValue, and the value must be a valid range in A1 notation.", "The cell's value must be in the list of condition values. Supported by data validation. Supports any number of condition values, one per item in the list. Formulas are not supported in the values.", "The cell's value must be empty. Supported by conditional formatting and filters. Requires no ConditionValues.", "The cell's value must not be empty. Supported by conditional formatting and filters. Requires no ConditionValues.", "The condition's formula must evaluate to true. Supported by data validation, conditional formatting and filters. Not supported by data source sheet filters. Requires a single ConditionValue.", "The cell's value must be TRUE/FALSE or in the list of condition values. Supported by data validation. Renders as a cell checkbox. Supports zero, one or two ConditionValues. No values indicates the cell must be TRUE or FALSE, where TRUE renders as checked and FALSE renders as unchecked. One value indicates the cell will render as checked when it contains that value and unchecked when it is blank. Two values indicate that the cell will render as checked when it contains the first value and unchecked when it contains the second value. For example, [\"Yes\",\"No\"] indicates that the cell will render a checked box when it has the value \"Yes\" and an unchecked box when it has the value \"No\".", "The cell's value must be exactly not the condition's value. Supported by filters on data source objects. Requires at least one ConditionValue.", "The cell's value must be exactly not the condition's value. Supported by filters on data source objects. Requires at least one ConditionValue.", "The cell's value must follow the pattern specified. Requires a single ConditionValue." ], "enum": [ "CONDITION_TYPE_UNSPECIFIED", "NUMBER_GREATER", "NUMBER_GREATER_THAN_EQ", "NUMBER_LESS", "NUMBER_LESS_THAN_EQ", "NUMBER_EQ", "NUMBER_NOT_EQ", "NUMBER_BETWEEN", "NUMBER_NOT_BETWEEN", "TEXT_CONTAINS", "TEXT_NOT_CONTAINS", "TEXT_STARTS_WITH", "TEXT_ENDS_WITH", "TEXT_EQ", "TEXT_IS_EMAIL", "TEXT_IS_URL", "DATE_EQ", "DATE_BEFORE", "DATE_AFTER", "DATE_ON_OR_BEFORE", "DATE_ON_OR_AFTER", "DATE_BETWEEN", "DATE_NOT_BETWEEN", "DATE_IS_VALID", "ONE_OF_RANGE", "ONE_OF_LIST", "BLANK", "NOT_BLANK", "CUSTOM_FORMULA", "BOOLEAN", "TEXT_NOT_EQ", "DATE_NOT_EQ", "FILTER_EXPRESSION" ] }, "values": { "description": "The values of the condition. The number of supported values depends on the condition type. Some support zero values, others one or two values, and ConditionType.ONE_OF_LIST supports an arbitrary number of values.", "type": "array", "items": { "$ref": "ConditionValue" } } } }, "ConditionValue": { "id": "ConditionValue", "description": "The value of the condition.", "type": "object", "properties": { "relativeDate": { "description": "A relative date (based on the current date). Valid only if the type is DATE_BEFORE, DATE_AFTER, DATE_ON_OR_BEFORE or DATE_ON_OR_AFTER. Relative dates are not supported in data validation. They are supported only in conditional formatting and conditional filters.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The value is one year before today.", "The value is one month before today.", "The value is one week before today.", "The value is yesterday.", "The value is today.", "The value is tomorrow." ], "enum": [ "RELATIVE_DATE_UNSPECIFIED", "PAST_YEAR", "PAST_MONTH", "PAST_WEEK", "YESTERDAY", "TODAY", "TOMORROW" ] }, "userEnteredValue": { "description": "A value the condition is based on. The value is parsed as if the user typed into a cell. Formulas are supported (and must begin with an `=` or a '+').", "type": "string" } } }, "PivotTable": { "id": "PivotTable", "description": "A pivot table.", "type": "object", "properties": { "source": { "description": "The range the pivot table is reading data from.", "$ref": "GridRange" }, "dataSourceId": { "description": "The ID of the data source the pivot table is reading data from.", "type": "string" }, "rows": { "description": "Each row grouping in the pivot table.", "type": "array", "items": { "$ref": "PivotGroup" } }, "columns": { "description": "Each column grouping in the pivot table.", "type": "array", "items": { "$ref": "PivotGroup" } }, "criteria": { "description": "An optional mapping of filters per source column offset. The filters are applied before aggregating data into the pivot table. The map's key is the column offset of the source range that you want to filter, and the value is the criteria for that column. For example, if the source was `C10:E15`, a key of `0` will have the filter for column `C`, whereas the key `1` is for column `D`. This field is deprecated in favor of filter_specs.", "deprecated": true, "type": "object", "additionalProperties": { "$ref": "PivotFilterCriteria" } }, "filterSpecs": { "description": "The filters applied to the source columns before aggregating data for the pivot table. Both criteria and filter_specs are populated in responses. If both fields are specified in an update request, this field takes precedence.", "type": "array", "items": { "$ref": "PivotFilterSpec" } }, "values": { "description": "A list of values to include in the pivot table.", "type": "array", "items": { "$ref": "PivotValue" } }, "valueLayout": { "description": "Whether values should be listed horizontally (as columns) or vertically (as rows).", "type": "string", "enumDescriptions": [ "Values are laid out horizontally (as columns).", "Values are laid out vertically (as rows)." ], "enum": [ "HORIZONTAL", "VERTICAL" ] }, "dataExecutionStatus": { "description": "Output only. The data execution status for data source pivot tables.", "readOnly": true, "$ref": "DataExecutionStatus" } } }, "PivotGroup": { "id": "PivotGroup", "description": "A single grouping (either row or column) in a pivot table.", "type": "object", "properties": { "sourceColumnOffset": { "description": "The column offset of the source range that this grouping is based on. For example, if the source was `C10:E15`, a `sourceColumnOffset` of `0` means this group refers to column `C`, whereas the offset `1` would refer to column `D`.", "type": "integer", "format": "int32" }, "dataSourceColumnReference": { "description": "The reference to the data source column this grouping is based on.", "$ref": "DataSourceColumnReference" }, "showTotals": { "description": "True if the pivot table should include the totals for this grouping.", "type": "boolean" }, "valueMetadata": { "description": "Metadata about values in the grouping.", "type": "array", "items": { "$ref": "PivotGroupValueMetadata" } }, "sortOrder": { "description": "The order the values in this group should be sorted.", "type": "string", "enumDescriptions": [ "Default value, do not use this.", "Sort ascending.", "Sort descending." ], "enum": [ "SORT_ORDER_UNSPECIFIED", "ASCENDING", "DESCENDING" ] }, "valueBucket": { "description": "The bucket of the opposite pivot group to sort by. If not specified, sorting is alphabetical by this group's values.", "$ref": "PivotGroupSortValueBucket" }, "repeatHeadings": { "description": "True if the headings in this pivot group should be repeated. This is only valid for row groupings and is ignored by columns. By default, we minimize repetition of headings by not showing higher level headings where they are the same. For example, even though the third row below corresponds to \"Q1 Mar\", \"Q1\" is not shown because it is redundant with previous rows. Setting repeat_headings to true would cause \"Q1\" to be repeated for \"Feb\" and \"Mar\". +--------------+ | Q1 | Jan | | | Feb | | | Mar | +--------+-----+ | Q1 Total | +--------------+", "type": "boolean" }, "label": { "description": "The labels to use for the row/column groups which can be customized. For example, in the following pivot table, the row label is `Region` (which could be renamed to `State`) and the column label is `Product` (which could be renamed `Item`). Pivot tables created before December 2017 do not have header labels. If you'd like to add header labels to an existing pivot table, please delete the existing pivot table and then create a new pivot table with same parameters. +--------------+---------+-------+ | SUM of Units | Product | | | Region | Pen | Paper | +--------------+---------+-------+ | New York | 345 | 98 | | Oregon | 234 | 123 | | Tennessee | 531 | 415 | +--------------+---------+-------+ | Grand Total | 1110 | 636 | +--------------+---------+-------+", "type": "string" }, "groupRule": { "description": "The group rule to apply to this row/column group.", "$ref": "PivotGroupRule" }, "groupLimit": { "description": "The count limit on rows or columns to apply to this pivot group.", "$ref": "PivotGroupLimit" } } }, "PivotGroupValueMetadata": { "id": "PivotGroupValueMetadata", "description": "Metadata about a value in a pivot grouping.", "type": "object", "properties": { "value": { "description": "The calculated value the metadata corresponds to. (Note that formulaValue is not valid, because the values will be calculated.)", "$ref": "ExtendedValue" }, "collapsed": { "description": "True if the data corresponding to the value is collapsed.", "type": "boolean" } } }, "PivotGroupSortValueBucket": { "id": "PivotGroupSortValueBucket", "description": "Information about which values in a pivot group should be used for sorting.", "type": "object", "properties": { "valuesIndex": { "description": "The offset in the PivotTable.values list which the values in this grouping should be sorted by.", "type": "integer", "format": "int32" }, "buckets": { "description": "Determines the bucket from which values are chosen to sort. For example, in a pivot table with one row group & two column groups, the row group can list up to two values. The first value corresponds to a value within the first column group, and the second value corresponds to a value in the second column group. If no values are listed, this would indicate that the row should be sorted according to the \"Grand Total\" over the column groups. If a single value is listed, this would correspond to using the \"Total\" of that bucket.", "type": "array", "items": { "$ref": "ExtendedValue" } } } }, "PivotGroupRule": { "id": "PivotGroupRule", "description": "An optional setting on a PivotGroup that defines buckets for the values in the source data column rather than breaking out each individual value. Only one PivotGroup with a group rule may be added for each column in the source data, though on any given column you may add both a PivotGroup that has a rule and a PivotGroup that does not.", "type": "object", "properties": { "manualRule": { "description": "A ManualRule.", "$ref": "ManualRule" }, "histogramRule": { "description": "A HistogramRule.", "$ref": "HistogramRule" }, "dateTimeRule": { "description": "A DateTimeRule.", "$ref": "DateTimeRule" } } }, "ManualRule": { "id": "ManualRule", "description": "Allows you to manually organize the values in a source data column into buckets with names of your choosing. For example, a pivot table that aggregates population by state: +-------+-------------------+ | State | SUM of Population | +-------+-------------------+ | AK | 0.7 | | AL | 4.8 | | AR | 2.9 | ... +-------+-------------------+ could be turned into a pivot table that aggregates population by time zone by providing a list of groups (for example, groupName = 'Central', items = ['AL', 'AR', 'IA', ...]) to a manual group rule. Note that a similar effect could be achieved by adding a time zone column to the source data and adjusting the pivot table. +-----------+-------------------+ | Time Zone | SUM of Population | +-----------+-------------------+ | Central | 106.3 | | Eastern | 151.9 | | Mountain | 17.4 | ... +-----------+-------------------+", "type": "object", "properties": { "groups": { "description": "The list of group names and the corresponding items from the source data that map to each group name.", "type": "array", "items": { "$ref": "ManualRuleGroup" } } } }, "ManualRuleGroup": { "id": "ManualRuleGroup", "description": "A group name and a list of items from the source data that should be placed in the group with this name.", "type": "object", "properties": { "groupName": { "description": "The group name, which must be a string. Each group in a given ManualRule must have a unique group name.", "$ref": "ExtendedValue" }, "items": { "description": "The items in the source data that should be placed into this group. Each item may be a string, number, or boolean. Items may appear in at most one group within a given ManualRule. Items that do not appear in any group will appear on their own.", "type": "array", "items": { "$ref": "ExtendedValue" } } } }, "HistogramRule": { "id": "HistogramRule", "description": "Allows you to organize the numeric values in a source data column into buckets of a constant size. All values from HistogramRule.start to HistogramRule.end are placed into groups of size HistogramRule.interval. In addition, all values below HistogramRule.start are placed in one group, and all values above HistogramRule.end are placed in another. Only HistogramRule.interval is required, though if HistogramRule.start and HistogramRule.end are both provided, HistogramRule.start must be less than HistogramRule.end. For example, a pivot table showing average purchase amount by age that has 50+ rows: +-----+-------------------+ | Age | AVERAGE of Amount | +-----+-------------------+ | 16 | $27.13 | | 17 | $5.24 | | 18 | $20.15 | ... +-----+-------------------+ could be turned into a pivot table that looks like the one below by applying a histogram group rule with a HistogramRule.start of 25, an HistogramRule.interval of 20, and an HistogramRule.end of 65. +-------------+-------------------+ | Grouped Age | AVERAGE of Amount | +-------------+-------------------+ | \u003c 25 | $19.34 | | 25-45 | $31.43 | | 45-65 | $35.87 | | \u003e 65 | $27.55 | +-------------+-------------------+ | Grand Total | $29.12 | +-------------+-------------------+", "type": "object", "properties": { "interval": { "description": "The size of the buckets that are created. Must be positive.", "type": "number", "format": "double" }, "start": { "description": "The minimum value at which items are placed into buckets of constant size. Values below start are lumped into a single bucket. This field is optional.", "type": "number", "format": "double" }, "end": { "description": "The maximum value at which items are placed into buckets of constant size. Values above end are lumped into a single bucket. This field is optional.", "type": "number", "format": "double" } } }, "DateTimeRule": { "id": "DateTimeRule", "description": "Allows you to organize the date-time values in a source data column into buckets based on selected parts of their date or time values. For example, consider a pivot table showing sales transactions by date: +----------+--------------+ | Date | SUM of Sales | +----------+--------------+ | 1/1/2017 | $621.14 | | 2/3/2017 | $708.84 | | 5/8/2017 | $326.84 | ... +----------+--------------+ Applying a date-time group rule with a DateTimeRuleType of YEAR_MONTH results in the following pivot table. +--------------+--------------+ | Grouped Date | SUM of Sales | +--------------+--------------+ | 2017-Jan | $53,731.78 | | 2017-Feb | $83,475.32 | | 2017-Mar | $94,385.05 | ... +--------------+--------------+", "type": "object", "properties": { "type": { "description": "The type of date-time grouping to apply.", "type": "string", "enumDescriptions": [ "The default type, do not use.", "Group dates by second, from 0 to 59.", "Group dates by minute, from 0 to 59.", "Group dates by hour using a 24-hour system, from 0 to 23.", "Group dates by hour and minute using a 24-hour system, for example 19:45.", "Group dates by hour and minute using a 12-hour system, for example 7:45 PM. The AM/PM designation is translated based on the spreadsheet locale.", "Group dates by day of week, for example Sunday. The days of the week will be translated based on the spreadsheet locale.", "Group dates by day of year, from 1 to 366. Note that dates after Feb. 29 fall in different buckets in leap years than in non-leap years.", "Group dates by day of month, from 1 to 31.", "Group dates by day and month, for example 22-Nov. The month is translated based on the spreadsheet locale.", "Group dates by month, for example Nov. The month is translated based on the spreadsheet locale.", "Group dates by quarter, for example Q1 (which represents Jan-Mar).", "Group dates by year, for example 2008.", "Group dates by year and month, for example 2008-Nov. The month is translated based on the spreadsheet locale.", "Group dates by year and quarter, for example 2008 Q4.", "Group dates by year, month, and day, for example 2008-11-22." ], "enum": [ "DATE_TIME_RULE_TYPE_UNSPECIFIED", "SECOND", "MINUTE", "HOUR", "HOUR_MINUTE", "HOUR_MINUTE_AMPM", "DAY_OF_WEEK", "DAY_OF_YEAR", "DAY_OF_MONTH", "DAY_MONTH", "MONTH", "QUARTER", "YEAR", "YEAR_MONTH", "YEAR_QUARTER", "YEAR_MONTH_DAY" ] } } }, "PivotGroupLimit": { "id": "PivotGroupLimit", "description": "The count limit on rows or columns in the pivot group.", "type": "object", "properties": { "countLimit": { "description": "The count limit.", "type": "integer", "format": "int32" }, "applyOrder": { "description": "The order in which the group limit is applied to the pivot table. Pivot group limits are applied from lower to higher order number. Order numbers are normalized to consecutive integers from 0. For write request, to fully customize the applying orders, all pivot group limits should have this field set with an unique number. Otherwise, the order is determined by the index in the PivotTable.rows list and then the PivotTable.columns list.", "type": "integer", "format": "int32" } } }, "PivotFilterCriteria": { "id": "PivotFilterCriteria", "description": "Criteria for showing/hiding rows in a pivot table.", "type": "object", "properties": { "visibleValues": { "description": "Values that should be included. Values not listed here are excluded.", "type": "array", "items": { "type": "string" } }, "condition": { "description": "A condition that must be true for values to be shown. (`visibleValues` does not override this -- even if a value is listed there, it is still hidden if it does not meet the condition.) Condition values that refer to ranges in A1-notation are evaluated relative to the pivot table sheet. References are treated absolutely, so are not filled down the pivot table. For example, a condition value of `=A1` on \"Pivot Table 1\" is treated as `'Pivot Table 1'!$A$1`. The source data of the pivot table can be referenced by column header name. For example, if the source data has columns named \"Revenue\" and \"Cost\" and a condition is applied to the \"Revenue\" column with type `NUMBER_GREATER` and value `=Cost`, then only columns where \"Revenue\" \u003e \"Cost\" are included.", "$ref": "BooleanCondition" }, "visibleByDefault": { "description": "Whether values are visible by default. If true, the visible_values are ignored, all values that meet condition (if specified) are shown. If false, values that are both in visible_values and meet condition are shown.", "type": "boolean" } } }, "PivotFilterSpec": { "id": "PivotFilterSpec", "description": "The pivot table filter criteria associated with a specific source column offset.", "type": "object", "properties": { "columnOffsetIndex": { "description": "The zero-based column offset of the source range.", "type": "integer", "format": "int32" }, "dataSourceColumnReference": { "description": "The reference to the data source column.", "$ref": "DataSourceColumnReference" }, "filterCriteria": { "description": "The criteria for the column.", "$ref": "PivotFilterCriteria" } } }, "PivotValue": { "id": "PivotValue", "description": "The definition of how a value in a pivot table should be calculated.", "type": "object", "properties": { "sourceColumnOffset": { "description": "The column offset of the source range that this value reads from. For example, if the source was `C10:E15`, a `sourceColumnOffset` of `0` means this value refers to column `C`, whereas the offset `1` would refer to column `D`.", "type": "integer", "format": "int32" }, "formula": { "description": "A custom formula to calculate the value. The formula must start with an `=` character.", "type": "string" }, "dataSourceColumnReference": { "description": "The reference to the data source column that this value reads from.", "$ref": "DataSourceColumnReference" }, "summarizeFunction": { "description": "A function to summarize the value. If formula is set, the only supported values are SUM and CUSTOM. If sourceColumnOffset is set, then `CUSTOM` is not supported.", "type": "string", "enumDescriptions": [ "The default, do not use.", "Corresponds to the `SUM` function.", "Corresponds to the `COUNTA` function.", "Corresponds to the `COUNT` function.", "Corresponds to the `COUNTUNIQUE` function.", "Corresponds to the `AVERAGE` function.", "Corresponds to the `MAX` function.", "Corresponds to the `MIN` function.", "Corresponds to the `MEDIAN` function.", "Corresponds to the `PRODUCT` function.", "Corresponds to the `STDEV` function.", "Corresponds to the `STDEVP` function.", "Corresponds to the `VAR` function.", "Corresponds to the `VARP` function.", "Indicates the formula should be used as-is. Only valid if PivotValue.formula was set.", "Indicates that the value is already summarized, and the summarization function is not explicitly specified. Used for Looker data source pivot tables where the value is already summarized." ], "enum": [ "PIVOT_STANDARD_VALUE_FUNCTION_UNSPECIFIED", "SUM", "COUNTA", "COUNT", "COUNTUNIQUE", "AVERAGE", "MAX", "MIN", "MEDIAN", "PRODUCT", "STDEV", "STDEVP", "VAR", "VARP", "CUSTOM", "NONE" ] }, "name": { "description": "A name to use for the value.", "type": "string" }, "calculatedDisplayType": { "description": "If specified, indicates that pivot values should be displayed as the result of a calculation with another pivot value. For example, if calculated_display_type is specified as PERCENT_OF_GRAND_TOTAL, all the pivot values are displayed as the percentage of the grand total. In the Sheets editor, this is referred to as \"Show As\" in the value section of a pivot table.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Shows the pivot values as percentage of the row total values.", "Shows the pivot values as percentage of the column total values.", "Shows the pivot values as percentage of the grand total values." ], "enum": [ "PIVOT_VALUE_CALCULATED_DISPLAY_TYPE_UNSPECIFIED", "PERCENT_OF_ROW_TOTAL", "PERCENT_OF_COLUMN_TOTAL", "PERCENT_OF_GRAND_TOTAL" ] } } }, "DataSourceTable": { "id": "DataSourceTable", "description": "A data source table, which allows the user to import a static table of data from the DataSource into Sheets. This is also known as \"Extract\" in the Sheets editor.", "type": "object", "properties": { "dataSourceId": { "description": "The ID of the data source the data source table is associated with.", "type": "string" }, "columnSelectionType": { "description": "The type to select columns for the data source table. Defaults to SELECTED.", "type": "string", "enumDescriptions": [ "The default column selection type, do not use.", "Select columns specified by columns field.", "Sync all current and future columns in the data source. If set, the data source table fetches all the columns in the data source at the time of refresh." ], "enum": [ "DATA_SOURCE_TABLE_COLUMN_SELECTION_TYPE_UNSPECIFIED", "SELECTED", "SYNC_ALL" ] }, "columns": { "description": "Columns selected for the data source table. The column_selection_type must be SELECTED.", "type": "array", "items": { "$ref": "DataSourceColumnReference" } }, "filterSpecs": { "description": "Filter specifications in the data source table.", "type": "array", "items": { "$ref": "FilterSpec" } }, "sortSpecs": { "description": "Sort specifications in the data source table. The result of the data source table is sorted based on the sort specifications in order.", "type": "array", "items": { "$ref": "SortSpec" } }, "rowLimit": { "description": "The limit of rows to return. If not set, a default limit is applied. Please refer to the Sheets editor for the default and max limit.", "type": "integer", "format": "int32" }, "dataExecutionStatus": { "description": "Output only. The data execution status.", "readOnly": true, "$ref": "DataExecutionStatus" } } }, "FilterSpec": { "id": "FilterSpec", "description": "The filter criteria associated with a specific column.", "type": "object", "properties": { "columnIndex": { "description": "The zero-based column index.", "type": "integer", "format": "int32" }, "dataSourceColumnReference": { "description": "Reference to a data source column.", "$ref": "DataSourceColumnReference" }, "filterCriteria": { "description": "The criteria for the column.", "$ref": "FilterCriteria" } } }, "FilterCriteria": { "id": "FilterCriteria", "description": "Criteria for showing/hiding rows in a filter or filter view.", "type": "object", "properties": { "hiddenValues": { "description": "Values that should be hidden.", "type": "array", "items": { "type": "string" } }, "condition": { "description": "A condition that must be true for values to be shown. (This does not override hidden_values -- if a value is listed there, it will still be hidden.)", "$ref": "BooleanCondition" }, "visibleBackgroundColor": { "description": "The background fill color to filter by; only cells with this fill color are shown. Mutually exclusive with visible_foreground_color. Deprecated: Use visible_background_color_style.", "deprecated": true, "$ref": "Color" }, "visibleBackgroundColorStyle": { "description": "The background fill color to filter by; only cells with this fill color are shown. This field is mutually exclusive with visible_foreground_color, and must be set to an RGB-type color. If visible_background_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "visibleForegroundColor": { "description": "The foreground color to filter by; only cells with this foreground color are shown. Mutually exclusive with visible_background_color. Deprecated: Use visible_foreground_color_style.", "deprecated": true, "$ref": "Color" }, "visibleForegroundColorStyle": { "description": "The foreground color to filter by; only cells with this foreground color are shown. This field is mutually exclusive with visible_background_color, and must be set to an RGB-type color. If visible_foreground_color is also set, this field takes precedence.", "$ref": "ColorStyle" } } }, "SortSpec": { "id": "SortSpec", "description": "A sort order associated with a specific column or row.", "type": "object", "properties": { "dimensionIndex": { "description": "The dimension the sort should be applied to.", "type": "integer", "format": "int32" }, "dataSourceColumnReference": { "description": "Reference to a data source column.", "$ref": "DataSourceColumnReference" }, "sortOrder": { "description": "The order data should be sorted.", "type": "string", "enumDescriptions": [ "Default value, do not use this.", "Sort ascending.", "Sort descending." ], "enum": [ "SORT_ORDER_UNSPECIFIED", "ASCENDING", "DESCENDING" ] }, "foregroundColor": { "description": "The foreground color to sort by; cells with this foreground color are sorted to the top. Mutually exclusive with background_color. Deprecated: Use foreground_color_style.", "deprecated": true, "$ref": "Color" }, "foregroundColorStyle": { "description": "The foreground color to sort by; cells with this foreground color are sorted to the top. Mutually exclusive with background_color, and must be an RGB-type color. If foreground_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "backgroundColor": { "description": "The background fill color to sort by; cells with this fill color are sorted to the top. Mutually exclusive with foreground_color. Deprecated: Use background_color_style.", "deprecated": true, "$ref": "Color" }, "backgroundColorStyle": { "description": "The background fill color to sort by; cells with this fill color are sorted to the top. Mutually exclusive with foreground_color, and must be an RGB-type color. If background_color is also set, this field takes precedence.", "$ref": "ColorStyle" } } }, "DataSourceFormula": { "id": "DataSourceFormula", "description": "A data source formula.", "type": "object", "properties": { "dataSourceId": { "description": "The ID of the data source the formula is associated with.", "type": "string" }, "dataExecutionStatus": { "description": "Output only. The data execution status.", "readOnly": true, "$ref": "DataExecutionStatus" } } }, "DimensionProperties": { "id": "DimensionProperties", "description": "Properties about a dimension.", "type": "object", "properties": { "hiddenByFilter": { "description": "True if this dimension is being filtered. This field is read-only.", "type": "boolean" }, "hiddenByUser": { "description": "True if this dimension is explicitly hidden.", "type": "boolean" }, "pixelSize": { "description": "The height (if a row) or width (if a column) of the dimension in pixels.", "type": "integer", "format": "int32" }, "developerMetadata": { "description": "The developer metadata associated with a single row or column.", "type": "array", "items": { "$ref": "DeveloperMetadata" } }, "dataSourceColumnReference": { "description": "Output only. If set, this is a column in a data source sheet.", "readOnly": true, "$ref": "DataSourceColumnReference" } } }, "ConditionalFormatRule": { "id": "ConditionalFormatRule", "description": "A rule describing a conditional format.", "type": "object", "properties": { "ranges": { "description": "The ranges that are formatted if the condition is true. All the ranges must be on the same grid.", "type": "array", "items": { "$ref": "GridRange" } }, "booleanRule": { "description": "The formatting is either \"on\" or \"off\" according to the rule.", "$ref": "BooleanRule" }, "gradientRule": { "description": "The formatting will vary based on the gradients in the rule.", "$ref": "GradientRule" } } }, "BooleanRule": { "id": "BooleanRule", "description": "A rule that may or may not match, depending on the condition.", "type": "object", "properties": { "condition": { "description": "The condition of the rule. If the condition evaluates to true, the format is applied.", "$ref": "BooleanCondition" }, "format": { "description": "The format to apply. Conditional formatting can only apply a subset of formatting: bold, italic, strikethrough, foreground color and, background color.", "$ref": "CellFormat" } } }, "GradientRule": { "id": "GradientRule", "description": "A rule that applies a gradient color scale format, based on the interpolation points listed. The format of a cell will vary based on its contents as compared to the values of the interpolation points.", "type": "object", "properties": { "minpoint": { "description": "The starting interpolation point.", "$ref": "InterpolationPoint" }, "midpoint": { "description": "An optional midway interpolation point.", "$ref": "InterpolationPoint" }, "maxpoint": { "description": "The final interpolation point.", "$ref": "InterpolationPoint" } } }, "InterpolationPoint": { "id": "InterpolationPoint", "description": "A single interpolation point on a gradient conditional format. These pin the gradient color scale according to the color, type and value chosen.", "type": "object", "properties": { "color": { "description": "The color this interpolation point should use. Deprecated: Use color_style.", "deprecated": true, "$ref": "Color" }, "colorStyle": { "description": "The color this interpolation point should use. If color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "type": { "description": "How the value should be interpreted.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "The interpolation point uses the minimum value in the cells over the range of the conditional format.", "The interpolation point uses the maximum value in the cells over the range of the conditional format.", "The interpolation point uses exactly the value in InterpolationPoint.value.", "The interpolation point is the given percentage over all the cells in the range of the conditional format. This is equivalent to `NUMBER` if the value was: `=(MAX(FLATTEN(range)) * (value / 100)) + (MIN(FLATTEN(range)) * (1 - (value / 100)))` (where errors in the range are ignored when flattening).", "The interpolation point is the given percentile over all the cells in the range of the conditional format. This is equivalent to `NUMBER` if the value was: `=PERCENTILE(FLATTEN(range), value / 100)` (where errors in the range are ignored when flattening)." ], "enum": [ "INTERPOLATION_POINT_TYPE_UNSPECIFIED", "MIN", "MAX", "NUMBER", "PERCENT", "PERCENTILE" ] }, "value": { "description": "The value this interpolation point uses. May be a formula. Unused if type is MIN or MAX.", "type": "string" } } }, "FilterView": { "id": "FilterView", "description": "A filter view.", "type": "object", "properties": { "filterViewId": { "description": "The ID of the filter view.", "type": "integer", "format": "int32" }, "title": { "description": "The name of the filter view.", "type": "string" }, "range": { "description": "The range this filter view covers. When writing, only one of range or named_range_id may be set.", "$ref": "GridRange" }, "namedRangeId": { "description": "The named range this filter view is backed by, if any. When writing, only one of range or named_range_id may be set.", "type": "string" }, "sortSpecs": { "description": "The sort order per column. Later specifications are used when values are equal in the earlier specifications.", "type": "array", "items": { "$ref": "SortSpec" } }, "criteria": { "description": "The criteria for showing/hiding values per column. The map's key is the column index, and the value is the criteria for that column. This field is deprecated in favor of filter_specs.", "deprecated": true, "type": "object", "additionalProperties": { "$ref": "FilterCriteria" } }, "filterSpecs": { "description": "The filter criteria for showing/hiding values per column. Both criteria and filter_specs are populated in responses. If both fields are specified in an update request, this field takes precedence.", "type": "array", "items": { "$ref": "FilterSpec" } } } }, "ProtectedRange": { "id": "ProtectedRange", "description": "A protected range.", "type": "object", "properties": { "protectedRangeId": { "description": "The ID of the protected range. This field is read-only.", "type": "integer", "format": "int32" }, "range": { "description": "The range that is being protected. The range may be fully unbounded, in which case this is considered a protected sheet. When writing, only one of range or named_range_id may be set.", "$ref": "GridRange" }, "namedRangeId": { "description": "The named range this protected range is backed by, if any. When writing, only one of range or named_range_id may be set.", "type": "string" }, "description": { "description": "The description of this protected range.", "type": "string" }, "warningOnly": { "description": "True if this protected range will show a warning when editing. Warning-based protection means that every user can edit data in the protected range, except editing will prompt a warning asking the user to confirm the edit. When writing: if this field is true, then editors are ignored. Additionally, if this field is changed from true to false and the `editors` field is not set (nor included in the field mask), then the editors will be set to all the editors in the document.", "type": "boolean" }, "requestingUserCanEdit": { "description": "True if the user who requested this protected range can edit the protected area. This field is read-only.", "type": "boolean" }, "unprotectedRanges": { "description": "The list of unprotected ranges within a protected sheet. Unprotected ranges are only supported on protected sheets.", "type": "array", "items": { "$ref": "GridRange" } }, "editors": { "description": "The users and groups with edit access to the protected range. This field is only visible to users with edit access to the protected range and the document. Editors are not supported with warning_only protection.", "$ref": "Editors" } } }, "Editors": { "id": "Editors", "description": "The editors of a protected range.", "type": "object", "properties": { "users": { "description": "The email addresses of users with edit access to the protected range.", "type": "array", "items": { "type": "string" } }, "groups": { "description": "The email addresses of groups with edit access to the protected range.", "type": "array", "items": { "type": "string" } }, "domainUsersCanEdit": { "description": "True if anyone in the document's domain has edit access to the protected range. Domain protection is only supported on documents within a domain.", "type": "boolean" } } }, "BasicFilter": { "id": "BasicFilter", "description": "The default filter associated with a sheet.", "type": "object", "properties": { "range": { "description": "The range the filter covers.", "$ref": "GridRange" }, "sortSpecs": { "description": "The sort order per column. Later specifications are used when values are equal in the earlier specifications.", "type": "array", "items": { "$ref": "SortSpec" } }, "criteria": { "description": "The criteria for showing/hiding values per column. The map's key is the column index, and the value is the criteria for that column. This field is deprecated in favor of filter_specs.", "deprecated": true, "type": "object", "additionalProperties": { "$ref": "FilterCriteria" } }, "filterSpecs": { "description": "The filter criteria per column. Both criteria and filter_specs are populated in responses. If both fields are specified in an update request, this field takes precedence.", "type": "array", "items": { "$ref": "FilterSpec" } } } }, "EmbeddedChart": { "id": "EmbeddedChart", "description": "A chart embedded in a sheet.", "type": "object", "properties": { "chartId": { "description": "The ID of the chart.", "type": "integer", "format": "int32" }, "spec": { "description": "The specification of the chart.", "$ref": "ChartSpec" }, "position": { "description": "The position of the chart.", "$ref": "EmbeddedObjectPosition" }, "border": { "description": "The border of the chart.", "$ref": "EmbeddedObjectBorder" } } }, "ChartSpec": { "id": "ChartSpec", "description": "The specifications of a chart.", "type": "object", "properties": { "title": { "description": "The title of the chart.", "type": "string" }, "altText": { "description": "The alternative text that describes the chart. This is often used for accessibility.", "type": "string" }, "titleTextFormat": { "description": "The title text format. Strikethrough, underline, and link are not supported.", "$ref": "TextFormat" }, "titleTextPosition": { "description": "The title text position. This field is optional.", "$ref": "TextPosition" }, "subtitle": { "description": "The subtitle of the chart.", "type": "string" }, "subtitleTextFormat": { "description": "The subtitle text format. Strikethrough, underline, and link are not supported.", "$ref": "TextFormat" }, "subtitleTextPosition": { "description": "The subtitle text position. This field is optional.", "$ref": "TextPosition" }, "fontName": { "description": "The name of the font to use by default for all chart text (e.g. title, axis labels, legend). If a font is specified for a specific part of the chart it will override this font name.", "type": "string" }, "maximized": { "description": "True to make a chart fill the entire space in which it's rendered with minimum padding. False to use the default padding. (Not applicable to Geo and Org charts.)", "type": "boolean" }, "backgroundColor": { "description": "The background color of the entire chart. Not applicable to Org charts. Deprecated: Use background_color_style.", "deprecated": true, "$ref": "Color" }, "backgroundColorStyle": { "description": "The background color of the entire chart. Not applicable to Org charts. If background_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "dataSourceChartProperties": { "description": "If present, the field contains data source chart specific properties.", "$ref": "DataSourceChartProperties" }, "filterSpecs": { "description": "The filters applied to the source data of the chart. Only supported for data source charts.", "type": "array", "items": { "$ref": "FilterSpec" } }, "sortSpecs": { "description": "The order to sort the chart data by. Only a single sort spec is supported. Only supported for data source charts.", "type": "array", "items": { "$ref": "SortSpec" } }, "basicChart": { "description": "A basic chart specification, can be one of many kinds of charts. See BasicChartType for the list of all charts this supports.", "$ref": "BasicChartSpec" }, "pieChart": { "description": "A pie chart specification.", "$ref": "PieChartSpec" }, "bubbleChart": { "description": "A bubble chart specification.", "$ref": "BubbleChartSpec" }, "candlestickChart": { "description": "A candlestick chart specification.", "$ref": "CandlestickChartSpec" }, "orgChart": { "description": "An org chart specification.", "$ref": "OrgChartSpec" }, "histogramChart": { "description": "A histogram chart specification.", "$ref": "HistogramChartSpec" }, "waterfallChart": { "description": "A waterfall chart specification.", "$ref": "WaterfallChartSpec" }, "treemapChart": { "description": "A treemap chart specification.", "$ref": "TreemapChartSpec" }, "scorecardChart": { "description": "A scorecard chart specification.", "$ref": "ScorecardChartSpec" }, "hiddenDimensionStrategy": { "description": "Determines how the charts will use hidden rows or columns.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Charts will skip hidden rows and columns.", "Charts will skip hidden rows only.", "Charts will skip hidden columns only.", "Charts will not skip any hidden rows or columns." ], "enum": [ "CHART_HIDDEN_DIMENSION_STRATEGY_UNSPECIFIED", "SKIP_HIDDEN_ROWS_AND_COLUMNS", "SKIP_HIDDEN_ROWS", "SKIP_HIDDEN_COLUMNS", "SHOW_ALL" ] } } }, "TextPosition": { "id": "TextPosition", "description": "Position settings for text.", "type": "object", "properties": { "horizontalAlignment": { "description": "Horizontal alignment setting for the piece of text.", "type": "string", "enumDescriptions": [ "The horizontal alignment is not specified. Do not use this.", "The text is explicitly aligned to the left of the cell.", "The text is explicitly aligned to the center of the cell.", "The text is explicitly aligned to the right of the cell." ], "enum": [ "HORIZONTAL_ALIGN_UNSPECIFIED", "LEFT", "CENTER", "RIGHT" ] } } }, "DataSourceChartProperties": { "id": "DataSourceChartProperties", "description": "Properties of a data source chart.", "type": "object", "properties": { "dataSourceId": { "description": "ID of the data source that the chart is associated with.", "type": "string" }, "dataExecutionStatus": { "description": "Output only. The data execution status.", "readOnly": true, "$ref": "DataExecutionStatus" } } }, "BasicChartSpec": { "id": "BasicChartSpec", "description": "The specification for a basic chart. See BasicChartType for the list of charts this supports.", "type": "object", "properties": { "chartType": { "description": "The type of the chart.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "A bar chart.", "A line chart.", "An area chart.", "A column chart.", "A scatter chart.", "A combo chart.", "A stepped area chart." ], "enum": [ "BASIC_CHART_TYPE_UNSPECIFIED", "BAR", "LINE", "AREA", "COLUMN", "SCATTER", "COMBO", "STEPPED_AREA" ] }, "legendPosition": { "description": "The position of the chart legend.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The legend is rendered on the bottom of the chart.", "The legend is rendered on the left of the chart.", "The legend is rendered on the right of the chart.", "The legend is rendered on the top of the chart.", "No legend is rendered." ], "enum": [ "BASIC_CHART_LEGEND_POSITION_UNSPECIFIED", "BOTTOM_LEGEND", "LEFT_LEGEND", "RIGHT_LEGEND", "TOP_LEGEND", "NO_LEGEND" ] }, "axis": { "description": "The axis on the chart.", "type": "array", "items": { "$ref": "BasicChartAxis" } }, "domains": { "description": "The domain of data this is charting. Only a single domain is supported.", "type": "array", "items": { "$ref": "BasicChartDomain" } }, "series": { "description": "The data this chart is visualizing.", "type": "array", "items": { "$ref": "BasicChartSeries" } }, "headerCount": { "description": "The number of rows or columns in the data that are \"headers\". If not set, Google Sheets will guess how many rows are headers based on the data. (Note that BasicChartAxis.title may override the axis title inferred from the header values.)", "type": "integer", "format": "int32" }, "threeDimensional": { "description": "True to make the chart 3D. Applies to Bar and Column charts.", "type": "boolean" }, "interpolateNulls": { "description": "If some values in a series are missing, gaps may appear in the chart (e.g, segments of lines in a line chart will be missing). To eliminate these gaps set this to true. Applies to Line, Area, and Combo charts.", "type": "boolean" }, "stackedType": { "description": "The stacked type for charts that support vertical stacking. Applies to Area, Bar, Column, Combo, and Stepped Area charts.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Series are not stacked.", "Series values are stacked, each value is rendered vertically beginning from the top of the value below it.", "Vertical stacks are stretched to reach the top of the chart, with values laid out as percentages of each other." ], "enum": [ "BASIC_CHART_STACKED_TYPE_UNSPECIFIED", "NOT_STACKED", "STACKED", "PERCENT_STACKED" ] }, "lineSmoothing": { "description": "Gets whether all lines should be rendered smooth or straight by default. Applies to Line charts.", "type": "boolean" }, "compareMode": { "description": "The behavior of tooltips and data highlighting when hovering on data and chart area.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Only the focused data element is highlighted and shown in the tooltip.", "All data elements with the same category (e.g., domain value) are highlighted and shown in the tooltip." ], "enum": [ "BASIC_CHART_COMPARE_MODE_UNSPECIFIED", "DATUM", "CATEGORY" ] }, "totalDataLabel": { "description": "Controls whether to display additional data labels on stacked charts which sum the total value of all stacked values at each value along the domain axis. These data labels can only be set when chart_type is one of AREA, BAR, COLUMN, COMBO or STEPPED_AREA and stacked_type is either STACKED or PERCENT_STACKED. In addition, for COMBO, this will only be supported if there is only one type of stackable series type or one type has more series than the others and each of the other types have no more than one series. For example, if a chart has two stacked bar series and one area series, the total data labels will be supported. If it has three bar series and two area series, total data labels are not allowed. Neither CUSTOM nor placement can be set on the total_data_label.", "$ref": "DataLabel" } } }, "BasicChartAxis": { "id": "BasicChartAxis", "description": "An axis of the chart. A chart may not have more than one axis per axis position.", "type": "object", "properties": { "position": { "description": "The position of this axis.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The axis rendered at the bottom of a chart. For most charts, this is the standard major axis. For bar charts, this is a minor axis.", "The axis rendered at the left of a chart. For most charts, this is a minor axis. For bar charts, this is the standard major axis.", "The axis rendered at the right of a chart. For most charts, this is a minor axis. For bar charts, this is an unusual major axis." ], "enum": [ "BASIC_CHART_AXIS_POSITION_UNSPECIFIED", "BOTTOM_AXIS", "LEFT_AXIS", "RIGHT_AXIS" ] }, "title": { "description": "The title of this axis. If set, this overrides any title inferred from headers of the data.", "type": "string" }, "format": { "description": "The format of the title. Only valid if the axis is not associated with the domain. The link field is not supported.", "$ref": "TextFormat" }, "titleTextPosition": { "description": "The axis title text position.", "$ref": "TextPosition" }, "viewWindowOptions": { "description": "The view window options for this axis.", "$ref": "ChartAxisViewWindowOptions" } } }, "ChartAxisViewWindowOptions": { "id": "ChartAxisViewWindowOptions", "description": "The options that define a \"view window\" for a chart (such as the visible values in an axis).", "type": "object", "properties": { "viewWindowMin": { "description": "The minimum numeric value to be shown in this view window. If unset, will automatically determine a minimum value that looks good for the data.", "type": "number", "format": "double" }, "viewWindowMax": { "description": "The maximum numeric value to be shown in this view window. If unset, will automatically determine a maximum value that looks good for the data.", "type": "number", "format": "double" }, "viewWindowMode": { "description": "The view window's mode.", "type": "string", "enumDescriptions": [ "The default view window mode used in the Sheets editor for this chart type. In most cases, if set, the default mode is equivalent to `PRETTY`.", "Do not use. Represents that the currently set mode is not supported by the API.", "Follows the min and max exactly if specified. If a value is unspecified, it will fall back to the `PRETTY` value.", "Chooses a min and max that make the chart look good. Both min and max are ignored in this mode." ], "enum": [ "DEFAULT_VIEW_WINDOW_MODE", "VIEW_WINDOW_MODE_UNSUPPORTED", "EXPLICIT", "PRETTY" ] } } }, "BasicChartDomain": { "id": "BasicChartDomain", "description": "The domain of a chart. For example, if charting stock prices over time, this would be the date.", "type": "object", "properties": { "domain": { "description": "The data of the domain. For example, if charting stock prices over time, this is the data representing the dates.", "$ref": "ChartData" }, "reversed": { "description": "True to reverse the order of the domain values (horizontal axis).", "type": "boolean" } } }, "ChartData": { "id": "ChartData", "description": "The data included in a domain or series.", "type": "object", "properties": { "sourceRange": { "description": "The source ranges of the data.", "$ref": "ChartSourceRange" }, "columnReference": { "description": "The reference to the data source column that the data reads from.", "$ref": "DataSourceColumnReference" }, "groupRule": { "description": "The rule to group the data by if the ChartData backs the domain of a data source chart. Only supported for data source charts.", "$ref": "ChartGroupRule" }, "aggregateType": { "description": "The aggregation type for the series of a data source chart. Only supported for data source charts.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Average aggregate function.", "Count aggregate function.", "Maximum aggregate function.", "Median aggregate function.", "Minimum aggregate function.", "Sum aggregate function." ], "enum": [ "CHART_AGGREGATE_TYPE_UNSPECIFIED", "AVERAGE", "COUNT", "MAX", "MEDIAN", "MIN", "SUM" ] } } }, "ChartSourceRange": { "id": "ChartSourceRange", "description": "Source ranges for a chart.", "type": "object", "properties": { "sources": { "description": "The ranges of data for a series or domain. Exactly one dimension must have a length of 1, and all sources in the list must have the same dimension with length 1. The domain (if it exists) & all series must have the same number of source ranges. If using more than one source range, then the source range at a given offset must be in order and contiguous across the domain and series. For example, these are valid configurations: domain sources: A1:A5 series1 sources: B1:B5 series2 sources: D6:D10 domain sources: A1:A5, C10:C12 series1 sources: B1:B5, D10:D12 series2 sources: C1:C5, E10:E12", "type": "array", "items": { "$ref": "GridRange" } } } }, "ChartGroupRule": { "id": "ChartGroupRule", "description": "An optional setting on the ChartData of the domain of a data source chart that defines buckets for the values in the domain rather than breaking out each individual value. For example, when plotting a data source chart, you can specify a histogram rule on the domain (it should only contain numeric values), grouping its values into buckets. Any values of a chart series that fall into the same bucket are aggregated based on the aggregate_type.", "type": "object", "properties": { "dateTimeRule": { "description": "A ChartDateTimeRule.", "$ref": "ChartDateTimeRule" }, "histogramRule": { "description": "A ChartHistogramRule", "$ref": "ChartHistogramRule" } } }, "ChartDateTimeRule": { "id": "ChartDateTimeRule", "description": "Allows you to organize the date-time values in a source data column into buckets based on selected parts of their date or time values.", "type": "object", "properties": { "type": { "description": "The type of date-time grouping to apply.", "type": "string", "enumDescriptions": [ "The default type, do not use.", "Group dates by second, from 0 to 59.", "Group dates by minute, from 0 to 59.", "Group dates by hour using a 24-hour system, from 0 to 23.", "Group dates by hour and minute using a 24-hour system, for example 19:45.", "Group dates by hour and minute using a 12-hour system, for example 7:45 PM. The AM/PM designation is translated based on the spreadsheet locale.", "Group dates by day of week, for example Sunday. The days of the week will be translated based on the spreadsheet locale.", "Group dates by day of year, from 1 to 366. Note that dates after Feb. 29 fall in different buckets in leap years than in non-leap years.", "Group dates by day of month, from 1 to 31.", "Group dates by day and month, for example 22-Nov. The month is translated based on the spreadsheet locale.", "Group dates by month, for example Nov. The month is translated based on the spreadsheet locale.", "Group dates by quarter, for example Q1 (which represents Jan-Mar).", "Group dates by year, for example 2008.", "Group dates by year and month, for example 2008-Nov. The month is translated based on the spreadsheet locale.", "Group dates by year and quarter, for example 2008 Q4.", "Group dates by year, month, and day, for example 2008-11-22." ], "enum": [ "CHART_DATE_TIME_RULE_TYPE_UNSPECIFIED", "SECOND", "MINUTE", "HOUR", "HOUR_MINUTE", "HOUR_MINUTE_AMPM", "DAY_OF_WEEK", "DAY_OF_YEAR", "DAY_OF_MONTH", "DAY_MONTH", "MONTH", "QUARTER", "YEAR", "YEAR_MONTH", "YEAR_QUARTER", "YEAR_MONTH_DAY" ] } } }, "ChartHistogramRule": { "id": "ChartHistogramRule", "description": "Allows you to organize numeric values in a source data column into buckets of constant size.", "type": "object", "properties": { "minValue": { "description": "The minimum value at which items are placed into buckets. Values that are less than the minimum are grouped into a single bucket. If omitted, it is determined by the minimum item value.", "type": "number", "format": "double" }, "maxValue": { "description": "The maximum value at which items are placed into buckets. Values greater than the maximum are grouped into a single bucket. If omitted, it is determined by the maximum item value.", "type": "number", "format": "double" }, "intervalSize": { "description": "The size of the buckets that are created. Must be positive.", "type": "number", "format": "double" } } }, "BasicChartSeries": { "id": "BasicChartSeries", "description": "A single series of data in a chart. For example, if charting stock prices over time, multiple series may exist, one for the \"Open Price\", \"High Price\", \"Low Price\" and \"Close Price\".", "type": "object", "properties": { "series": { "description": "The data being visualized in this chart series.", "$ref": "ChartData" }, "targetAxis": { "description": "The minor axis that will specify the range of values for this series. For example, if charting stocks over time, the \"Volume\" series may want to be pinned to the right with the prices pinned to the left, because the scale of trading volume is different than the scale of prices. It is an error to specify an axis that isn't a valid minor axis for the chart's type.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The axis rendered at the bottom of a chart. For most charts, this is the standard major axis. For bar charts, this is a minor axis.", "The axis rendered at the left of a chart. For most charts, this is a minor axis. For bar charts, this is the standard major axis.", "The axis rendered at the right of a chart. For most charts, this is a minor axis. For bar charts, this is an unusual major axis." ], "enum": [ "BASIC_CHART_AXIS_POSITION_UNSPECIFIED", "BOTTOM_AXIS", "LEFT_AXIS", "RIGHT_AXIS" ] }, "type": { "description": "The type of this series. Valid only if the chartType is COMBO. Different types will change the way the series is visualized. Only LINE, AREA, and COLUMN are supported.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "A bar chart.", "A line chart.", "An area chart.", "A column chart.", "A scatter chart.", "A combo chart.", "A stepped area chart." ], "enum": [ "BASIC_CHART_TYPE_UNSPECIFIED", "BAR", "LINE", "AREA", "COLUMN", "SCATTER", "COMBO", "STEPPED_AREA" ] }, "lineStyle": { "description": "The line style of this series. Valid only if the chartType is AREA, LINE, or SCATTER. COMBO charts are also supported if the series chart type is AREA or LINE.", "$ref": "LineStyle" }, "dataLabel": { "description": "Information about the data labels for this series.", "$ref": "DataLabel" }, "color": { "description": "The color for elements (such as bars, lines, and points) associated with this series. If empty, a default color is used. Deprecated: Use color_style.", "deprecated": true, "$ref": "Color" }, "colorStyle": { "description": "The color for elements (such as bars, lines, and points) associated with this series. If empty, a default color is used. If color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "pointStyle": { "description": "The style for points associated with this series. Valid only if the chartType is AREA, LINE, or SCATTER. COMBO charts are also supported if the series chart type is AREA, LINE, or SCATTER. If empty, a default point style is used.", "$ref": "PointStyle" }, "styleOverrides": { "description": "Style override settings for series data points.", "type": "array", "items": { "$ref": "BasicSeriesDataPointStyleOverride" } } } }, "LineStyle": { "id": "LineStyle", "description": "Properties that describe the style of a line.", "type": "object", "properties": { "width": { "description": "The thickness of the line, in px.", "type": "integer", "format": "int32" }, "type": { "description": "The dash type of the line.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "No dash type, which is equivalent to a non-visible line.", "A custom dash for a line. Modifying the exact custom dash style is currently unsupported.", "A solid line.", "A dotted line.", "A dashed line where the dashes have \"medium\" length.", "A line that alternates between a \"medium\" dash and a dot.", "A dashed line where the dashes have \"long\" length.", "A line that alternates between a \"long\" dash and a dot." ], "enum": [ "LINE_DASH_TYPE_UNSPECIFIED", "INVISIBLE", "CUSTOM", "SOLID", "DOTTED", "MEDIUM_DASHED", "MEDIUM_DASHED_DOTTED", "LONG_DASHED", "LONG_DASHED_DOTTED" ] } } }, "DataLabel": { "id": "DataLabel", "description": "Settings for one set of data labels. Data labels are annotations that appear next to a set of data, such as the points on a line chart, and provide additional information about what the data represents, such as a text representation of the value behind that point on the graph.", "type": "object", "properties": { "type": { "description": "The type of the data label.", "type": "string", "enumDescriptions": [ "The data label type is not specified and will be interpreted depending on the context of the data label within the chart.", "The data label is not displayed.", "The data label is displayed using values from the series data.", "The data label is displayed using values from a custom data source indicated by customLabelData." ], "enum": [ "DATA_LABEL_TYPE_UNSPECIFIED", "NONE", "DATA", "CUSTOM" ] }, "textFormat": { "description": "The text format used for the data label. The link field is not supported.", "$ref": "TextFormat" }, "placement": { "description": "The placement of the data label relative to the labeled data.", "type": "string", "enumDescriptions": [ "The positioning is determined automatically by the renderer.", "Center within a bar or column, both horizontally and vertically.", "To the left of a data point.", "To the right of a data point.", "Above a data point.", "Below a data point.", "Inside a bar or column at the end (top if positive, bottom if negative).", "Inside a bar or column at the base.", "Outside a bar or column at the end." ], "enum": [ "DATA_LABEL_PLACEMENT_UNSPECIFIED", "CENTER", "LEFT", "RIGHT", "ABOVE", "BELOW", "INSIDE_END", "INSIDE_BASE", "OUTSIDE_END" ] }, "customLabelData": { "description": "Data to use for custom labels. Only used if type is set to CUSTOM. This data must be the same length as the series or other element this data label is applied to. In addition, if the series is split into multiple source ranges, this source data must come from the next column in the source data. For example, if the series is B2:B4,E6:E8 then this data must come from C2:C4,F6:F8.", "$ref": "ChartData" } } }, "PointStyle": { "id": "PointStyle", "description": "The style of a point on the chart.", "type": "object", "properties": { "size": { "description": "The point size. If empty, a default size is used.", "type": "number", "format": "double" }, "shape": { "description": "The point shape. If empty or unspecified, a default shape is used.", "type": "string", "enumDescriptions": [ "Default value.", "A circle shape.", "A diamond shape.", "A hexagon shape.", "A pentagon shape.", "A square shape.", "A star shape.", "A triangle shape.", "An x-mark shape." ], "enum": [ "POINT_SHAPE_UNSPECIFIED", "CIRCLE", "DIAMOND", "HEXAGON", "PENTAGON", "SQUARE", "STAR", "TRIANGLE", "X_MARK" ] } } }, "BasicSeriesDataPointStyleOverride": { "id": "BasicSeriesDataPointStyleOverride", "description": "Style override settings for a single series data point.", "type": "object", "properties": { "index": { "description": "The zero-based index of the series data point.", "type": "integer", "format": "int32" }, "color": { "description": "Color of the series data point. If empty, the series default is used. Deprecated: Use color_style.", "deprecated": true, "$ref": "Color" }, "colorStyle": { "description": "Color of the series data point. If empty, the series default is used. If color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "pointStyle": { "description": "Point style of the series data point. Valid only if the chartType is AREA, LINE, or SCATTER. COMBO charts are also supported if the series chart type is AREA, LINE, or SCATTER. If empty, the series default is used.", "$ref": "PointStyle" } } }, "PieChartSpec": { "id": "PieChartSpec", "description": "A pie chart.", "type": "object", "properties": { "legendPosition": { "description": "Where the legend of the pie chart should be drawn.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The legend is rendered on the bottom of the chart.", "The legend is rendered on the left of the chart.", "The legend is rendered on the right of the chart.", "The legend is rendered on the top of the chart.", "No legend is rendered.", "Each pie slice has a label attached to it." ], "enum": [ "PIE_CHART_LEGEND_POSITION_UNSPECIFIED", "BOTTOM_LEGEND", "LEFT_LEGEND", "RIGHT_LEGEND", "TOP_LEGEND", "NO_LEGEND", "LABELED_LEGEND" ] }, "domain": { "description": "The data that covers the domain of the pie chart.", "$ref": "ChartData" }, "series": { "description": "The data that covers the one and only series of the pie chart.", "$ref": "ChartData" }, "threeDimensional": { "description": "True if the pie is three dimensional.", "type": "boolean" }, "pieHole": { "description": "The size of the hole in the pie chart.", "type": "number", "format": "double" } } }, "BubbleChartSpec": { "id": "BubbleChartSpec", "description": "A bubble chart.", "type": "object", "properties": { "legendPosition": { "description": "Where the legend of the chart should be drawn.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The legend is rendered on the bottom of the chart.", "The legend is rendered on the left of the chart.", "The legend is rendered on the right of the chart.", "The legend is rendered on the top of the chart.", "No legend is rendered.", "The legend is rendered inside the chart area." ], "enum": [ "BUBBLE_CHART_LEGEND_POSITION_UNSPECIFIED", "BOTTOM_LEGEND", "LEFT_LEGEND", "RIGHT_LEGEND", "TOP_LEGEND", "NO_LEGEND", "INSIDE_LEGEND" ] }, "bubbleLabels": { "description": "The data containing the bubble labels. These do not need to be unique.", "$ref": "ChartData" }, "domain": { "description": "The data containing the bubble x-values. These values locate the bubbles in the chart horizontally.", "$ref": "ChartData" }, "series": { "description": "The data containing the bubble y-values. These values locate the bubbles in the chart vertically.", "$ref": "ChartData" }, "groupIds": { "description": "The data containing the bubble group IDs. All bubbles with the same group ID are drawn in the same color. If bubble_sizes is specified then this field must also be specified but may contain blank values. This field is optional.", "$ref": "ChartData" }, "bubbleSizes": { "description": "The data containing the bubble sizes. Bubble sizes are used to draw the bubbles at different sizes relative to each other. If specified, group_ids must also be specified. This field is optional.", "$ref": "ChartData" }, "bubbleOpacity": { "description": "The opacity of the bubbles between 0 and 1.0. 0 is fully transparent and 1 is fully opaque.", "type": "number", "format": "float" }, "bubbleBorderColor": { "description": "The bubble border color. Deprecated: Use bubble_border_color_style.", "deprecated": true, "$ref": "Color" }, "bubbleBorderColorStyle": { "description": "The bubble border color. If bubble_border_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "bubbleMaxRadiusSize": { "description": "The max radius size of the bubbles, in pixels. If specified, the field must be a positive value.", "type": "integer", "format": "int32" }, "bubbleMinRadiusSize": { "description": "The minimum radius size of the bubbles, in pixels. If specific, the field must be a positive value.", "type": "integer", "format": "int32" }, "bubbleTextStyle": { "description": "The format of the text inside the bubbles. Strikethrough, underline, and link are not supported.", "$ref": "TextFormat" } } }, "CandlestickChartSpec": { "id": "CandlestickChartSpec", "description": "A candlestick chart.", "type": "object", "properties": { "domain": { "description": "The domain data (horizontal axis) for the candlestick chart. String data will be treated as discrete labels, other data will be treated as continuous values.", "$ref": "CandlestickDomain" }, "data": { "description": "The Candlestick chart data. Only one CandlestickData is supported.", "type": "array", "items": { "$ref": "CandlestickData" } } } }, "CandlestickDomain": { "id": "CandlestickDomain", "description": "The domain of a CandlestickChart.", "type": "object", "properties": { "data": { "description": "The data of the CandlestickDomain.", "$ref": "ChartData" }, "reversed": { "description": "True to reverse the order of the domain values (horizontal axis).", "type": "boolean" } } }, "CandlestickData": { "id": "CandlestickData", "description": "The Candlestick chart data, each containing the low, open, close, and high values for a series.", "type": "object", "properties": { "lowSeries": { "description": "The range data (vertical axis) for the low/minimum value for each candle. This is the bottom of the candle's center line.", "$ref": "CandlestickSeries" }, "openSeries": { "description": "The range data (vertical axis) for the open/initial value for each candle. This is the bottom of the candle body. If less than the close value the candle will be filled. Otherwise the candle will be hollow.", "$ref": "CandlestickSeries" }, "closeSeries": { "description": "The range data (vertical axis) for the close/final value for each candle. This is the top of the candle body. If greater than the open value the candle will be filled. Otherwise the candle will be hollow.", "$ref": "CandlestickSeries" }, "highSeries": { "description": "The range data (vertical axis) for the high/maximum value for each candle. This is the top of the candle's center line.", "$ref": "CandlestickSeries" } } }, "CandlestickSeries": { "id": "CandlestickSeries", "description": "The series of a CandlestickData.", "type": "object", "properties": { "data": { "description": "The data of the CandlestickSeries.", "$ref": "ChartData" } } }, "OrgChartSpec": { "id": "OrgChartSpec", "description": "An org chart. Org charts require a unique set of labels in labels and may optionally include parent_labels and tooltips. parent_labels contain, for each node, the label identifying the parent node. tooltips contain, for each node, an optional tooltip. For example, to describe an OrgChart with Alice as the CEO, Bob as the President (reporting to Alice) and Cathy as VP of Sales (also reporting to Alice), have labels contain \"Alice\", \"Bob\", \"Cathy\", parent_labels contain \"\", \"Alice\", \"Alice\" and tooltips contain \"CEO\", \"President\", \"VP Sales\".", "type": "object", "properties": { "nodeSize": { "description": "The size of the org chart nodes.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The small org chart node size.", "The medium org chart node size.", "The large org chart node size." ], "enum": [ "ORG_CHART_LABEL_SIZE_UNSPECIFIED", "SMALL", "MEDIUM", "LARGE" ] }, "nodeColor": { "description": "The color of the org chart nodes. Deprecated: Use node_color_style.", "deprecated": true, "$ref": "Color" }, "nodeColorStyle": { "description": "The color of the org chart nodes. If node_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "selectedNodeColor": { "description": "The color of the selected org chart nodes. Deprecated: Use selected_node_color_style.", "deprecated": true, "$ref": "Color" }, "selectedNodeColorStyle": { "description": "The color of the selected org chart nodes. If selected_node_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "labels": { "description": "The data containing the labels for all the nodes in the chart. Labels must be unique.", "$ref": "ChartData" }, "parentLabels": { "description": "The data containing the label of the parent for the corresponding node. A blank value indicates that the node has no parent and is a top-level node. This field is optional.", "$ref": "ChartData" }, "tooltips": { "description": "The data containing the tooltip for the corresponding node. A blank value results in no tooltip being displayed for the node. This field is optional.", "$ref": "ChartData" } } }, "HistogramChartSpec": { "id": "HistogramChartSpec", "description": "A histogram chart. A histogram chart groups data items into bins, displaying each bin as a column of stacked items. Histograms are used to display the distribution of a dataset. Each column of items represents a range into which those items fall. The number of bins can be chosen automatically or specified explicitly.", "type": "object", "properties": { "series": { "description": "The series for a histogram may be either a single series of values to be bucketed or multiple series, each of the same length, containing the name of the series followed by the values to be bucketed for that series.", "type": "array", "items": { "$ref": "HistogramSeries" } }, "legendPosition": { "description": "The position of the chart legend.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "The legend is rendered on the bottom of the chart.", "The legend is rendered on the left of the chart.", "The legend is rendered on the right of the chart.", "The legend is rendered on the top of the chart.", "No legend is rendered.", "The legend is rendered inside the chart area." ], "enum": [ "HISTOGRAM_CHART_LEGEND_POSITION_UNSPECIFIED", "BOTTOM_LEGEND", "LEFT_LEGEND", "RIGHT_LEGEND", "TOP_LEGEND", "NO_LEGEND", "INSIDE_LEGEND" ] }, "showItemDividers": { "description": "Whether horizontal divider lines should be displayed between items in each column.", "type": "boolean" }, "bucketSize": { "description": "By default the bucket size (the range of values stacked in a single column) is chosen automatically, but it may be overridden here. E.g., A bucket size of 1.5 results in buckets from 0 - 1.5, 1.5 - 3.0, etc. Cannot be negative. This field is optional.", "type": "number", "format": "double" }, "outlierPercentile": { "description": "The outlier percentile is used to ensure that outliers do not adversely affect the calculation of bucket sizes. For example, setting an outlier percentile of 0.05 indicates that the top and bottom 5% of values when calculating buckets. The values are still included in the chart, they will be added to the first or last buckets instead of their own buckets. Must be between 0.0 and 0.5.", "type": "number", "format": "double" } } }, "HistogramSeries": { "id": "HistogramSeries", "description": "A histogram series containing the series color and data.", "type": "object", "properties": { "barColor": { "description": "The color of the column representing this series in each bucket. This field is optional. Deprecated: Use bar_color_style.", "deprecated": true, "$ref": "Color" }, "barColorStyle": { "description": "The color of the column representing this series in each bucket. This field is optional. If bar_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "data": { "description": "The data for this histogram series.", "$ref": "ChartData" } } }, "WaterfallChartSpec": { "id": "WaterfallChartSpec", "description": "A waterfall chart.", "type": "object", "properties": { "domain": { "description": "The domain data (horizontal axis) for the waterfall chart.", "$ref": "WaterfallChartDomain" }, "series": { "description": "The data this waterfall chart is visualizing.", "type": "array", "items": { "$ref": "WaterfallChartSeries" } }, "stackedType": { "description": "The stacked type.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Values corresponding to the same domain (horizontal axis) value will be stacked vertically.", "Series will spread out along the horizontal axis." ], "enum": [ "WATERFALL_STACKED_TYPE_UNSPECIFIED", "STACKED", "SEQUENTIAL" ] }, "firstValueIsTotal": { "description": "True to interpret the first value as a total.", "type": "boolean" }, "hideConnectorLines": { "description": "True to hide connector lines between columns.", "type": "boolean" }, "connectorLineStyle": { "description": "The line style for the connector lines.", "$ref": "LineStyle" }, "totalDataLabel": { "description": "Controls whether to display additional data labels on stacked charts which sum the total value of all stacked values at each value along the domain axis. stacked_type must be STACKED and neither CUSTOM nor placement can be set on the total_data_label.", "$ref": "DataLabel" } } }, "WaterfallChartDomain": { "id": "WaterfallChartDomain", "description": "The domain of a waterfall chart.", "type": "object", "properties": { "data": { "description": "The data of the WaterfallChartDomain.", "$ref": "ChartData" }, "reversed": { "description": "True to reverse the order of the domain values (horizontal axis).", "type": "boolean" } } }, "WaterfallChartSeries": { "id": "WaterfallChartSeries", "description": "A single series of data for a waterfall chart.", "type": "object", "properties": { "data": { "description": "The data being visualized in this series.", "$ref": "ChartData" }, "positiveColumnsStyle": { "description": "Styles for all columns in this series with positive values.", "$ref": "WaterfallChartColumnStyle" }, "negativeColumnsStyle": { "description": "Styles for all columns in this series with negative values.", "$ref": "WaterfallChartColumnStyle" }, "subtotalColumnsStyle": { "description": "Styles for all subtotal columns in this series.", "$ref": "WaterfallChartColumnStyle" }, "hideTrailingSubtotal": { "description": "True to hide the subtotal column from the end of the series. By default, a subtotal column will appear at the end of each series. Setting this field to true will hide that subtotal column for this series.", "type": "boolean" }, "customSubtotals": { "description": "Custom subtotal columns appearing in this series. The order in which subtotals are defined is not significant. Only one subtotal may be defined for each data point.", "type": "array", "items": { "$ref": "WaterfallChartCustomSubtotal" } }, "dataLabel": { "description": "Information about the data labels for this series.", "$ref": "DataLabel" } } }, "WaterfallChartColumnStyle": { "id": "WaterfallChartColumnStyle", "description": "Styles for a waterfall chart column.", "type": "object", "properties": { "label": { "description": "The label of the column's legend.", "type": "string" }, "color": { "description": "The color of the column. Deprecated: Use color_style.", "deprecated": true, "$ref": "Color" }, "colorStyle": { "description": "The color of the column. If color is also set, this field takes precedence.", "$ref": "ColorStyle" } } }, "WaterfallChartCustomSubtotal": { "id": "WaterfallChartCustomSubtotal", "description": "A custom subtotal column for a waterfall chart series.", "type": "object", "properties": { "subtotalIndex": { "description": "The zero-based index of a data point within the series. If data_is_subtotal is true, the data point at this index is the subtotal. Otherwise, the subtotal appears after the data point with this index. A series can have multiple subtotals at arbitrary indices, but subtotals do not affect the indices of the data points. For example, if a series has three data points, their indices will always be 0, 1, and 2, regardless of how many subtotals exist on the series or what data points they are associated with.", "type": "integer", "format": "int32" }, "label": { "description": "A label for the subtotal column.", "type": "string" }, "dataIsSubtotal": { "description": "True if the data point at subtotal_index is the subtotal. If false, the subtotal will be computed and appear after the data point.", "type": "boolean" } } }, "TreemapChartSpec": { "id": "TreemapChartSpec", "description": "A Treemap chart.", "type": "object", "properties": { "labels": { "description": "The data that contains the treemap cell labels.", "$ref": "ChartData" }, "parentLabels": { "description": "The data the contains the treemap cells' parent labels.", "$ref": "ChartData" }, "sizeData": { "description": "The data that determines the size of each treemap data cell. This data is expected to be numeric. The cells corresponding to non-numeric or missing data will not be rendered. If color_data is not specified, this data is used to determine data cell background colors as well.", "$ref": "ChartData" }, "colorData": { "description": "The data that determines the background color of each treemap data cell. This field is optional. If not specified, size_data is used to determine background colors. If specified, the data is expected to be numeric. color_scale will determine how the values in this data map to data cell background colors.", "$ref": "ChartData" }, "textFormat": { "description": "The text format for all labels on the chart. The link field is not supported.", "$ref": "TextFormat" }, "levels": { "description": "The number of data levels to show on the treemap chart. These levels are interactive and are shown with their labels. Defaults to 2 if not specified.", "type": "integer", "format": "int32" }, "hintedLevels": { "description": "The number of additional data levels beyond the labeled levels to be shown on the treemap chart. These levels are not interactive and are shown without their labels. Defaults to 0 if not specified.", "type": "integer", "format": "int32" }, "minValue": { "description": "The minimum possible data value. Cells with values less than this will have the same color as cells with this value. If not specified, defaults to the actual minimum value from color_data, or the minimum value from size_data if color_data is not specified.", "type": "number", "format": "double" }, "maxValue": { "description": "The maximum possible data value. Cells with values greater than this will have the same color as cells with this value. If not specified, defaults to the actual maximum value from color_data, or the maximum value from size_data if color_data is not specified.", "type": "number", "format": "double" }, "headerColor": { "description": "The background color for header cells. Deprecated: Use header_color_style.", "deprecated": true, "$ref": "Color" }, "headerColorStyle": { "description": "The background color for header cells. If header_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "colorScale": { "description": "The color scale for data cells in the treemap chart. Data cells are assigned colors based on their color values. These color values come from color_data, or from size_data if color_data is not specified. Cells with color values less than or equal to min_value will have minValueColor as their background color. Cells with color values greater than or equal to max_value will have maxValueColor as their background color. Cells with color values between min_value and max_value will have background colors on a gradient between minValueColor and maxValueColor, the midpoint of the gradient being midValueColor. Cells with missing or non-numeric color values will have noDataColor as their background color.", "$ref": "TreemapChartColorScale" }, "hideTooltips": { "description": "True to hide tooltips.", "type": "boolean" } } }, "TreemapChartColorScale": { "id": "TreemapChartColorScale", "description": "A color scale for a treemap chart.", "type": "object", "properties": { "minValueColor": { "description": "The background color for cells with a color value less than or equal to minValue. Defaults to #dc3912 if not specified. Deprecated: Use min_value_color_style.", "deprecated": true, "$ref": "Color" }, "minValueColorStyle": { "description": "The background color for cells with a color value less than or equal to minValue. Defaults to #dc3912 if not specified. If min_value_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "midValueColor": { "description": "The background color for cells with a color value at the midpoint between minValue and maxValue. Defaults to #efe6dc if not specified. Deprecated: Use mid_value_color_style.", "deprecated": true, "$ref": "Color" }, "midValueColorStyle": { "description": "The background color for cells with a color value at the midpoint between minValue and maxValue. Defaults to #efe6dc if not specified. If mid_value_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "maxValueColor": { "description": "The background color for cells with a color value greater than or equal to maxValue. Defaults to #109618 if not specified. Deprecated: Use max_value_color_style.", "deprecated": true, "$ref": "Color" }, "maxValueColorStyle": { "description": "The background color for cells with a color value greater than or equal to maxValue. Defaults to #109618 if not specified. If max_value_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "noDataColor": { "description": "The background color for cells that have no color data associated with them. Defaults to #000000 if not specified. Deprecated: Use no_data_color_style.", "deprecated": true, "$ref": "Color" }, "noDataColorStyle": { "description": "The background color for cells that have no color data associated with them. Defaults to #000000 if not specified. If no_data_color is also set, this field takes precedence.", "$ref": "ColorStyle" } } }, "ScorecardChartSpec": { "id": "ScorecardChartSpec", "description": "A scorecard chart. Scorecard charts are used to highlight key performance indicators, known as KPIs, on the spreadsheet. A scorecard chart can represent things like total sales, average cost, or a top selling item. You can specify a single data value, or aggregate over a range of data. Percentage or absolute difference from a baseline value can be highlighted, like changes over time.", "type": "object", "properties": { "keyValueData": { "description": "The data for scorecard key value.", "$ref": "ChartData" }, "baselineValueData": { "description": "The data for scorecard baseline value. This field is optional.", "$ref": "ChartData" }, "aggregateType": { "description": "The aggregation type for key and baseline chart data in scorecard chart. This field is not supported for data source charts. Use the ChartData.aggregateType field of the key_value_data or baseline_value_data instead for data source charts. This field is optional.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Average aggregate function.", "Count aggregate function.", "Maximum aggregate function.", "Median aggregate function.", "Minimum aggregate function.", "Sum aggregate function." ], "enum": [ "CHART_AGGREGATE_TYPE_UNSPECIFIED", "AVERAGE", "COUNT", "MAX", "MEDIAN", "MIN", "SUM" ] }, "keyValueFormat": { "description": "Formatting options for key value.", "$ref": "KeyValueFormat" }, "baselineValueFormat": { "description": "Formatting options for baseline value. This field is needed only if baseline_value_data is specified.", "$ref": "BaselineValueFormat" }, "scaleFactor": { "description": "Value to scale scorecard key and baseline value. For example, a factor of 10 can be used to divide all values in the chart by 10. This field is optional.", "type": "number", "format": "double" }, "numberFormatSource": { "description": "The number format source used in the scorecard chart. This field is optional.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Inherit number formatting from data.", "Apply custom formatting as specified by ChartCustomNumberFormatOptions." ], "enum": [ "CHART_NUMBER_FORMAT_SOURCE_UNDEFINED", "FROM_DATA", "CUSTOM" ] }, "customFormatOptions": { "description": "Custom formatting options for numeric key/baseline values in scorecard chart. This field is used only when number_format_source is set to CUSTOM. This field is optional.", "$ref": "ChartCustomNumberFormatOptions" } } }, "KeyValueFormat": { "id": "KeyValueFormat", "description": "Formatting options for key value.", "type": "object", "properties": { "textFormat": { "description": "Text formatting options for key value. The link field is not supported.", "$ref": "TextFormat" }, "position": { "description": "Specifies the horizontal text positioning of key value. This field is optional. If not specified, default positioning is used.", "$ref": "TextPosition" } } }, "BaselineValueFormat": { "id": "BaselineValueFormat", "description": "Formatting options for baseline value.", "type": "object", "properties": { "comparisonType": { "description": "The comparison type of key value with baseline value.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Use absolute difference between key and baseline value.", "Use percentage difference between key and baseline value." ], "enum": [ "COMPARISON_TYPE_UNDEFINED", "ABSOLUTE_DIFFERENCE", "PERCENTAGE_DIFFERENCE" ] }, "textFormat": { "description": "Text formatting options for baseline value. The link field is not supported.", "$ref": "TextFormat" }, "position": { "description": "Specifies the horizontal text positioning of baseline value. This field is optional. If not specified, default positioning is used.", "$ref": "TextPosition" }, "description": { "description": "Description which is appended after the baseline value. This field is optional.", "type": "string" }, "positiveColor": { "description": "Color to be used, in case baseline value represents a positive change for key value. This field is optional. Deprecated: Use positive_color_style.", "deprecated": true, "$ref": "Color" }, "positiveColorStyle": { "description": "Color to be used, in case baseline value represents a positive change for key value. This field is optional. If positive_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "negativeColor": { "description": "Color to be used, in case baseline value represents a negative change for key value. This field is optional. Deprecated: Use negative_color_style.", "deprecated": true, "$ref": "Color" }, "negativeColorStyle": { "description": "Color to be used, in case baseline value represents a negative change for key value. This field is optional. If negative_color is also set, this field takes precedence.", "$ref": "ColorStyle" } } }, "ChartCustomNumberFormatOptions": { "id": "ChartCustomNumberFormatOptions", "description": "Custom number formatting options for chart attributes.", "type": "object", "properties": { "prefix": { "description": "Custom prefix to be prepended to the chart attribute. This field is optional.", "type": "string" }, "suffix": { "description": "Custom suffix to be appended to the chart attribute. This field is optional.", "type": "string" } } }, "EmbeddedObjectPosition": { "id": "EmbeddedObjectPosition", "description": "The position of an embedded object such as a chart.", "type": "object", "properties": { "sheetId": { "description": "The sheet this is on. Set only if the embedded object is on its own sheet. Must be non-negative.", "type": "integer", "format": "int32" }, "overlayPosition": { "description": "The position at which the object is overlaid on top of a grid.", "$ref": "OverlayPosition" }, "newSheet": { "description": "If true, the embedded object is put on a new sheet whose ID is chosen for you. Used only when writing.", "type": "boolean" } } }, "OverlayPosition": { "id": "OverlayPosition", "description": "The location an object is overlaid on top of a grid.", "type": "object", "properties": { "anchorCell": { "description": "The cell the object is anchored to.", "$ref": "GridCoordinate" }, "offsetXPixels": { "description": "The horizontal offset, in pixels, that the object is offset from the anchor cell.", "type": "integer", "format": "int32" }, "offsetYPixels": { "description": "The vertical offset, in pixels, that the object is offset from the anchor cell.", "type": "integer", "format": "int32" }, "widthPixels": { "description": "The width of the object, in pixels. Defaults to 600.", "type": "integer", "format": "int32" }, "heightPixels": { "description": "The height of the object, in pixels. Defaults to 371.", "type": "integer", "format": "int32" } } }, "GridCoordinate": { "id": "GridCoordinate", "description": "A coordinate in a sheet. All indexes are zero-based.", "type": "object", "properties": { "sheetId": { "description": "The sheet this coordinate is on.", "type": "integer", "format": "int32" }, "rowIndex": { "description": "The row index of the coordinate.", "type": "integer", "format": "int32" }, "columnIndex": { "description": "The column index of the coordinate.", "type": "integer", "format": "int32" } } }, "EmbeddedObjectBorder": { "id": "EmbeddedObjectBorder", "description": "A border along an embedded object.", "type": "object", "properties": { "color": { "description": "The color of the border. Deprecated: Use color_style.", "deprecated": true, "$ref": "Color" }, "colorStyle": { "description": "The color of the border. If color is also set, this field takes precedence.", "$ref": "ColorStyle" } } }, "BandedRange": { "id": "BandedRange", "description": "A banded (alternating colors) range in a sheet.", "type": "object", "properties": { "bandedRangeId": { "description": "The ID of the banded range.", "type": "integer", "format": "int32" }, "range": { "description": "The range over which these properties are applied.", "$ref": "GridRange" }, "rowProperties": { "description": "Properties for row bands. These properties are applied on a row-by-row basis throughout all the rows in the range. At least one of row_properties or column_properties must be specified.", "$ref": "BandingProperties" }, "columnProperties": { "description": "Properties for column bands. These properties are applied on a column- by-column basis throughout all the columns in the range. At least one of row_properties or column_properties must be specified.", "$ref": "BandingProperties" } } }, "BandingProperties": { "id": "BandingProperties", "description": "Properties referring a single dimension (either row or column). If both BandedRange.row_properties and BandedRange.column_properties are set, the fill colors are applied to cells according to the following rules: * header_color and footer_color take priority over band colors. * first_band_color takes priority over second_band_color. * row_properties takes priority over column_properties. For example, the first row color takes priority over the first column color, but the first column color takes priority over the second row color. Similarly, the row header takes priority over the column header in the top left cell, but the column header takes priority over the first row color if the row header is not set.", "type": "object", "properties": { "headerColor": { "description": "The color of the first row or column. If this field is set, the first row or column is filled with this color and the colors alternate between first_band_color and second_band_color starting from the second row or column. Otherwise, the first row or column is filled with first_band_color and the colors proceed to alternate as they normally would. Deprecated: Use header_color_style.", "deprecated": true, "$ref": "Color" }, "headerColorStyle": { "description": "The color of the first row or column. If this field is set, the first row or column is filled with this color and the colors alternate between first_band_color and second_band_color starting from the second row or column. Otherwise, the first row or column is filled with first_band_color and the colors proceed to alternate as they normally would. If header_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "firstBandColor": { "description": "The first color that is alternating. (Required) Deprecated: Use first_band_color_style.", "deprecated": true, "$ref": "Color" }, "firstBandColorStyle": { "description": "The first color that is alternating. (Required) If first_band_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "secondBandColor": { "description": "The second color that is alternating. (Required) Deprecated: Use second_band_color_style.", "deprecated": true, "$ref": "Color" }, "secondBandColorStyle": { "description": "The second color that is alternating. (Required) If second_band_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "footerColor": { "description": "The color of the last row or column. If this field is not set, the last row or column is filled with either first_band_color or second_band_color, depending on the color of the previous row or column. Deprecated: Use footer_color_style.", "deprecated": true, "$ref": "Color" }, "footerColorStyle": { "description": "The color of the last row or column. If this field is not set, the last row or column is filled with either first_band_color or second_band_color, depending on the color of the previous row or column. If footer_color is also set, this field takes precedence.", "$ref": "ColorStyle" } } }, "DimensionGroup": { "id": "DimensionGroup", "description": "A group over an interval of rows or columns on a sheet, which can contain or be contained within other groups. A group can be collapsed or expanded as a unit on the sheet.", "type": "object", "properties": { "range": { "description": "The range over which this group exists.", "$ref": "DimensionRange" }, "depth": { "description": "The depth of the group, representing how many groups have a range that wholly contains the range of this group.", "type": "integer", "format": "int32" }, "collapsed": { "description": "This field is true if this group is collapsed. A collapsed group remains collapsed if an overlapping group at a shallower depth is expanded. A true value does not imply that all dimensions within the group are hidden, since a dimension's visibility can change independently from this group property. However, when this property is updated, all dimensions within it are set to hidden if this field is true, or set to visible if this field is false.", "type": "boolean" } } }, "Slicer": { "id": "Slicer", "description": "A slicer in a sheet.", "type": "object", "properties": { "slicerId": { "description": "The ID of the slicer.", "type": "integer", "format": "int32" }, "spec": { "description": "The specification of the slicer.", "$ref": "SlicerSpec" }, "position": { "description": "The position of the slicer. Note that slicer can be positioned only on existing sheet. Also, width and height of slicer can be automatically adjusted to keep it within permitted limits.", "$ref": "EmbeddedObjectPosition" } } }, "SlicerSpec": { "id": "SlicerSpec", "description": "The specifications of a slicer.", "type": "object", "properties": { "dataRange": { "description": "The data range of the slicer.", "$ref": "GridRange" }, "filterCriteria": { "description": "The filtering criteria of the slicer.", "$ref": "FilterCriteria" }, "columnIndex": { "description": "The zero-based column index in the data table on which the filter is applied to.", "type": "integer", "format": "int32" }, "applyToPivotTables": { "description": "True if the filter should apply to pivot tables. If not set, default to `True`.", "type": "boolean" }, "title": { "description": "The title of the slicer.", "type": "string" }, "textFormat": { "description": "The text format of title in the slicer. The link field is not supported.", "$ref": "TextFormat" }, "backgroundColor": { "description": "The background color of the slicer. Deprecated: Use background_color_style.", "deprecated": true, "$ref": "Color" }, "backgroundColorStyle": { "description": "The background color of the slicer. If background_color is also set, this field takes precedence.", "$ref": "ColorStyle" }, "horizontalAlignment": { "description": "The horizontal alignment of title in the slicer. If unspecified, defaults to `LEFT`", "type": "string", "enumDescriptions": [ "The horizontal alignment is not specified. Do not use this.", "The text is explicitly aligned to the left of the cell.", "The text is explicitly aligned to the center of the cell.", "The text is explicitly aligned to the right of the cell." ], "enum": [ "HORIZONTAL_ALIGN_UNSPECIFIED", "LEFT", "CENTER", "RIGHT" ] } } }, "NamedRange": { "id": "NamedRange", "description": "A named range.", "type": "object", "properties": { "namedRangeId": { "description": "The ID of the named range.", "type": "string" }, "name": { "description": "The name of the named range.", "type": "string" }, "range": { "description": "The range this represents.", "$ref": "GridRange" } } }, "DataSource": { "id": "DataSource", "description": "Information about an external data source in the spreadsheet.", "type": "object", "properties": { "dataSourceId": { "description": "The spreadsheet-scoped unique ID that identifies the data source. Example: 1080547365.", "type": "string" }, "spec": { "description": "The DataSourceSpec for the data source connected with this spreadsheet.", "$ref": "DataSourceSpec" }, "calculatedColumns": { "description": "All calculated columns in the data source.", "type": "array", "items": { "$ref": "DataSourceColumn" } }, "sheetId": { "description": "The ID of the Sheet connected with the data source. The field cannot be changed once set. When creating a data source, an associated DATA_SOURCE sheet is also created, if the field is not specified, the ID of the created sheet will be randomly generated.", "type": "integer", "format": "int32" } } }, "DataSourceSpec": { "id": "DataSourceSpec", "description": "This specifies the details of the data source. For example, for BigQuery, this specifies information about the BigQuery source.", "type": "object", "properties": { "bigQuery": { "description": "A BigQueryDataSourceSpec.", "$ref": "BigQueryDataSourceSpec" }, "parameters": { "description": "The parameters of the data source, used when querying the data source.", "type": "array", "items": { "$ref": "DataSourceParameter" } } } }, "BigQueryDataSourceSpec": { "id": "BigQueryDataSourceSpec", "description": "The specification of a BigQuery data source that's connected to a sheet.", "type": "object", "properties": { "projectId": { "description": "The ID of a BigQuery enabled Google Cloud project with a billing account attached. For any queries executed against the data source, the project is charged.", "type": "string" }, "querySpec": { "description": "A BigQueryQuerySpec.", "$ref": "BigQueryQuerySpec" }, "tableSpec": { "description": "A BigQueryTableSpec.", "$ref": "BigQueryTableSpec" } } }, "BigQueryQuerySpec": { "id": "BigQueryQuerySpec", "description": "Specifies a custom BigQuery query.", "type": "object", "properties": { "rawQuery": { "description": "The raw query string.", "type": "string" } } }, "BigQueryTableSpec": { "id": "BigQueryTableSpec", "description": "Specifies a BigQuery table definition. Only [native tables](https://cloud.google.com/bigquery/docs/tables-intro) are allowed.", "type": "object", "properties": { "tableProjectId": { "description": "The ID of a BigQuery project the table belongs to. If not specified, the project_id is assumed.", "type": "string" }, "tableId": { "description": "The BigQuery table id.", "type": "string" }, "datasetId": { "description": "The BigQuery dataset id.", "type": "string" } } }, "DataSourceParameter": { "id": "DataSourceParameter", "description": "A parameter in a data source's query. The parameter allows the user to pass in values from the spreadsheet into a query.", "type": "object", "properties": { "name": { "description": "Named parameter. Must be a legitimate identifier for the DataSource that supports it. For example, [BigQuery identifier](https://cloud.google.com/bigquery/docs/reference/standard-sql/lexical#identifiers).", "type": "string" }, "namedRangeId": { "description": "ID of a NamedRange. Its size must be 1x1.", "type": "string" }, "range": { "description": "A range that contains the value of the parameter. Its size must be 1x1.", "$ref": "GridRange" } } }, "DataSourceRefreshSchedule": { "id": "DataSourceRefreshSchedule", "description": "Schedule for refreshing the data source. Data sources in the spreadsheet are refreshed within a time interval. You can specify the start time by clicking the Scheduled Refresh button in the Sheets editor, but the interval is fixed at 4 hours. For example, if you specify a start time of 8 AM , the refresh will take place between 8 AM and 12 PM every day.", "type": "object", "properties": { "enabled": { "description": "True if the refresh schedule is enabled, or false otherwise.", "type": "boolean" }, "refreshScope": { "description": "The scope of the refresh. Must be ALL_DATA_SOURCES.", "type": "string", "enumDescriptions": [ "Default value, do not use.", "Refreshes all data sources and their associated data source objects in the spreadsheet." ], "enum": [ "DATA_SOURCE_REFRESH_SCOPE_UNSPECIFIED", "ALL_DATA_SOURCES" ] }, "dailySchedule": { "description": "Daily refresh schedule.", "$ref": "DataSourceRefreshDailySchedule" }, "weeklySchedule": { "description": "Weekly refresh schedule.", "$ref": "DataSourceRefreshWeeklySchedule" }, "monthlySchedule": { "description": "Monthly refresh schedule.", "$ref": "DataSourceRefreshMonthlySchedule" }, "nextRun": { "description": "Output only. The time interval of the next run.", "readOnly": true, "$ref": "Interval" } } }, "DataSourceRefreshDailySchedule": { "id": "DataSourceRefreshDailySchedule", "description": "A schedule for data to refresh every day in a given time interval.", "type": "object", "properties": { "startTime": { "description": "The start time of a time interval in which a data source refresh is scheduled. Only `hours` part is used. The time interval size defaults to that in the Sheets editor.", "$ref": "TimeOfDay" } } }, "TimeOfDay": { "id": "TimeOfDay", "description": "Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and `google.protobuf.Timestamp`.", "type": "object", "properties": { "hours": { "description": "Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.", "type": "integer", "format": "int32" }, "minutes": { "description": "Minutes of hour of day. Must be from 0 to 59.", "type": "integer", "format": "int32" }, "seconds": { "description": "Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.", "type": "integer", "format": "int32" }, "nanos": { "description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.", "type": "integer", "format": "int32" } } }, "DataSourceRefreshWeeklySchedule": { "id": "DataSourceRefreshWeeklySchedule", "description": "A weekly schedule for data to refresh on specific days in a given time interval.", "type": "object", "properties": { "startTime": { "description": "The start time of a time interval in which a data source refresh is scheduled. Only `hours` part is used. The time interval size defaults to that in the Sheets editor.", "$ref": "TimeOfDay" }, "daysOfWeek": { "description": "Days of the week to refresh. At least one day must be specified.", "type": "array", "items": { "type": "string", "enumDescriptions": [ "The day of the week is unspecified.", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday" ], "enum": [ "DAY_OF_WEEK_UNSPECIFIED", "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY" ] } } } }, "DataSourceRefreshMonthlySchedule": { "id": "DataSourceRefreshMonthlySchedule", "description": "A monthly schedule for data to refresh on specific days in the month in a given time interval.", "type": "object", "properties": { "startTime": { "description": "The start time of a time interval in which a data source refresh is scheduled. Only `hours` part is used. The time interval size defaults to that in the Sheets editor.", "$ref": "TimeOfDay" }, "daysOfMonth": { "description": "Days of the month to refresh. Only 1-28 are supported, mapping to the 1st to the 28th day. At least one day must be specified.", "type": "array", "items": { "type": "integer", "format": "int32" } } } }, "Interval": { "id": "Interval", "description": "Represents a time interval, encoded as a Timestamp start (inclusive) and a Timestamp end (exclusive). The start must be less than or equal to the end. When the start equals the end, the interval is empty (matches no time). When both start and end are unspecified, the interval matches any time.", "type": "object", "properties": { "startTime": { "description": "Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start.", "type": "string", "format": "google-datetime" }, "endTime": { "description": "Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end.", "type": "string", "format": "google-datetime" } } }, "GetSpreadsheetByDataFilterRequest": { "id": "GetSpreadsheetByDataFilterRequest", "description": "The request for retrieving a Spreadsheet.", "type": "object", "properties": { "dataFilters": { "description": "The DataFilters used to select which ranges to retrieve from the spreadsheet.", "type": "array", "items": { "$ref": "DataFilter" } }, "includeGridData": { "description": "True if grid data should be returned. This parameter is ignored if a field mask was set in the request.", "type": "boolean" } } }, "BatchUpdateSpreadsheetRequest": { "id": "BatchUpdateSpreadsheetRequest", "description": "The request for updating any aspect of a spreadsheet.", "type": "object", "properties": { "requests": { "description": "A list of updates to apply to the spreadsheet. Requests will be applied in the order they are specified. If any request is not valid, no requests will be applied.", "type": "array", "items": { "$ref": "Request" } }, "includeSpreadsheetInResponse": { "description": "Determines if the update response should include the spreadsheet resource.", "type": "boolean" }, "responseRanges": { "description": "Limits the ranges included in the response spreadsheet. Meaningful only if include_spreadsheet_in_response is 'true'.", "type": "array", "items": { "type": "string" } }, "responseIncludeGridData": { "description": "True if grid data should be returned. Meaningful only if include_spreadsheet_in_response is 'true'. This parameter is ignored if a field mask was set in the request.", "type": "boolean" } } }, "Request": { "id": "Request", "description": "A single kind of update to apply to a spreadsheet.", "type": "object", "properties": { "updateSpreadsheetProperties": { "description": "Updates the spreadsheet's properties.", "$ref": "UpdateSpreadsheetPropertiesRequest" }, "updateSheetProperties": { "description": "Updates a sheet's properties.", "$ref": "UpdateSheetPropertiesRequest" }, "updateDimensionProperties": { "description": "Updates dimensions' properties.", "$ref": "UpdateDimensionPropertiesRequest" }, "updateNamedRange": { "description": "Updates a named range.", "$ref": "UpdateNamedRangeRequest" }, "repeatCell": { "description": "Repeats a single cell across a range.", "$ref": "RepeatCellRequest" }, "addNamedRange": { "description": "Adds a named range.", "$ref": "AddNamedRangeRequest" }, "deleteNamedRange": { "description": "Deletes a named range.", "$ref": "DeleteNamedRangeRequest" }, "addSheet": { "description": "Adds a sheet.", "$ref": "AddSheetRequest" }, "deleteSheet": { "description": "Deletes a sheet.", "$ref": "DeleteSheetRequest" }, "autoFill": { "description": "Automatically fills in more data based on existing data.", "$ref": "AutoFillRequest" }, "cutPaste": { "description": "Cuts data from one area and pastes it to another.", "$ref": "CutPasteRequest" }, "copyPaste": { "description": "Copies data from one area and pastes it to another.", "$ref": "CopyPasteRequest" }, "mergeCells": { "description": "Merges cells together.", "$ref": "MergeCellsRequest" }, "unmergeCells": { "description": "Unmerges merged cells.", "$ref": "UnmergeCellsRequest" }, "updateBorders": { "description": "Updates the borders in a range of cells.", "$ref": "UpdateBordersRequest" }, "updateCells": { "description": "Updates many cells at once.", "$ref": "UpdateCellsRequest" }, "addFilterView": { "description": "Adds a filter view.", "$ref": "AddFilterViewRequest" }, "appendCells": { "description": "Appends cells after the last row with data in a sheet.", "$ref": "AppendCellsRequest" }, "clearBasicFilter": { "description": "Clears the basic filter on a sheet.", "$ref": "ClearBasicFilterRequest" }, "deleteDimension": { "description": "Deletes rows or columns in a sheet.", "$ref": "DeleteDimensionRequest" }, "deleteEmbeddedObject": { "description": "Deletes an embedded object (e.g, chart, image) in a sheet.", "$ref": "DeleteEmbeddedObjectRequest" }, "deleteFilterView": { "description": "Deletes a filter view from a sheet.", "$ref": "DeleteFilterViewRequest" }, "duplicateFilterView": { "description": "Duplicates a filter view.", "$ref": "DuplicateFilterViewRequest" }, "duplicateSheet": { "description": "Duplicates a sheet.", "$ref": "DuplicateSheetRequest" }, "findReplace": { "description": "Finds and replaces occurrences of some text with other text.", "$ref": "FindReplaceRequest" }, "insertDimension": { "description": "Inserts new rows or columns in a sheet.", "$ref": "InsertDimensionRequest" }, "insertRange": { "description": "Inserts new cells in a sheet, shifting the existing cells.", "$ref": "InsertRangeRequest" }, "moveDimension": { "description": "Moves rows or columns to another location in a sheet.", "$ref": "MoveDimensionRequest" }, "updateEmbeddedObjectPosition": { "description": "Updates an embedded object's (e.g. chart, image) position.", "$ref": "UpdateEmbeddedObjectPositionRequest" }, "pasteData": { "description": "Pastes data (HTML or delimited) into a sheet.", "$ref": "PasteDataRequest" }, "textToColumns": { "description": "Converts a column of text into many columns of text.", "$ref": "TextToColumnsRequest" }, "updateFilterView": { "description": "Updates the properties of a filter view.", "$ref": "UpdateFilterViewRequest" }, "deleteRange": { "description": "Deletes a range of cells from a sheet, shifting the remaining cells.", "$ref": "DeleteRangeRequest" }, "appendDimension": { "description": "Appends dimensions to the end of a sheet.", "$ref": "AppendDimensionRequest" }, "addConditionalFormatRule": { "description": "Adds a new conditional format rule.", "$ref": "AddConditionalFormatRuleRequest" }, "updateConditionalFormatRule": { "description": "Updates an existing conditional format rule.", "$ref": "UpdateConditionalFormatRuleRequest" }, "deleteConditionalFormatRule": { "description": "Deletes an existing conditional format rule.", "$ref": "DeleteConditionalFormatRuleRequest" }, "sortRange": { "description": "Sorts data in a range.", "$ref": "SortRangeRequest" }, "setDataValidation": { "description": "Sets data validation for one or more cells.", "$ref": "SetDataValidationRequest" }, "setBasicFilter": { "description": "Sets the basic filter on a sheet.", "$ref": "SetBasicFilterRequest" }, "addProtectedRange": { "description": "Adds a protected range.", "$ref": "AddProtectedRangeRequest" }, "updateProtectedRange": { "description": "Updates a protected range.", "$ref": "UpdateProtectedRangeRequest" }, "deleteProtectedRange": { "description": "Deletes a protected range.", "$ref": "DeleteProtectedRangeRequest" }, "autoResizeDimensions": { "description": "Automatically resizes one or more dimensions based on the contents of the cells in that dimension.", "$ref": "AutoResizeDimensionsRequest" }, "addChart": { "description": "Adds a chart.", "$ref": "AddChartRequest" }, "updateChartSpec": { "description": "Updates a chart's specifications.", "$ref": "UpdateChartSpecRequest" }, "updateBanding": { "description": "Updates a banded range", "$ref": "UpdateBandingRequest" }, "addBanding": { "description": "Adds a new banded range", "$ref": "AddBandingRequest" }, "deleteBanding": { "description": "Removes a banded range", "$ref": "DeleteBandingRequest" }, "createDeveloperMetadata": { "description": "Creates new developer metadata", "$ref": "CreateDeveloperMetadataRequest" }, "updateDeveloperMetadata": { "description": "Updates an existing developer metadata entry", "$ref": "UpdateDeveloperMetadataRequest" }, "deleteDeveloperMetadata": { "description": "Deletes developer metadata", "$ref": "DeleteDeveloperMetadataRequest" }, "randomizeRange": { "description": "Randomizes the order of the rows in a range.", "$ref": "RandomizeRangeRequest" }, "addDimensionGroup": { "description": "Creates a group over the specified range.", "$ref": "AddDimensionGroupRequest" }, "deleteDimensionGroup": { "description": "Deletes a group over the specified range.", "$ref": "DeleteDimensionGroupRequest" }, "updateDimensionGroup": { "description": "Updates the state of the specified group.", "$ref": "UpdateDimensionGroupRequest" }, "trimWhitespace": { "description": "Trims cells of whitespace (such as spaces, tabs, or new lines).", "$ref": "TrimWhitespaceRequest" }, "deleteDuplicates": { "description": "Removes rows containing duplicate values in specified columns of a cell range.", "$ref": "DeleteDuplicatesRequest" }, "updateEmbeddedObjectBorder": { "description": "Updates an embedded object's border.", "$ref": "UpdateEmbeddedObjectBorderRequest" }, "addSlicer": { "description": "Adds a slicer.", "$ref": "AddSlicerRequest" }, "updateSlicerSpec": { "description": "Updates a slicer's specifications.", "$ref": "UpdateSlicerSpecRequest" }, "addDataSource": { "description": "Adds a data source.", "$ref": "AddDataSourceRequest" }, "updateDataSource": { "description": "Updates a data source.", "$ref": "UpdateDataSourceRequest" }, "deleteDataSource": { "description": "Deletes a data source.", "$ref": "DeleteDataSourceRequest" }, "refreshDataSource": { "description": "Refreshes one or multiple data sources and associated dbobjects.", "$ref": "RefreshDataSourceRequest" } } }, "UpdateSpreadsheetPropertiesRequest": { "id": "UpdateSpreadsheetPropertiesRequest", "description": "Updates properties of a spreadsheet.", "type": "object", "properties": { "properties": { "description": "The properties to update.", "$ref": "SpreadsheetProperties" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root 'properties' is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "UpdateSheetPropertiesRequest": { "id": "UpdateSheetPropertiesRequest", "description": "Updates properties of the sheet with the specified sheetId.", "type": "object", "properties": { "properties": { "description": "The properties to update.", "$ref": "SheetProperties" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `properties` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "UpdateDimensionPropertiesRequest": { "id": "UpdateDimensionPropertiesRequest", "description": "Updates properties of dimensions within the specified range.", "type": "object", "properties": { "range": { "description": "The rows or columns to update.", "$ref": "DimensionRange" }, "dataSourceSheetRange": { "description": "The columns on a data source sheet to update.", "$ref": "DataSourceSheetDimensionRange" }, "properties": { "description": "Properties to update.", "$ref": "DimensionProperties" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `properties` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "DataSourceSheetDimensionRange": { "id": "DataSourceSheetDimensionRange", "description": "A range along a single dimension on a DATA_SOURCE sheet.", "type": "object", "properties": { "sheetId": { "description": "The ID of the data source sheet the range is on.", "type": "integer", "format": "int32" }, "columnReferences": { "description": "The columns on the data source sheet.", "type": "array", "items": { "$ref": "DataSourceColumnReference" } } } }, "UpdateNamedRangeRequest": { "id": "UpdateNamedRangeRequest", "description": "Updates properties of the named range with the specified namedRangeId.", "type": "object", "properties": { "namedRange": { "description": "The named range to update with the new properties.", "$ref": "NamedRange" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `namedRange` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "RepeatCellRequest": { "id": "RepeatCellRequest", "description": "Updates all cells in the range to the values in the given Cell object. Only the fields listed in the fields field are updated; others are unchanged. If writing a cell with a formula, the formula's ranges will automatically increment for each field in the range. For example, if writing a cell with formula `=A1` into range B2:C4, B2 would be `=A1`, B3 would be `=A2`, B4 would be `=A3`, C2 would be `=B1`, C3 would be `=B2`, C4 would be `=B3`. To keep the formula's ranges static, use the `$` indicator. For example, use the formula `=$A$1` to prevent both the row and the column from incrementing.", "type": "object", "properties": { "range": { "description": "The range to repeat the cell in.", "$ref": "GridRange" }, "cell": { "description": "The data to write.", "$ref": "CellData" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `cell` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "AddNamedRangeRequest": { "id": "AddNamedRangeRequest", "description": "Adds a named range to the spreadsheet.", "type": "object", "properties": { "namedRange": { "description": "The named range to add. The namedRangeId field is optional; if one is not set, an id will be randomly generated. (It is an error to specify the ID of a range that already exists.)", "$ref": "NamedRange" } } }, "DeleteNamedRangeRequest": { "id": "DeleteNamedRangeRequest", "description": "Removes the named range with the given ID from the spreadsheet.", "type": "object", "properties": { "namedRangeId": { "description": "The ID of the named range to delete.", "type": "string" } } }, "AddSheetRequest": { "id": "AddSheetRequest", "description": "Adds a new sheet. When a sheet is added at a given index, all subsequent sheets' indexes are incremented. To add an object sheet, use AddChartRequest instead and specify EmbeddedObjectPosition.sheetId or EmbeddedObjectPosition.newSheet.", "type": "object", "properties": { "properties": { "description": "The properties the new sheet should have. All properties are optional. The sheetId field is optional; if one is not set, an id will be randomly generated. (It is an error to specify the ID of a sheet that already exists.)", "$ref": "SheetProperties" } } }, "DeleteSheetRequest": { "id": "DeleteSheetRequest", "description": "Deletes the requested sheet.", "type": "object", "properties": { "sheetId": { "description": "The ID of the sheet to delete. If the sheet is of DATA_SOURCE type, the associated DataSource is also deleted.", "type": "integer", "format": "int32" } } }, "AutoFillRequest": { "id": "AutoFillRequest", "description": "Fills in more data based on existing data.", "type": "object", "properties": { "range": { "description": "The range to autofill. This will examine the range and detect the location that has data and automatically fill that data in to the rest of the range.", "$ref": "GridRange" }, "sourceAndDestination": { "description": "The source and destination areas to autofill. This explicitly lists the source of the autofill and where to extend that data.", "$ref": "SourceAndDestination" }, "useAlternateSeries": { "description": "True if we should generate data with the \"alternate\" series. This differs based on the type and amount of source data.", "type": "boolean" } } }, "SourceAndDestination": { "id": "SourceAndDestination", "description": "A combination of a source range and how to extend that source.", "type": "object", "properties": { "source": { "description": "The location of the data to use as the source of the autofill.", "$ref": "GridRange" }, "dimension": { "description": "The dimension that data should be filled into.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] }, "fillLength": { "description": "The number of rows or columns that data should be filled into. Positive numbers expand beyond the last row or last column of the source. Negative numbers expand before the first row or first column of the source.", "type": "integer", "format": "int32" } } }, "CutPasteRequest": { "id": "CutPasteRequest", "description": "Moves data from the source to the destination.", "type": "object", "properties": { "source": { "description": "The source data to cut.", "$ref": "GridRange" }, "destination": { "description": "The top-left coordinate where the data should be pasted.", "$ref": "GridCoordinate" }, "pasteType": { "description": "What kind of data to paste. All the source data will be cut, regardless of what is pasted.", "type": "string", "enumDescriptions": [ "Paste values, formulas, formats, and merges.", "Paste the values ONLY without formats, formulas, or merges.", "Paste the format and data validation only.", "Like `PASTE_NORMAL` but without borders.", "Paste the formulas only.", "Paste the data validation only.", "Paste the conditional formatting rules only." ], "enum": [ "PASTE_NORMAL", "PASTE_VALUES", "PASTE_FORMAT", "PASTE_NO_BORDERS", "PASTE_FORMULA", "PASTE_DATA_VALIDATION", "PASTE_CONDITIONAL_FORMATTING" ] } } }, "CopyPasteRequest": { "id": "CopyPasteRequest", "description": "Copies data from the source to the destination.", "type": "object", "properties": { "source": { "description": "The source range to copy.", "$ref": "GridRange" }, "destination": { "description": "The location to paste to. If the range covers a span that's a multiple of the source's height or width, then the data will be repeated to fill in the destination range. If the range is smaller than the source range, the entire source data will still be copied (beyond the end of the destination range).", "$ref": "GridRange" }, "pasteType": { "description": "What kind of data to paste.", "type": "string", "enumDescriptions": [ "Paste values, formulas, formats, and merges.", "Paste the values ONLY without formats, formulas, or merges.", "Paste the format and data validation only.", "Like `PASTE_NORMAL` but without borders.", "Paste the formulas only.", "Paste the data validation only.", "Paste the conditional formatting rules only." ], "enum": [ "PASTE_NORMAL", "PASTE_VALUES", "PASTE_FORMAT", "PASTE_NO_BORDERS", "PASTE_FORMULA", "PASTE_DATA_VALIDATION", "PASTE_CONDITIONAL_FORMATTING" ] }, "pasteOrientation": { "description": "How that data should be oriented when pasting.", "type": "string", "enumDescriptions": [ "Paste normally.", "Paste transposed, where all rows become columns and vice versa." ], "enum": [ "NORMAL", "TRANSPOSE" ] } } }, "MergeCellsRequest": { "id": "MergeCellsRequest", "description": "Merges all cells in the range.", "type": "object", "properties": { "range": { "description": "The range of cells to merge.", "$ref": "GridRange" }, "mergeType": { "description": "How the cells should be merged.", "type": "string", "enumDescriptions": [ "Create a single merge from the range", "Create a merge for each column in the range", "Create a merge for each row in the range" ], "enum": [ "MERGE_ALL", "MERGE_COLUMNS", "MERGE_ROWS" ] } } }, "UnmergeCellsRequest": { "id": "UnmergeCellsRequest", "description": "Unmerges cells in the given range.", "type": "object", "properties": { "range": { "description": "The range within which all cells should be unmerged. If the range spans multiple merges, all will be unmerged. The range must not partially span any merge.", "$ref": "GridRange" } } }, "UpdateBordersRequest": { "id": "UpdateBordersRequest", "description": "Updates the borders of a range. If a field is not set in the request, that means the border remains as-is. For example, with two subsequent UpdateBordersRequest: 1. range: A1:A5 `{ top: RED, bottom: WHITE }` 2. range: A1:A5 `{ left: BLUE }` That would result in A1:A5 having a borders of `{ top: RED, bottom: WHITE, left: BLUE }`. If you want to clear a border, explicitly set the style to NONE.", "type": "object", "properties": { "range": { "description": "The range whose borders should be updated.", "$ref": "GridRange" }, "top": { "description": "The border to put at the top of the range.", "$ref": "Border" }, "bottom": { "description": "The border to put at the bottom of the range.", "$ref": "Border" }, "left": { "description": "The border to put at the left of the range.", "$ref": "Border" }, "right": { "description": "The border to put at the right of the range.", "$ref": "Border" }, "innerHorizontal": { "description": "The horizontal border to put within the range.", "$ref": "Border" }, "innerVertical": { "description": "The vertical border to put within the range.", "$ref": "Border" } } }, "UpdateCellsRequest": { "id": "UpdateCellsRequest", "description": "Updates all cells in a range with new data.", "type": "object", "properties": { "start": { "description": "The coordinate to start writing data at. Any number of rows and columns (including a different number of columns per row) may be written.", "$ref": "GridCoordinate" }, "range": { "description": "The range to write data to. If the data in rows does not cover the entire requested range, the fields matching those set in fields will be cleared.", "$ref": "GridRange" }, "rows": { "description": "The data to write.", "type": "array", "items": { "$ref": "RowData" } }, "fields": { "description": "The fields of CellData that should be updated. At least one field must be specified. The root is the CellData; 'row.values.' should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "AddFilterViewRequest": { "id": "AddFilterViewRequest", "description": "Adds a filter view.", "type": "object", "properties": { "filter": { "description": "The filter to add. The filterViewId field is optional; if one is not set, an id will be randomly generated. (It is an error to specify the ID of a filter that already exists.)", "$ref": "FilterView" } } }, "AppendCellsRequest": { "id": "AppendCellsRequest", "description": "Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.", "type": "object", "properties": { "sheetId": { "description": "The sheet ID to append the data to.", "type": "integer", "format": "int32" }, "rows": { "description": "The data to append.", "type": "array", "items": { "$ref": "RowData" } }, "fields": { "description": "The fields of CellData that should be updated. At least one field must be specified. The root is the CellData; 'row.values.' should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "ClearBasicFilterRequest": { "id": "ClearBasicFilterRequest", "description": "Clears the basic filter, if any exists on the sheet.", "type": "object", "properties": { "sheetId": { "description": "The sheet ID on which the basic filter should be cleared.", "type": "integer", "format": "int32" } } }, "DeleteDimensionRequest": { "id": "DeleteDimensionRequest", "description": "Deletes the dimensions from the sheet.", "type": "object", "properties": { "range": { "description": "The dimensions to delete from the sheet.", "$ref": "DimensionRange" } } }, "DeleteEmbeddedObjectRequest": { "id": "DeleteEmbeddedObjectRequest", "description": "Deletes the embedded object with the given ID.", "type": "object", "properties": { "objectId": { "description": "The ID of the embedded object to delete.", "type": "integer", "format": "int32" } } }, "DeleteFilterViewRequest": { "id": "DeleteFilterViewRequest", "description": "Deletes a particular filter view.", "type": "object", "properties": { "filterId": { "description": "The ID of the filter to delete.", "type": "integer", "format": "int32" } } }, "DuplicateFilterViewRequest": { "id": "DuplicateFilterViewRequest", "description": "Duplicates a particular filter view.", "type": "object", "properties": { "filterId": { "description": "The ID of the filter being duplicated.", "type": "integer", "format": "int32" } } }, "DuplicateSheetRequest": { "id": "DuplicateSheetRequest", "description": "Duplicates the contents of a sheet.", "type": "object", "properties": { "sourceSheetId": { "description": "The sheet to duplicate. If the source sheet is of DATA_SOURCE type, its backing DataSource is also duplicated and associated with the new copy of the sheet. No data execution is triggered, the grid data of this sheet is also copied over but only available after the batch request completes.", "type": "integer", "format": "int32" }, "insertSheetIndex": { "description": "The zero-based index where the new sheet should be inserted. The index of all sheets after this are incremented.", "type": "integer", "format": "int32" }, "newSheetId": { "description": "If set, the ID of the new sheet. If not set, an ID is chosen. If set, the ID must not conflict with any existing sheet ID. If set, it must be non-negative.", "type": "integer", "format": "int32" }, "newSheetName": { "description": "The name of the new sheet. If empty, a new name is chosen for you.", "type": "string" } } }, "FindReplaceRequest": { "id": "FindReplaceRequest", "description": "Finds and replaces data in cells over a range, sheet, or all sheets.", "type": "object", "properties": { "find": { "description": "The value to search.", "type": "string" }, "replacement": { "description": "The value to use as the replacement.", "type": "string" }, "range": { "description": "The range to find/replace over.", "$ref": "GridRange" }, "sheetId": { "description": "The sheet to find/replace over.", "type": "integer", "format": "int32" }, "allSheets": { "description": "True to find/replace over all sheets.", "type": "boolean" }, "matchCase": { "description": "True if the search is case sensitive.", "type": "boolean" }, "matchEntireCell": { "description": "True if the find value should match the entire cell.", "type": "boolean" }, "searchByRegex": { "description": "True if the find value is a regex. The regular expression and replacement should follow Java regex rules at https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html. The replacement string is allowed to refer to capturing groups. For example, if one cell has the contents `\"Google Sheets\"` and another has `\"Google Docs\"`, then searching for `\"o.* (.*)\"` with a replacement of `\"$1 Rocks\"` would change the contents of the cells to `\"GSheets Rocks\"` and `\"GDocs Rocks\"` respectively.", "type": "boolean" }, "includeFormulas": { "description": "True if the search should include cells with formulas. False to skip cells with formulas.", "type": "boolean" } } }, "InsertDimensionRequest": { "id": "InsertDimensionRequest", "description": "Inserts rows or columns in a sheet at a particular index.", "type": "object", "properties": { "range": { "description": "The dimensions to insert. Both the start and end indexes must be bounded.", "$ref": "DimensionRange" }, "inheritFromBefore": { "description": "Whether dimension properties should be extended from the dimensions before or after the newly inserted dimensions. True to inherit from the dimensions before (in which case the start index must be greater than 0), and false to inherit from the dimensions after. For example, if row index 0 has red background and row index 1 has a green background, then inserting 2 rows at index 1 can inherit either the green or red background. If `inheritFromBefore` is true, the two new rows will be red (because the row before the insertion point was red), whereas if `inheritFromBefore` is false, the two new rows will be green (because the row after the insertion point was green).", "type": "boolean" } } }, "InsertRangeRequest": { "id": "InsertRangeRequest", "description": "Inserts cells into a range, shifting the existing cells over or down.", "type": "object", "properties": { "range": { "description": "The range to insert new cells into.", "$ref": "GridRange" }, "shiftDimension": { "description": "The dimension which will be shifted when inserting cells. If ROWS, existing cells will be shifted down. If COLUMNS, existing cells will be shifted right.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] } } }, "MoveDimensionRequest": { "id": "MoveDimensionRequest", "description": "Moves one or more rows or columns.", "type": "object", "properties": { "source": { "description": "The source dimensions to move.", "$ref": "DimensionRange" }, "destinationIndex": { "description": "The zero-based start index of where to move the source data to, based on the coordinates *before* the source data is removed from the grid. Existing data will be shifted down or right (depending on the dimension) to make room for the moved dimensions. The source dimensions are removed from the grid, so the the data may end up in a different index than specified. For example, given `A1..A5` of `0, 1, 2, 3, 4` and wanting to move `\"1\"` and `\"2\"` to between `\"3\"` and `\"4\"`, the source would be `ROWS [1..3)`,and the destination index would be `\"4\"` (the zero-based index of row 5). The end result would be `A1..A5` of `0, 3, 1, 2, 4`.", "type": "integer", "format": "int32" } } }, "UpdateEmbeddedObjectPositionRequest": { "id": "UpdateEmbeddedObjectPositionRequest", "description": "Update an embedded object's position (such as a moving or resizing a chart or image).", "type": "object", "properties": { "objectId": { "description": "The ID of the object to moved.", "type": "integer", "format": "int32" }, "newPosition": { "description": "An explicit position to move the embedded object to. If newPosition.sheetId is set, a new sheet with that ID will be created. If newPosition.newSheet is set to true, a new sheet will be created with an ID that will be chosen for you.", "$ref": "EmbeddedObjectPosition" }, "fields": { "description": "The fields of OverlayPosition that should be updated when setting a new position. Used only if newPosition.overlayPosition is set, in which case at least one field must be specified. The root `newPosition.overlayPosition` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "PasteDataRequest": { "id": "PasteDataRequest", "description": "Inserts data into the spreadsheet starting at the specified coordinate.", "type": "object", "properties": { "coordinate": { "description": "The coordinate at which the data should start being inserted.", "$ref": "GridCoordinate" }, "data": { "description": "The data to insert.", "type": "string" }, "delimiter": { "description": "The delimiter in the data.", "type": "string" }, "html": { "description": "True if the data is HTML.", "type": "boolean" }, "type": { "description": "How the data should be pasted.", "type": "string", "enumDescriptions": [ "Paste values, formulas, formats, and merges.", "Paste the values ONLY without formats, formulas, or merges.", "Paste the format and data validation only.", "Like `PASTE_NORMAL` but without borders.", "Paste the formulas only.", "Paste the data validation only.", "Paste the conditional formatting rules only." ], "enum": [ "PASTE_NORMAL", "PASTE_VALUES", "PASTE_FORMAT", "PASTE_NO_BORDERS", "PASTE_FORMULA", "PASTE_DATA_VALIDATION", "PASTE_CONDITIONAL_FORMATTING" ] } } }, "TextToColumnsRequest": { "id": "TextToColumnsRequest", "description": "Splits a column of text into multiple columns, based on a delimiter in each cell.", "type": "object", "properties": { "source": { "description": "The source data range. This must span exactly one column.", "$ref": "GridRange" }, "delimiter": { "description": "The delimiter to use. Used only if delimiterType is CUSTOM.", "type": "string" }, "delimiterType": { "description": "The delimiter type to use.", "type": "string", "enumDescriptions": [ "Default value. This value must not be used.", "\",\"", "\";\"", "\".\"", "\" \"", "A custom value as defined in delimiter.", "Automatically detect columns." ], "enum": [ "DELIMITER_TYPE_UNSPECIFIED", "COMMA", "SEMICOLON", "PERIOD", "SPACE", "CUSTOM", "AUTODETECT" ] } } }, "UpdateFilterViewRequest": { "id": "UpdateFilterViewRequest", "description": "Updates properties of the filter view.", "type": "object", "properties": { "filter": { "description": "The new properties of the filter view.", "$ref": "FilterView" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `filter` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "DeleteRangeRequest": { "id": "DeleteRangeRequest", "description": "Deletes a range of cells, shifting other cells into the deleted area.", "type": "object", "properties": { "range": { "description": "The range of cells to delete.", "$ref": "GridRange" }, "shiftDimension": { "description": "The dimension from which deleted cells will be replaced with. If ROWS, existing cells will be shifted upward to replace the deleted cells. If COLUMNS, existing cells will be shifted left to replace the deleted cells.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] } } }, "AppendDimensionRequest": { "id": "AppendDimensionRequest", "description": "Appends rows or columns to the end of a sheet.", "type": "object", "properties": { "sheetId": { "description": "The sheet to append rows or columns to.", "type": "integer", "format": "int32" }, "dimension": { "description": "Whether rows or columns should be appended.", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] }, "length": { "description": "The number of rows or columns to append.", "type": "integer", "format": "int32" } } }, "AddConditionalFormatRuleRequest": { "id": "AddConditionalFormatRuleRequest", "description": "Adds a new conditional format rule at the given index. All subsequent rules' indexes are incremented.", "type": "object", "properties": { "rule": { "description": "The rule to add.", "$ref": "ConditionalFormatRule" }, "index": { "description": "The zero-based index where the rule should be inserted.", "type": "integer", "format": "int32" } } }, "UpdateConditionalFormatRuleRequest": { "id": "UpdateConditionalFormatRuleRequest", "description": "Updates a conditional format rule at the given index, or moves a conditional format rule to another index.", "type": "object", "properties": { "rule": { "description": "The rule that should replace the rule at the given index.", "$ref": "ConditionalFormatRule" }, "newIndex": { "description": "The zero-based new index the rule should end up at.", "type": "integer", "format": "int32" }, "index": { "description": "The zero-based index of the rule that should be replaced or moved.", "type": "integer", "format": "int32" }, "sheetId": { "description": "The sheet of the rule to move. Required if new_index is set, unused otherwise.", "type": "integer", "format": "int32" } } }, "DeleteConditionalFormatRuleRequest": { "id": "DeleteConditionalFormatRuleRequest", "description": "Deletes a conditional format rule at the given index. All subsequent rules' indexes are decremented.", "type": "object", "properties": { "index": { "description": "The zero-based index of the rule to be deleted.", "type": "integer", "format": "int32" }, "sheetId": { "description": "The sheet the rule is being deleted from.", "type": "integer", "format": "int32" } } }, "SortRangeRequest": { "id": "SortRangeRequest", "description": "Sorts data in rows based on a sort order per column.", "type": "object", "properties": { "range": { "description": "The range to sort.", "$ref": "GridRange" }, "sortSpecs": { "description": "The sort order per column. Later specifications are used when values are equal in the earlier specifications.", "type": "array", "items": { "$ref": "SortSpec" } } } }, "SetDataValidationRequest": { "id": "SetDataValidationRequest", "description": "Sets a data validation rule to every cell in the range. To clear validation in a range, call this with no rule specified.", "type": "object", "properties": { "range": { "description": "The range the data validation rule should apply to.", "$ref": "GridRange" }, "rule": { "description": "The data validation rule to set on each cell in the range, or empty to clear the data validation in the range.", "$ref": "DataValidationRule" } } }, "SetBasicFilterRequest": { "id": "SetBasicFilterRequest", "description": "Sets the basic filter associated with a sheet.", "type": "object", "properties": { "filter": { "description": "The filter to set.", "$ref": "BasicFilter" } } }, "AddProtectedRangeRequest": { "id": "AddProtectedRangeRequest", "description": "Adds a new protected range.", "type": "object", "properties": { "protectedRange": { "description": "The protected range to be added. The protectedRangeId field is optional; if one is not set, an id will be randomly generated. (It is an error to specify the ID of a range that already exists.)", "$ref": "ProtectedRange" } } }, "UpdateProtectedRangeRequest": { "id": "UpdateProtectedRangeRequest", "description": "Updates an existing protected range with the specified protectedRangeId.", "type": "object", "properties": { "protectedRange": { "description": "The protected range to update with the new properties.", "$ref": "ProtectedRange" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `protectedRange` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "DeleteProtectedRangeRequest": { "id": "DeleteProtectedRangeRequest", "description": "Deletes the protected range with the given ID.", "type": "object", "properties": { "protectedRangeId": { "description": "The ID of the protected range to delete.", "type": "integer", "format": "int32" } } }, "AutoResizeDimensionsRequest": { "id": "AutoResizeDimensionsRequest", "description": "Automatically resizes one or more dimensions based on the contents of the cells in that dimension.", "type": "object", "properties": { "dimensions": { "description": "The dimensions to automatically resize.", "$ref": "DimensionRange" }, "dataSourceSheetDimensions": { "description": "The dimensions on a data source sheet to automatically resize.", "$ref": "DataSourceSheetDimensionRange" } } }, "AddChartRequest": { "id": "AddChartRequest", "description": "Adds a chart to a sheet in the spreadsheet.", "type": "object", "properties": { "chart": { "description": "The chart that should be added to the spreadsheet, including the position where it should be placed. The chartId field is optional; if one is not set, an id will be randomly generated. (It is an error to specify the ID of an embedded object that already exists.)", "$ref": "EmbeddedChart" } } }, "UpdateChartSpecRequest": { "id": "UpdateChartSpecRequest", "description": "Updates a chart's specifications. (This does not move or resize a chart. To move or resize a chart, use UpdateEmbeddedObjectPositionRequest.)", "type": "object", "properties": { "chartId": { "description": "The ID of the chart to update.", "type": "integer", "format": "int32" }, "spec": { "description": "The specification to apply to the chart.", "$ref": "ChartSpec" } } }, "UpdateBandingRequest": { "id": "UpdateBandingRequest", "description": "Updates properties of the supplied banded range.", "type": "object", "properties": { "bandedRange": { "description": "The banded range to update with the new properties.", "$ref": "BandedRange" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `bandedRange` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "AddBandingRequest": { "id": "AddBandingRequest", "description": "Adds a new banded range to the spreadsheet.", "type": "object", "properties": { "bandedRange": { "description": "The banded range to add. The bandedRangeId field is optional; if one is not set, an id will be randomly generated. (It is an error to specify the ID of a range that already exists.)", "$ref": "BandedRange" } } }, "DeleteBandingRequest": { "id": "DeleteBandingRequest", "description": "Removes the banded range with the given ID from the spreadsheet.", "type": "object", "properties": { "bandedRangeId": { "description": "The ID of the banded range to delete.", "type": "integer", "format": "int32" } } }, "CreateDeveloperMetadataRequest": { "id": "CreateDeveloperMetadataRequest", "description": "A request to create developer metadata.", "type": "object", "properties": { "developerMetadata": { "description": "The developer metadata to create.", "$ref": "DeveloperMetadata" } } }, "UpdateDeveloperMetadataRequest": { "id": "UpdateDeveloperMetadataRequest", "description": "A request to update properties of developer metadata. Updates the properties of the developer metadata selected by the filters to the values provided in the DeveloperMetadata resource. Callers must specify the properties they wish to update in the fields parameter, as well as specify at least one DataFilter matching the metadata they wish to update.", "type": "object", "properties": { "dataFilters": { "description": "The filters matching the developer metadata entries to update.", "type": "array", "items": { "$ref": "DataFilter" } }, "developerMetadata": { "description": "The value that all metadata matched by the data filters will be updated to.", "$ref": "DeveloperMetadata" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `developerMetadata` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "DeleteDeveloperMetadataRequest": { "id": "DeleteDeveloperMetadataRequest", "description": "A request to delete developer metadata.", "type": "object", "properties": { "dataFilter": { "description": "The data filter describing the criteria used to select which developer metadata entry to delete.", "$ref": "DataFilter" } } }, "RandomizeRangeRequest": { "id": "RandomizeRangeRequest", "description": "Randomizes the order of the rows in a range.", "type": "object", "properties": { "range": { "description": "The range to randomize.", "$ref": "GridRange" } } }, "AddDimensionGroupRequest": { "id": "AddDimensionGroupRequest", "description": "Creates a group over the specified range. If the requested range is a superset of the range of an existing group G, then the depth of G is incremented and this new group G' has the depth of that group. For example, a group [C:D, depth 1] + [B:E] results in groups [B:E, depth 1] and [C:D, depth 2]. If the requested range is a subset of the range of an existing group G, then the depth of the new group G' becomes one greater than the depth of G. For example, a group [B:E, depth 1] + [C:D] results in groups [B:E, depth 1] and [C:D, depth 2]. If the requested range starts before and ends within, or starts within and ends after, the range of an existing group G, then the range of the existing group G becomes the union of the ranges, and the new group G' has depth one greater than the depth of G and range as the intersection of the ranges. For example, a group [B:D, depth 1] + [C:E] results in groups [B:E, depth 1] and [C:D, depth 2].", "type": "object", "properties": { "range": { "description": "The range over which to create a group.", "$ref": "DimensionRange" } } }, "DeleteDimensionGroupRequest": { "id": "DeleteDimensionGroupRequest", "description": "Deletes a group over the specified range by decrementing the depth of the dimensions in the range. For example, assume the sheet has a depth-1 group over B:E and a depth-2 group over C:D. Deleting a group over D:E leaves the sheet with a depth-1 group over B:D and a depth-2 group over C:C.", "type": "object", "properties": { "range": { "description": "The range of the group to be deleted.", "$ref": "DimensionRange" } } }, "UpdateDimensionGroupRequest": { "id": "UpdateDimensionGroupRequest", "description": "Updates the state of the specified group.", "type": "object", "properties": { "dimensionGroup": { "description": "The group whose state should be updated. The range and depth of the group should specify a valid group on the sheet, and all other fields updated.", "$ref": "DimensionGroup" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `dimensionGroup` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "TrimWhitespaceRequest": { "id": "TrimWhitespaceRequest", "description": "Trims the whitespace (such as spaces, tabs, or new lines) in every cell in the specified range. This request removes all whitespace from the start and end of each cell's text, and reduces any subsequence of remaining whitespace characters to a single space. If the resulting trimmed text starts with a '+' or '=' character, the text remains as a string value and isn't interpreted as a formula.", "type": "object", "properties": { "range": { "description": "The range whose cells to trim.", "$ref": "GridRange" } } }, "DeleteDuplicatesRequest": { "id": "DeleteDuplicatesRequest", "description": "Removes rows within this range that contain values in the specified columns that are duplicates of values in any previous row. Rows with identical values but different letter cases, formatting, or formulas are considered to be duplicates. This request also removes duplicate rows hidden from view (for example, due to a filter). When removing duplicates, the first instance of each duplicate row scanning from the top downwards is kept in the resulting range. Content outside of the specified range isn't removed, and rows considered duplicates do not have to be adjacent to each other in the range.", "type": "object", "properties": { "range": { "description": "The range to remove duplicates rows from.", "$ref": "GridRange" }, "comparisonColumns": { "description": "The columns in the range to analyze for duplicate values. If no columns are selected then all columns are analyzed for duplicates.", "type": "array", "items": { "$ref": "DimensionRange" } } } }, "UpdateEmbeddedObjectBorderRequest": { "id": "UpdateEmbeddedObjectBorderRequest", "description": "Updates an embedded object's border property.", "type": "object", "properties": { "objectId": { "description": "The ID of the embedded object to update.", "type": "integer", "format": "int32" }, "border": { "description": "The border that applies to the embedded object.", "$ref": "EmbeddedObjectBorder" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `border` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "AddSlicerRequest": { "id": "AddSlicerRequest", "description": "Adds a slicer to a sheet in the spreadsheet.", "type": "object", "properties": { "slicer": { "description": "The slicer that should be added to the spreadsheet, including the position where it should be placed. The slicerId field is optional; if one is not set, an id will be randomly generated. (It is an error to specify the ID of a slicer that already exists.)", "$ref": "Slicer" } } }, "UpdateSlicerSpecRequest": { "id": "UpdateSlicerSpecRequest", "description": "Updates a slicer's specifications. (This does not move or resize a slicer. To move or resize a slicer use UpdateEmbeddedObjectPositionRequest.", "type": "object", "properties": { "slicerId": { "description": "The id of the slicer to update.", "type": "integer", "format": "int32" }, "spec": { "description": "The specification to apply to the slicer.", "$ref": "SlicerSpec" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `SlicerSpec` is implied and should not be specified. A single \"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "AddDataSourceRequest": { "id": "AddDataSourceRequest", "description": "Adds a data source. After the data source is added successfully, an associated DATA_SOURCE sheet is created and an execution is triggered to refresh the sheet to read data from the data source. The request requires an additional `bigquery.readonly` OAuth scope.", "type": "object", "properties": { "dataSource": { "description": "The data source to add.", "$ref": "DataSource" } } }, "UpdateDataSourceRequest": { "id": "UpdateDataSourceRequest", "description": "Updates a data source. After the data source is updated successfully, an execution is triggered to refresh the associated DATA_SOURCE sheet to read data from the updated data source. The request requires an additional `bigquery.readonly` OAuth scope.", "type": "object", "properties": { "dataSource": { "description": "The data source to update.", "$ref": "DataSource" }, "fields": { "description": "The fields that should be updated. At least one field must be specified. The root `dataSource` is implied and should not be specified. A single `\"*\"` can be used as short-hand for listing every field.", "type": "string", "format": "google-fieldmask" } } }, "DeleteDataSourceRequest": { "id": "DeleteDataSourceRequest", "description": "Deletes a data source. The request also deletes the associated data source sheet, and unlinks all associated data source objects.", "type": "object", "properties": { "dataSourceId": { "description": "The ID of the data source to delete.", "type": "string" } } }, "RefreshDataSourceRequest": { "id": "RefreshDataSourceRequest", "description": "Refreshes one or multiple data source objects in the spreadsheet by the specified references. The request requires an additional `bigquery.readonly` OAuth scope. If there are multiple refresh requests referencing the same data source objects in one batch, only the last refresh request is processed, and all those requests will have the same response accordingly.", "type": "object", "properties": { "references": { "description": "References to data source objects to refresh.", "$ref": "DataSourceObjectReferences" }, "dataSourceId": { "description": "Reference to a DataSource. If specified, refreshes all associated data source objects for the data source.", "type": "string" }, "isAll": { "description": "Refreshes all existing data source objects in the spreadsheet.", "type": "boolean" }, "force": { "description": "Refreshes the data source objects regardless of the current state. If not set and a referenced data source object was in error state, the refresh will fail immediately.", "type": "boolean" } } }, "DataSourceObjectReferences": { "id": "DataSourceObjectReferences", "description": "A list of references to data source objects.", "type": "object", "properties": { "references": { "description": "The references.", "type": "array", "items": { "$ref": "DataSourceObjectReference" } } } }, "DataSourceObjectReference": { "id": "DataSourceObjectReference", "description": "Reference to a data source object.", "type": "object", "properties": { "sheetId": { "description": "References to a DATA_SOURCE sheet.", "type": "string" }, "chartId": { "description": "References to a data source chart.", "type": "integer", "format": "int32" }, "dataSourceTableAnchorCell": { "description": "References to a DataSourceTable anchored at the cell.", "$ref": "GridCoordinate" }, "dataSourcePivotTableAnchorCell": { "description": "References to a data source PivotTable anchored at the cell.", "$ref": "GridCoordinate" }, "dataSourceFormulaCell": { "description": "References to a cell containing DataSourceFormula.", "$ref": "GridCoordinate" } } }, "BatchUpdateSpreadsheetResponse": { "id": "BatchUpdateSpreadsheetResponse", "description": "The reply for batch updating a spreadsheet.", "type": "object", "properties": { "spreadsheetId": { "description": "The spreadsheet the updates were applied to.", "type": "string" }, "replies": { "description": "The reply of the updates. This maps 1:1 with the updates, although replies to some requests may be empty.", "type": "array", "items": { "$ref": "Response" } }, "updatedSpreadsheet": { "description": "The spreadsheet after updates were applied. This is only set if BatchUpdateSpreadsheetRequest.include_spreadsheet_in_response is `true`.", "$ref": "Spreadsheet" } } }, "Response": { "id": "Response", "description": "A single response from an update.", "type": "object", "properties": { "addNamedRange": { "description": "A reply from adding a named range.", "$ref": "AddNamedRangeResponse" }, "addSheet": { "description": "A reply from adding a sheet.", "$ref": "AddSheetResponse" }, "addFilterView": { "description": "A reply from adding a filter view.", "$ref": "AddFilterViewResponse" }, "duplicateFilterView": { "description": "A reply from duplicating a filter view.", "$ref": "DuplicateFilterViewResponse" }, "duplicateSheet": { "description": "A reply from duplicating a sheet.", "$ref": "DuplicateSheetResponse" }, "findReplace": { "description": "A reply from doing a find/replace.", "$ref": "FindReplaceResponse" }, "updateEmbeddedObjectPosition": { "description": "A reply from updating an embedded object's position.", "$ref": "UpdateEmbeddedObjectPositionResponse" }, "updateConditionalFormatRule": { "description": "A reply from updating a conditional format rule.", "$ref": "UpdateConditionalFormatRuleResponse" }, "deleteConditionalFormatRule": { "description": "A reply from deleting a conditional format rule.", "$ref": "DeleteConditionalFormatRuleResponse" }, "addProtectedRange": { "description": "A reply from adding a protected range.", "$ref": "AddProtectedRangeResponse" }, "addChart": { "description": "A reply from adding a chart.", "$ref": "AddChartResponse" }, "addBanding": { "description": "A reply from adding a banded range.", "$ref": "AddBandingResponse" }, "createDeveloperMetadata": { "description": "A reply from creating a developer metadata entry.", "$ref": "CreateDeveloperMetadataResponse" }, "updateDeveloperMetadata": { "description": "A reply from updating a developer metadata entry.", "$ref": "UpdateDeveloperMetadataResponse" }, "deleteDeveloperMetadata": { "description": "A reply from deleting a developer metadata entry.", "$ref": "DeleteDeveloperMetadataResponse" }, "addDimensionGroup": { "description": "A reply from adding a dimension group.", "$ref": "AddDimensionGroupResponse" }, "deleteDimensionGroup": { "description": "A reply from deleting a dimension group.", "$ref": "DeleteDimensionGroupResponse" }, "trimWhitespace": { "description": "A reply from trimming whitespace.", "$ref": "TrimWhitespaceResponse" }, "deleteDuplicates": { "description": "A reply from removing rows containing duplicate values.", "$ref": "DeleteDuplicatesResponse" }, "addSlicer": { "description": "A reply from adding a slicer.", "$ref": "AddSlicerResponse" }, "addDataSource": { "description": "A reply from adding a data source.", "$ref": "AddDataSourceResponse" }, "updateDataSource": { "description": "A reply from updating a data source.", "$ref": "UpdateDataSourceResponse" }, "refreshDataSource": { "description": "A reply from refreshing data source objects.", "$ref": "RefreshDataSourceResponse" } } }, "AddNamedRangeResponse": { "id": "AddNamedRangeResponse", "description": "The result of adding a named range.", "type": "object", "properties": { "namedRange": { "description": "The named range to add.", "$ref": "NamedRange" } } }, "AddSheetResponse": { "id": "AddSheetResponse", "description": "The result of adding a sheet.", "type": "object", "properties": { "properties": { "description": "The properties of the newly added sheet.", "$ref": "SheetProperties" } } }, "AddFilterViewResponse": { "id": "AddFilterViewResponse", "description": "The result of adding a filter view.", "type": "object", "properties": { "filter": { "description": "The newly added filter view.", "$ref": "FilterView" } } }, "DuplicateFilterViewResponse": { "id": "DuplicateFilterViewResponse", "description": "The result of a filter view being duplicated.", "type": "object", "properties": { "filter": { "description": "The newly created filter.", "$ref": "FilterView" } } }, "DuplicateSheetResponse": { "id": "DuplicateSheetResponse", "description": "The result of duplicating a sheet.", "type": "object", "properties": { "properties": { "description": "The properties of the duplicate sheet.", "$ref": "SheetProperties" } } }, "FindReplaceResponse": { "id": "FindReplaceResponse", "description": "The result of the find/replace.", "type": "object", "properties": { "valuesChanged": { "description": "The number of non-formula cells changed.", "type": "integer", "format": "int32" }, "formulasChanged": { "description": "The number of formula cells changed.", "type": "integer", "format": "int32" }, "rowsChanged": { "description": "The number of rows changed.", "type": "integer", "format": "int32" }, "sheetsChanged": { "description": "The number of sheets changed.", "type": "integer", "format": "int32" }, "occurrencesChanged": { "description": "The number of occurrences (possibly multiple within a cell) changed. For example, if replacing `\"e\"` with `\"o\"` in `\"Google Sheets\"`, this would be `\"3\"` because `\"Google Sheets\"` -\u003e `\"Googlo Shoots\"`.", "type": "integer", "format": "int32" } } }, "UpdateEmbeddedObjectPositionResponse": { "id": "UpdateEmbeddedObjectPositionResponse", "description": "The result of updating an embedded object's position.", "type": "object", "properties": { "position": { "description": "The new position of the embedded object.", "$ref": "EmbeddedObjectPosition" } } }, "UpdateConditionalFormatRuleResponse": { "id": "UpdateConditionalFormatRuleResponse", "description": "The result of updating a conditional format rule.", "type": "object", "properties": { "oldRule": { "description": "The old (deleted) rule. Not set if a rule was moved (because it is the same as new_rule).", "$ref": "ConditionalFormatRule" }, "oldIndex": { "description": "The old index of the rule. Not set if a rule was replaced (because it is the same as new_index).", "type": "integer", "format": "int32" }, "newRule": { "description": "The new rule that replaced the old rule (if replacing), or the rule that was moved (if moved)", "$ref": "ConditionalFormatRule" }, "newIndex": { "description": "The index of the new rule.", "type": "integer", "format": "int32" } } }, "DeleteConditionalFormatRuleResponse": { "id": "DeleteConditionalFormatRuleResponse", "description": "The result of deleting a conditional format rule.", "type": "object", "properties": { "rule": { "description": "The rule that was deleted.", "$ref": "ConditionalFormatRule" } } }, "AddProtectedRangeResponse": { "id": "AddProtectedRangeResponse", "description": "The result of adding a new protected range.", "type": "object", "properties": { "protectedRange": { "description": "The newly added protected range.", "$ref": "ProtectedRange" } } }, "AddChartResponse": { "id": "AddChartResponse", "description": "The result of adding a chart to a spreadsheet.", "type": "object", "properties": { "chart": { "description": "The newly added chart.", "$ref": "EmbeddedChart" } } }, "AddBandingResponse": { "id": "AddBandingResponse", "description": "The result of adding a banded range.", "type": "object", "properties": { "bandedRange": { "description": "The banded range that was added.", "$ref": "BandedRange" } } }, "CreateDeveloperMetadataResponse": { "id": "CreateDeveloperMetadataResponse", "description": "The response from creating developer metadata.", "type": "object", "properties": { "developerMetadata": { "description": "The developer metadata that was created.", "$ref": "DeveloperMetadata" } } }, "UpdateDeveloperMetadataResponse": { "id": "UpdateDeveloperMetadataResponse", "description": "The response from updating developer metadata.", "type": "object", "properties": { "developerMetadata": { "description": "The updated developer metadata.", "type": "array", "items": { "$ref": "DeveloperMetadata" } } } }, "DeleteDeveloperMetadataResponse": { "id": "DeleteDeveloperMetadataResponse", "description": "The response from deleting developer metadata.", "type": "object", "properties": { "deletedDeveloperMetadata": { "description": "The metadata that was deleted.", "type": "array", "items": { "$ref": "DeveloperMetadata" } } } }, "AddDimensionGroupResponse": { "id": "AddDimensionGroupResponse", "description": "The result of adding a group.", "type": "object", "properties": { "dimensionGroups": { "description": "All groups of a dimension after adding a group to that dimension.", "type": "array", "items": { "$ref": "DimensionGroup" } } } }, "DeleteDimensionGroupResponse": { "id": "DeleteDimensionGroupResponse", "description": "The result of deleting a group.", "type": "object", "properties": { "dimensionGroups": { "description": "All groups of a dimension after deleting a group from that dimension.", "type": "array", "items": { "$ref": "DimensionGroup" } } } }, "TrimWhitespaceResponse": { "id": "TrimWhitespaceResponse", "description": "The result of trimming whitespace in cells.", "type": "object", "properties": { "cellsChangedCount": { "description": "The number of cells that were trimmed of whitespace.", "type": "integer", "format": "int32" } } }, "DeleteDuplicatesResponse": { "id": "DeleteDuplicatesResponse", "description": "The result of removing duplicates in a range.", "type": "object", "properties": { "duplicatesRemovedCount": { "description": "The number of duplicate rows removed.", "type": "integer", "format": "int32" } } }, "AddSlicerResponse": { "id": "AddSlicerResponse", "description": "The result of adding a slicer to a spreadsheet.", "type": "object", "properties": { "slicer": { "description": "The newly added slicer.", "$ref": "Slicer" } } }, "AddDataSourceResponse": { "id": "AddDataSourceResponse", "description": "The result of adding a data source.", "type": "object", "properties": { "dataSource": { "description": "The data source that was created.", "$ref": "DataSource" }, "dataExecutionStatus": { "description": "The data execution status.", "$ref": "DataExecutionStatus" } } }, "UpdateDataSourceResponse": { "id": "UpdateDataSourceResponse", "description": "The response from updating data source.", "type": "object", "properties": { "dataSource": { "description": "The updated data source.", "$ref": "DataSource" }, "dataExecutionStatus": { "description": "The data execution status.", "$ref": "DataExecutionStatus" } } }, "RefreshDataSourceResponse": { "id": "RefreshDataSourceResponse", "description": "The response from refreshing one or multiple data source objects.", "type": "object", "properties": { "statuses": { "description": "All the refresh status for the data source object references specified in the request. If is_all is specified, the field contains only those in failure status.", "type": "array", "items": { "$ref": "RefreshDataSourceObjectExecutionStatus" } } } }, "RefreshDataSourceObjectExecutionStatus": { "id": "RefreshDataSourceObjectExecutionStatus", "description": "The execution status of refreshing one data source object.", "type": "object", "properties": { "reference": { "description": "Reference to a data source object being refreshed.", "$ref": "DataSourceObjectReference" }, "dataExecutionStatus": { "description": "The data execution status.", "$ref": "DataExecutionStatus" } } }, "CopySheetToAnotherSpreadsheetRequest": { "id": "CopySheetToAnotherSpreadsheetRequest", "description": "The request to copy a sheet across spreadsheets.", "type": "object", "properties": { "destinationSpreadsheetId": { "description": "The ID of the spreadsheet to copy the sheet to.", "type": "string" } } } }, "ownerName": "Google", "resources": { "spreadsheets": { "methods": { "create": { "id": "sheets.spreadsheets.create", "path": "v4/spreadsheets", "flatPath": "v4/spreadsheets", "httpMethod": "POST", "parameters": {}, "parameterOrder": [], "request": { "$ref": "Spreadsheet" }, "response": { "$ref": "Spreadsheet" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Creates a spreadsheet, returning the newly created spreadsheet." }, "get": { "id": "sheets.spreadsheets.get", "path": "v4/spreadsheets/{spreadsheetId}", "flatPath": "v4/spreadsheets/{spreadsheetId}", "httpMethod": "GET", "parameters": { "spreadsheetId": { "description": "The spreadsheet to request.", "location": "path", "required": true, "type": "string" }, "ranges": { "description": "The ranges to retrieve from the spreadsheet.", "location": "query", "repeated": true, "type": "string" }, "includeGridData": { "description": "True if grid data should be returned. This parameter is ignored if a field mask was set in the request.", "location": "query", "type": "boolean" } }, "parameterOrder": [ "spreadsheetId" ], "response": { "$ref": "Spreadsheet" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly" ], "description": "Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. By default, data within grids is not returned. You can include grid data in one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData URL parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want. To retrieve only subsets of spreadsheet data, use the ranges URL parameter. Ranges are specified using [A1 notation](/sheets/api/guides/concepts#cell). You can define a single cell (for example, `A1`) or multiple cells (for example, `A1:D5`). You can also get cells from other sheets within the same spreadsheet (for example, `Sheet2!A1:C4`) or retrieve multiple ranges at once (for example, `?ranges=A1:D5&ranges=Sheet2!A1:C4`). Limiting the range returns only the portions of the spreadsheet that intersect the requested ranges." }, "getByDataFilter": { "id": "sheets.spreadsheets.getByDataFilter", "path": "v4/spreadsheets/{spreadsheetId}:getByDataFilter", "flatPath": "v4/spreadsheets/{spreadsheetId}:getByDataFilter", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The spreadsheet to request.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId" ], "request": { "$ref": "GetSpreadsheetByDataFilterRequest" }, "response": { "$ref": "Spreadsheet" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Returns the spreadsheet at the given ID. The caller must specify the spreadsheet ID. This method differs from GetSpreadsheet in that it allows selecting which subsets of spreadsheet data to return by specifying a dataFilters parameter. Multiple DataFilters can be specified. Specifying one or more data filters returns the portions of the spreadsheet that intersect ranges matched by any of the filters. By default, data within grids is not returned. You can include grid data one of 2 ways: * Specify a [field mask](https://developers.google.com/sheets/api/guides/field-masks) listing your desired fields using the `fields` URL parameter in HTTP * Set the includeGridData parameter to true. If a field mask is set, the `includeGridData` parameter is ignored For large spreadsheets, as a best practice, retrieve only the specific spreadsheet fields that you want." }, "batchUpdate": { "id": "sheets.spreadsheets.batchUpdate", "path": "v4/spreadsheets/{spreadsheetId}:batchUpdate", "flatPath": "v4/spreadsheets/{spreadsheetId}:batchUpdate", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The spreadsheet to apply the updates to.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId" ], "request": { "$ref": "BatchUpdateSpreadsheetRequest" }, "response": { "$ref": "BatchUpdateSpreadsheetResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Applies one or more updates to the spreadsheet. Each request is validated before being applied. If any request is not valid then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are applied. The replies will mirror the requests. For example, if you applied 4 updates and the 3rd one had a reply, then the response will have 2 empty replies, the actual reply, and another empty reply, in that order. Due to the collaborative nature of spreadsheets, it is not guaranteed that the spreadsheet will reflect exactly your changes after this completes, however it is guaranteed that the updates in the request will be applied together atomically. Your changes may be altered with respect to collaborator changes. If there are no collaborators, the spreadsheet should reflect your changes." } }, "resources": { "values": { "methods": { "get": { "id": "sheets.spreadsheets.values.get", "path": "v4/spreadsheets/{spreadsheetId}/values/{range}", "flatPath": "v4/spreadsheets/{spreadsheetId}/values/{range}", "httpMethod": "GET", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to retrieve data from.", "location": "path", "required": true, "type": "string" }, "range": { "description": "The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the range to retrieve values from.", "location": "path", "required": true, "type": "string" }, "majorDimension": { "description": "The major dimension that results should use. For example, if the spreadsheet data in Sheet1 is: `A1=1,B1=2,A2=3,B2=4`, then requesting `range=Sheet1!A1:B2?majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas requesting `range=Sheet1!A1:B2?majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.", "location": "query", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] }, "valueRenderOption": { "description": "How values should be represented in the output. The default render option is FORMATTED_VALUE.", "location": "query", "type": "string", "enumDescriptions": [ "Values will be calculated & formatted in the response according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return `\"$1.23\"`.", "Values will be calculated, but not formatted in the reply. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return the number `1.23`.", "Values will not be calculated. The reply will include the formulas. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then A2 would return `\"=A1\"`. Sheets treats date and time values as decimal values. This lets you perform arithmetic on them in formulas. For more information on interpreting date and time values, see [About date & time values](https://developers.google.com/sheets/api/guides/formats#about_date_time_values)." ], "enum": [ "FORMATTED_VALUE", "UNFORMATTED_VALUE", "FORMULA" ] }, "dateTimeRenderOption": { "description": "How dates, times, and durations should be represented in the output. This is ignored if value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.", "location": "query", "type": "string", "enumDescriptions": [ "Instructs date, time, datetime, and duration fields to be output as doubles in \"serial number\" format, as popularized by Lotus 1-2-3. The whole number portion of the value (left of the decimal) counts the days since December 30th 1899. The fractional portion (right of the decimal) counts the time as a fraction of the day. For example, January 1st 1900 at noon would be 2.5, 2 because it's 2 days after December 30th 1899, and .5 because noon is half a day. February 1st 1900 at 3pm would be 33.625. This correctly treats the year 1900 as not a leap year.", "Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale)." ], "enum": [ "SERIAL_NUMBER", "FORMATTED_STRING" ] } }, "parameterOrder": [ "spreadsheetId", "range" ], "response": { "$ref": "ValueRange" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly" ], "description": "Returns a range of values from a spreadsheet. The caller must specify the spreadsheet ID and a range." }, "update": { "id": "sheets.spreadsheets.values.update", "path": "v4/spreadsheets/{spreadsheetId}/values/{range}", "flatPath": "v4/spreadsheets/{spreadsheetId}/values/{range}", "httpMethod": "PUT", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to update.", "location": "path", "required": true, "type": "string" }, "range": { "description": "The [A1 notation](/sheets/api/guides/concepts#cell) of the values to update.", "location": "path", "required": true, "type": "string" }, "valueInputOption": { "description": "How the input data should be interpreted.", "location": "query", "type": "string", "enumDescriptions": [ "Default input value. This value must not be used.", "The values the user has entered will not be parsed and will be stored as-is.", "The values will be parsed as if the user typed them into the UI. Numbers will stay as numbers, but strings may be converted to numbers, dates, etc. following the same rules that are applied when entering text into a cell via the Google Sheets UI." ], "enum": [ "INPUT_VALUE_OPTION_UNSPECIFIED", "RAW", "USER_ENTERED" ] }, "includeValuesInResponse": { "description": "Determines if the update response should include the values of the cells that were updated. By default, responses do not include the updated values. If the range to write was larger than the range actually written, the response includes all values in the requested range (excluding trailing empty rows and columns).", "location": "query", "type": "boolean" }, "responseValueRenderOption": { "description": "Determines how values in the response should be rendered. The default render option is FORMATTED_VALUE.", "location": "query", "type": "string", "enumDescriptions": [ "Values will be calculated & formatted in the response according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return `\"$1.23\"`.", "Values will be calculated, but not formatted in the reply. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return the number `1.23`.", "Values will not be calculated. The reply will include the formulas. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then A2 would return `\"=A1\"`. Sheets treats date and time values as decimal values. This lets you perform arithmetic on them in formulas. For more information on interpreting date and time values, see [About date & time values](https://developers.google.com/sheets/api/guides/formats#about_date_time_values)." ], "enum": [ "FORMATTED_VALUE", "UNFORMATTED_VALUE", "FORMULA" ] }, "responseDateTimeRenderOption": { "description": "Determines how dates, times, and durations in the response should be rendered. This is ignored if response_value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.", "location": "query", "type": "string", "enumDescriptions": [ "Instructs date, time, datetime, and duration fields to be output as doubles in \"serial number\" format, as popularized by Lotus 1-2-3. The whole number portion of the value (left of the decimal) counts the days since December 30th 1899. The fractional portion (right of the decimal) counts the time as a fraction of the day. For example, January 1st 1900 at noon would be 2.5, 2 because it's 2 days after December 30th 1899, and .5 because noon is half a day. February 1st 1900 at 3pm would be 33.625. This correctly treats the year 1900 as not a leap year.", "Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale)." ], "enum": [ "SERIAL_NUMBER", "FORMATTED_STRING" ] } }, "parameterOrder": [ "spreadsheetId", "range" ], "request": { "$ref": "ValueRange" }, "response": { "$ref": "UpdateValuesResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Sets values in a range of a spreadsheet. The caller must specify the spreadsheet ID, range, and a valueInputOption." }, "append": { "id": "sheets.spreadsheets.values.append", "path": "v4/spreadsheets/{spreadsheetId}/values/{range}:append", "flatPath": "v4/spreadsheets/{spreadsheetId}/values/{range}:append", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to update.", "location": "path", "required": true, "type": "string" }, "range": { "description": "The [A1 notation](/sheets/api/guides/concepts#cell) of a range to search for a logical table of data. Values are appended after the last row of the table.", "location": "path", "required": true, "type": "string" }, "valueInputOption": { "description": "How the input data should be interpreted.", "location": "query", "type": "string", "enumDescriptions": [ "Default input value. This value must not be used.", "The values the user has entered will not be parsed and will be stored as-is.", "The values will be parsed as if the user typed them into the UI. Numbers will stay as numbers, but strings may be converted to numbers, dates, etc. following the same rules that are applied when entering text into a cell via the Google Sheets UI." ], "enum": [ "INPUT_VALUE_OPTION_UNSPECIFIED", "RAW", "USER_ENTERED" ] }, "insertDataOption": { "description": "How the input data should be inserted.", "location": "query", "type": "string", "enumDescriptions": [ "The new data overwrites existing data in the areas it is written. (Note: adding data to the end of the sheet will still insert new rows or columns so the data can be written.)", "Rows are inserted for the new data." ], "enum": [ "OVERWRITE", "INSERT_ROWS" ] }, "includeValuesInResponse": { "description": "Determines if the update response should include the values of the cells that were appended. By default, responses do not include the updated values.", "location": "query", "type": "boolean" }, "responseValueRenderOption": { "description": "Determines how values in the response should be rendered. The default render option is FORMATTED_VALUE.", "location": "query", "type": "string", "enumDescriptions": [ "Values will be calculated & formatted in the response according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return `\"$1.23\"`.", "Values will be calculated, but not formatted in the reply. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return the number `1.23`.", "Values will not be calculated. The reply will include the formulas. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then A2 would return `\"=A1\"`. Sheets treats date and time values as decimal values. This lets you perform arithmetic on them in formulas. For more information on interpreting date and time values, see [About date & time values](https://developers.google.com/sheets/api/guides/formats#about_date_time_values)." ], "enum": [ "FORMATTED_VALUE", "UNFORMATTED_VALUE", "FORMULA" ] }, "responseDateTimeRenderOption": { "description": "Determines how dates, times, and durations in the response should be rendered. This is ignored if response_value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.", "location": "query", "type": "string", "enumDescriptions": [ "Instructs date, time, datetime, and duration fields to be output as doubles in \"serial number\" format, as popularized by Lotus 1-2-3. The whole number portion of the value (left of the decimal) counts the days since December 30th 1899. The fractional portion (right of the decimal) counts the time as a fraction of the day. For example, January 1st 1900 at noon would be 2.5, 2 because it's 2 days after December 30th 1899, and .5 because noon is half a day. February 1st 1900 at 3pm would be 33.625. This correctly treats the year 1900 as not a leap year.", "Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale)." ], "enum": [ "SERIAL_NUMBER", "FORMATTED_STRING" ] } }, "parameterOrder": [ "spreadsheetId", "range" ], "request": { "$ref": "ValueRange" }, "response": { "$ref": "AppendValuesResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Appends values to a spreadsheet. The input range is used to search for existing data and find a \"table\" within that range. Values will be appended to the next row of the table, starting with the first column of the table. See the [guide](/sheets/api/guides/values#appending_values) and [sample code](/sheets/api/samples/writing#append_values) for specific details of how tables are detected and data is appended. The caller must specify the spreadsheet ID, range, and a valueInputOption. The `valueInputOption` only controls how the input data will be added to the sheet (column-wise or row-wise), it does not influence what cell the data starts being written to." }, "clear": { "id": "sheets.spreadsheets.values.clear", "path": "v4/spreadsheets/{spreadsheetId}/values/{range}:clear", "flatPath": "v4/spreadsheets/{spreadsheetId}/values/{range}:clear", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to update.", "location": "path", "required": true, "type": "string" }, "range": { "description": "The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the values to clear.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId", "range" ], "request": { "$ref": "ClearValuesRequest" }, "response": { "$ref": "ClearValuesResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Clears values from a spreadsheet. The caller must specify the spreadsheet ID and range. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept." }, "batchGet": { "id": "sheets.spreadsheets.values.batchGet", "path": "v4/spreadsheets/{spreadsheetId}/values:batchGet", "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchGet", "httpMethod": "GET", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to retrieve data from.", "location": "path", "required": true, "type": "string" }, "ranges": { "description": "The [A1 notation or R1C1 notation](/sheets/api/guides/concepts#cell) of the range to retrieve values from.", "location": "query", "repeated": true, "type": "string" }, "majorDimension": { "description": "The major dimension that results should use. For example, if the spreadsheet data is: `A1=1,B1=2,A2=3,B2=4`, then requesting `ranges=[\"A1:B2\"],majorDimension=ROWS` returns `[[1,2],[3,4]]`, whereas requesting `ranges=[\"A1:B2\"],majorDimension=COLUMNS` returns `[[1,3],[2,4]]`.", "location": "query", "type": "string", "enumDescriptions": [ "The default value, do not use.", "Operates on the rows of a sheet.", "Operates on the columns of a sheet." ], "enum": [ "DIMENSION_UNSPECIFIED", "ROWS", "COLUMNS" ] }, "valueRenderOption": { "description": "How values should be represented in the output. The default render option is ValueRenderOption.FORMATTED_VALUE.", "location": "query", "type": "string", "enumDescriptions": [ "Values will be calculated & formatted in the response according to the cell's formatting. Formatting is based on the spreadsheet's locale, not the requesting user's locale. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return `\"$1.23\"`.", "Values will be calculated, but not formatted in the reply. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then `A2` would return the number `1.23`.", "Values will not be calculated. The reply will include the formulas. For example, if `A1` is `1.23` and `A2` is `=A1` and formatted as currency, then A2 would return `\"=A1\"`. Sheets treats date and time values as decimal values. This lets you perform arithmetic on them in formulas. For more information on interpreting date and time values, see [About date & time values](https://developers.google.com/sheets/api/guides/formats#about_date_time_values)." ], "enum": [ "FORMATTED_VALUE", "UNFORMATTED_VALUE", "FORMULA" ] }, "dateTimeRenderOption": { "description": "How dates, times, and durations should be represented in the output. This is ignored if value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.", "location": "query", "type": "string", "enumDescriptions": [ "Instructs date, time, datetime, and duration fields to be output as doubles in \"serial number\" format, as popularized by Lotus 1-2-3. The whole number portion of the value (left of the decimal) counts the days since December 30th 1899. The fractional portion (right of the decimal) counts the time as a fraction of the day. For example, January 1st 1900 at noon would be 2.5, 2 because it's 2 days after December 30th 1899, and .5 because noon is half a day. February 1st 1900 at 3pm would be 33.625. This correctly treats the year 1900 as not a leap year.", "Instructs date, time, datetime, and duration fields to be output as strings in their given number format (which depends on the spreadsheet locale)." ], "enum": [ "SERIAL_NUMBER", "FORMATTED_STRING" ] } }, "parameterOrder": [ "spreadsheetId" ], "response": { "$ref": "BatchGetValuesResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/drive.readonly", "https://www.googleapis.com/auth/spreadsheets", "https://www.googleapis.com/auth/spreadsheets.readonly" ], "description": "Returns one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges." }, "batchUpdate": { "id": "sheets.spreadsheets.values.batchUpdate", "path": "v4/spreadsheets/{spreadsheetId}/values:batchUpdate", "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchUpdate", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to update.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId" ], "request": { "$ref": "BatchUpdateValuesRequest" }, "response": { "$ref": "BatchUpdateValuesResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID, a valueInputOption, and one or more ValueRanges." }, "batchClear": { "id": "sheets.spreadsheets.values.batchClear", "path": "v4/spreadsheets/{spreadsheetId}/values:batchClear", "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchClear", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to update.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId" ], "request": { "$ref": "BatchClearValuesRequest" }, "response": { "$ref": "BatchClearValuesResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more ranges. Only values are cleared -- all other properties of the cell (such as formatting and data validation) are kept." }, "batchGetByDataFilter": { "id": "sheets.spreadsheets.values.batchGetByDataFilter", "path": "v4/spreadsheets/{spreadsheetId}/values:batchGetByDataFilter", "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchGetByDataFilter", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to retrieve data from.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId" ], "request": { "$ref": "BatchGetValuesByDataFilterRequest" }, "response": { "$ref": "BatchGetValuesByDataFilterResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Returns one or more ranges of values that match the specified data filters. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges that match any of the data filters in the request will be returned." }, "batchUpdateByDataFilter": { "id": "sheets.spreadsheets.values.batchUpdateByDataFilter", "path": "v4/spreadsheets/{spreadsheetId}/values:batchUpdateByDataFilter", "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchUpdateByDataFilter", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to update.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId" ], "request": { "$ref": "BatchUpdateValuesByDataFilterRequest" }, "response": { "$ref": "BatchUpdateValuesByDataFilterResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Sets values in one or more ranges of a spreadsheet. The caller must specify the spreadsheet ID, a valueInputOption, and one or more DataFilterValueRanges." }, "batchClearByDataFilter": { "id": "sheets.spreadsheets.values.batchClearByDataFilter", "path": "v4/spreadsheets/{spreadsheetId}/values:batchClearByDataFilter", "flatPath": "v4/spreadsheets/{spreadsheetId}/values:batchClearByDataFilter", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to update.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId" ], "request": { "$ref": "BatchClearValuesByDataFilterRequest" }, "response": { "$ref": "BatchClearValuesByDataFilterResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Clears one or more ranges of values from a spreadsheet. The caller must specify the spreadsheet ID and one or more DataFilters. Ranges matching any of the specified data filters will be cleared. Only values are cleared -- all other properties of the cell (such as formatting, data validation, etc..) are kept." } } }, "developerMetadata": { "methods": { "get": { "id": "sheets.spreadsheets.developerMetadata.get", "path": "v4/spreadsheets/{spreadsheetId}/developerMetadata/{metadataId}", "flatPath": "v4/spreadsheets/{spreadsheetId}/developerMetadata/{metadataId}", "httpMethod": "GET", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to retrieve metadata from.", "location": "path", "required": true, "type": "string" }, "metadataId": { "description": "The ID of the developer metadata to retrieve.", "location": "path", "required": true, "type": "integer", "format": "int32" } }, "parameterOrder": [ "spreadsheetId", "metadataId" ], "response": { "$ref": "DeveloperMetadata" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Returns the developer metadata with the specified ID. The caller must specify the spreadsheet ID and the developer metadata's unique metadataId." }, "search": { "id": "sheets.spreadsheets.developerMetadata.search", "path": "v4/spreadsheets/{spreadsheetId}/developerMetadata:search", "flatPath": "v4/spreadsheets/{spreadsheetId}/developerMetadata:search", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet to retrieve metadata from.", "location": "path", "required": true, "type": "string" } }, "parameterOrder": [ "spreadsheetId" ], "request": { "$ref": "SearchDeveloperMetadataRequest" }, "response": { "$ref": "SearchDeveloperMetadataResponse" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Returns all developer metadata matching the specified DataFilter. If the provided DataFilter represents a DeveloperMetadataLookup object, this will return all DeveloperMetadata entries selected by it. If the DataFilter represents a location in a spreadsheet, this will return all developer metadata associated with locations intersecting that region." } } }, "sheets": { "methods": { "copyTo": { "id": "sheets.spreadsheets.sheets.copyTo", "path": "v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo", "flatPath": "v4/spreadsheets/{spreadsheetId}/sheets/{sheetId}:copyTo", "httpMethod": "POST", "parameters": { "spreadsheetId": { "description": "The ID of the spreadsheet containing the sheet to copy.", "location": "path", "required": true, "type": "string" }, "sheetId": { "description": "The ID of the sheet to copy.", "location": "path", "required": true, "type": "integer", "format": "int32" } }, "parameterOrder": [ "spreadsheetId", "sheetId" ], "request": { "$ref": "CopySheetToAnotherSpreadsheetRequest" }, "response": { "$ref": "SheetProperties" }, "scopes": [ "https://www.googleapis.com/auth/drive", "https://www.googleapis.com/auth/drive.file", "https://www.googleapis.com/auth/spreadsheets" ], "description": "Copies a single sheet from a spreadsheet to another spreadsheet. Returns the properties of the newly created sheet." } } } } } }, "parameters": { "access_token": { "type": "string", "description": "OAuth access token.", "location": "query" }, "alt": { "type": "string", "description": "Data format for response.", "default": "json", "enum": [ "json", "media", "proto" ], "enumDescriptions": [ "Responses with Content-Type of application/json", "Media download with context-dependent Content-Type", "Responses with Content-Type of application/x-protobuf" ], "location": "query" }, "callback": { "type": "string", "description": "JSONP", "location": "query" }, "fields": { "type": "string", "description": "Selector specifying which fields to include in a partial response.", "location": "query" }, "key": { "type": "string", "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.", "location": "query" }, "oauth_token": { "type": "string", "description": "OAuth 2.0 token for the current user.", "location": "query" }, "prettyPrint": { "type": "boolean", "description": "Returns response with indentations and line breaks.", "default": "true", "location": "query" }, "quotaUser": { "type": "string", "description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.", "location": "query" }, "upload_protocol": { "type": "string", "description": "Upload protocol for media (e.g. \"raw\", \"multipart\").", "location": "query" }, "uploadType": { "type": "string", "description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").", "location": "query" }, "$.xgafv": { "type": "string", "description": "V1 error format.", "enum": [ "1", "2" ], "enumDescriptions": [ "v1 error format", "v2 error format" ], "location": "query" } }, "protocol": "rest", "auth": { "oauth2": { "scopes": { "https://www.googleapis.com/auth/drive": { "description": "See, edit, create, and delete all of your Google Drive files" }, "https://www.googleapis.com/auth/drive.file": { "description": "See, edit, create, and delete only the specific Google Drive files you use with this app" }, "https://www.googleapis.com/auth/drive.readonly": { "description": "See and download all your Google Drive files" }, "https://www.googleapis.com/auth/spreadsheets": { "description": "See, edit, create, and delete all your Google Sheets spreadsheets" }, "https://www.googleapis.com/auth/spreadsheets.readonly": { "description": "See all your Google Sheets spreadsheets" } } } }, "ownerDomain": "google.com", "revision": "20240402", "basePath": "", "kind": "discovery#restDescription", "baseUrl": "https://sheets.googleapis.com/", "name": "sheets", "fullyEncodeReservedExpansion": true, "mtlsRootUrl": "https://sheets.mtls.googleapis.com/", "documentationLink": "https://developers.google.com/sheets/", "icons": { "x16": "http://www.google.com/images/icons/product/search-16.gif", "x32": "http://www.google.com/images/icons/product/search-32.gif" }, "id": "sheets:v4", "servicePath": "", "canonicalName": "Sheets", "rootUrl": "https://sheets.googleapis.com/", "version_module": true, "batchPath": "batch", "title": "Google Sheets API", "description": "Reads and writes Google Sheets.", "discoveryVersion": "v1" }