aggregated_event_property_values
Analyze event property values to understand distributions and identify common patterns across specific date ranges in Mixpanel data.
Instructions
Analyze specific event properties and their values. Useful for understanding property distributions and identifying common values.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
event | Yes | The event name to analyze properties for | |
from_date | Yes | The date in yyyy-mm-dd format to begin querying from (inclusive) | |
limit | No | Maximum number of property values to return | |
project_id | No | The Mixpanel project ID. Optional since it has a default. | |
property | Yes | The property name to get values for | |
to_date | Yes | The date in yyyy-mm-dd format to query to (inclusive) |
Input Schema (JSON Schema)
{
"properties": {
"event": {
"description": "The event name to analyze properties for",
"type": "string"
},
"from_date": {
"description": "The date in yyyy-mm-dd format to begin querying from (inclusive)",
"type": "string"
},
"limit": {
"description": "Maximum number of property values to return",
"type": "number"
},
"project_id": {
"description": "The Mixpanel project ID. Optional since it has a default.",
"type": "string"
},
"property": {
"description": "The property name to get values for",
"type": "string"
},
"to_date": {
"description": "The date in yyyy-mm-dd format to query to (inclusive)",
"type": "string"
}
},
"required": [
"event",
"property",
"from_date",
"to_date"
],
"type": "object"
}