{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "config": { "style": { "x-style": {} } }, "data": { "url": "https://vega.github.io/vega-lite/data/cars.json" }, "encoding": { "color": { "field": "Origin", "legend": null, "type": "nominal" }, "x": { "axis": { "style": "x-style" }, "field": "Horsepower", "type": "quantitative" }, "y": { "field": "Miles_per_Gallon", "type": "quantitative" } }, "mark": "point" }