PostHog · Schema

EvaluationSummaryStatistics

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
total_analyzed integer
pass_count integer
fail_count integer
na_count integer
View JSON Schema on GitHub

JSON Schema

posthog-evaluationsummarystatistics-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EvaluationSummaryStatistics",
  "title": "EvaluationSummaryStatistics",
  "type": "object",
  "properties": {
    "total_analyzed": {
      "type": "integer"
    },
    "pass_count": {
      "type": "integer"
    },
    "fail_count": {
      "type": "integer"
    },
    "na_count": {
      "type": "integer"
    }
  },
  "required": [
    "fail_count",
    "na_count",
    "pass_count",
    "total_analyzed"
  ]
}