{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "title": "Percentage of Days with Precipitation in Cary, NC",
    "data": {
        "values": [
            {
                "category": "Precipitation",
                "value": 28.5
            },
            {
                "category": "No Precipitation",
                "value": 71.5
            }
        ]
    },
    "mark": "bar",
    "encoding": {
        "x": {
            "field": "category",
            "type":"nominal",
            "title":"Type of Weather"
        },
        "y": {
            "field": "value",
            "type":"quantitative",
            "title":"Percentage of Days"
        }
    }
}