PostHog · Schema

LLMTracePerson

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
created_at string
distinct_id string
properties object
uuid string
View JSON Schema on GitHub

JSON Schema

posthog-llmtraceperson-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMTracePerson",
  "title": "LLMTracePerson",
  "additionalProperties": false,
  "properties": {
    "created_at": {
      "title": "Created At",
      "type": "string"
    },
    "distinct_id": {
      "title": "Distinct Id",
      "type": "string"
    },
    "properties": {
      "type": "object",
      "additionalProperties": true,
      "title": "Properties"
    },
    "uuid": {
      "title": "Uuid",
      "type": "string"
    }
  },
  "required": [
    "created_at",
    "distinct_id",
    "properties",
    "uuid"
  ],
  "type": "object"
}