This commit is contained in:
Rachael Sewell 2021-06-16 13:08:24 -07:00 коммит произвёл GitHub
Родитель 83e33cc9bb
Коммит 0ae4979f41
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,7 @@
// This schema is used to validate each generated operation object at build time
module.exports = {
type: 'object',
// Every operation must have these props
required: [
@ -44,7 +45,7 @@ module.exports = {
verb: {
description: 'The HTTP method',
type: 'string',
required: ['GET', 'PUT', 'POST', 'DELETE', 'PATCH', 'HEAD']
enum: ['get', 'put', 'post', 'delete', 'patch', 'head']
},
requestPath: {
description: 'The URL path',