According to the examples in the spec, top level links (using templates) can include meta data: ``` json { "links": { "posts.author": { "href": "http://example.com/people/{posts.author}", "type": "people" } } } ``` Can links in the document include this, too? ``` json { "posts": [{ "links": { "author": { "href": "http://example.com/people/dhh", "type": "people" } } }] } ```