Skip to content

Commit

Permalink
add an example JSON dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Kruse committed Mar 13, 2014
1 parent 3cd368c commit f0a60fb
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions data/jsonExample.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
[
{
"id": 1,
"name": "entry1",
"description": "description of entry",
"lon": 1,
"lat": 1,
"place": "place1",
"time": "2001",
"tableContent": {
"column1":"c1value1",
"column2":"c2value1"
}
},
{
"id": 2,
"name": "entry2",
"description": "description of entry",
"lon": 2,
"lat": 2,
"place": "place2",
"time": "2002",
"tableContent": {
"column1":"c1value2",
"column2":"c2value2"
}
},
{
"id": 3,
"name": "entry1",
"description": "description of entry",
"lon": 3,
"lat": 3,
"place": "place3",
"time": "2003",
"tableContent": {
"column1":"c1value3",
"column2":"c2value3"
}
},
{
"id": 4,
"name": "entry4",
"description": "description of entry",
"lon": 4,
"lat": 4,
"place": "place4",
"time": "2004",
"tableContent": {
"column1":"c1value4",
"column2":"c2value4"
}
},
{
"id": 5,
"name": "entry5",
"description": "description of entry",
"lon": 5,
"lat": 5,
"place": "place5",
"time": "2005",
"tableContent": {
"column1":"c1value5",
"column2":"c2value5"
}
},
{
"id": 6,
"name": "entry6",
"description": "description of entry",
"lon": 6,
"lat": 6,
"place": "place6",
"time": "2006",
"tableContent": {
"column1":"c1value6",
"column2":"c2value6"
}
}
]

0 comments on commit f0a60fb

Please sign in to comment.