{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserPage", "title": "UserPage", "type": "object", "description": "A paginated list of users.", "properties": { "data": { "type": "array", "items": { "$ref": "#/components/schemas/User" }, "description": "The list of users.", "example": [] }, "links": { "$ref": "#/components/schemas/PaginationLinks" } } }