Schema to send pending transactions to clients

This events is responsible to send pending transactions to clients be able to analyze themselves.

Type: object
Additional properties: true
Domain: networktransactions
Event: pending-transactions
Version: 1

|
message required

Description: Contains the Clearing/Base II message in JSON format. This is different for every network.
Type: object

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Schema to send pending transactions to clients",
    "description": "This events is responsible to send pending transactions to clients be able to analyze themselves.",
    "additionalProperties": true,
    "required": [
        "message"
    ],
    "properties": {
        "message": {
            "type": "object",
            "description": "Contains the Clearing/Base II message in JSON format. This is different for every network."
        }
    }
}