{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ActivityLogPaginatedResponse", "title": "ActivityLogPaginatedResponse", "type": "object", "description": "Response shape for paginated activity log endpoints.", "properties": { "results": { "type": "array", "items": { "$ref": "#/components/schemas/ActivityLogEntry" } }, "next": { "type": "string", "format": "uri", "nullable": true }, "previous": { "type": "string", "format": "uri", "nullable": true }, "total_count": { "type": "integer" } }, "required": [ "next", "previous", "results", "total_count" ] }