Last active
February 26, 2019 01:04
-
-
Save edujtm/2e8bcfcc8d7de0fb3477113b8138a7bc to your computer and use it in GitHub Desktop.
A sample bulbasaur json from the pokeapi that I'm trying to parse using Gson
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": 1, | |
"species": { | |
"name": "bulbasaur", | |
"someUrl": "https://pokeapi.co/api/v2/pokemon-species/bulbasaur/", | |
}, | |
"height": 7, | |
"stats": [ | |
{ | |
"power": 10, | |
"someUrl": "https://pokeapi.co/api/v2/power/", | |
}, | |
{ | |
"agility": 5, | |
"someUrl": "https://pokeapi.co/api/v2/agility/" | |
}, | |
/* other objects */ | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment