PostHog · Schema

GenerateRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
title string
goal string
steps array
View JSON Schema on GitHub

JSON Schema

posthog-generaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GenerateRequest",
  "title": "GenerateRequest",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "default": ""
    },
    "goal": {
      "type": "string",
      "default": ""
    },
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": true
      }
    }
  }
}