PostHog · Schema

DatabaseSchemaSource

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
access_method string
id string
last_synced_at string
prefix string
source_type string
status string
View JSON Schema on GitHub

JSON Schema

posthog-databaseschemasource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatabaseSchemaSource",
  "title": "DatabaseSchemaSource",
  "additionalProperties": false,
  "properties": {
    "access_method": {
      "default": null,
      "title": "Access Method",
      "type": "string",
      "nullable": true
    },
    "id": {
      "title": "Id",
      "type": "string"
    },
    "last_synced_at": {
      "default": null,
      "title": "Last Synced At",
      "type": "string",
      "nullable": true
    },
    "prefix": {
      "title": "Prefix",
      "type": "string"
    },
    "source_type": {
      "title": "Source Type",
      "type": "string"
    },
    "status": {
      "title": "Status",
      "type": "string"
    }
  },
  "required": [
    "id",
    "prefix",
    "source_type",
    "status"
  ],
  "type": "object"
}