action covid19_api_get_daily_report_totals { label: "getDailyReportTotals" description: "Get daily report data for whole world." provider: covid19_api method: GET path: "/report/totals" encoding: json input: { type: "object" properties: { 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"] } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { active: { type: "integer" } confirmed: { type: "integer" } critical: { type: "integer" } date: { type: "string" } deaths: { type: "integer" } recovered: { type: "integer" } } } } }