{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/disease-sh/main/json-schema/covidJHUCountries.json", "title": "covidJHUCountries", "properties": { "country": { "type": "string" }, "county": { "type": "string" }, "updatedAt": { "type": "string" }, "stats": { "type": "object", "properties": { "confirmed": { "type": "number" }, "deaths": { "type": "number" }, "recovered": { "type": "number" } } }, "coordinates": { "type": "object", "properties": { "latitude": { "type": "string" }, "longitude": { "type": "string" } } }, "province": { "type": "string" } } }