Mixpanel · Schema

UpdateWarehouseSourceRequest

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
name string Updated source name
schedule string Updated import schedule
tables array Updated table configurations
View JSON Schema on GitHub

JSON Schema

mixpanel-updatewarehousesourcerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateWarehouseSourceRequest",
  "title": "UpdateWarehouseSourceRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated source name"
    },
    "schedule": {
      "type": "string",
      "enum": [
        "hourly",
        "daily",
        "weekly"
      ],
      "description": "Updated import schedule"
    },
    "tables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TableConfig"
      },
      "description": "Updated table configurations"
    }
  }
}