```ocaml module D = Decoders_yojson.Safe.Decode type metric = { name : string; values : string list } and metadata = { notices : string list } and environment = { name : string; metrics : metric list } and t = { environments : environment list; metadata : metadata } [@@deriving decoders ] ``` 