Rest API - HATEOAS and Linking
Find the mistake in this HAL response snippet:
{
"_embedded": {
"orders": [
{ "id": 1, "total": 100 },
{ "id": 2, "total": 150 }
]
},
"_links": {
"self": { "href": "/customers/1" }
}
}