PostHog · Schema
ViewLink
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| deleted | boolean | |
| created_by | object | |
| created_at | string | |
| source_table_name | string | |
| source_table_key | string | |
| joining_table_name | string | |
| joining_table_key | string | |
| field_name | string | |
| configuration | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ViewLink",
"title": "ViewLink",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"deleted": {
"type": "boolean",
"nullable": true
},
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"source_table_name": {
"type": "string",
"maxLength": 400
},
"source_table_key": {
"type": "string",
"maxLength": 400
},
"joining_table_name": {
"type": "string",
"maxLength": 400
},
"joining_table_key": {
"type": "string",
"maxLength": 400
},
"field_name": {
"type": "string",
"maxLength": 400
},
"configuration": {
"nullable": true
}
},
"required": [
"created_at",
"created_by",
"field_name",
"id",
"joining_table_key",
"joining_table_name",
"source_table_key",
"source_table_name"
]
}