Rest API - HATEOAS and Linking
Identify the error in this HAL JSON snippet:
{
"_links": {
"self": "/orders/123",
"items": [{ "href": "/items/1" }, { "href": "/items/2" }]
}
}