Google Docs · Schema

NamedRanges

A collection of all the NamedRanges in the document that share a given name.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
name string The name that all the named ranges share.
namedRanges array The named ranges that share the same name.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-named-ranges-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "NamedRanges",
  "type": "object",
  "description": "A collection of all the NamedRanges in the document that share a given name.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name that all the named ranges share."
    },
    "namedRanges": {
      "type": "array",
      "description": "The named ranges that share the same name."
    }
  }
}