{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "title": "Populations of the 5 most populous countries on Earth",
    "data": {
        "values": [
            {
                "country": "China",
                "population": "1433"
            },
            {
                "country": "India",
                "population": "1366"
            },
            {
                "country": "United States",
                "population": "329"
            },
            {
                "country": "Indonesia",
                "population": "270"
            },
            {
                "country": "Pakistan",
                "population": "216"
            }
        ]
    },
    "mark": "bar",
    "encoding": {
        "x": {
            "field": "country",
            "type": "nominal",
            "title": "Country"
        },
        "y": {
            "field": "population",
            "type": "quantitative",
            "title": "Population (in millions)"
        }
    }
}
