We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b87344 commit cdcba93Copy full SHA for cdcba93
schemas/json/function.json
@@ -57,6 +57,10 @@
57
"direction": {
58
"type": "string",
59
"enum": [ "in", "out", "inout" ]
60
+ },
61
+ "dataType": {
62
+ "enum": [ "string", "binary", "stream" ],
63
+ "description": "The data type hint for the binding parameter (string, binary, or stream)."
64
}
65
},
66
"required": [ "name", "type", "direction" ]
@@ -182,6 +186,10 @@
182
186
"consumerGroup": {
183
187
184
188
"description": "The event hub consumer group."
189
190
+ "cardinality": {
191
+ "enum": [ "one", "many" ],
192
+ "description": "The cardinality hint for the input binding parameter (single message or array of messages)."
185
193
194
195
0 commit comments