PostHog · Schema
LogPropertyFilter
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| key | string | |
| label | string | |
| operator | object | |
| type | object | |
| value | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LogPropertyFilter",
"title": "LogPropertyFilter",
"additionalProperties": false,
"properties": {
"key": {
"title": "Key",
"type": "string"
},
"label": {
"default": null,
"title": "Label",
"type": "string",
"nullable": true
},
"operator": {
"$ref": "#/components/schemas/PropertyOperator"
},
"type": {
"$ref": "#/components/schemas/LogPropertyFilterType"
},
"value": {
"default": null,
"title": "Value",
"anyOf": [
{
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
]
},
"type": "array"
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
}
],
"nullable": true
}
},
"required": [
"key",
"operator",
"type"
],
"type": "object"
}