PostHog · Schema

_WelcomeInviter

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
name string
email string
View JSON Schema on GitHub

JSON Schema

posthog-welcomeinviter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_WelcomeInviter",
  "title": "_WelcomeInviter",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    }
  },
  "required": [
    "email",
    "name"
  ]
}