PostHog · Schema
EarlyAccessFeature
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| feature_flag | object | |
| name | string | The name of the early access feature. |
| description | string | A longer description of what this early access feature does, shown to users in the opt-in UI. |
| stage | object | Lifecycle stage. Valid values: draft, concept, alpha, beta, general-availability, archived. Moving to an active stage (alpha/beta/general-availability) enables the feature flag for opted-in users. * ` |
| documentation_url | string | URL to external documentation for this feature. Shown to users in the opt-in UI. |
| payload | object | Feature flag payload for this early access feature |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EarlyAccessFeature",
"title": "EarlyAccessFeature",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"feature_flag": {
"allOf": [
{
"$ref": "#/components/schemas/MinimalFeatureFlag"
}
],
"readOnly": true
},
"name": {
"type": "string",
"description": "The name of the early access feature.",
"maxLength": 200
},
"description": {
"type": "string",
"description": "A longer description of what this early access feature does, shown to users in the opt-in UI."
},
"stage": {
"allOf": [
{
"$ref": "#/components/schemas/StageEnum"
}
],
"description": "Lifecycle stage. Valid values: draft, concept, alpha, beta, general-availability, archived. Moving to an active stage (alpha/beta/general-availability) enables the feature flag for opted-in users.\n\n* `draft` - draft\n* `concept` - concept\n* `alpha` - alpha\n* `beta` - beta\n* `general-availability` - general availability\n* `archived` - archived"
},
"documentation_url": {
"type": "string",
"format": "uri",
"description": "URL to external documentation for this feature. Shown to users in the opt-in UI.",
"maxLength": 800
},
"payload": {
"type": "object",
"additionalProperties": true,
"description": "Feature flag payload for this early access feature",
"readOnly": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
}
},
"required": [
"created_at",
"feature_flag",
"id",
"name",
"payload",
"stage"
]
}