PostHog · Schema
WebNotableChangeItem
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| current_value | number | |
| dimension_type | string | |
| dimension_value | string | |
| impact_score | number | |
| metric | string | |
| percent_change | number | |
| previous_value | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WebNotableChangeItem",
"title": "WebNotableChangeItem",
"additionalProperties": false,
"properties": {
"current_value": {
"title": "Current Value",
"type": "number"
},
"dimension_type": {
"title": "Dimension Type",
"type": "string"
},
"dimension_value": {
"title": "Dimension Value",
"type": "string"
},
"impact_score": {
"title": "Impact Score",
"type": "number"
},
"metric": {
"title": "Metric",
"type": "string"
},
"percent_change": {
"title": "Percent Change",
"type": "number"
},
"previous_value": {
"title": "Previous Value",
"type": "number"
}
},
"required": [
"current_value",
"dimension_type",
"dimension_value",
"impact_score",
"metric",
"percent_change",
"previous_value"
],
"type": "object"
}