analyze_collection_data
Analyze data patterns and generate insights from a PocketBase collection to identify trends, distributions, and relationships within your database records.
Instructions
Analyze data patterns and provide insights about a collection
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name to analyze | |
options | No | Analysis options |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name to analyze",
"type": "string"
},
"options": {
"description": "Analysis options",
"properties": {
"fields": {
"description": "Specific fields to analyze (if not provided, all fields will be analyzed)",
"items": {
"type": "string"
},
"type": "array"
},
"sampleSize": {
"description": "Number of records to sample for analysis (default: 100)",
"type": "number"
}
},
"type": "object"
}
},
"required": [
"collection"
],
"type": "object"
}