PostHog · Schema

TestHogResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array
message string Optional message, e.g. when no recent events were found.
View JSON Schema on GitHub

JSON Schema

posthog-testhogresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TestHogResponse",
  "title": "TestHogResponse",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TestHogResultItem"
      }
    },
    "message": {
      "type": "string",
      "description": "Optional message, e.g. when no recent events were found."
    }
  },
  "required": [
    "results"
  ]
}