Step 1: Identify standard hypermedia link structure
Hypermedia links are usually grouped under a "links" key with named relations like "self" and "next".
Step 2: Compare options to standard
{"data": {...}, "links": {"self": "/items/1", "next": "/items/2"}} uses "links" with "self" and "next" keys, matching common hypermedia patterns like HAL or JSON API.
Final Answer:
{"data": {...}, "links": {"self": "/items/1", "next": "/items/2"}} -> Option A
Quick Check:
Hypermedia links use "links" with relation names [OK]
Quick Trick:Look for "links" key with "self" and "next" [OK]
Common Mistakes:
MISTAKES
Using generic keys like "url" or "endpoint"
Not grouping links under a "links" object
Using singular "link" instead of plural
Master "HATEOAS and Linking" in Rest API
9 interactive learning modes - each teaches the same concept differently