action covid19_api_get_list_of_countries { label: "getListOfCountries" description: "Get name name, alpha-2, alpha-3 code, latitude and longitude for every country." provider: covid19_api method: GET path: "/help/countries" encoding: json input: { type: "object" properties: { format: { type: "string" enum: ["json", "xml"] } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { "alpha-2-code": { type: "string" } "alpha-3-code": { type: "string" } latitude: { type: "number" format: "float" } longitude: { type: "number" format: "float" } name: { type: "string" } } } } }