disease.sh · Schema

vaccineCountryCoverage

COVID-19DiseaseHealthEpidemiologyInfluenzaVaccineOpen DataPublic Health

Properties

Name Type Description
country string
timeline object
View JSON Schema on GitHub

JSON Schema

vaccineCountryCoverage.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/disease-sh/main/json-schema/vaccineCountryCoverage.json",
  "title": "vaccineCountryCoverage",
  "type": "object",
  "properties": {
    "country": {
      "type": "string"
    },
    "timeline": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/simpleVaccineTimeline"
        },
        {
          "$ref": "#/components/schemas/fullVaccineTimeline"
        }
      ]
    }
  }
}