Google Sheets · Schema

NamedRange

A named range.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
namedRangeId string The ID of the named range.
name string The name of the named range.
View JSON Schema on GitHub

JSON Schema

google-sheets-named-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NamedRange",
  "type": "object",
  "description": "A named range.",
  "properties": {
    "namedRangeId": {
      "type": "string",
      "description": "The ID of the named range."
    },
    "name": {
      "type": "string",
      "description": "The name of the named range."
    }
  }
}