GET api/COVID/GetSchoolAgeOutbreaks
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
COVIDSchoolAgeOutbreaksModel| Name | Description | Type | Additional information |
|---|---|---|---|
| lastUpdatedDate | LastUpdatedDate |
None. |
|
| schoolAgeOutbreaks | Collection of COVIDSchoolAgeOutbreak |
None. |
Response Formats
application/json, text/json
Sample:
{
"lastUpdatedDate": {
"year": 1,
"month": 2,
"day": 3
},
"schoolAgeOutbreaks": [
{
"reportDate": "2025-12-13T23:50:28.4676947-06:00",
"CountyName": "sample string 2",
"AgeGroup": "sample string 3",
"WeekNumber": 4,
"CaseCount": 5,
"WeekEnding": "2025-12-13T23:50:28.4676947-06:00"
},
{
"reportDate": "2025-12-13T23:50:28.4676947-06:00",
"CountyName": "sample string 2",
"AgeGroup": "sample string 3",
"WeekNumber": 4,
"CaseCount": 5,
"WeekEnding": "2025-12-13T23:50:28.4676947-06:00"
}
]
}
text/html
Sample:
{"lastUpdatedDate":{"year":1,"month":2,"day":3},"schoolAgeOutbreaks":[{"reportDate":"2025-12-13T23:50:28.4676947-06:00","CountyName":"sample string 2","AgeGroup":"sample string 3","WeekNumber":4,"CaseCount":5,"WeekEnding":"2025-12-13T23:50:28.4676947-06:00"},{"reportDate":"2025-12-13T23:50:28.4676947-06:00","CountyName":"sample string 2","AgeGroup":"sample string 3","WeekNumber":4,"CaseCount":5,"WeekEnding":"2025-12-13T23:50:28.4676947-06:00"}]}
application/xml, text/xml
Sample:
<COVIDSchoolAgeOutbreaksModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DPHApi.Models">
<lastUpdatedDate>
<day>3</day>
<month>2</month>
<year>1</year>
</lastUpdatedDate>
<schoolAgeOutbreaks>
<COVIDSchoolAgeOutbreak>
<AgeGroup>sample string 3</AgeGroup>
<CaseCount>5</CaseCount>
<CountyName>sample string 2</CountyName>
<WeekEnding>2025-12-13T23:50:28.4676947-06:00</WeekEnding>
<WeekNumber>4</WeekNumber>
<reportDate>2025-12-13T23:50:28.4676947-06:00</reportDate>
</COVIDSchoolAgeOutbreak>
<COVIDSchoolAgeOutbreak>
<AgeGroup>sample string 3</AgeGroup>
<CaseCount>5</CaseCount>
<CountyName>sample string 2</CountyName>
<WeekEnding>2025-12-13T23:50:28.4676947-06:00</WeekEnding>
<WeekNumber>4</WeekNumber>
<reportDate>2025-12-13T23:50:28.4676947-06:00</reportDate>
</COVIDSchoolAgeOutbreak>
</schoolAgeOutbreaks>
</COVIDSchoolAgeOutbreaksModel>