Last active
March 3, 2017 12:53
-
-
Save raulmangolin/87a67470409728e4adf5e7fd384b705c to your computer and use it in GitHub Desktop.
Services Example
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
{ | |
"data": [ | |
{ | |
"id": 1, | |
"firstname": "Raul", | |
"lastname": "Mangolin", | |
"email": "[email protected]", | |
"position": "Developer", | |
"department": "TI", | |
"isEmployee": true, | |
"isActive": false, | |
"identification": "46.654.657", | |
"birthday": "1990-08-23", | |
"picture": "http://imageurl.com/user/1.jpg", | |
}, | |
{ | |
"id": 2, | |
"firstname": "Jose", | |
"lastname": "Silva", | |
"email": "[email protected]", | |
"position": "Developer", | |
"department": "TI", | |
"isEmployee": true, | |
"isActive": true, | |
"identification": "46.654.657", | |
"birthday": "1990-08-23", | |
"picture": "http://imageurl.com/user/2.jpg", | |
}, | |
{ | |
"id": 3, | |
"firstname": "Pablo", | |
"lastname": "Antunes", | |
"email": "[email protected]", | |
"position": "Developer", | |
"department": "TI", | |
"isEmployee": true, | |
"isActive": true, | |
"identification": "46.654.657", | |
"birthday": "1990-08-23", | |
"picture": "http://imageurl.com/user/3.jpg", | |
} | |
] | |
} |
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
{ | |
"data": [ | |
{ | |
"id": 1, | |
"firstname": "Raul", | |
"lastname": "Mangolin", | |
"email": "[email protected]", | |
"position": "Developer", | |
"department": "TI", | |
"isEmployee": true, | |
"isActive": false, | |
"identification": "46.654.657", | |
"birthday": "1990-08-23", | |
"picture": "http://imageurl.com/user/1.jpg", | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment