namespace ZB.MOM.WW.OtOpcUa.Driver.Mqtt;
///
/// How a Plain-mode MQTT tag's payload is decoded. See
/// docs/plans/2026-07-15-mqtt-sparkplug-driver-design.md ยง5.3.
///
public enum MqttPayloadFormat
{
/// The payload is a JSON document; a JSONPath selects the value (jsonPath).
Json,
/// The payload bytes are used as-is (e.g. binary / opaque).
Raw,
/// The payload is a bare scalar string (e.g. "23.5"), parsed by dataType.
Scalar,
}