Add more examples

This commit is contained in:
Abdelrahman Said 2023-06-24 03:39:45 +01:00
parent fd525e26a6
commit 5f926f060e
3 changed files with 29 additions and 1 deletions

View File

@ -1,3 +1,5 @@
# JSON Examples for testing
These examples are copied from this [page](https://www.json.org/example.html)
Most of these examples are copied from this [page](https://www.json.org/example.html)
`test_files/google_maps.json` is copied from the following [article](https://www.sitepoint.com/google-maps-json-file/)

View File

@ -0,0 +1,25 @@
{
"markers": [
{
"name": "Rixos The Palm Dubai",
"position": [
25.1212,
55.1535
],
},
{
"name": "Shangri-La Hotel",
"location": [
25.2084,
55.2719
]
},
{
"name": "Grand Hyatt",
"location": [
25.2285,
55.3273
]
}
]
}

1
test_files/test.json Normal file
View File

@ -0,0 +1 @@
{"number": 500}