I have JSON that needs to be converted to a Java Object. The JSONs I need to handle can look like this:
{ \"documents\": [ { \"title\": \
If you use GSON for parsing you can name your members as you want and annotate them for mapping.
@SerializedName("abstract") private String abstractText;