get_report_meta
Retrieve metadata for Frappe reports including column definitions and filter parameters to understand report structure and configuration.
Instructions
Get metadata for a specific report including columns and filters.
Args:
report_name: Name of the report to get metadata for
Input Schema
Name | Required | Description | Default |
---|---|---|---|
report_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"report_name": {
"title": "Report Name",
"type": "string"
}
},
"required": [
"report_name"
],
"title": "get_report_metaArguments",
"type": "object"
}