PostHog · Schema

LogAttributeResult

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
matchedOn object Whether this row matched the search by attribute key or by attribute value.
matchedValue string Sample value that matched the search — only set when matchedOn is 'value'.
name string
propertyFilterType string Either 'log_attribute' or 'log_resource_attribute'.
View JSON Schema on GitHub

JSON Schema

posthog-logattributeresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogAttributeResult",
  "title": "LogAttributeResult",
  "additionalProperties": false,
  "properties": {
    "matchedOn": {
      "description": "Whether this row matched the search by attribute key or by attribute value.",
      "allOf": [
        {
          "$ref": "#/components/schemas/MatchedOn"
        }
      ]
    },
    "matchedValue": {
      "default": null,
      "description": "Sample value that matched the search \u2014 only set when matchedOn is 'value'.",
      "title": "Matchedvalue",
      "type": "string",
      "nullable": true
    },
    "name": {
      "title": "Name",
      "type": "string"
    },
    "propertyFilterType": {
      "description": "Either 'log_attribute' or 'log_resource_attribute'.",
      "title": "Propertyfiltertype",
      "type": "string"
    }
  },
  "required": [
    "matchedOn",
    "name",
    "propertyFilterType"
  ],
  "type": "object"
}