Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created August 13, 2019 19:42
Show Gist options
  • Save ahmetkucukoglu/bc4a3e504aef5021493fdfc47ad2aaba to your computer and use it in GitHub Desktop.
Save ahmetkucukoglu/bc4a3e504aef5021493fdfc47ad2aaba to your computer and use it in GitHub Desktop.
Serverless RESTful API on AWS
{
"definitions": {},
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "UpdateRequestModel",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"price": {
"type": "number"
}
},
"required": [
"name",
"description",
"price"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment