Google Slides · Schema

Range

Specifies a contiguous range of an indexed collection.

CollaborationGoogle WorkspacePresentationsProductivitySlides

Properties

Name Type Description
startIndex integer The optional zero-based start index of the collection.
endIndex integer The optional zero-based end index of the collection.
type string The type of range.
View JSON Schema on GitHub

JSON Schema

google-slides-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Range",
  "type": "object",
  "description": "Specifies a contiguous range of an indexed collection.",
  "properties": {
    "startIndex": {
      "type": "integer",
      "description": "The optional zero-based start index of the collection."
    },
    "endIndex": {
      "type": "integer",
      "description": "The optional zero-based end index of the collection."
    },
    "type": {
      "type": "string",
      "description": "The type of range."
    }
  }
}