PostHog · Schema
ExperimentHoldoutType
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| created_by | object | |
| description | string | |
| filters | array | |
| id | number | |
| name | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExperimentHoldoutType",
"title": "ExperimentHoldoutType",
"additionalProperties": false,
"properties": {
"created_at": {
"default": null,
"title": "Created At",
"type": "string",
"nullable": true
},
"created_by": {
"default": null,
"allOf": [
{
"$ref": "#/components/schemas/UserBasicType"
}
],
"nullable": true
},
"description": {
"default": null,
"title": "Description",
"type": "string",
"nullable": true
},
"filters": {
"items": {
"$ref": "#/components/schemas/FeatureFlagGroupType"
},
"title": "Filters",
"type": "array"
},
"id": {
"default": null,
"title": "Id",
"type": "number",
"nullable": true
},
"name": {
"title": "Name",
"type": "string"
},
"updated_at": {
"default": null,
"title": "Updated At",
"type": "string",
"nullable": true
}
},
"required": [
"filters",
"name"
],
"type": "object"
}