Google Sheets · Schema

DeveloperMetadata

Developer metadata associated with a location or object in a spreadsheet.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
metadataId integer The spreadsheet-scoped unique ID that identifies the metadata.
metadataKey string The metadata key.
metadataValue string Data associated with the metadata's key.
visibility string The metadata visibility.
View JSON Schema on GitHub

JSON Schema

google-sheets-developer-metadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeveloperMetadata",
  "type": "object",
  "description": "Developer metadata associated with a location or object in a spreadsheet.",
  "properties": {
    "metadataId": {
      "type": "integer",
      "description": "The spreadsheet-scoped unique ID that identifies the metadata."
    },
    "metadataKey": {
      "type": "string",
      "description": "The metadata key."
    },
    "metadataValue": {
      "type": "string",
      "description": "Data associated with the metadata's key."
    },
    "visibility": {
      "type": "string",
      "description": "The metadata visibility."
    }
  }
}