action schooldigger_districts_get_district { label: "Returns a detailed record for one district" description: "Retrieve a single district record from the SchoolDigger database" provider: schooldigger method: GET path: "/v1/districts/{id}" encoding: json input: { type: "object" properties: { appID: { type: "string" } appKey: { type: "string" } id: { type: "string" } } required: ["appID", "appKey", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }