PostHog · Schema

EndpointColumn

A column in the endpoint's query result.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
name string Column name from the query SELECT clause.
type string Serialized column type: integer, float, string, datetime, date, boolean, array, json, or unknown.
View JSON Schema on GitHub

JSON Schema

posthog-endpointcolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EndpointColumn",
  "title": "EndpointColumn",
  "type": "object",
  "description": "A column in the endpoint's query result.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Column name from the query SELECT clause."
    },
    "type": {
      "type": "string",
      "description": "Serialized column type: integer, float, string, datetime, date, boolean, array, json, or unknown."
    }
  },
  "required": [
    "name",
    "type"
  ]
}