diff --git a/docs/Common/Enums/index.md b/docs/Common/Enums/index.md
index 40deac222..deaf31c0e 100644
--- a/docs/Common/Enums/index.md
+++ b/docs/Common/Enums/index.md
@@ -901,6 +901,7 @@
|VEHICLEDATA_WINDOWSTATUS|34||
|VEHICLEDATA_HANDSOFFSTEERING|35||
|VEHICLEDATA_SEATOCCUPANCY|36||
+|VEHICLEDATA_CLIMATEDATA|37||
### VideoStreamingProtocol
diff --git a/docs/Common/Structs/index.md b/docs/Common/Structs/index.md
index 0b17a4586..6c84de13c 100644
--- a/docs/Common/Structs/index.md
+++ b/docs/Common/Structs/index.md
@@ -1227,3 +1227,10 @@ There are no defined parameters for this struct
|seatsOccupied|Common.SeatStatus|false|array: true
minsize: 0
maxsize: 100|Seat status array containing location and whether the seats are occupied.|
|seatsBelted|Common.SeatStatus|false|array: true
minsize: 0
maxsize: 100|Seat status array containing location and whether the seats are belted.|
+### ClimateData
+
+|Name|Type|Mandatory|Additional|Description|
+|:---|:---|:--------|:---------|:----------|
+|externalTemperature|Common.Temperature|false||The external temperature in degrees celsius|
+|cabinTemperature|Common.Temperature|false||Internal ambient cabin temperature in degrees celsius|
+|atmosphericPressure|float|false|minvalue: 0
maxvalue: 2000|Current atmospheric pressure in mBar|
diff --git a/docs/VehicleInfo/GetVehicleData/index.md b/docs/VehicleInfo/GetVehicleData/index.md
index 50f9c95c6..c1a6ef53e 100644
--- a/docs/VehicleInfo/GetVehicleData/index.md
+++ b/docs/VehicleInfo/GetVehicleData/index.md
@@ -94,6 +94,7 @@ The HMI will have to update this field if the user chooses to reset this value (
|windowStatus|Boolean|false||
|handsOffSteering|Boolean|false||
|seatOccupancy|Boolean|false||
+|climateData|Boolean|false||
### Response
@@ -136,6 +137,7 @@ The HMI will have to update this field if the user chooses to reset this value (
|windowStatus|[Common.WindowStatus](../../common/structs/#windowstatus)|false|array: true
minsize: 0
maxsize: 100|
|handsOffSteering|Boolean|false||
|seatOccupancy|[Common.SeatOccupancy](../../common/structs/#seatoccupancy)|false|
+|climateData|[Common.ClimateData](../../common/structs/#climatedata)|false||
### Sequence Diagrams
diff --git a/docs/VehicleInfo/OnVehicleData/index.md b/docs/VehicleInfo/OnVehicleData/index.md
index f412fe5fa..700fe5cab 100644
--- a/docs/VehicleInfo/OnVehicleData/index.md
+++ b/docs/VehicleInfo/OnVehicleData/index.md
@@ -68,6 +68,7 @@ The HMI will have to update this field if the user chooses to reset this value (
|windowStatus|[Common.WindowStatus](../../common/structs/#windowstatus)|false|array: true
minsize: 0
maxsize: 100|
|handsOffSteering|Boolean|false||
|seatOccupancy|[Common.SeatOccupancy](../../common/structs/#seatoccupancy)|false||
+|climateData|[Common.ClimateData](../../common/structs/#climatedata)|false||
### Sequence Diagrams
diff --git a/docs/VehicleInfo/SubscribeVehicleData/index.md b/docs/VehicleInfo/SubscribeVehicleData/index.md
index 0a3ab10d2..727f21117 100644
--- a/docs/VehicleInfo/SubscribeVehicleData/index.md
+++ b/docs/VehicleInfo/SubscribeVehicleData/index.md
@@ -49,6 +49,7 @@ Purpose
|windowStatus|Boolean|false||
|handsOffSteering|Boolean|false||
|seatOccupancy|Boolean|false||
+|climateData|Boolean|false||
### Response
@@ -105,6 +106,7 @@ If multiple applications are trying to restore the same subscription, SDL should
|windowStatus|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|handsOffSteering|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|seatOccupancy|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
+|climateData|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
### Sequence Diagrams
diff --git a/docs/VehicleInfo/UnsubscribeVehicleData/index.md b/docs/VehicleInfo/UnsubscribeVehicleData/index.md
index 52c22a0f7..ff90b95ed 100644
--- a/docs/VehicleInfo/UnsubscribeVehicleData/index.md
+++ b/docs/VehicleInfo/UnsubscribeVehicleData/index.md
@@ -49,6 +49,7 @@ Purpose
|windowStatus|Boolean|false||
|handsOffSteering|Boolean|false||
|seatOccupancy|Boolean|false||
+|climateData|Boolean|false||
### Response
@@ -105,6 +106,7 @@ In the case during data resumption with multiple applications, a subscription is
|windowStatus|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|handsOffSteering|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
|seatOccupancy|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
+|climateData|[Common.VehicleDataResult](../../common/structs/#vehicledataresult)|false||
### Sequence Diagrams