in core/src/main/scala/com/gu/marley/AvroSerialisable.scala [49:53]
override def writableValue(t: Short): Any = t.toInt
override def read(x: Any): Short = x.asInstanceOf[Int].toShort
}
implicit object ByteSerialisable extends AvroSerialisable[Byte] {