PostHog · Schema

UserGitHubAccount

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
type string GitHub account type for the installation (e.g. User or Organization).
name string GitHub login or organization name tied to the installation.
View JSON Schema on GitHub

JSON Schema

posthog-usergithubaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserGitHubAccount",
  "title": "UserGitHubAccount",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "nullable": true,
      "description": "GitHub account type for the installation (e.g. User or Organization)."
    },
    "name": {
      "type": "string",
      "nullable": true,
      "description": "GitHub login or organization name tied to the installation."
    }
  }
}