{
  "$schema": "urn:prism:schema:v1:spec",
  "title": "Two charts stacked",
  "vconcat": [
    {
      "$schema": "urn:prism:schema:v1:spec",
      "data": {"values": [{"x": 1, "y": 10}, {"x": 2, "y": 20}]},
      "mark": "line",
      "encoding": {
        "x": {"field": "x", "type": "quantitative"},
        "y": {"field": "y", "type": "quantitative"}
      }
    },
    {
      "$schema": "urn:prism:schema:v1:spec",
      "data": {"values": [{"x": 1, "y": 5}, {"x": 2, "y": 7}]},
      "mark": "line",
      "encoding": {
        "x": {"field": "x", "type": "quantitative"},
        "y": {"field": "y", "type": "quantitative"}
      }
    }
  ]
}
