Skip to content

Instantly share code, notes, and snippets.

@cnstlungu
Created December 20, 2022 22:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cnstlungu/b116901eaf9ef92edf2b55148689834a to your computer and use it in GitHub Desktop.
Save cnstlungu/b116901eaf9ef92edf2b55148689834a to your computer and use it in GitHub Desktop.
Example JSON data
{
"teamName": "teamAlpha",
"location": {
"country": "USA",
"state": "NY",
"city": "New York"
},
"members": [
{
"memberName": "member1",
"age": "25",
"languageCode": "FR",
"abilities": [
"football",
"cricket",
"chess"
]
},
{
"memberName": "member2",
"age": "30",
"languageCode": "EN",
"abilities": [
"ping-pong",
"solitaire",
"chess"
]
},
{
"memberName": "member3",
"age": "21",
"languageCode": "DE",
"abilities": [
"football",
"poker",
"tennis"
]
},
{
"memberName": "member4",
"age": "26",
"languageCode": "ES",
"abilities": [
"weightlifting",
"cricket",
"swimming"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment