JSFiddle - React, Tailwind, and code Playground
by von
HTML
{
"swagger": "2.0",
"info": {
"title": "Covid-19_Connector",
"description": "",
"version": "1.0"
},
"host": "populations.herokuapp.com",
"basePath": "/",
"schemes": [
"https"
],
"consumes": [],
"produces": [],
"paths": {
"/covid-top10": {
"get": {
"responses": {
"default": {
"description": "default",
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"countryName": {
"type": "string",
"description": "countryName"
},
"population": {
"type": "string",
"description": "population"
},
"totalCase": {
"type": "string",
"description": "totalCase"
},
"totalNewCase": {
"type": "string",
"description": "totalNewCase"
},
"totalDeaths": {
"type": "string",
"description": "totalDeaths"
},
"newDeaths": {
"type": "string",
"description": "newDeaths"
},
"totalRecovered": {
"type": "string",
"description": "totalRecovered"
},
"activeCase": {
"type": "string",
"description": "activeCase"
},
"seriousCritical": {
"type": "string",
"description": "seriousCritical"
},
"totalCasePerMillion": {
"type": "string",
"description": "totalCasePerMillion"
},
...