Created
April 7, 2021 03:46
-
-
Save barefeettom/3223200a1afbfbc4f1322735b980f61f to your computer and use it in GitHub Desktop.
Simplified sample JSON response from Open Weather, for article: https://medium.com/p/4ddf8710d1a0/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": 2147714, | |
"name": "Sydney", | |
"weather": [ | |
{ | |
"main": "Clouds", | |
"description": "few clouds" | |
} | |
], | |
"main": { | |
"temp": 24.56, | |
"feels_like": 24.38, | |
"temp_min": 23.33, | |
"temp_max": 26 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment