I am trying to extract JSON into a case class using lift-json. Here is my case class:
case class Person(name: String, age: Int)
Here is the jso
Backticks allow you to use reserved names.
case class Person(name:String, age:Int, `type`:String)