PostHog · Schema

ErrorTrackingExternalReferenceResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
integration object
integration_id integer
config object
issue string
external_url string
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingexternalreferenceresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingExternalReferenceResult",
  "title": "ErrorTrackingExternalReferenceResult",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "integration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorTrackingExternalReferenceIntegrationResult"
        }
      ],
      "readOnly": true
    },
    "integration_id": {
      "type": "integer",
      "writeOnly": true
    },
    "config": {
      "writeOnly": true
    },
    "issue": {
      "type": "string",
      "format": "uuid",
      "writeOnly": true
    },
    "external_url": {
      "type": "string",
      "readOnly": true
    }
  },
  "required": [
    "config",
    "external_url",
    "id",
    "integration",
    "integration_id",
    "issue"
  ]
}