Skip to content

Instantly share code, notes, and snippets.

@tfennelly
Last active December 21, 2015 12:28
Show Gist options
  • Save tfennelly/6305632 to your computer and use it in GitHub Desktop.
Save tfennelly/6305632 to your computer and use it in GitHub Desktop.
{
"contact": {
"runtime": "com.foxweave.mocksaas.model.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"
},
"WEBHOOK" : {
"method": "POST",
"url": "/service/contacts/webhook"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment