The mapper call is as follows:
String sampleJson; //sample string
PojoClass data = mapper.readValue(sampleJson, PojoClass.class);
The following error is thrown for the isDeleted field:
com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "isDeleted"
at com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException.from(UnrecognizedPropertyException.java:60)
at com.fasterxml.jackson.databind.DeserializationContext.handleUnknownProperty(DeserializationContext.java:823)
at com.fasterxml.jackson.databind.deser.std.StdDeserializer.handleUnknownProperty(StdDeserializer.java:1153)
...