PostHog · Schema

GitHubReposResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
repositories array
has_more boolean Whether more repositories are available beyond this page.
View JSON Schema on GitHub

JSON Schema

posthog-githubreposresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GitHubReposResponse",
  "title": "GitHubReposResponse",
  "type": "object",
  "properties": {
    "repositories": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GitHubRepo"
      }
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether more repositories are available beyond this page."
    }
  },
  "required": [
    "has_more",
    "repositories"
  ]
}