Mixpanel · Schema

ImportResponse

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
code integer HTTP status code
num_records_imported integer Number of records successfully imported
status string Status message
View JSON Schema on GitHub

JSON Schema

mixpanel-importresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportResponse",
  "title": "ImportResponse",
  "type": "object",
  "properties": {
    "code": {
      "type": "integer",
      "description": "HTTP status code"
    },
    "num_records_imported": {
      "type": "integer",
      "description": "Number of records successfully imported"
    },
    "status": {
      "type": "string",
      "description": "Status message"
    }
  }
}