Last active
October 20, 2022 10:06
-
-
Save yesoreyeram/b07cb58a92a8ecc20756a1438a831210 to your computer and use it in GitHub Desktop.
Infinity Datasource
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
name | age | country | occupation | salary | |
---|---|---|---|---|---|
Leanne Graham | 38 | USA | Devops Engineer | 3000 | |
Ervin Howell | 27 | USA | Software Engineer | 2300 | |
Clementine Bauch | 24 | Canada | Student | ||
Patricia Lebsack | 42 | UK | Software Engineer | 2800 | |
Leanne Bell | 38 | USA | Senior Software Engineer | 4000 | |
Chelsey Dietrich | 32 | USA | Software Engineer | 3500 |
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
[ | |
{ | |
"name": "Leanne Graham", | |
"age": 38, | |
"country": "USA", | |
"occupation": "Devops Engineer", | |
"salary": 3000 | |
}, | |
{ | |
"name": "Ervin Howell", | |
"age": 27, | |
"country": "USA", | |
"occupation": "Software Engineer", | |
"salary": 2300 | |
}, | |
{ | |
"name": "Clementine Bauch", | |
"age": 24, | |
"country": "Canada", | |
"occupation": "Student", | |
"salary": null | |
}, | |
{ | |
"name": "Patricia Lebsack", | |
"age": 42, | |
"country": "UK", | |
"occupation": "Software Engineer", | |
"salary": 2800 | |
}, | |
{ | |
"name": "Leanne Bell", | |
"age": 38, | |
"country": "USA", | |
"occupation": "Senior Software Engineer", | |
"salary": 4000 | |
}, | |
{ | |
"name": "Chelsey Dietrich", | |
"age": 32, | |
"country": "USA", | |
"occupation": "Software Engineer", | |
"salary": 3500 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment