```java public class Foo { @JsonProperty("baz") public String bar; public Foo(String bar) { this.bar = bar; } } ``` Suppose I have a DTO `Foo`, the asyncapi.yaml generated by the scanner defines `Foo` as follows: ```yaml Foo: type: "object" properties: bar: type: "string" ``` Which is incorrect since `bar` should be (de)serialized into `baz` Version: 0.2.2