Google Sheets · Schema

ErrorValue

An error in a cell.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
type string The type of error.
message string A message with more information about the error.
View JSON Schema on GitHub

JSON Schema

google-sheets-error-value-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorValue",
  "type": "object",
  "description": "An error in a cell.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The type of error."
    },
    "message": {
      "type": "string",
      "description": "A message with more information about the error."
    }
  }
}