PostHog · Schema

TicketPerson

Minimal person serializer for embedding in ticket responses.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
distinct_ids array
properties object
created_at string
is_identified boolean
View JSON Schema on GitHub

JSON Schema

posthog-ticketperson-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TicketPerson",
  "title": "TicketPerson",
  "type": "object",
  "description": "Minimal person serializer for embedding in ticket responses.",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "readOnly": true
    },
    "distinct_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "readOnly": true
    },
    "properties": {
      "type": "object",
      "additionalProperties": true,
      "readOnly": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "is_identified": {
      "type": "boolean",
      "readOnly": true
    }
  },
  "required": [
    "created_at",
    "distinct_ids",
    "id",
    "is_identified",
    "name",
    "properties"
  ]
}