PostHog · Schema

PatchedIntegrationConfig

Standard Integration serializer.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id integer
kind object
config object
created_at string
created_by object
errors string
display_name string
View JSON Schema on GitHub

JSON Schema

posthog-patchedintegrationconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedIntegrationConfig",
  "title": "PatchedIntegrationConfig",
  "type": "object",
  "description": "Standard Integration serializer.",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "kind": {
      "$ref": "#/components/schemas/IntegrationKindEnum"
    },
    "config": {},
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "created_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserBasic"
        }
      ],
      "readOnly": true
    },
    "errors": {
      "type": "string",
      "readOnly": true
    },
    "display_name": {
      "type": "string",
      "readOnly": true
    }
  }
}