PostHog · Schema

PersonDeletePropertyRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
$unset string The property key to remove from this person.
View JSON Schema on GitHub

JSON Schema

posthog-persondeletepropertyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PersonDeletePropertyRequest",
  "title": "PersonDeletePropertyRequest",
  "type": "object",
  "properties": {
    "$unset": {
      "type": "string",
      "description": "The property key to remove from this person."
    }
  },
  "required": [
    "$unset"
  ]
}