codefornl / clarity

Clarity Case Studies
https://clarity.codefor.nl
5 stars 0 forks source link

json structure for links not HAL compliant #2

Closed milovanderlinden closed 6 years ago

milovanderlinden commented 6 years ago

According to the specifications, _links should be structured like this:

{
    "_links": {
        "self": { "href": "/example_resource" }
    }
}

Instead of

{
    "_links": {
        "self": "/example_resource"
    }
}