PostHog · Schema
HogFunctionFilters
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| source | object | |
| actions | array | |
| events | array | |
| data_warehouse | array | |
| properties | array | |
| bytecode | object | |
| transpiled | object | |
| filter_test_accounts | boolean | |
| bytecode_error | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HogFunctionFilters",
"title": "HogFunctionFilters",
"type": "object",
"properties": {
"source": {
"allOf": [
{
"$ref": "#/components/schemas/HogFunctionFiltersSourceEnum"
}
],
"default": "events"
},
"actions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"events": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"data_warehouse": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"properties": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
}
},
"bytecode": {
"nullable": true
},
"transpiled": {},
"filter_test_accounts": {
"type": "boolean"
},
"bytecode_error": {
"type": "string"
}
}
}