Google Sheets · Schema

DataExecutionStatus

The data execution status.

Google WorkspaceProductivitySpreadsheets

Properties

Name Type Description
state string The state of the data execution.
errorCode string The error code.
errorMessage string The error message, which may be empty.
lastRefreshTime string Gets the time the data last successfully refreshed.
View JSON Schema on GitHub

JSON Schema

google-sheets-data-execution-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DataExecutionStatus",
  "type": "object",
  "description": "The data execution status.",
  "properties": {
    "state": {
      "type": "string",
      "description": "The state of the data execution."
    },
    "errorCode": {
      "type": "string",
      "description": "The error code."
    },
    "errorMessage": {
      "type": "string",
      "description": "The error message, which may be empty."
    },
    "lastRefreshTime": {
      "type": "string",
      "description": "Gets the time the data last successfully refreshed."
    }
  }
}