PostHog · Schema
ElementPropertyFilter
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| key | object | |
| label | string | |
| operator | object | |
| type | string | |
| value | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ElementPropertyFilter",
"title": "ElementPropertyFilter",
"additionalProperties": false,
"properties": {
"key": {
"$ref": "#/components/schemas/Key10"
},
"label": {
"default": null,
"title": "Label",
"type": "string",
"nullable": true
},
"operator": {
"$ref": "#/components/schemas/PropertyOperator"
},
"type": {
"default": "element",
"title": "Type",
"type": "string",
"enum": [
"element"
]
},
"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": "object"
}