PostHog · Schema
StaticFilters
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| users | array | Users who have logged activity. |
| scopes | array | Available activity scopes. |
| activities | array | Available activity types. |
| clients | array | API clients that have generated activity (from x-posthog-client header). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StaticFilters",
"title": "StaticFilters",
"type": "object",
"properties": {
"users": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Users who have logged activity."
},
"scopes": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Available activity scopes."
},
"activities": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Available activity types."
},
"clients": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "API clients that have generated activity (from x-posthog-client header)."
}
},
"required": [
"activities",
"clients",
"scopes",
"users"
]
}