PostHog · Schema

ConditionalFormattingRule

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
bytecode array
color string
colorMode object
columnName string
id string
input string
templateId string
View JSON Schema on GitHub

JSON Schema

posthog-conditionalformattingrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConditionalFormattingRule",
  "title": "ConditionalFormattingRule",
  "additionalProperties": false,
  "properties": {
    "bytecode": {
      "items": {},
      "title": "Bytecode",
      "type": "array"
    },
    "color": {
      "title": "Color",
      "type": "string"
    },
    "colorMode": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/ColorMode"
        }
      ],
      "nullable": true
    },
    "columnName": {
      "title": "Columnname",
      "type": "string"
    },
    "id": {
      "title": "Id",
      "type": "string"
    },
    "input": {
      "title": "Input",
      "type": "string"
    },
    "templateId": {
      "title": "Templateid",
      "type": "string"
    }
  },
  "required": [
    "bytecode",
    "color",
    "columnName",
    "id",
    "input",
    "templateId"
  ],
  "type": "object"
}