PostHog · Schema

ExplainRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
uuid string UUID of the log entry to explain
timestamp string Timestamp of the log entry (used for efficient lookup)
force_refresh boolean Force regenerate explanation, bypassing cache
View JSON Schema on GitHub

JSON Schema

posthog-explainrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExplainRequest",
  "title": "ExplainRequest",
  "type": "object",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "UUID of the log entry to explain"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the log entry (used for efficient lookup)"
    },
    "force_refresh": {
      "type": "boolean",
      "default": false,
      "description": "Force regenerate explanation, bypassing cache"
    }
  },
  "required": [
    "timestamp",
    "uuid"
  ]
}