Errors in swagger documentation
For most of our resources we create a links-list in the response. In the swagger documentation of this list it says that the tag is called _links, this is wrong. The correct links-list has a tag: links and has a list of objects with a rel and a href, like this:
"links": [
{
"rel": "self",
"href": "http://api.ambita.com/eps/***"
},
{
"rel": "ettellerannet",
"href": "http://api.ambita.com/eps/***"
},
{
"rel": "ettellerannet2",
"href": "http://api.ambita.com/eps/***"
}
]