PostHog · Schema

_LogsValuesResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array Distinct values observed for the requested attribute.
refreshing boolean Always false — reserved for future cached-value refresh signalling.
View JSON Schema on GitHub

JSON Schema

posthog-logsvaluesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogsValuesResponse",
  "title": "_LogsValuesResponse",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/_LogAttributeValue"
      },
      "description": "Distinct values observed for the requested attribute."
    },
    "refreshing": {
      "type": "boolean",
      "description": "Always false \u2014 reserved for future cached-value refresh signalling."
    }
  },
  "required": [
    "refreshing",
    "results"
  ]
}