Skip to content

Commit 2ad0ad1

Browse files
Matt Masonmathewc
authored andcommitted
Added function-level properties to json schema
1 parent df417c8 commit 2ad0ad1

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

schemas/json/function.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,19 @@
55
"properties": {
66
"disabled": {
77
"type": "boolean",
8-
"description": "If set to true, marks the function as disabled."
8+
"description": "If set to true, marks the function as disabled (it cannot be triggered)."
9+
},
10+
"excluded": {
11+
"type": "boolean",
12+
"description": "If set to true, the function will not be loaded, compiled, or triggered."
13+
},
14+
"scriptFile": {
15+
"type": "string",
16+
"description": "Optional path to function script file."
17+
},
18+
"entryPoint": {
19+
"type": "string",
20+
"description": "Optional named entry point."
921
},
1022
"bindings": {
1123
"type": "array",

0 commit comments

Comments
 (0)