{
  "$schema": "https://vega.github.io/schema/vega-lite/v6.1.0.json",
  "config": {
    "view": {
      "continuousHeight": 300,
      "continuousWidth": 300,
      "stroke": null
    }
  },
  "data": {
    "format": {
      "type": "csv"
    },
    "url": "data:text/csv;base64,QQoxCjIKMwo="
  },
  "encoding": {
    "tooltip": [
      {
        "bin": true,
        "field": "A",
        "title": "A",
        "type": "quantitative"
      },
      {
        "aggregate": "count",
        "format": ",.0f",
        "title": "Number of records",
        "type": "quantitative"
      }
    ],
    "x": {
      "bin": true,
      "field": "A",
      "title": "A",
      "type": "quantitative"
    },
    "y": {
      "aggregate": "count",
      "title": "Number of records",
      "type": "quantitative"
    }
  },
  "mark": {
    "color": "#be93e4",
    "stroke": "#8e4ec6",
    "type": "bar"
  },
  "width": "container"
}