PostHog · Schema
ToleratedHashEntry
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| alternate_hash | string | |
| baseline_hash | string | |
| reason | string | |
| diff_percentage | number | |
| created_at | string | |
| source_run_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ToleratedHashEntry",
"title": "ToleratedHashEntry",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"alternate_hash": {
"type": "string"
},
"baseline_hash": {
"type": "string"
},
"reason": {
"type": "string"
},
"diff_percentage": {
"type": "number",
"format": "double",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time"
},
"source_run_id": {
"type": "string",
"format": "uuid",
"nullable": true
}
},
"required": [
"alternate_hash",
"baseline_hash",
"created_at",
"diff_percentage",
"id",
"reason",
"source_run_id"
]
}