action covid19_api_get_daily_report_all_countries { label: "getDailyReportAllCountries" description: "Get daily report for all countries. Date is mandatory parametar. 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/all" 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"] } } required: ["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" } } } } } } } }