execute_jsonata_query
Transform and analyze JSON data using JSONata queries, enabling advanced extraction and manipulation of bird-related information from the AviBase dataset.
Instructions
Execute a raw JSONata query for advanced data analysis and transformation. JSONata is a powerful query language for JSON data.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of results to return for array results (default: 50) | |
query | Yes | JSONata query expression (e.g., "$count($[Taxon_rank = \"species\"])" to count species) |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 50,
"description": "Maximum number of results to return for array results (default: 50)",
"type": "number"
},
"query": {
"description": "JSONata query expression (e.g., \"$count($[Taxon_rank = \\\"species\\\"])\" to count species)",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}