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