Last active
November 27, 2025 01:31
-
-
Save charlenopires/f35953789e4bdee668da6c472590f6bd to your computer and use it in GitHub Desktop.
JSON de Exemplo para Aulas
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
| { | |
| "cotacoes": [ | |
| { | |
| "moeda": "Dólar Americano/Real Brasileiro", | |
| "codigo": "USD-BRL", | |
| "valor": 5.3307, | |
| "data_hora": "2025-11-26 19:28:35" | |
| }, | |
| { | |
| "moeda": "Euro/Real Brasileiro", | |
| "codigo": "EUR-BRL", | |
| "valor": 6.17665, | |
| "data_hora": "2025-11-26 19:18:45" | |
| }, | |
| { | |
| "moeda": "Bitcoin/Real Brasileiro", | |
| "codigo": "BTC-BRL", | |
| "valor": 483747.0, | |
| "data_hora": "2025-11-26 20:18:48" | |
| } | |
| ] | |
| } |
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
| { | |
| "pokemons": [ | |
| { | |
| "id": 1, | |
| "name": "bulbasaur", | |
| "height": 7, | |
| "weight": 69, | |
| "types": [ | |
| "grass", | |
| "poison" | |
| ], | |
| "abilities": [ | |
| "overgrow", | |
| "chlorophyll" | |
| ] | |
| }, | |
| { | |
| "id": 2, | |
| "name": "ivysaur", | |
| "height": 10, | |
| "weight": 130, | |
| "types": [ | |
| "grass", | |
| "poison" | |
| ], | |
| "abilities": [ | |
| "overgrow", | |
| "chlorophyll" | |
| ] | |
| }, | |
| { | |
| "id": 3, | |
| "name": "venusaur", | |
| "height": 20, | |
| "weight": 1000, | |
| "types": [ | |
| "grass", | |
| "poison" | |
| ], | |
| "abilities": [ | |
| "overgrow", | |
| "chlorophyll" | |
| ] | |
| }, | |
| { | |
| "id": 4, | |
| "name": "charmander", | |
| "height": 6, | |
| "weight": 85, | |
| "types": [ | |
| "fire" | |
| ], | |
| "abilities": [ | |
| "blaze", | |
| "solar-power" | |
| ] | |
| }, | |
| { | |
| "id": 5, | |
| "name": "charmeleon", | |
| "height": 11, | |
| "weight": 190, | |
| "types": [ | |
| "fire" | |
| ], | |
| "abilities": [ | |
| "blaze", | |
| "solar-power" | |
| ] | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment