Google Slides · Schema

SubstringMatchCriteria

A criteria that matches a specific string of text in a shape or table.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
text string The text to search for in the shape or table.
matchCase boolean Indicates whether the search should respect case. True by default.
View JSON Schema on GitHub

JSON Schema

google-slides-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 a shape or table.\n",
  "properties": {
    "text": {
      "type": "string",
      "description": "The text to search for in the shape or table."
    },
    "matchCase": {
      "type": "boolean",
      "description": "Indicates whether the search should respect case. True by default.\n"
    }
  }
}