Actor Model · JSON Structure

Actor Model Actor Message Structure

A message to be placed in an actor's mailbox

Type: object Properties: 5
Actor ModelConcurrencyDistributed Systems

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

Properties

type payload replyTo correlationId priority

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-actor-message-structure.json",
  "title": "ActorMessage",
  "description": "A message to be placed in an actor's mailbox",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "payload": {
      "type": "object"
    },
    "replyTo": {
      "type": "string"
    },
    "correlationId": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    }
  }
}