Google Docs · Schema

NamedRange

A collection of Ranges that have the same named range ID.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
namedRangeId string The ID of the named range.
name string The name of the named range.
ranges array The ranges that belong to this named range.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-named-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NamedRange",
  "type": "object",
  "description": "A collection of Ranges that have the same named range ID.",
  "properties": {
    "namedRangeId": {
      "type": "string",
      "description": "The ID of the named range."
    },
    "name": {
      "type": "string",
      "description": "The name of the named range."
    },
    "ranges": {
      "type": "array",
      "description": "The ranges that belong to this named range."
    }
  }
}