Mixpanel · Schema

WarehouseSource

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
id string Unique source identifier
name string Source connection name
type string Warehouse type
status string Connection status
schedule string Import schedule
createdAt string When the source was created
lastRunAt string When the last import ran
View JSON Schema on GitHub

JSON Schema

mixpanel-warehousesource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WarehouseSource",
  "title": "WarehouseSource",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique source identifier"
    },
    "name": {
      "type": "string",
      "description": "Source connection name"
    },
    "type": {
      "type": "string",
      "enum": [
        "bigquery",
        "snowflake",
        "redshift",
        "databricks",
        "postgresql"
      ],
      "description": "Warehouse type"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "paused",
        "error"
      ],
      "description": "Connection status"
    },
    "schedule": {
      "type": "string",
      "enum": [
        "hourly",
        "daily",
        "weekly"
      ],
      "description": "Import schedule"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "When the source was created"
    },
    "lastRunAt": {
      "type": "string",
      "format": "date-time",
      "description": "When the last import ran"
    }
  }
}