{
  "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
  "description": "Stock prices of 5 Tech Companies Over Time.",
  "data": {
    "url": "data/stocks.csv", 
    "format": {"type": "csv"}
  },
  "transform": [{"filter": {
    "field": "symbol",
    "equal": "'MSFT'"
  }}],
  "mark": "line",
  "encoding": {
    "x": {"field": "date", "type": "temporal", "axis": {"format": "%Y"}},
    "y": {"field": "price", "type": "quantitative"},
    "color": {"field": "symbol", "type": "nominal"}
  }
}
