@Fernando José Ribeiro Júnior I had to modify the notebook as follows to get it to work:
x = [[1,1,2022,1,0,6,0,2,0.344167,0.363625,0.805833,0.160446],
[2,1,2022,1,0,0,0,2,0.363478,0.353739,0.696087,0.248539],
[3,1,2022,1,0,1,1,1,0.196364,0.189405,0.437273,0.248309],
[4,1,2022,1,0,2,1,1,0.2,0.212122,0.590435,0.160296],
[5,1,2022,1,0,3,1,1,0.226957,0.22927,0.436957,0.1869]]
columns = ["day","mnth", "year", "season", "holiday", "weekday", "workingday", "weathersit", "temp", "atemp", "hum", "windspeed"]
data = [{columns[i]: v for i, v in enumerate(x_i)} for x_i in x]
request = {
"Inputs": {
"data": data
},
"GlobalParameters": 0.0 # not sure if this value matters
}
input_json = json.dumps(request)