{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginationLinks", "title": "PaginationLinks", "type": "object", "properties": { "self": { "type": "object", "properties": { "href": { "type": "string", "format": "uri" } } }, "first": { "type": "object", "properties": { "href": { "type": "string", "format": "uri" } } }, "prev": { "type": "object", "properties": { "href": { "type": "string", "format": "uri" } } }, "next": { "type": "object", "properties": { "href": { "type": "string", "format": "uri" } } } } }