PostHog · Schema

PersonUpdatePropertyRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
key string The property key to set.
value object The property value. Can be a string, number, boolean, or object.
View JSON Schema on GitHub

JSON Schema

posthog-personupdatepropertyrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PersonUpdatePropertyRequest",
  "title": "PersonUpdatePropertyRequest",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "The property key to set."
    },
    "value": {
      "description": "The property value. Can be a string, number, boolean, or object."
    }
  },
  "required": [
    "key",
    "value"
  ]
}