testCases.json
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 550,
"height": 300,
"background": "#F3F8FB",
"data": {
"values": "state_education",
"format": {
"property": "features"
}
},
"mark": "geoshape",
"projection": {
"type": "albersUsa"
},
"encoding": {
"stroke": {
"value": "black"
},
"color": {
"field": "properties.higher_education_rate",
"type": "quantitative",
"scale": {
"range": ["#edf8e9","#bae4b3","#74c476","#31a354","#006d2c"],
"type": "threshold",
"domain": [0.16, 0.21, 0.26, 0.32]
},
"legend": {
"title": null
}
}
},
"usermeta": {
"embedOptions": {
"actions": false
}
}
}