Created
June 5, 2017 23:00
-
-
Save hugot/4656fd09465dccb83972ec221f69980b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// cmd: cat dikkie.json | POST -sS "http://127.0.0.1:5984/dikkie/_bulk_docs" -c "application/json" | |
{ | |
"docs": [ | |
{ | |
"Voornaam": "Sander", | |
"id": 7064, | |
"Achternaam": "Lauridsen", | |
"Geboortedatum": "1-nov-76", | |
"Straat": "Taylorweg 70", | |
"Postcode": "5466AE", | |
"Stad": "Veghel", | |
"GewerkteUren": [ | |
{ | |
"datum": "12-feb-16", | |
"uren": 7 | |
}, | |
{ | |
"datum": "15-jul-15", | |
"uren": 7.5 | |
} | |
] | |
}, | |
{ | |
"Voornaam": "Hannah", | |
"id": 5018, | |
"Achternaam": "Lauridsen", | |
"Geboortedatum": "26-mrt-82", | |
"Straat": "Boszoom 56", | |
"Postcode": "8316BX", | |
"Stad": "Veghel", | |
"GewerkteUren": [ | |
{ | |
"datum": "28-jul-15", | |
"uren": 7 | |
} | |
] | |
}, | |
{ | |
"Voornaam": "Nicklas", | |
"id": 4001, | |
"Achternaam": "Kristensen", | |
"Geboortedatum": "2-apr-83", | |
"Straat": "Tweede Louise de Colignystraat 181", | |
"Postcode": "2595SM", | |
"Stad": "Den Haag", | |
"GewerkteUren": [ | |
{ | |
"datum": "12-jan-15", | |
"uren": 8.5 | |
}, | |
{ | |
"datum": "31-mrt-16", | |
"uren": 7 | |
}, | |
{ | |
"datum": "6-jan-16", | |
"uren": 7 | |
} | |
] | |
}, | |
{ | |
"Voornaam": "William", | |
"id": 4870, | |
"Achternaam": "Muller", | |
"Geboortedatum": "26-mrt-82", | |
"Straat": "Boszoom 56", | |
"Postcode": "8316BX", | |
"Stad": "Veghel", | |
"GewerkteUren": [ | |
{ | |
"datum": "28-jul-15", | |
"uren": 7 | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment