Google Docs · Schema

SubstringMatchCriteria

A criteria that matches a specific string of text in the document.

CollaborationDocumentsGoogle WorkspaceProductivityWord Processing

Properties

Name Type Description
text string The text to search for in the document.
matchCase boolean Indicates whether the search should respect case.
View JSON Schema on GitHub

JSON Schema

google-docs-v1-substring-match-criteria-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SubstringMatchCriteria",
  "type": "object",
  "description": "A criteria that matches a specific string of text in the document.",
  "properties": {
    "text": {
      "type": "string",
      "description": "The text to search for in the document."
    },
    "matchCase": {
      "type": "boolean",
      "description": "Indicates whether the search should respect case."
    }
  }
}