disease.sh · Schema

covidAppleData

COVID-19DiseaseHealthEpidemiologyInfluenzaVaccineOpen DataPublic Health

Properties

Name Type Description
country string
subregion string
data array
View JSON Schema on GitHub

JSON Schema

covidAppleData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/disease-sh/main/json-schema/covidAppleData.json",
  "title": "covidAppleData",
  "properties": {
    "country": {
      "type": "string"
    },
    "subregion": {
      "type": "string"
    },
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "sub-region": {
            "type": "string"
          },
          "subregion_and_city": {
            "type": "string"
          },
          "geo_type": {
            "type": "string"
          },
          "date": {
            "type": "string",
            "format": "date"
          },
          "driving": {
            "type": "number"
          },
          "transit": {
            "type": "number"
          },
          "walking": {
            "type": "number"
          }
        }
      }
    }
  }
}