analyze_submissions
Analyze form submissions to generate summaries, identify trends, evaluate responses, and calculate completion rates, enabling data-driven decisions for Tally.so forms.
Instructions
Analyze form submissions and provide insights
Input Schema
Name | Required | Description | Default |
---|---|---|---|
analysisType | Yes | Type of analysis to perform | |
formId | Yes | ID of the form to analyze |
Input Schema (JSON Schema)
{
"properties": {
"analysisType": {
"description": "Type of analysis to perform",
"enum": [
"summary",
"trends",
"responses",
"completion_rate"
],
"type": "string"
},
"formId": {
"description": "ID of the form to analyze",
"type": "string"
}
},
"required": [
"formId",
"analysisType"
],
"type": "object"
}