Spring Integration · Schema

Spring Integration Message

Represents a Spring Integration message comprising a payload and message headers

AMQPEnterprise IntegrationEvent-DrivenIntegration PatternsJavaMessagingSpring

Properties

Name Type Description
payload object The message payload - can be any type
headers object
View JSON Schema on GitHub

JSON Schema

spring-integration-message-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://spring.io/projects/spring-integration/schemas/message",
  "title": "Spring Integration Message",
  "description": "Represents a Spring Integration message comprising a payload and message headers",
  "type": "object",
  "required": ["payload"],
  "properties": {
    "payload": {
      "description": "The message payload - can be any type",
      "oneOf": [
        { "type": "string" },
        { "type": "object" },
        { "type": "array" },
        { "type": "number" },
        { "type": "boolean" }
      ]
    },
    "headers": {
      "$ref": "#/definitions/MessageHeaders"
    }
  },
  "definitions": {
    "MessageHeaders": {
      "title": "Spring Integration Message Headers",
      "description": "Standard and custom headers attached to a Spring Integration message",
      "type": "object",
      "properties": {
        "id": {
          "type": "string",
          "format": "uuid",
          "description": "Unique message identifier"
        },
        "timestamp": {
          "type": "integer",
          "description": "Message creation timestamp in milliseconds since epoch"
        },
        "contentType": {
          "type": "string",
          "description": "MIME type of the payload"
        },
        "correlationId": {
          "description": "Correlation identifier linking related messages"
        },
        "replyChannel": {
          "type": "string",
          "description": "Channel name or bean reference for sending replies"
        },
        "errorChannel": {
          "type": "string",
          "description": "Channel name or bean reference for error messages"
        },
        "sequenceNumber": {
          "type": "integer",
          "description": "Position in a split/aggregated message sequence"
        },
        "sequenceSize": {
          "type": "integer",
          "description": "Total number of messages in a sequence"
        },
        "sequenceDetails": {
          "type": "array",
          "description": "Nested sequence tracking for nested splits"
        },
        "expiration": {
          "type": "integer",
          "description": "Message expiration timestamp"
        },
        "priority": {
          "type": "integer",
          "description": "Message priority for priority queues"
        }
      },
      "additionalProperties": true
    },
    "IntegrationChannel": {
      "title": "Spring Integration Channel Statistics",
      "description": "Runtime statistics for a Spring Integration message channel",
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "Channel bean name"
        },
        "type": {
          "type": "string",
          "enum": [
            "DirectChannel",
            "QueueChannel",
            "PublishSubscribeChannel",
            "ExecutorChannel",
            "PriorityChannel",
            "RendezvousChannel",
            "NullChannel"
          ],
          "description": "Channel implementation type"
        },
        "sendCount": {
          "type": "integer",
          "format": "int64",
          "description": "Total number of successful sends"
        },
        "sendErrorCount": {
          "type": "integer",
          "format": "int64",
          "description": "Total number of failed sends"
        },
        "meanSendDuration": {
          "type": "number",
          "description": "Mean send duration in milliseconds"
        },
        "minSendDuration": {
          "type": "number"
        },
        "maxSendDuration": {
          "type": "number"
        },
        "queueSize": {
          "type": "integer",
          "description": "Current queue depth (for QueueChannel)"
        },
        "remainingCapacity": {
          "type": "integer",
          "description": "Remaining queue capacity"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/spring-integration-message"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.