JSON Question

JSON Question

Hi,

in XML you can do somethign like this:

  1. <xml>
  2.   <persons>
  3.     <person>
  4.       <name>a</name>
  5.       <lastname>b</lastname>
  6.     </person>
  7.     <person>
  8.       <name>c</name>
  9.       <lastname>d</lastname>
  10.     </person>
  11.     <person>
  12.       <name>e</name>
  13.       <lastname>f</lastname>
  14.     </person>
  15.   </persons>
  16.   <endresult>
  17.     <result>122938</result>
  18.   </endresult>
  19. </xml>

Is this in JSON possible too?