PostHog · Schema

UserBasicType

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
distinct_id string
email string
first_name string
hedgehog_config object
id number
is_email_verified object
last_name string
role_at_organization string
uuid string
View JSON Schema on GitHub

JSON Schema

posthog-userbasictype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserBasicType",
  "title": "UserBasicType",
  "additionalProperties": false,
  "properties": {
    "distinct_id": {
      "title": "Distinct Id",
      "type": "string"
    },
    "email": {
      "title": "Email",
      "type": "string"
    },
    "first_name": {
      "title": "First Name",
      "type": "string"
    },
    "hedgehog_config": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/MinimalHedgehogConfig"
        }
      ],
      "nullable": true
    },
    "id": {
      "title": "Id",
      "type": "number"
    },
    "is_email_verified": {
      "default": null,
      "title": "Is Email Verified",
      "nullable": true
    },
    "last_name": {
      "default": null,
      "title": "Last Name",
      "type": "string",
      "nullable": true
    },
    "role_at_organization": {
      "default": null,
      "title": "Role At Organization",
      "type": "string",
      "nullable": true
    },
    "uuid": {
      "title": "Uuid",
      "type": "string"
    }
  },
  "required": [
    "distinct_id",
    "email",
    "first_name",
    "id",
    "uuid"
  ],
  "type": "object"
}