Skip to content

Instantly share code, notes, and snippets.

@driscollwebdev
Last active December 11, 2015 01:59
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 driscollwebdev/4527699 to your computer and use it in GitHub Desktop.
Save driscollwebdev/4527699 to your computer and use it in GitHub Desktop.
Structured data
{
"FirstName" : "Brian",
"LastName" : "Driscoll",
"Age" : 33,
"Children" : [
{
"FirstName" : "Mae",
"LastName" : "Driscoll",
"Age" : 2
},
{
"FirstName" : "Joon",
"LastName" : "Driscoll",
"Age" : 2
}
],
}
<Person>
<FirstName>Brian</FirstName>
<LastName>Driscoll</LastName>
<Age>33</Age>
<Children>
<Person>
<FirstName>Mae</FirstName>
<LastName>Driscoll</LastName>
<Age>2</Age>
</Person>
<Person>
<FirstName>Joon</FirstName>
<LastName>Driscoll</LastName>
<Age>2</Age>
</Person>
</Children>
</Person>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment