{
    "height": 400,
    "data": {
        "values": [
            {
                "a": "1981",
                "b": 2011
            },
            {
                "a": "1982",
                "b": 2010
            },
            {
                "a": "1983",
                "b": 2009
            },
            {
                "a": "1984",
                "b": 2008
            },
            {
                "a": "1985",
                "b": 2007
            },
            {
                "a": "1986",
                "b": 2006
            },
            {
                "a": "1987",
                "b": 2005
            },
            {
                "a": "1988",
                "b": 2004
            },
            {
                "a": "1989",
                "b": 2003
            },
            {
                "a": "1990",
                "b": 2002
            },
            {
                "a": "1991",
                "b": 2001
            },
            {
                "a": "1992",
                "b": 2000
            },
            {
                "a": "1993",
                "b": 1999
            },
            {
                "a": "1994",
                "b": 1998
            },
            {
                "a": "1995",
                "b": 1997
            },
            {
                "a": "1996",
                "b": 1996
            },
            {
                "a": "1997",
                "b": 1995
            },
            {
                "a": "1998",
                "b": 1994
            },
            {
                "a": "1999",
                "b": 1993
            },
            {
                "a": "2000",
                "b": 1992
            },
            {
                "a": "2001",
                "b": 1991
            }
        ]
    },
    "width": 600,
    "$schema": "https://vega.github.io/schema/vega-lite/v3.json",
    "layer": [
        {
            "mark": "circle",
            "encoding": {
                "x": {
                    "field": "a",
                    "type": "temporal"
                },
                "y": {
                    "field": "b",
                    "type": "quantitative"
                }
            }
        },
        {
            "mark": {
                "dx": 22,
                "dy": 4,
                "type": "text"
            },
            "encoding": {
                "color": {
                    "field": "a",
                    "type": "temporal",
                    "legend": {
                        "format": "%b %Y",
                        "formatType": "time"
                    }
                },
                "text": {
                    "field": "a",
                    "format": "%b `%y",
                    "type": "temporal",
                    "formatType": "time"
                },
                "x": {
                    "field": "a",
                    "type": "temporal",
                    "axis": {
                        "format": "%y",
                        "formatType": "time"
                    }
                },
                "y": {
                    "field": "b",
                    "scale": {
                        "zero": false
                    },
                    "type": "quantitative",
                    "axis": {
                        "format": ".2f",
                        "formatType": "number"
                    }
                }
            }
        }
    ]
}