AMQP · Schema

AMQP Message

Schema describing the structure of an AMQP 0-9-1 message including properties, headers, and payload. An AMQP message consists of message properties (metadata), application headers, and a binary payload body.

AMQPAsynchronousMessage QueueMessagingMiddlewareOpen StandardPublish Subscribe

Properties

Name Type Description
properties object
headers object Application-specific headers as key-value pairs sent in the message header frame.
body object The message body content. Can be any valid JSON value or a binary payload represented as a base64-encoded string.
exchange string The exchange the message was published to.
routingKey string The routing key used when publishing the message.
mandatory boolean If true, the server will return an undeliverable message with a Return method. If false, the server silently drops the message.
immediate boolean If true, the server will return an undeliverable message if it cannot be immediately consumed. Deprecated in AMQP 0-9-1.
View JSON Schema on GitHub

JSON Schema

amqp-message.json Raw ↑
{
  "$id": "amqp-message.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AMQP Message",
  "description": "Schema describing the structure of an AMQP 0-9-1 message including properties, headers, and payload. An AMQP message consists of message properties (metadata), application headers, and a binary payload body.",
  "type": "object",
  "required": [
    "body"
  ],
  "properties": {
    "properties": {
      "$ref": "amqp-message-properties.json"
    },
    "headers": {
      "type": "object",
      "description": "Application-specific headers as key-value pairs sent in the message header frame.",
      "additionalProperties": true
    },
    "body": {
      "description": "The message body content. Can be any valid JSON value or a binary payload represented as a base64-encoded string.",
      "oneOf": [
        {
          "type": "object",
          "additionalProperties": true
        },
        {
          "type": "array"
        },
        {
          "type": "string"
        },
        {
          "type": "number"
        },
        {
          "type": "boolean"
        },
        {
          "type": "null"
        }
      ]
    },
    "exchange": {
      "type": "string",
      "description": "The exchange the message was published to."
    },
    "routingKey": {
      "type": "string",
      "description": "The routing key used when publishing the message."
    },
    "mandatory": {
      "type": "boolean",
      "description": "If true, the server will return an undeliverable message with a Return method. If false, the server silently drops the message.",
      "default": false
    },
    "immediate": {
      "type": "boolean",
      "description": "If true, the server will return an undeliverable message if it cannot be immediately consumed. Deprecated in AMQP 0-9-1.",
      "default": false
    }
  },
  "additionalProperties": false
}

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/amqp-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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