@hoodie/account-server
Version:
Account JSON API backed by PouchDB
26 lines (25 loc) • 528 B
JSON
{
"links": {
"self": "http://localhost:80/accounts/abc1234"
},
"data": {
"id": "abc1234",
"type": "account",
"attributes": {
"username": "pat-doe",
"createdAt": "1970-01-01T00:00:00.000Z",
"signedUpAt": "1970-01-01T00:00:00.000Z"
},
"relationships": {
"profile": {
"links": {
"related": "http://localhost:80/accounts/abc1234/profile"
},
"data": {
"id": "abc1234-profile",
"type": "profile"
}
}
}
}
}