PostHog · Schema

ExternalQueryError

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
code object
detail string
View JSON Schema on GitHub

JSON Schema

posthog-externalqueryerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExternalQueryError",
  "title": "ExternalQueryError",
  "additionalProperties": false,
  "properties": {
    "code": {
      "$ref": "#/components/schemas/ExternalQueryErrorCode"
    },
    "detail": {
      "title": "Detail",
      "type": "string"
    }
  },
  "required": [
    "code",
    "detail"
  ],
  "type": "object"
}