PostHog · Schema
PatchedSignalSourceConfig
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| source_product | object | |
| source_type | object | |
| enabled | boolean | |
| config | object | |
| created_at | string | |
| updated_at | string | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedSignalSourceConfig",
"title": "PatchedSignalSourceConfig",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"source_product": {
"$ref": "#/components/schemas/SourceProductEnum"
},
"source_type": {
"$ref": "#/components/schemas/SignalSourceConfigSourceTypeEnum"
},
"enabled": {
"type": "boolean"
},
"config": {},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"status": {
"type": "string",
"nullable": true,
"readOnly": true
}
}
}