Skip to content

Instantly share code, notes, and snippets.

View sunitparekh's full-sized avatar

Sunit Parekh sunitparekh

View GitHub Profile
Status: 200
Total-Count: 100
Next-Page: true
Content-Type: application/json
[
{
"employeeId":123456,
"firstName": "Sunit",
"lastName": "Parekh",
@sunitparekh
sunitparekh / null-values.json
Last active April 2, 2018 17:09
JSON sample representing different responses for NULL and EMPTY values
// Response with null and empty values -- NOT RECOMMENDED, JUST FOR REPRESENTATION PURPOSE --
{
"employeeId": 12345,
"firstName": "Sunit",
"lastName": "Parekh",
"mobile": null,
"addresses": []
}