Last active
August 9, 2016 19:12
-
-
Save eob/47126ef0bcd9db2793b92a17dd39f4e8 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"Teams": [ | |
{ | |
"Name": "Patriots", | |
"Players": [ | |
{"Name": "Tom Brady"}, | |
{"Name": "Rob Gronkowski"} | |
] | |
}, | |
{ | |
"Name": "49ers", | |
"Players": [ | |
{"Name": "Colin Kaepernick"}, | |
{"Name": "Anthony Davis"} | |
] | |
} | |
], | |
"Players": [ | |
{"Name": "Tom Brady", "Belongs to Teams!Name": "Patriots"}, | |
{"Name": "Rob Gronkowski", "Belongs to Teams!Name": "Patriots"}, | |
{"Name": "Colin Kaepernick", "Belongs to Teams!Name": "49ers"}, | |
{"Name": "Anthony Davis", "Belongs to Teams!Name": "49ers"} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment