disease.sh · Schema

covidJHUCountries

COVID-19DiseaseHealthEpidemiologyInfluenzaVaccineOpen DataPublic Health

Properties

Name Type Description
country string
county string
updatedAt string
stats object
coordinates object
province string
View JSON Schema on GitHub

JSON Schema

covidJHUCountries.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/disease-sh/main/json-schema/covidJHUCountries.json",
  "title": "covidJHUCountries",
  "properties": {
    "country": {
      "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"
        }
      }
    },
    "province": {
      "type": "string"
    }
  }
}