“Foo: {
"properties": {
"id": {
"description": “Foo Object (ID)”,
"type": "string"
},
We currently get:
@JsonProperty(“foo”)
@JsonPropertyDescription(“Foo Object (ID)”)
private String foo;
Can we get the pojo mapper to generate this instead for us:
@JsonProperty(“foo”)
@JsonPropertyDescription(“Foo Object (ID)”)
private Foo foo;