PostHog · Schema

Group

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
group_type_index integer
group_key string
group_properties object
created_at string
View JSON Schema on GitHub

JSON Schema

posthog-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Group",
  "title": "Group",
  "type": "object",
  "properties": {
    "group_type_index": {
      "type": "integer",
      "maximum": 2147483647,
      "minimum": -2147483648
    },
    "group_key": {
      "type": "string",
      "maxLength": 400
    },
    "group_properties": {},
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  },
  "required": [
    "created_at",
    "group_key",
    "group_type_index"
  ]
}