Skip to content

MQTT Message Binding v0.1.0

The MQTT message binding v0.1.0 describes properties of a message specific to the MQTT protocol. This version of the binding is a placeholder and does not define any specific properties.

Overview

This binding is used to signify message-level configurations for an MQTT message. In this legacy version, its presence is purely informational.

Message Properties

PropertyTypeRequiredDescription
bindingVersionstringNoBinding version (defaults to 0.1.0)

Example

This example shows a message defined with the legacy binding.

yaml
messages:
  userSignedUp:
    payload:
      type: object
      properties:
        displayName:
          type: string
          description: Name of the user
    bindings:
      mqtt:
        bindingVersion: '0.1.0'

Changelog

Version 0.1.0

  • Initial legacy release of the MQTT message binding.
  • The binding is a placeholder with no specific properties.