PostHog · Schema

PatchedViewLink

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
View JSON Schema on GitHub

JSON Schema

posthog-patchedviewlink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedViewLink",
  "title": "PatchedViewLink",
  "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
    }
  }
}