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
Name | Description | Type | Additional 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.
COVIDWeekRecordName | Description | Type | Additional 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": "2023-12-03T18:00:50.9850633-06:00", "WeekEndDate": "2023-12-03T18:00:50.9850633-06:00", "AdultCPSTestingCaseCount": 11, "AdultSelfReportedCaseCount": 12, "ChildCPSTestingCaseCount": 13, "ChildSelfReportedCaseCount": 14, "LastUpdated": "2023-12-03T18:00:50.9850633-06: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>