PostHog · Schema

_WelcomeSuggestedStep

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
label string
href string
reason string
docs_href string
product_key string
View JSON Schema on GitHub

JSON Schema

posthog-welcomesuggestedstep-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_WelcomeSuggestedStep",
  "title": "_WelcomeSuggestedStep",
  "type": "object",
  "properties": {
    "label": {
      "type": "string"
    },
    "href": {
      "type": "string"
    },
    "reason": {
      "type": "string"
    },
    "docs_href": {
      "type": "string"
    },
    "product_key": {
      "type": "string"
    }
  },
  "required": [
    "href",
    "label",
    "reason"
  ]
}