Created
December 12, 2016 23:30
-
-
Save eob/ee372217d79df2e39b1282d3d6813339 to your computer and use it in GitHub Desktop.
Input for Belongs to Exercise
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"} | |
] | |
} |
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" }, | |
{ "Name": "49ers" } | |
], | |
"Players": [ | |
{ | |
"Name": "Tom Brady", | |
"Has one Teams!Name": "Patriots", | |
"Teams": { | |
"Name": "Patriots" | |
} | |
}, | |
{ | |
"Name": "Rob Gronkowski", | |
"Has one Teams!Name": "Patriots", | |
"Teams": { | |
"Name": "Patriots" | |
} | |
}, | |
{ | |
"Name": "Colin Kaepernick", | |
"Has one Teams!Name": "Patriots", | |
"Teams": { | |
"Name": "Patriots" | |
} | |
}, | |
{ | |
"Name": "Anthony Davis", | |
"Has one Teams!Name": "Patriots", | |
"Teams": { | |
"Name": "Patriots" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment