action covid19_api_get_daily_report_by_country_code { label: "getDailyReportByCountryCode" description: "Get daily report for specific country. Country code and date are mandatory in parametars. Country code is in ISO 3166-1 standard. It can be 2 chars (Alpha-2) or 3 chars (Alpha-3) type. Date format is by ISO 8601 standard, but you can provide different format with date-format parameter" provider: covid19_api method: GET path: "/report/country/code" encoding: json input: { type: "object" properties: { code: { type: "string" } date: { type: "string" } "date-format": { type: "string" enum: ["YYYY-MM-DD", "YYYY-DD-MM", "DD-MM-YYYY", "MM-DD-YYYY"] } format: { type: "string" enum: ["json", "xml"] } } required: ["code", "date"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { country: { type: "string" } date: { type: "string" } latitude: { type: "number" format: "float" } longitude: { type: "number" format: "float" } province: { type: "array" items: { type: "object" properties: { active: { type: "integer" } confirmed: { type: "integer" } deaths: { type: "integer" } recovered: { type: "integer" } } } } } } } }