mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-18 13:41:49 +03:00
a92b9abf34
* implementation work for json importers * json driver checkpoint * working on json.ParseObjectsInArray * json.ParseObjectsInArray seems to be working * checkpoint while tidying up ParseObjectsInArray * more tidy checkpoint * more tidy checkpoint 2 * tidying up ParseObjectsInArray * tidy up * code/docs cleanup * more cleanup of json driver * more cleanup of json driver * flat json import seemingly working * improvements to json driver * json writer now prints empty [] for postgres empty tables
24 lines
383 B
JSON
24 lines
383 B
JSON
{
|
|
"first name": "John",
|
|
"last name": "Smith",
|
|
"age": 25,
|
|
"address": {
|
|
"street address": "21 2nd Street",
|
|
"city": "New York",
|
|
"state": "NY",
|
|
"postal code": "10021"
|
|
},
|
|
"phone numbers": [
|
|
{
|
|
"type": "home",
|
|
"number": "212 555-1234"
|
|
},
|
|
{
|
|
"type": "fax",
|
|
"number": "646 555-4567"
|
|
}
|
|
],
|
|
"sex": {
|
|
"type": "male"
|
|
}
|
|
} |