Actor Model · Schema

SupervisorList

Paginated list of supervisors

Actor ModelConcurrencyDistributed Systems

Properties

Name Type Description
supervisors array
total integer Total supervisor count
cursor string Cursor for next page
View JSON Schema on GitHub

JSON Schema

actor-model-supervisor-list-schema.json Raw ↑
{
  "$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"
    }
  }
}