Data issue in variable retrieve

Hi all,
I’ve noticed that for some points on the ‘sis-agrometeorological-indicators’ dataset there is an inconsistency in the data, for example, the maximum temperature is lower than the mean temperature, which is not normal!
for example, this request is an example that illustrates the problem raised :

import cdsapi

dataset = "sis-agrometeorological-indicators"
request = {
    "variable": "2m_temperature",
    "statistic": [
        "24_hour_maximum",
        "24_hour_mean",
        "24_hour_minimum"
    ],
    "year": ["2024"],
    "month": ["10"],
    "day": ["04"],
    "version": "1_1",
    "area": [46.8, 8, 46.6, 8.2]
}

client = cdsapi.Client()
client.retrieve(dataset, request).download()

Thank you