PostHog · Schema

SummaryOutcome

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
description string
success boolean
View JSON Schema on GitHub

JSON Schema

posthog-summaryoutcome-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SummaryOutcome",
  "title": "SummaryOutcome",
  "additionalProperties": false,
  "properties": {
    "description": {
      "default": null,
      "title": "Description",
      "type": "string",
      "nullable": true
    },
    "success": {
      "default": null,
      "title": "Success",
      "type": "boolean",
      "nullable": true
    }
  },
  "type": "object"
}