-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple_weather_forecast.json
More file actions
51 lines (51 loc) · 1.29 KB
/
simple_weather_forecast.json
File metadata and controls
51 lines (51 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"data": [{
"id": "1",
"location": "New York",
"three_day_forecast": [{
"conditions": "Partly cloudy",
"day": "Monday",
"temperature": 20
}, {
"conditions": "Showers",
"day": "Tuesday",
"temperature": 22
}, {
"conditions": "Sunny",
"day": "Wednesday",
"temperature": 28
}]
}, {
"id": "2",
"location": "Paris",
"three_day_forecast": [{
"conditions": "Sunny",
"day": "Monday",
"temperature": 4
}, {
"conditions": "Cloduy",
"day": "Tuesday",
"temperature": 2
}, {
"conditions": "Snow",
"day": "Wednesday",
"temperature": 0
}]
}, {
"id": "3",
"location": "London",
"three_day_forecast": [{
"conditions": "Showers",
"day": "Monday",
"temperature": 18
}, {
"conditions": "Sunny",
"day": "Tuesday",
"temperature": 20
}, {
"conditions": "Cloduy",
"day": "Wednesday",
"temperature": 19
}]
}]
}