The Redfish Data Model 2025.4 documents that the Coolant property both in CoolantConnector 1.3.0 and CoolingUnit 1.5.0 should contain a "Link to a Coolant resource." of type CoolingLoop under @odata.id
https://www.dmtf.org/sites/default/files/standards/documents/DSP2046_2025.4.html#coolantconnector-130
If doing that the Redfish Interop Validator with OCP Profiles OCPLiquidCoolingBaseline.v1_0_0.json and OCPCoolantDistributionUnit.v1_0_0.json fails because missing properties
- CoolantType
- DensityKgPerCubicMeter
- SpecificHeatkJoulesPerKgK
For this kind of properties which is the right implementation?
The one from the Redfish Data Model 2025.4?
"Coolant": {
"@odata.id": "/redfish/v1/ThermalEquipment/CoolingLoops/1"
},
Or the one required from the OCP profiles?
"Coolant": {
"CoolantType": "Water",
"DensityKgPerCubicMeter": 1000,
"SpecificHeatkJoulesPerKgK": 4.18
},
The Redfish Data Model 2025.4 documents that the
Coolantproperty both inCoolantConnector 1.3.0andCoolingUnit 1.5.0should contain a "Link to a Coolant resource." of typeCoolingLoopunder@odata.idhttps://www.dmtf.org/sites/default/files/standards/documents/DSP2046_2025.4.html#coolantconnector-130
If doing that the Redfish Interop Validator with OCP Profiles
OCPLiquidCoolingBaseline.v1_0_0.jsonandOCPCoolantDistributionUnit.v1_0_0.jsonfails because missing propertiesFor this kind of properties which is the right implementation?
The one from the Redfish Data Model 2025.4?
Or the one required from the OCP profiles?