GET CPS/DistrictWeeklyCOVIDActionable?StartDate={StartDate}&EndDate={EndDate}

Return list of all reported COVID cases for a provided date range across the district. Case data is for 2020-2021 school year. This endpoint returns historical data, so it is not currently in use on cps.edu.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
StartDate

The StartDate

date

None.

EndDate

The EndDate

date

None.

Body Parameters

None.

Response Information

Resource Description

0 or missing School ID parameter will return entire district.

COVIDWeekRecord
NameDescriptionTypeAdditional information
SchoolShortName

string

None.

SchoolID

integer

None.

NetworkName

string

None.

TotalCaseCount

integer

None.

AdultCaseCount

integer

None.

ChildCaseCount

integer

None.

CloseContactsCount

integer

None.

QuarantinedPodsCount

integer

None.

WeekStartDate

date

None.

WeekEndDate

date

None.

AdultCPSTestingCaseCount

integer

None.

AdultSelfReportedCaseCount

integer

None.

ChildCPSTestingCaseCount

integer

None.

ChildSelfReportedCaseCount

integer

None.

LastUpdated

date

None.

Response Formats

application/json, text/json

Sample:
{
  "SchoolShortName": "sample string 1",
  "SchoolID": 2,
  "NetworkName": "sample string 3",
  "TotalCaseCount": 4,
  "AdultCaseCount": 5,
  "ChildCaseCount": 6,
  "CloseContactsCount": 7,
  "QuarantinedPodsCount": 8,
  "WeekStartDate": "2024-04-18T18:50:16.8211234-05:00",
  "WeekEndDate": "2024-04-18T18:50:16.8211234-05:00",
  "AdultCPSTestingCaseCount": 11,
  "AdultSelfReportedCaseCount": 12,
  "ChildCPSTestingCaseCount": 13,
  "ChildSelfReportedCaseCount": 14,
  "LastUpdated": "2024-04-18T18:50:16.8211234-05:00"
}

application/xml, text/xml

Sample:
<COVIDWeekRecord xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <SchoolShortName>sample string 1</SchoolShortName>
  <SchoolID>2</SchoolID>
  <NetworkName>sample string 3</NetworkName>
  <TotalCaseCount>4</TotalCaseCount>
  <AdultCaseCount>5</AdultCaseCount>
  <ChildCaseCount>6</ChildCaseCount>
  <CloseContactsCount>7</CloseContactsCount>
  <QuarantinedPodsCount>8</QuarantinedPodsCount>
  <WeekStartDate />
  <WeekEndDate />
  <AdultCPSTestingCaseCount>11</AdultCPSTestingCaseCount>
  <AdultSelfReportedCaseCount>12</AdultSelfReportedCaseCount>
  <ChildCPSTestingCaseCount>13</ChildCPSTestingCaseCount>
  <ChildSelfReportedCaseCount>14</ChildSelfReportedCaseCount>
  <LastUpdated />
</COVIDWeekRecord>