Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
284
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.   "name": "max",
  3.   "age": 30,
  4.   "children": [
  5.     {
  6.       "name": "David",
  7.       "children": [
  8.         {
  9.           "name": "Jeff"
  10.         },
  11.         {
  12.           "name": "Buffy"
  13.         }
  14.       ]
  15.     },
  16.     {
  17.       "age": 27,
  18.       "name": "Sylvia",
  19.       "children": [
  20.         {
  21.           "age": 5,
  22.           "name": "Anna"
  23.         },
  24.         {
  25.           "name": "Craig"
  26.         },
  27.         {
  28.           "name": "Robin"
  29.         }
  30.       ]
  31.     }
  32.   ]
  33. }
  34.  
  35. {
  36.   "name": "max",
  37.   "age": 30,
  38.   "children": [
  39.     {
  40.       "name": "Sylvia",
  41.       "age": 27,
  42.       "children": [
  43.         {
  44.           "name": "Anna",
  45.           "age": 5
  46.         },
  47.         {
  48.           "name": "Craig"
  49.         },
  50.         {
  51.           "name": "Robin"
  52.         }
  53.       ]
  54.     },
  55.     {
  56.       "name": "David",
  57.       "children": [
  58.         {
  59.           "name": "Jeff"
  60.         },
  61.         {
  62.           "name": "Buffy"
  63.         }
  64.       ]
  65.     }
  66.   ]
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement