Montran · Schema

ValidateRequest

Request to validate a message

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
format string
messageType string
content string
View JSON Schema on GitHub

JSON Schema

montran-validaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValidateRequest",
  "title": "ValidateRequest",
  "type": "object",
  "description": "Request to validate a message",
  "required": [
    "format",
    "messageType",
    "content"
  ],
  "properties": {
    "format": {
      "type": "string",
      "enum": [
        "SWIFT_FIN",
        "ISO20022",
        "PROPRIETARY"
      ]
    },
    "messageType": {
      "type": "string"
    },
    "content": {
      "type": "string"
    }
  }
}