Created
October 17, 2017 16:51
-
-
Save jeftarmascarenhas/da52dd90a2fa3a37d7fcd245ea13d6bf to your computer and use it in GitHub Desktop.
Hypermedia API
This file contains 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
{ | |
"links": { | |
"self": { "href": "https://domain.com.br/v1/api/users" } | |
}, | |
"items": [ | |
{ | |
"href": "/1/profile", | |
"data": { | |
"name": "Jeftar Mascarenhas", | |
"email": "[email protected]", | |
"shortDescription": "Apenas uma rapaz latino-americado, sem dinheiro no banco." | |
}, | |
"links": [ | |
{ "rel": "settings", "href": "/1/settings" }, | |
{ "rel": "avatar", "href": "/1/images/avatar/jeftar.png" } | |
] | |
}, | |
{ | |
"href": "/2/profile", | |
"data": { | |
"name": "Kevin Sales", | |
"email": "[email protected]", | |
"shortDescription": "Jovem nub que quebra a aplicação em produção porque não faz testes." | |
}, | |
"links": [ | |
{ "rel": "settings", "href": "/2/settings" }, | |
{ "rel": "avatar", "href": "/2/images/avatar/kevin.png" } | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment