PostHog · Schema

ProxyRecordListResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
results array
max_proxy_records integer Maximum number of proxy records allowed for this organization's current plan.
View JSON Schema on GitHub

JSON Schema

posthog-proxyrecordlistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProxyRecordListResponse",
  "title": "ProxyRecordListResponse",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProxyRecord"
      }
    },
    "max_proxy_records": {
      "type": "integer",
      "description": "Maximum number of proxy records allowed for this organization's current plan."
    }
  },
  "required": [
    "max_proxy_records",
    "results"
  ]
}