PostHog · Schema

ErrorTrackingExternalReference

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
external_url string
id string
integration object
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingexternalreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingExternalReference",
  "title": "ErrorTrackingExternalReference",
  "additionalProperties": false,
  "properties": {
    "external_url": {
      "title": "External Url",
      "type": "string"
    },
    "id": {
      "title": "Id",
      "type": "string"
    },
    "integration": {
      "$ref": "#/components/schemas/ErrorTrackingExternalReferenceIntegration"
    }
  },
  "required": [
    "external_url",
    "id",
    "integration"
  ],
  "type": "object"
}