PostHog · Schema

PatchedHogFlow

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
description string
version integer
status object
created_at string
created_by object
updated_at string
trigger object
trigger_masking object
conversion object
exit_condition object
edges object
actions array
abort_action string
variables array
billable_action_types object
View JSON Schema on GitHub

JSON Schema

posthog-patchedhogflow-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedHogFlow",
  "title": "PatchedHogFlow",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "nullable": true,
      "maxLength": 400
    },
    "description": {
      "type": "string"
    },
    "version": {
      "type": "integer",
      "readOnly": true
    },
    "status": {
      "$ref": "#/components/schemas/HogFlowStatusEnum"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "created_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserBasic"
        }
      ],
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "trigger": {},
    "trigger_masking": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HogFlowMasking"
        }
      ],
      "nullable": true
    },
    "conversion": {
      "nullable": true
    },
    "exit_condition": {
      "$ref": "#/components/schemas/ExitConditionEnum"
    },
    "edges": {},
    "actions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HogFlowAction"
      }
    },
    "abort_action": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "variables": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": {
          "type": "string"
        }
      }
    },
    "billable_action_types": {
      "readOnly": true,
      "nullable": true
    }
  }
}