{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "config": { "view": { "stroke": null } }, "data": { "format": { "feature": "counties", "type": "topojson" }, "url": "https://vega.github.io/vega-lite/data/us-10m.json" }, "encoding": { "color": { "field": "rate", "sort": "descending", "type": "quantitative" } }, "height": 300, "mark": "geoshape", "projection": { "type": "albersUsa" }, "transform": [ { "from": { "data": { "url": "https://vega.github.io/vega-lite/data/unemployment.tsv" }, "fields": [ "rate" ], "key": "id" }, "lookup": "id" } ], "width": 500 }