{
    "height": 200,
    "config": {
        "autosize": {
            "contains": "padding"
        },
        "padding": {
            "bottom": 0,
            "left": 90,
            "right": 30,
            "top": 60
        }
    },
    "mark": {
        "size": 100,
        "type": "point"
    },
    "data": {
        "url": "https://vega.github.io/vega-lite/data/cars.json"
    },
    "width": 200,
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "title": "Car Scatter",
    "encoding": {
        "color": {
            "field": "Cylinders",
            "type": "ordinal"
        },
        "shape": {
            "field": "Origin",
            "type": "nominal"
        },
        "x": {
            "field": "Horsepower",
            "type": "quantitative"
        },
        "y": {
            "field": "Miles_per_Gallon",
            "type": "quantitative"
        }
    }
}