Montran · Schema

TransformResponse

Result of message format transformation

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
sourceFormat string
targetFormat string
sourceMessageType string
targetMessageType string
transformedContent string Transformed message content
warnings array Transformation warnings (e.g., data truncation)
View JSON Schema on GitHub

JSON Schema

montran-transformresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransformResponse",
  "title": "TransformResponse",
  "type": "object",
  "description": "Result of message format transformation",
  "properties": {
    "sourceFormat": {
      "type": "string"
    },
    "targetFormat": {
      "type": "string"
    },
    "sourceMessageType": {
      "type": "string"
    },
    "targetMessageType": {
      "type": "string"
    },
    "transformedContent": {
      "type": "string",
      "description": "Transformed message content"
    },
    "warnings": {
      "type": "array",
      "description": "Transformation warnings (e.g., data truncation)",
      "items": {
        "type": "object",
        "properties": {
          "field": {
            "type": "string"
          },
          "message": {
            "type": "string"
          }
        }
      }
    }
  }
}