PostHog · Schema

LegalDocumentCreator

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

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

JSON Schema

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