PostHog · Schema

PatchedExperimentHoldout

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id integer
name string
description string
filters object
created_by object
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

posthog-patchedexperimentholdout-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedExperimentHoldout",
  "title": "PatchedExperimentHoldout",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 400
    },
    "description": {
      "type": "string",
      "nullable": true,
      "maxLength": 400
    },
    "filters": {},
    "created_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserBasic"
        }
      ],
      "readOnly": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  }
}