PostHog · Schema

IntegrationFilter

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
integrationSourceIds array Selected integration source IDs to filter by (e.g., table IDs or source map IDs)
View JSON Schema on GitHub

JSON Schema

posthog-integrationfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationFilter",
  "title": "IntegrationFilter",
  "additionalProperties": false,
  "properties": {
    "integrationSourceIds": {
      "default": null,
      "description": "Selected integration source IDs to filter by (e.g., table IDs or source map IDs)",
      "title": "Integrationsourceids",
      "items": {
        "type": "string"
      },
      "type": "array",
      "nullable": true
    }
  },
  "type": "object"
}