PostHog · Schema

HogQLNotice

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
end integer
fix string
message string
start integer
View JSON Schema on GitHub

JSON Schema

posthog-hogqlnotice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HogQLNotice",
  "title": "HogQLNotice",
  "additionalProperties": false,
  "properties": {
    "end": {
      "default": null,
      "title": "End",
      "type": "integer",
      "nullable": true
    },
    "fix": {
      "default": null,
      "title": "Fix",
      "type": "string",
      "nullable": true
    },
    "message": {
      "title": "Message",
      "type": "string"
    },
    "start": {
      "default": null,
      "title": "Start",
      "type": "integer",
      "nullable": true
    }
  },
  "required": [
    "message"
  ],
  "type": "object"
}