action schooldigger_schools_get_school10 { label: "Returns a detailed record for one school" description: "Retrieve a school record from the SchoolDigger database" provider: schooldigger method: GET path: "/v1/schools/{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 } }