PostHog · Schema

GitProviderFileLinkResolveResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
found boolean Whether a matching file URL was found.
url string Resolved URL for the matching file.
error string Error message when input parameters are invalid.
View JSON Schema on GitHub

JSON Schema

posthog-gitproviderfilelinkresolveresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GitProviderFileLinkResolveResponse",
  "title": "GitProviderFileLinkResolveResponse",
  "type": "object",
  "properties": {
    "found": {
      "type": "boolean",
      "description": "Whether a matching file URL was found."
    },
    "url": {
      "type": "string",
      "description": "Resolved URL for the matching file."
    },
    "error": {
      "type": "string",
      "description": "Error message when input parameters are invalid."
    }
  },
  "required": [
    "found"
  ]
}