PostHog · Schema

LogsAlertDeleteDestination

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
hog_function_ids array HogFunction IDs to delete as one atomic destination group.
View JSON Schema on GitHub

JSON Schema

posthog-logsalertdeletedestination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogsAlertDeleteDestination",
  "title": "LogsAlertDeleteDestination",
  "type": "object",
  "properties": {
    "hog_function_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "description": "HogFunction IDs to delete as one atomic destination group.",
      "minItems": 1
    }
  },
  "required": [
    "hog_function_ids"
  ]
}