PostHog · Schema

UserGitHubIntegrationListResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array GitHub personal integrations for the authenticated user.
View JSON Schema on GitHub

JSON Schema

posthog-usergithubintegrationlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserGitHubIntegrationListResponse",
  "title": "UserGitHubIntegrationListResponse",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserGitHubIntegrationItem"
      },
      "description": "GitHub personal integrations for the authenticated user."
    }
  },
  "required": [
    "results"
  ]
}