PostHog · Schema

IntegrationConfig

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-integrationconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntegrationConfig",
  "title": "IntegrationConfig",
  "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
    }
  },
  "required": [
    "created_at",
    "created_by",
    "display_name",
    "errors",
    "id",
    "kind"
  ]
}