Clearing processing non-financial message received

A Clearing raw event. This event has the same purpose as an iso8583 event, as it represents a raw message received from the card network. The Pismo platform issues a Clearing raw event regardless of message processing. You can use a Clearing event to verify all non-sensitive data received for Clearing messages.

Type: object
Additional properties: true
Domain: clearing
Event: non-financial
Version: 1

|
raw_message required

Description: Contains the ISO8583 message in JSON format. This is different for every network.
Type: object

network required

Title: Network Identifier
Description: Network that originated this clearing raw message.
Type: string
Must be one of the following:
Mastercard
Visa
Tecban
Rupay
Example:
Mastercard
Visa
Tecban
Rupay

type required

Title: Transaction Type
Description: Type of the transaction being delivered
Type: string
Must be one of the following:
TC10
TC20
Example:
TC10
TC20

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Clearing processing non-financial message received",
    "description": "A Clearing raw event.  This event has the same purpose as an iso8583 event, as it represents a raw message received from the card network. The Pismo platform issues a Clearing raw event regardless of message processing. You can use a Clearing event to verify all non-sensitive data received for Clearing messages.",
    "additionalProperties": true,
    "required": [
        "raw_message",
        "network",
        "type"
    ],
    "properties": {
        "raw_message": {
            "type": "object",
            "description": "Contains the ISO8583 message in JSON format. This is different for every network."
        },
        "network": {
            "title": "Network Identifier",
            "description": "Network that originated this clearing raw message.",
            "type": [
                "string"
            ],
            "enum": [
                "Mastercard",
                "Visa",
                "Tecban",
                "Rupay"
            ],
            "examples": [
                "Mastercard",
                "Visa",
                "Tecban",
                "Rupay"
            ]
        },
        "type": {
            "title": "Transaction Type",
            "description": "Type of the transaction being delivered",
            "type": [
                "string"
            ],
            "enum": [
                "TC10",
                "TC20"
            ],
            "examples": [
                "TC10",
                "TC20"
            ]
        }
    }
}