PostHog · Schema

ExternalDataSourceConnectionOption

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
prefix string
engine object Backend engine detected for the direct connection. * `duckdb` - duckdb * `postgres` - postgres
View JSON Schema on GitHub

JSON Schema

posthog-externaldatasourceconnectionoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExternalDataSourceConnectionOption",
  "title": "ExternalDataSourceConnectionOption",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "prefix": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "engine": {
      "readOnly": true,
      "nullable": true,
      "description": "Backend engine detected for the direct connection.\n\n* `duckdb` - duckdb\n* `postgres` - postgres",
      "oneOf": [
        {
          "$ref": "#/components/schemas/EngineEnum"
        },
        {
          "$ref": "#/components/schemas/NullEnum"
        }
      ]
    }
  },
  "required": [
    "engine",
    "id",
    "prefix"
  ]
}