Schema to send pending transactions to clients
This event is responsible for sending pending transactions to clients, enabling them to analyze these transactions themselves. The transactions in question are raw clearings that have not been processed for some reason, requiring review and analysis to ensure proper resolution.
Type: object
Additional properties: true
Domain: networktransactions
Event: pending-transactions
Version: 2
|
message required
Description: Contains the Clearing/Base II message in JSON format. This is different for every network.
Type: string
reason required
Description: Contains the reason the message was not processed.
Type: string
Example:
CANCELLATION
UNKNOWN
JULIAN_DATE
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Schema to send pending transactions to clients",
"description": "This event is responsible for sending pending transactions to clients, enabling them to analyze these transactions themselves. The transactions in question are raw clearings that have not been processed for some reason, requiring review and analysis to ensure proper resolution.",
"additionalProperties": true,
"required": [
"reason",
"message"
],
"properties": {
"message": {
"type": "string",
"description": "Contains the Clearing/Base II message in JSON format. This is different for every network."
},
"reason": {
"type": "string",
"description": "Contains the reason the message was not processed.",
"examples": [
"CANCELLATION",
"UNKNOWN",
"JULIAN_DATE"
]
}
}
}
Updated 9 days ago