Skip to content

Instantly share code, notes, and snippets.

@evmorov
Last active May 3, 2016 06:23
Show Gist options
  • Save evmorov/c53506ead49565e9a6a54c7aa123d055 to your computer and use it in GitHub Desktop.
Save evmorov/c53506ead49565e9a6a54c7aa123d055 to your computer and use it in GitHub Desktop.
For the article at medium.com
<root>
<schools>
<school>
<id>1</id>
<name>First school</name>
</school>
<school>
<id>2</id>
<name>Second school</name>
</school>
</schools>
<students>
<student>
<name>Alex</name>
<schoolId>1</schoolId>
</student>
<student>
<name>Mark</name>
<schoolId>1</schoolId>
</student>
<student>
<name>Alex</name>
<schoolId>2</schoolId>
</student>
<student>
<name>Olivia</name>
<schoolId>2</schoolId>
</student>
</students>
</root>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment