Example JSON file


Here you can see an example of the content of a JSON file

				{"Northwind": {
 					 "Customers": [
					    {
      						Phone: "030-0074321",	// nonstandard unquoted field name
      						'PostalCode': 12209,	// nonstandard single-quoted field name
     						"ContactName": "Maria Anders",	// standard double-quoted field name
      						"Fax": "030-0076545",
      						"Address": "Obere Str. 57",
      						"CustomerID": "ALFKI",
      						"CompanyName": "Alfreds Futterkiste",
     						"Country": "Germany",
     					 	"City": "Berlin",
      						"ContactTitle": "Sales Representative"
    					},
        				{
      						"ShipPostalCode": 87110,
      						"OrderDate": "1998-05-06",
      						"OrderID": 11077,
      						"Freight": 8.53,
     	 					"ShipRegion": "NM",
      						"RequiredDate": "1998-06-03",
      						"ShipCity": "Albuquerque",
      						"ShipCountry": "USA",
      						"EmployeeID": 1,
      						"ShipVia": 2,
      						"CustomerID": "RATTC",
      						"ShipAddress": "2817 Milton Dr.",
      						"ShipName": "Rattlesnake Canyon Grocery"
    					}
  					]
				}}