{"$schema": "https://vega.github.io/schema/vega-lite/v5.json", "data": {"url": "https://raw.githubusercontent.com/vega/vega-datasets/next/data/stocks.csv"}, "description": "Google's stock price over time.", "encoding": {"x": {"field": "date", "type": "temporal"}, "y": {"field": "price", "type": "quantitative"}}, "mark": {"color": {"gradient": "linear", "stops": [{"color": "white", "offset": 0}, {"color": "darkgreen", "offset": 1}], "x1": 1, "x2": 1, "y1": 1, "y2": 0}, "line": {"color": "darkgreen"}, "type": "area"}, "transform": [{"filter": "datum.symbol==='GOOG'"}]}