By default, ObjectMapper ignores unknown properties during deserialization.
Jackson's ObjectMapper is used to convert JSON to Java objects. It gracefully handles extra properties in JSON payloads by ignoring them. In an e-commerce app, this ensures that unexpected fields in a JSON response from a shipping API don’t break the deserialization process.