For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • DSX Exchange
    • Architecture
    • Pre-Deployment
    • Deployment
    • Integrator Quickstart
    • Operations
    • Authentication
    • BMS Integration
    • Validated Capabilities
  • Schema
      • Overview
          • Integration Value
          • Metadata
          • Value
      • Messages
      • Schemas
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogo
On this page
  • Channel
  • Parameters
  • Message: Point Value
  • Payload
SchemaBMS Event BusOperationsCDU

CDU Integration — Value

||View as Markdown|
Previous

Value

Next

Metadata

Publish integration values for CDU control points.

Direction: Publish (send)

Channel

BMS/v1/{integration}/Value/CDU/{pointType}/{tagPath}

Values published by integrations for CDU control points. Subscribe to cduMetadata first and read integration for the exact topic.

MQTT wildcard examples

  • All integration CDU values: BMS/v1/+/Value/CDU/#

Parameters

ParameterDescription
integrationIntegration identifier.
pointTypeIntegration-published CDU point type. Values: LiquidTemperatureSpRequest
tagPathMust match the tagPath from the corresponding BMS metadata exactly.

Message: Point Value

Content Type: application/json

Live value message. Payload envelope is identical for all point types. The semantic meaning of value is determined by the corresponding metadata message.

Payload

NameTypeRequiredDescription
valuenumber or nullYesLive reading for the point (float). May be null when the BMS has no valid reading available.
timestampintegerYesUnix timestamp in epoch milliseconds (source event time).
qualityintegerYes1 = good quality. Any other integer indicates value is not trustworthy
Example payload
1{
2 "value": 22.96215,
3 "timestamp": 1743620423000,
4 "quality": 1
5}