get_json_chunk
Retrieve a specific chunk of entries from a large JSON file using a starting index and limit, optionally selecting only required fields to reduce memory usage.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of entries to return in the chunk (default 1000) | |
| start | No | Entry index to start from (0-based) | |
| fields | No | Fields to include in the output. If not specified, all fields are included. | |
| filePath | Yes | Path to the JSON file on disk (.json) |