PostHog · Schema

PatchedClusteringJob

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
analysis_level object
event_filters object
enabled boolean
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

posthog-patchedclusteringjob-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedClusteringJob",
  "title": "PatchedClusteringJob",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 100
    },
    "analysis_level": {
      "$ref": "#/components/schemas/ClusteringJobAnalysisLevelEnum"
    },
    "event_filters": {},
    "enabled": {
      "type": "boolean"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  }
}