PostHog · Schema

GitHubRepo

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id integer
name string
full_name string
View JSON Schema on GitHub

JSON Schema

posthog-githubrepo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GitHubRepo",
  "title": "GitHubRepo",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "name": {
      "type": "string"
    },
    "full_name": {
      "type": "string"
    }
  },
  "required": [
    "full_name",
    "id",
    "name"
  ]
}