disease.sh · Schema

therapeutics

COVID-19DiseaseHealthEpidemiologyInfluenzaVaccineOpen DataPublic Health

Properties

Name Type Description
source string
totalCandidates string
phases array
data array
View JSON Schema on GitHub

JSON Schema

therapeutics.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/disease-sh/main/json-schema/therapeutics.json",
  "title": "therapeutics",
  "properties": {
    "source": {
      "type": "string"
    },
    "totalCandidates": {
      "type": "string"
    },
    "phases": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/phases"
      }
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/therapeutic"
      }
    }
  }
}