PostHog · Schema

Outcome

Initial goal and session outcome coming from LLM.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
description string
success boolean
View JSON Schema on GitHub

JSON Schema

posthog-outcome-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Outcome",
  "title": "Outcome",
  "type": "object",
  "description": "Initial goal and session outcome coming from LLM.",
  "properties": {
    "description": {
      "type": "string",
      "nullable": true,
      "maxLength": 10000,
      "minLength": 1
    },
    "success": {
      "type": "boolean",
      "nullable": true
    }
  }
}