PostHog · Schema

AutoApproveResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
run object
baseline_content string
View JSON Schema on GitHub

JSON Schema

posthog-autoapproveresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AutoApproveResult",
  "title": "AutoApproveResult",
  "type": "object",
  "properties": {
    "run": {
      "$ref": "#/components/schemas/Run"
    },
    "baseline_content": {
      "type": "string"
    }
  },
  "required": [
    "baseline_content",
    "run"
  ]
}