PostHog · Schema

LastActiveEnum

* `today` - today * `this_week` - this_week * `inactive` - inactive * `never` - never

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
View JSON Schema on GitHub

JSON Schema

posthog-lastactiveenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LastActiveEnum",
  "title": "LastActiveEnum",
  "enum": [
    "today",
    "this_week",
    "inactive",
    "never"
  ],
  "type": "string",
  "description": "* `today` - today\n* `this_week` - this_week\n* `inactive` - inactive\n* `never` - never"
}