PostHog · Schema

_LogsAttributesResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array Available attribute keys matching the filters.
count integer Total attribute keys matched (not paginated).
View JSON Schema on GitHub

JSON Schema

posthog-logsattributesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/_LogsAttributesResponse",
  "title": "_LogsAttributesResponse",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/_LogAttributeEntry"
      },
      "description": "Available attribute keys matching the filters."
    },
    "count": {
      "type": "integer",
      "description": "Total attribute keys matched (not paginated)."
    }
  },
  "required": [
    "count",
    "results"
  ]
}