PostHog · Schema

BatchExportDestination

Serializer for an BatchExportDestination model.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type object A choice of supported BatchExportDestination types. * `S3` - S3 * `Snowflake` - Snowflake * `Postgres` - Postgres * `Redshift` - Redshift * `BigQuery` - Bigquery * `Databricks` - Databricks * `AzureBl
config object A JSON field to store all configuration parameters required to access a BatchExportDestination.
integration integer
integration_id integer
View JSON Schema on GitHub

JSON Schema

posthog-batchexportdestination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchExportDestination",
  "title": "BatchExportDestination",
  "type": "object",
  "description": "Serializer for an BatchExportDestination model.",
  "properties": {
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BatchExportDestinationTypeEnum"
        }
      ],
      "description": "A choice of supported BatchExportDestination types.\n\n* `S3` - S3\n* `Snowflake` - Snowflake\n* `Postgres` - Postgres\n* `Redshift` - Redshift\n* `BigQuery` - Bigquery\n* `Databricks` - Databricks\n* `AzureBlob` - Azure Blob\n* `Workflows` - Workflows\n* `HTTP` - Http\n* `NoOp` - Noop"
    },
    "config": {
      "description": "A JSON field to store all configuration parameters required to access a BatchExportDestination."
    },
    "integration": {
      "type": "integer",
      "nullable": true
    },
    "integration_id": {
      "type": "integer",
      "writeOnly": true,
      "nullable": true
    }
  },
  "required": [
    "type"
  ]
}