PostHog · Schema
ClusteringJob
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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClusteringJob",
"title": "ClusteringJob",
"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
}
},
"required": [
"analysis_level",
"created_at",
"id",
"name",
"updated_at"
]
}