Support decorating link objects with an image attribute.[1]
- Add an optional property on
link
objects:image
- The
image
property should refer to a valid image URI
{
"collection": {
"version": "1.0",
"href": "http://example.org/navigation",
"links": [
{
"rel": "prev",
"href": "http://example.org/prev",
"prompt": "Previous Item",
"image": "http://example.org/leftarrow.png"
},
{
"rel": "next",
"href": "http://example.org/next",
"prompt": "Next Item",
"image": "http://example.org/rightarrow.png"
}
]
}
}