Created
August 13, 2019 19:42
-
-
Save ahmetkucukoglu/bc4a3e504aef5021493fdfc47ad2aaba to your computer and use it in GitHub Desktop.
Serverless RESTful API on AWS
This file contains hidden or 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
{ | |
"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