PostHog · Schema
HeatmapSettings
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| gradient | array | |
| gradientPreset | string | |
| gradientScaleMode | object | |
| nullLabel | string | |
| nullValue | string | |
| sortColumn | string | |
| sortOrder | object | |
| valueColumn | string | |
| xAxisColumn | string | |
| xAxisLabel | string | |
| yAxisColumn | string | |
| yAxisLabel | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HeatmapSettings",
"title": "HeatmapSettings",
"additionalProperties": false,
"properties": {
"gradient": {
"default": null,
"title": "Gradient",
"items": {
"$ref": "#/components/schemas/HeatmapGradientStop"
},
"type": "array",
"nullable": true
},
"gradientPreset": {
"default": null,
"title": "Gradientpreset",
"type": "string",
"nullable": true
},
"gradientScaleMode": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/GradientScaleMode"
}
],
"nullable": true
},
"nullLabel": {
"default": null,
"title": "Nulllabel",
"type": "string",
"nullable": true
},
"nullValue": {
"default": null,
"title": "Nullvalue",
"type": "string",
"nullable": true
},
"sortColumn": {
"default": null,
"title": "Sortcolumn",
"type": "string",
"nullable": true
},
"sortOrder": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/HeatmapSortOrder"
}
],
"nullable": true
},
"valueColumn": {
"default": null,
"title": "Valuecolumn",
"type": "string",
"nullable": true
},
"xAxisColumn": {
"default": null,
"title": "Xaxiscolumn",
"type": "string",
"nullable": true
},
"xAxisLabel": {
"default": null,
"title": "Xaxislabel",
"type": "string",
"nullable": true
},
"yAxisColumn": {
"default": null,
"title": "Yaxiscolumn",
"type": "string",
"nullable": true
},
"yAxisLabel": {
"default": null,
"title": "Yaxislabel",
"type": "string",
"nullable": true
}
},
"type": "object"
}