Closed octomad closed 1 year ago
The collection links schema was incorrect according to the Hyperion standard. This fixes the schema so that it will validate against a payload that looks like this
{ "@id": "/users/1?offset=20&limit=10", "@type": "Collection", "@links": { "first": { "href": "https://www.example.com?limit=10", "description": "first page" }, "next": { "href": "https://www.example.com?offset=30&limit=10", "description": "next page" }, "previous": { "href": "https://www.example.com?offset=10&limit=10", "description": "previous page" }, "last": { "href": "https://www.example.com?offset=90&limit=10", "description": "last page" } } }
Lgtm
The collection links schema was incorrect according to the Hyperion standard. This fixes the schema so that it will validate against a payload that looks like this