SAP Integration Suite · Schema
SAP Message Processing Log
Schema for a message processing log entry in SAP Cloud Integration
API ManagementCloud IntegrationEnterprise IntegrationEvent MeshiPaaSSAPSAP BTP
Properties
| Name | Type | Description |
|---|---|---|
| MessageGuid | string | Unique GUID identifier for the message processing log entry |
| CorrelationId | string | Correlation ID linking related messages across a process |
| ApplicationMessageId | string | Application-level message identifier |
| ApplicationMessageType | string | Type classification of the application message |
| LogStart | string | ISO 8601 timestamp when message processing started |
| LogEnd | string | ISO 8601 timestamp when message processing ended |
| Sender | string | Sending system, adapter, or channel identifier |
| Receiver | string | Receiving system, adapter, or channel identifier |
| IntegrationFlowName | string | Name of the integration flow that processed the message |
| Status | string | Current processing status of the message |
| LogLevel | string | Verbosity level of the log entry |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/sap-integration-suite/json-schema/sap-integration-suite-message-processing-log-schema.json",
"title": "SAP Message Processing Log",
"description": "Schema for a message processing log entry in SAP Cloud Integration",
"type": "object",
"properties": {
"MessageGuid": {
"type": "string",
"description": "Unique GUID identifier for the message processing log entry"
},
"CorrelationId": {
"type": "string",
"description": "Correlation ID linking related messages across a process"
},
"ApplicationMessageId": {
"type": "string",
"description": "Application-level message identifier"
},
"ApplicationMessageType": {
"type": "string",
"description": "Type classification of the application message"
},
"LogStart": {
"type": "string",
"description": "ISO 8601 timestamp when message processing started",
"format": "date-time"
},
"LogEnd": {
"type": "string",
"description": "ISO 8601 timestamp when message processing ended",
"format": "date-time"
},
"Sender": {
"type": "string",
"description": "Sending system, adapter, or channel identifier"
},
"Receiver": {
"type": "string",
"description": "Receiving system, adapter, or channel identifier"
},
"IntegrationFlowName": {
"type": "string",
"description": "Name of the integration flow that processed the message"
},
"Status": {
"type": "string",
"description": "Current processing status of the message",
"enum": ["COMPLETED", "FAILED", "PROCESSING", "RETRY", "ESCALATED", "DISCARDED", "ABANDONED"]
},
"LogLevel": {
"type": "string",
"description": "Verbosity level of the log entry",
"enum": ["INFO", "DEBUG", "TRACE", "ERROR"]
}
},
"required": ["MessageGuid", "Status"]
}