File tree Expand file tree Collapse file tree 4 files changed +27
-1
lines changed
Expand file tree Collapse file tree 4 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ manfred-mac-0-5 https://github.com/getmanfred/mac v0.5
2626manfred-mac-0-4 https://github.com/getmanfred/mac v0.4
2727manfred-mac-0-3 https://github.com/getmanfred/mac v0.3
2828movielabs-omc-2-6 https://github.com/MovieLabs/OMC v2.6-release-1
29- krakend https://github.com/krakend/krakend-schema 197ad7860e108e7e15988f485824ca384a5fa397
29+ krakend https://github.com/krakend/krakend-schema a5d6b0459401284367333e07edb16bc1eb56f6e0
3030octue-power-curve https://github.com/octue/power-curve-schema 1.0.0.alpha-1
3131usnistgov-mgi-2022-08 https://github.com/usnistgov/mgi-json-schema e5e6aaf3f5eae0d15b88ecbd57f44cc28b035f11
3232cloudevents-1-0-0 https://github.com/cloudevents/spec v1.0
Original file line number Diff line number Diff line change 9999 "plugin/http-client" : {
100100 "$ref" : " plugin/http-client.json"
101101 },
102+ "plugin/middleware" : {
103+ "$ref" : " plugin/middleware.json"
104+ },
102105 "plugin/req-resp-modifier" : {
103106 "$ref" : " plugin/req-resp-modifier.json"
104107 },
Original file line number Diff line number Diff line change 8181 "modifier/response-body-generator" : {
8282 "$ref" : " modifier/body-generator.json"
8383 },
84+ "plugin/middleware" : {
85+ "$ref" : " plugin/middleware.json"
86+ },
8487 "plugin/req-resp-modifier" : {
8588 "$ref" : " plugin/req-resp-modifier.json"
8689 },
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " http://json-schema.org/draft-07/schema#" ,
3+ "$id" : " https://www.krakend.io/schema/v2.10/plugin/middleware.json" ,
4+ "title" : " Enterprise Only. Middleware plugins.\n\n See: https://www.krakend.io/docs/extending/injecting-plugins/" ,
5+ "type" : " object" ,
6+ "required" : [
7+ " name"
8+ ],
9+ "properties" : {
10+ "name" : {
11+ "$id" : " #plugin/middleware" ,
12+ "title" : " Plugin name" ,
13+ "description" : " An array with the names of plugins to load. The names are defined inside your plugin.\n\n See: https://www.krakend.io/docs/enterprise/extending/middleware-plugins/" ,
14+ "type" : " array" ,
15+ "items" : {
16+ "type" : " string"
17+ }
18+ }
19+ }
20+ }
You can’t perform that action at this time.
0 commit comments