Looker · Schema

ErrorResponse

Error response from the Looker API

AnalyticsBI PlatformBusiness IntelligenceData AnalyticsData Visualization

Properties

Name Type Description
message string Human-readable error message
documentation_url string URL to relevant API documentation
View JSON Schema on GitHub

JSON Schema

looker-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Error response from the Looker API",
  "properties": {
    "message": {
      "type": "string",
      "description": "Human-readable error message",
      "example": "example_value"
    },
    "documentation_url": {
      "type": "string",
      "description": "URL to relevant API documentation",
      "example": "https://www.example.com"
    }
  }
}