{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "data": {"url": "https://raw.githubusercontent.com/vega/vega-datasets/next/data/movies.json"}, "mark": "circle", "encoding": { "x": { "bin": {"maxbins": 10}, "field": "IMDB Rating" }, "y": { "bin": {"maxbins": 10}, "field": "Rotten Tomatoes Rating" }, "size": {"aggregate": "count"} } }