Skip to content

Instantly share code, notes, and snippets.

@ahmetkucukoglu
Created August 13, 2019 19:41
Serverless RESTful API on AWS
{
"definitions": {},
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "CreateRequestModel",
"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