aboutsummaryrefslogtreecommitdiff
path: root/samples/JSON/person.json
diff options
context:
space:
mode:
Diffstat (limited to 'samples/JSON/person.json')
-rw-r--r--samples/JSON/person.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/samples/JSON/person.json b/samples/JSON/person.json
new file mode 100644
index 0000000..2624199
--- /dev/null
+++ b/samples/JSON/person.json
@@ -0,0 +1,23 @@
+{
+ "firstName": "John",
+ "lastName" : "Smith",
+ "age" : 25,
+ "address" :
+ {
+ "streetAddress": "21 2nd Street",
+ "city" : "New York",
+ "state" : "NY",
+ "postalCode" : "10021"
+ },
+ "phoneNumber":
+ [
+ {
+ "type" : "home",
+ "number": "212 555-1234"
+ },
+ {
+ "type" : "fax",
+ "number": "646 555-4567"
+ }
+ ]
+ } \ No newline at end of file