Skip to content

Instantly share code, notes, and snippets.

@nickgartmann
Created February 17, 2015 19:17
Show Gist options
  • Save nickgartmann/4a6a31c1951101e05421 to your computer and use it in GitHub Desktop.
Save nickgartmann/4a6a31c1951101e05421 to your computer and use it in GitHub Desktop.
{
"name": "Tappr",
"plugins": [],
"resources": {
"user": {
"plugins": ["authentication", "social-auth"],
"attributes": {
"email": "string",
"password": "string"
},
"relationships": {
"orders": "has_many",
"invoices": "has_many",
"favorite_drink": "has_one"
}
},
"order": {
"relationships": {
"users": "belongs_to",
"drinks": "has_many"
}
},
"invoice": {
"relationships": {
"orders": "belongs_to",
"users": "belongs_to"
}
},
"drink": {
"attributes": {
"email": "string",
"password": "string"
},
"relationships": {}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment