Actor Model · JSON Structure

Actor Model Cluster Member Structure

A node in the actor system cluster

Type: object Properties: 6
Actor ModelConcurrencyDistributed Systems

Actor Model Cluster Member Structure is a JSON Structure definition published by Actor Model, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

nodeId address status roles upSince actorCount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://structure.api-evangelist.com/actor-model/actor-model-cluster-member-structure.json",
  "title": "ClusterMember",
  "description": "A node in the actor system cluster",
  "type": "object",
  "properties": {
    "nodeId": {
      "type": "string"
    },
    "address": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "roles": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "upSince": {
      "type": "string"
    },
    "actorCount": {
      "type": "integer"
    }
  }
}