PostHog · Schema

PatchedTagger

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
description string
enabled boolean
tagger_type object
tagger_config object Tagger configuration (varies by tagger_type)
conditions array Conditions that scope when the tagger runs
model_configuration object
created_at string
updated_at string
created_by object
deleted boolean
View JSON Schema on GitHub

JSON Schema

posthog-patchedtagger-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedTagger",
  "title": "PatchedTagger",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 400
    },
    "description": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean"
    },
    "tagger_type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaggerTypeEnum"
        }
      ],
      "default": "llm"
    },
    "tagger_config": {
      "description": "Tagger configuration (varies by tagger_type)"
    },
    "conditions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TaggerCondition"
      },
      "description": "Conditions that scope when the tagger runs"
    },
    "model_configuration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaggerModelConfiguration"
        }
      ],
      "nullable": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "created_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserBasic"
        }
      ],
      "readOnly": true
    },
    "deleted": {
      "type": "boolean"
    }
  }
}