Skip to content

Commit 3fb8eb0

Browse files
committed
Adding 'methods' property to HTTP trigger schema
1 parent 8c3b4d2 commit 3fb8eb0

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

schemas/json/function.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,24 @@
227227
"admin"
228228
],
229229
"description": "The function HTTP authorization level."
230+
},
231+
"methods":{
232+
"type":"array",
233+
"items": [
234+
{
235+
"type": "string",
236+
"enum": [
237+
"get",
238+
"post",
239+
"delete",
240+
"head",
241+
"patch",
242+
"put",
243+
"options",
244+
"trace"
245+
]
246+
}
247+
]
230248
}
231249
},
232250
"allOf": [

0 commit comments

Comments
 (0)