PostHog · Schema

HogQueryResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
bytecode array
coloredBytecode array
results object
stdout string
View JSON Schema on GitHub

JSON Schema

posthog-hogqueryresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HogQueryResponse",
  "title": "HogQueryResponse",
  "additionalProperties": false,
  "properties": {
    "bytecode": {
      "default": null,
      "title": "Bytecode",
      "items": {},
      "type": "array",
      "nullable": true
    },
    "coloredBytecode": {
      "default": null,
      "title": "Coloredbytecode",
      "items": {},
      "type": "array",
      "nullable": true
    },
    "results": {
      "title": "Results"
    },
    "stdout": {
      "default": null,
      "title": "Stdout",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "results"
  ],
  "type": "object"
}