PostHog · Schema

DataWarehouseViewLink

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
created_at string
created_by object
field_name string
id string
joining_table_key string
joining_table_name string
source_table_key string
source_table_name string
View JSON Schema on GitHub

JSON Schema

posthog-datawarehouseviewlink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataWarehouseViewLink",
  "title": "DataWarehouseViewLink",
  "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
    },
    "field_name": {
      "default": null,
      "title": "Field Name",
      "type": "string",
      "nullable": true
    },
    "id": {
      "title": "Id",
      "type": "string"
    },
    "joining_table_key": {
      "default": null,
      "title": "Joining Table Key",
      "type": "string",
      "nullable": true
    },
    "joining_table_name": {
      "default": null,
      "title": "Joining Table Name",
      "type": "string",
      "nullable": true
    },
    "source_table_key": {
      "default": null,
      "title": "Source Table Key",
      "type": "string",
      "nullable": true
    },
    "source_table_name": {
      "default": null,
      "title": "Source Table Name",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}