Currently, when using Spring Auto REST Docs to generate response fields, all objects are flattened out into the response. For example consider these two classes:
public class Foo {
private Bar bar;
/** Returns the bar. */
public Bar getBar() {
return bar;
}
}
public class Bar {
private String name;
/** Returns the bar's name. */
public String getName() {
return name;
}
}
Response fields generated for Foo
would contain two lines for Bar
:
Path | Type | Optional | Description
bar | Object | true | Returns the bar.
bar.name | String | true | Returns the bar's name.
Is it possible for the bar
line to have type Bar
, which links to a different section in the asciidoc that lists the response fields for the Bar
type?
Looking at the code and documentation, this currently doesn't seem possible. So if it isn't, are there any plans to add something like this?