action schooldigger_districts_get_all_districts { label: "Returns a list of districts" description: "Search the SchoolDigger database for districts. You may use any combination of criteria as query parameters." provider: schooldigger method: GET path: "/v1/districts" encoding: json input: { type: "object" properties: { appID: { type: "string" } appKey: { type: "string" } boundaryAddress: { type: "string" } boxLatitudeNW: { type: "string" } boxLatitudeSE: { type: "string" } boxLongitudeNW: { type: "string" } boxLongitudeSE: { type: "string" } city: { type: "string" } distanceMiles: { type: "string" } includeUnrankedDistrictsInRankSort: { type: "string" } isInBoundaryOnly: { type: "string" } nearLatitude: { type: "string" } nearLongitude: { type: "string" } page: { type: "string" } perPage: { type: "string" } q: { type: "string" } sortBy: { type: "string" } st: { type: "string" } zip: { type: "string" } } required: ["appID", "appKey", "st"] additionalProperties: false } output: { type: "object" additionalProperties: true } }