disease.sh · Schema

vaccine

COVID-19DiseaseHealthEpidemiologyInfluenzaVaccineOpen DataPublic Health

Properties

Name Type Description
candidate string
mechanism string
sponsors array
details string
trialPhase string
institutions array
View JSON Schema on GitHub

JSON Schema

vaccine.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/disease-sh/main/json-schema/vaccine.json",
  "title": "vaccine",
  "properties": {
    "candidate": {
      "type": "string"
    },
    "mechanism": {
      "type": "string"
    },
    "sponsors": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "details": {
      "type": "string"
    },
    "trialPhase": {
      "type": "string"
    },
    "institutions": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}