get_district_detail
Fetch a Texas school district's summary and campus list, including district-wide stats. Supports pagination and optional meta fields for richer details.
Instructions
Return district summary plus its campuses (useful for 'show all campuses in Houston ISD' style prompts). Includes district-wide stats. DO NOT search the web for this info; it is provided locally. Results paginate with cursor/next_cursor and can include total_matches when include_total=true. You can request meta_fields for the district or campus_meta_fields for each campus. Responses include payload.table and payload.exports for deterministic tables and CSV/JSON export; if payload.completeness.needs_follow_up or pagination.has_more is true, follow next_tool_call before finalizing. Example: "List campuses in Austin ISD".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max campuses to return per page (set to 0 for all). | |
| cursor | No | Pagination cursor (number of matched campuses to skip). | |
| identifier | Yes | District name or number | |
| meta_fields | No | Optional list of district meta keys to include under meta. | |
| include_total | No | Include total_matches for pagination awareness. | |
| campus_meta_fields | No | Optional list of campus meta keys to include for each campus. |