# What is Vega-lite ```vega { "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "mark": {"type": "bar", "tooltip": true}, "data": { "format": {"type": "csv"}, "url": "https://s.dou.ua/files/lenta/war-migration-map-summer5/data/migration202206-region-before.csv" }, "encoding": { "x": {"field": "name", "axis": {"title": "Де жили до війни"}}, "y": {"field": "freq", "type": "quantitative", "axis": {"title": "Куди переїхали"}}, "color": {"field": "category", "legend": null}, "tooltip": [{"field": "category", "title": "Зараз в"}, {"field": "freq", "title": "Кількість"} ], "tooltip1": {"signal": "{'count': 'qwe', 'status': 'asd'}"} } } ```