Mixpanel · Schema

WarehouseTable

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
tableName string Full table name
importType string Import type
rowCount integer Number of rows in the table
lastImportedAt string When this table was last imported
View JSON Schema on GitHub

JSON Schema

mixpanel-warehousetable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WarehouseTable",
  "title": "WarehouseTable",
  "type": "object",
  "properties": {
    "tableName": {
      "type": "string",
      "description": "Full table name"
    },
    "importType": {
      "type": "string",
      "enum": [
        "event",
        "user",
        "group",
        "lookup_table"
      ],
      "description": "Import type"
    },
    "rowCount": {
      "type": "integer",
      "description": "Number of rows in the table"
    },
    "lastImportedAt": {
      "type": "string",
      "format": "date-time",
      "description": "When this table was last imported"
    }
  }
}