{
  "$schema": "urn:prism:schema:v1:spec",
  "data": {
    "values": [
      {"name": "Acme", "revenue": 120000, "trend": [10, 12, 9, 14, 20]},
      {"name": "Globex", "revenue": 80500, "trend": [5, 6, 4, 7, 9]},
      {"name": "Initech", "revenue": 60250, "trend": [8, 7, 6, 5, 4]},
      {"name": "Umbrella", "revenue": 204000, "trend": [15, 18, 22, 19, 25]}
    ]
  },
  "mark": {"type": "table"},
  "encoding": {
    "columns": [
      {"field": "name", "type": "nominal", "title": "Account"},
      {"field": "revenue", "type": "quantitative", "title": "Revenue", "format": "$,.0f"},
      {"field": "trend", "type": "quantitative", "mark": "sparkline", "title": "Trend"}
    ]
  }
}
