You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/lib/schema/__merged.json
+69-69Lines changed: 69 additions & 69 deletions
Original file line number
Diff line number
Diff line change
@@ -2026,6 +2026,29 @@
2026
2026
"description": "Timeout duration to wait for consuming defined events (ISO 8601 duration format)",
2027
2027
"minLength": 1
2028
2028
},
2029
+
"errordef": {
2030
+
"type": "object",
2031
+
"properties": {
2032
+
"name": {
2033
+
"type": "string",
2034
+
"description": "Domain-specific error name",
2035
+
"minLength": 1
2036
+
},
2037
+
"code": {
2038
+
"type": "string",
2039
+
"description": "Error code. Can be used in addition to the name to help runtimes resolve to technical errors/exceptions. Should not be defined if error is set to '*'",
2040
+
"minLength": 1
2041
+
},
2042
+
"description": {
2043
+
"type": "string",
2044
+
"description": "Error description"
2045
+
}
2046
+
},
2047
+
"additionalProperties": false,
2048
+
"required": [
2049
+
"name"
2050
+
]
2051
+
},
2029
2052
"eventdef": {
2030
2053
"type": "object",
2031
2054
"properties": {
@@ -2113,12 +2136,46 @@
2113
2136
"contextAttributeName"
2114
2137
]
2115
2138
},
2116
-
"metadata": {
2139
+
"function": {
2117
2140
"type": "object",
2118
-
"description": "Metadata information",
2119
-
"additionalProperties": {
2120
-
"type": "string"
2121
-
}
2141
+
"properties": {
2142
+
"name": {
2143
+
"type": "string",
2144
+
"description": "Unique function name",
2145
+
"minLength": 1
2146
+
},
2147
+
"operation": {
2148
+
"type": "string",
2149
+
"description": "If type is `rest`, <path_to_openapi_definition>#<operation_id>. If type is `asyncapi`, <path_to_asyncapi_definition>#<operation_id>. If type is `rpc`, <path_to_grpc_proto_file>#<service_name>#<service_method>. If type is `graphql`, <url_to_graphql_endpoint>#<literal \\\"mutation\\\" or \\\"query\\\">#<query_or_mutation_name>. If type is `odata`, <URI_to_odata_service>#<Entity_Set_Name>. If type is `expression`, defines the workflow expression.",
2150
+
"minLength": 1
2151
+
},
2152
+
"type": {
2153
+
"type": "string",
2154
+
"description": "Defines the function type. Is either `rest`, `asyncapi, `rpc`, `graphql`, `odata`, or `expression`. Default is `rest`",
2155
+
"enum": [
2156
+
"rest",
2157
+
"asyncapi",
2158
+
"rpc",
2159
+
"graphql",
2160
+
"odata",
2161
+
"expression"
2162
+
],
2163
+
"default": "rest"
2164
+
},
2165
+
"authRef": {
2166
+
"type": "string",
2167
+
"description": "References an auth definition name to be used to access to resource defined in the operation parameter",
2168
+
"minLength": 1
2169
+
},
2170
+
"metadata": {
2171
+
"$ref": "#/definitions/metadata"
2172
+
}
2173
+
},
2174
+
"additionalProperties": false,
2175
+
"required": [
2176
+
"name",
2177
+
"operation"
2178
+
]
2122
2179
},
2123
2180
"retrydef": {
2124
2181
"type": "object",
@@ -2205,7 +2262,7 @@
2205
2262
},
2206
2263
{
2207
2264
"title": "Bearer Auth Info State",
2208
-
"$ref": "#/definitions/beareripropsdef"
2265
+
"$ref": "#/definitions/bearerpropsdef"
2209
2266
},
2210
2267
{
2211
2268
"title": "OAuth2 Info",
@@ -2251,7 +2308,7 @@
2251
2308
}
2252
2309
]
2253
2310
},
2254
-
"beareripropsdef": {
2311
+
"bearerpropsdef": {
2255
2312
"oneOf": [
2256
2313
{
2257
2314
"type": "string",
@@ -2366,69 +2423,12 @@
2366
2423
}
2367
2424
]
2368
2425
},
2369
-
"errordef": {
2370
-
"type": "object",
2371
-
"properties": {
2372
-
"name": {
2373
-
"type": "string",
2374
-
"description": "Domain-specific error name",
2375
-
"minLength": 1
2376
-
},
2377
-
"code": {
2378
-
"type": "string",
2379
-
"description": "Error code. Can be used in addition to the name to help runtimes resolve to technical errors/exceptions. Should not be defined if error is set to '*'",
2380
-
"minLength": 1
2381
-
},
2382
-
"description": {
2383
-
"type": "string",
2384
-
"description": "Error description"
2385
-
}
2386
-
},
2387
-
"additionalProperties": false,
2388
-
"required": [
2389
-
"name"
2390
-
]
2391
-
},
2392
-
"function": {
2426
+
"metadata": {
2393
2427
"type": "object",
2394
-
"properties": {
2395
-
"name": {
2396
-
"type": "string",
2397
-
"description": "Unique function name",
2398
-
"minLength": 1
2399
-
},
2400
-
"operation": {
2401
-
"type": "string",
2402
-
"description": "If type is `rest`, <path_to_openapi_definition>#<operation_id>. If type is `asyncapi`, <path_to_asyncapi_definition>#<operation_id>. If type is `rpc`, <path_to_grpc_proto_file>#<service_name>#<service_method>. If type is `graphql`, <url_to_graphql_endpoint>#<literal \\\"mutation\\\" or \\\"query\\\">#<query_or_mutation_name>. If type is `odata`, <URI_to_odata_service>#<Entity_Set_Name>. If type is `expression`, defines the workflow expression.",
2403
-
"minLength": 1
2404
-
},
2405
-
"type": {
2406
-
"type": "string",
2407
-
"description": "Defines the function type. Is either `rest`, `asyncapi, `rpc`, `graphql`, `odata`, or `expression`. Default is `rest`",
2408
-
"enum": [
2409
-
"rest",
2410
-
"asyncapi",
2411
-
"rpc",
2412
-
"graphql",
2413
-
"odata",
2414
-
"expression"
2415
-
],
2416
-
"default": "rest"
2417
-
},
2418
-
"authRef": {
2419
-
"type": "string",
2420
-
"description": "References an auth definition name to be used to access to resource defined in the operation parameter",
0 commit comments