The unknown/new fields in json string throws JsonDecodingException and causes crashes.
…only if strict mode is enabled and the exception is not well handled.
You have to create a Json object with strict mode disabled:
val json = Json(
JsonConfiguration.Stable.copy(
strictMode = false
)
)