jsonapi-converter
jsonapi-converter copied to clipboard
Documentation, with focus on a comprehensive example
looking at the response example at http://jsonapi.org/ .
is there a possibility to create documentation for your jsonapi-converter that mimics the response from the 'blog' example that has the top levels 'links' and 'data' . today my entities have the following annotations
@XmlAccessorType(value = XmlAccessType.FIELD) @XmlRootElement
and JPA-annotations such as
@Id @Column(name = "UUID")
I would like to comply to the jsonapi.org-standard when serving JSON to my clients, this library would be great if I know the best practice.
-i