PostHog · Schema

_LogAttributeValue

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string Attribute value (used as the identifier).
name string Display name — currently identical to `id`.
View JSON Schema on GitHub

JSON Schema

posthog-logattributevalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogAttributeValue",
  "title": "_LogAttributeValue",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Attribute value (used as the identifier)."
    },
    "name": {
      "type": "string",
      "description": "Display name \u2014 currently identical to `id`."
    }
  },
  "required": [
    "id",
    "name"
  ]
}