Module PerfEvent.Json

type t = [
  1. | `Int of int
  2. | `String of string
  3. | `Assoc of (string * t) list
  4. | `List of t list
]

only what we need for now