{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "EmployeesResponse", "type": "object", "description": "Paginated list of employee records.", "properties": { "data": { "type": "array", "description": "Array of employee records.", "items": { "$ref": "#/components/schemas/Employee" } }, "next_cursor": { "type": "string", "description": "Cursor for next page.", "example": "cursor-xyz" }, "has_more": { "type": "boolean", "description": "Whether more records exist.", "example": true } } }