JSON

Traditional ?
Taken from http://en.wikipedia.org/wiki/JSON
Code example
data = {
  "firstName": "John",
  "lastName": "Smith",
  "address": {
    "streetAddress": "21 2nd Street",
    "city": "New York",
    "state": "NY",
    "postalCode": 10021
  },
  "phoneNumbers": [
    "212 555-1234",
    "646 555-4567"
  ]
}
data =
{ "firstName": "John"
, "lastName": "Smith"
, "address":
  { "streetAddress": "21 2nd Street"
  , "city": "New York"
  , "state": "NY"
  , "postalCode": 10021
  }
, "phoneNumbers":
  [ "212 555-1234"
  , "646 555-4567"
  ]
}

Created: 2009-03-16T02:42:06+01:00