{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "url": "https://vega.github.io/vega-lite/data/stocks.csv" }, "description": "Stock prices of 5 tech companies over time.", "encoding": { "color": { "field": "symbol", "type": "nominal" }, "x": { "axis": { "format": "%Y" }, "field": "date", "type": "temporal" }, "y": { "field": "price", "type": "quantitative" } }, "mark": "line" }