in facia-json/src/main/scala/com/gu/facia/client/models/Config.scala [112:117]
def reads(json: JsValue) = json match {
case JsString("Web") => JsSuccess(WebCollection)
case JsString("App") => JsSuccess(AppCollection)
case JsString("Any") => JsSuccess(AnyPlatform)
case other => JsError(s"Could not deserialize to a CollectionPlatform type: $other")
}