action schooldigger_schools_get_all_schools { label: "Returns a list of schools" description: "Search the SchoolDigger database for schools. You may use any combination of criteria as query parameters." provider: schooldigger method: GET path: "/v1/schools" 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" } districtID: { type: "string" } includeUnrankedSchoolsInRankSort: { type: "string" } isCharter: { type: "string" } isInBoundaryOnly: { type: "string" } isMagnet: { type: "string" } isTitleI: { type: "string" } isTitleISchoolwide: { type: "string" } isVirtual: { type: "string" } level: { type: "string" } nearLatitude: { type: "string" } nearLongitude: { type: "string" } page: { type: "string" } perPage: { type: "string" } q: { type: "string" } qSearchSchoolNameOnly: { type: "string" } sortBy: { type: "string" } st: { type: "string" } zip: { type: "string" } } required: ["appID", "appKey", "st"] additionalProperties: false } output: { type: "object" additionalProperties: true } }