Mixpanel · Schema

CreateAnnotationRequest

AnalyticsData AnalysisEvent TrackingProduct AnalyticsUser Behavior

Properties

Name Type Description
date string The date and time to annotate (YYYY-MM-DDThh:mm:ss)
description string Description text for the annotation
View JSON Schema on GitHub

JSON Schema

mixpanel-createannotationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateAnnotationRequest",
  "title": "CreateAnnotationRequest",
  "type": "object",
  "required": [
    "date",
    "description"
  ],
  "properties": {
    "date": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time to annotate (YYYY-MM-DDThh:mm:ss)"
    },
    "description": {
      "type": "string",
      "description": "Description text for the annotation"
    }
  }
}