PostHog · Schema

DatabaseSchemaPostHogTable

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
fields object
id string
name string
row_count number
type string
View JSON Schema on GitHub

JSON Schema

posthog-databaseschemaposthogtable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseSchemaPostHogTable",
  "title": "DatabaseSchemaPostHogTable",
  "additionalProperties": false,
  "properties": {
    "fields": {
      "additionalProperties": {
        "$ref": "#/components/schemas/DatabaseSchemaField"
      },
      "title": "Fields",
      "type": "object"
    },
    "id": {
      "title": "Id",
      "type": "string"
    },
    "name": {
      "title": "Name",
      "type": "string"
    },
    "row_count": {
      "default": null,
      "title": "Row Count",
      "type": "number",
      "nullable": true
    },
    "type": {
      "default": "posthog",
      "title": "Type",
      "type": "string",
      "enum": [
        "posthog"
      ]
    }
  },
  "required": [
    "fields",
    "id",
    "name"
  ],
  "type": "object"
}