Paginated list of supervisors
{ "$schema": "https://json-schema.org/draft/2020-12", "$id": "https://schema.api-evangelist.com/actor-model/actor-model-supervisorlist-schema.json", "title": "SupervisorList", "description": "Paginated list of supervisors", "type": "object", "properties": { "supervisors": { "type": "array", "items": { "$ref": "#/components/schemas/Supervisor" } }, "total": { "type": "integer", "description": "Total supervisor count", "example": 12 }, "cursor": { "type": "string", "description": "Cursor for next page" } } }