Name |
Type |
Description |
monthly.month |
int |
Month of the year (1 - February, 12 - December)
|
monthly.temperature.min |
double |
Minimum average temperature for that month in °C |
monthly.temperature.max |
double |
Maximum average temperature for that month in °C |
monthly.sun.sunrise |
int |
Time of sunrise in minutes of the day |
monthly.sun.sunset |
int |
Time of sunset in minutes of the day |
monthly.sun.daylight |
int |
Daylight duration in minutes |
BasicStartupBusiness
Name |
Type |
Description |
textual.title |
String |
Category name |
textual.sections.id[TEMPERATURES].body |
String |
Temperature description |
textual.sections.id[SUNLIGHT].body |
String |
Sunrise, sunset and daylight description |
{
"monthly": [
{
"month": 1,
"temperature": {
"min": 3.57,
"max": 8.07
},
"sun": {
"sunrise": 517,
"sunset": 1043,
"daylight": 526
}
},
{
"month": 2,
"temperature": {
"min": 3.68,
"max": 8.98
},
"sun": {
"sunrise": 480,
"sunset": 1090,
"daylight": 610
}
},
{
"month": 3,
"temperature": {
"min": 4.1,
"max": 10.11
},
"sun": {
"sunrise": 431,
"sunset": 1147,
"daylight": 716
}
},
{
"month": 4,
"temperature": {
"min": 6.19,
"max": 13.85
},
"sun": {
"sunrise": 419,
"sunset": 1243,
"daylight": 824
}
},
{
"month": 5,
"temperature": {
"min": 10.22,
"max": 18.65
},
"sun": {
"sunrise": 369,
"sunset": 1287,
"daylight": 918
}
},
{
"month": 6,
"temperature": {
"min": 14.14,
"max": 20.9
},
"sun": {
"sunrise": 348,
"sunset": 1315,
"daylight": 967
}
},
{
"month": 7,
"temperature": {
"min": 16.08,
"max": 24.85
},
"sun": {
"sunrise": 366,
"sunset": 1307,
"daylight": 941
}
},
{
"month": 8,
"temperature": {
"min": 16,
"max": 26.44
},
"sun": {
"sunrise": 406,
"sunset": 1264,
"daylight": 858
}
},
{
"month": 9,
"temperature": {
"min": 14.72,
"max": 23.41
},
"sun": {
"sunrise": 449,
"sunset": 1203,
"daylight": 754
}
},
{
"month": 10,
"temperature": {
"min": 8.41,
"max": 15.22
},
"sun": {
"sunrise": 489,
"sunset": 1136,
"daylight": 647
}
},
{
"month": 11,
"temperature": {
"min": 5.54,
"max": 10.07
},
"sun": {
"sunrise": 481,
"sunset": 1032,
"daylight": 551
}
},
{
"month": 12,
"temperature": {
"min": 2.55,
"max": 8.26
},
"sun": {
"sunrise": 517,
"sunset": 1017,
"daylight": 500
}
}
],
"textual": {
"title": "Weather",
"sections": [
{
"id": "TEMPERATURES",
"body": [
"Paris has the same average temperature as London. Warmest month is August with 26°C and coldest January with 8°C."
]
},
{
"id": "SUNLIGHT",
"body": [
"Sunrise is happening on average at 07:19, while sunset at 19:33. Average daylight is 12h 14min, which is 1 minute shorter than in London."
]
}
]
}
}