PostHog · Schema

UserGitHubLinkStartResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
install_url string URL to open in the browser to install or authorize the GitHub App for this user.
connect_flow string OAuth or install flow used for this GitHub connection.
View JSON Schema on GitHub

JSON Schema

posthog-usergithublinkstartresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserGitHubLinkStartResponse",
  "title": "UserGitHubLinkStartResponse",
  "type": "object",
  "properties": {
    "install_url": {
      "type": "string",
      "description": "URL to open in the browser to install or authorize the GitHub App for this user."
    },
    "connect_flow": {
      "type": "string",
      "description": "OAuth or install flow used for this GitHub connection."
    }
  },
  "required": [
    "connect_flow",
    "install_url"
  ]
}