disease.sh · Schema
covidJHUCounty
COVID-19DiseaseHealthEpidemiologyInfluenzaVaccineOpen DataPublic Health
Properties
| Name | Type | Description |
|---|---|---|
| country | string | |
| province | string | |
| county | string | |
| updatedAt | string | |
| stats | object | |
| coordinates | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/disease-sh/main/json-schema/covidJHUCounty.json",
"title": "covidJHUCounty",
"properties": {
"country": {
"type": "string"
},
"province": {
"type": "string"
},
"county": {
"type": "string"
},
"updatedAt": {
"type": "string"
},
"stats": {
"type": "object",
"properties": {
"confirmed": {
"type": "number"
},
"deaths": {
"type": "number"
},
"recovered": {
"type": "number"
}
}
},
"coordinates": {
"type": "object",
"properties": {
"latitude": {
"type": "string"
},
"longitude": {
"type": "string"
}
}
}
}
}