Skip to content

Instantly share code, notes, and snippets.

View jisantuc's full-sized avatar

James Santucci jisantuc

View GitHub Profile
@agemooij
agemooij / customformat.scala
Last active November 28, 2022 13:50
More advanced example of a custom spray-json format
implicit object ProductItemFormat extends RootJsonFormat[ProductItem] {
// some fields are optional so we produce a list of options and
// then flatten it to only write the fields that were Some(..)
def write(item: ProductItem) = JsObject(
List(
Some("product_number" -> item.productNumber.toJson),
item.ean.map(ean "ean" -> ean.toJson),
Some("title" -> item.title.toJson),
item.description.map(description "description" -> description.toJson),
Some("price" -> item.price.toJson),