PostHog · Schema

CreateRepoInput

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
repo_full_name string
repo_external_id integer
View JSON Schema on GitHub

JSON Schema

posthog-createrepoinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateRepoInput",
  "title": "CreateRepoInput",
  "type": "object",
  "properties": {
    "repo_full_name": {
      "type": "string"
    },
    "repo_external_id": {
      "type": "integer",
      "nullable": true
    }
  },
  "required": [
    "repo_full_name"
  ]
}