Created
August 20, 2013 16:21
-
-
Save tfennelly/6283728 to your computer and use it in GitHub Desktop.
REST app Model
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
{ | |
"contact": { | |
"label": "Contact", | |
"fields" : [ | |
{"name":"id", "label":"Id", "provideOn": {"read": "mandatory", "create": "exclude"}}, | |
{"name":"firstName","label":"First Name", "provideOn": {"create": "mandatory"}}, | |
{"name":"lastName", "label":"Last Name", "provideOn": {"create": "mandatory"}}, | |
{"name":"email","label":"Email", "provideOn": {"create": "mandatory"}} | |
], | |
"operations": { | |
"CREATE" : { | |
"method": "POST", | |
"url": "/service/contacts" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment