Skip to content

Commit 7c86eb9

Browse files
committed
Update snippets to use v0.27.0 schema. Closes #240
Closes #240
1 parent 0a41c6f commit 7c86eb9

File tree

2 files changed

+43
-39
lines changed

2 files changed

+43
-39
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Command: `dev-proxy-toolkit.config-new` - Create new configuration file
1515
- Command: `dev-proxy-toolkit.restart` - Restart Dev Proxy
1616

17+
### Changed:
18+
19+
- Snippets: Updated all snippets to use `v0.27.0` schema
20+
1721
## [0.20.0] - 2025-04-01
1822

1923
### Added:

src/snippets.json

+39-39
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"prefix": "devproxy-config-file",
44
"body": [
55
"{",
6-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/rc.schema.json\",",
6+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/rc.schema.json\",",
77
"\t\"plugins\": [",
88
"\t\t$1",
99
"\t],",
@@ -20,7 +20,7 @@
2020
"ConfigFileSchema": {
2121
"prefix": "devproxy-config-file-schema",
2222
"body": [
23-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/rc.schema.json\","
23+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/rc.schema.json\","
2424
],
2525
"description": "Dev Proxy config file schema"
2626
},
@@ -42,7 +42,7 @@
4242
"prefix": "devproxy-mocks-file",
4343
"body": [
4444
"{",
45-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockresponseplugin.mocksfile.schema.json\",",
45+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/mockresponseplugin.mocksfile.schema.json\",",
4646
"\t\"mocks\": [",
4747
"\t\t$1",
4848
"\t]",
@@ -53,7 +53,7 @@
5353
"MocksFileSchema": {
5454
"prefix": "devproxy-mocks-file-schema",
5555
"body": [
56-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockresponseplugin.mocksfile.schema.json\","
56+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/mockresponseplugin.mocksfile.schema.json\","
5757
],
5858
"description": "Dev Proxy mocks file schema"
5959
},
@@ -140,7 +140,7 @@
140140
"prefix": "devproxy-plugin-auth-config-apikey",
141141
"body": [
142142
"\"auth\": {",
143-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/authplugin.schema.json\",",
143+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/authplugin.schema.json\",",
144144
"\t\"type\": \"apiKey\",",
145145
"\t\"apiKey\": {",
146146
"\t\t\"parameters\": [",
@@ -165,7 +165,7 @@
165165
"prefix": "devproxy-plugin-auth-config-oauth2",
166166
"body": [
167167
"\"auth\": {",
168-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/authplugin.schema.json\",",
168+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/authplugin.schema.json\",",
169169
"\t\"type\": \"oauth2\",",
170170
"\t\"oauth2\": {",
171171
"\t\t\"metadataUrl\": \"https://login.microsoftonline.com/common/v2.0/.well-known/openid-configuration\",",
@@ -208,7 +208,7 @@
208208
"prefix": "devproxy-plugin-api-center-minimal-permissions-config",
209209
"body": [
210210
"\"apiCenterMinimalPermissionsPlugin\": {",
211-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/apicenterminimalpermissionsplugin.schema.json\",",
211+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/apicenterminimalpermissionsplugin.schema.json\",",
212212
"\t\"subscriptionId\": \"cdae2297-7aa6-4195-bbb1-dcd89153cc72\",",
213213
"\t\"resourceGroupName\": \"resource-group-name\",",
214214
"\t\"serviceName\": \"apic-instance\",",
@@ -233,7 +233,7 @@
233233
"prefix": "devproxy-plugin-api-center-onboarding-config",
234234
"body": [
235235
"\"apiCenterOnboardingPlugin\": {",
236-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/apicenteronboardingplugin.schema.json\",",
236+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/apicenteronboardingplugin.schema.json\",",
237237
"\t\"subscriptionId\": \"cdae2297-7aa6-4195-bbb1-dcd89153cc72\",",
238238
"\t\"resourceGroupName\": \"resource-group-name\",",
239239
"\t\"serviceName\": \"apic-instance\",",
@@ -259,7 +259,7 @@
259259
"prefix": "devproxy-plugin-api-center-production-version-config",
260260
"body": [
261261
"\"apiCenterProductionVersionPlugin\": {",
262-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/apicenterproductionversionplugin.schema.json\",",
262+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/apicenterproductionversionplugin.schema.json\",",
263263
"\t\"subscriptionId\": \"cdae2297-7aa6-4195-bbb1-dcd89153cc72\",",
264264
"\t\"resourceGroupName\": \"resource-group-name\",",
265265
"\t\"serviceName\": \"apic-instance\",",
@@ -283,7 +283,7 @@
283283
"prefix": "devproxy-plugin-caching-guidance-config",
284284
"body": [
285285
"\"cachingGuidance\": {",
286-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/cachingguidanceplugin.schema.json\",",
286+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/cachingguidanceplugin.schema.json\",",
287287
"\t\"cacheThresholdSeconds\": 5",
288288
"}"
289289
],
@@ -305,7 +305,7 @@
305305
"prefix": "devproxy-plugin-crud-api-config",
306306
"body": [
307307
"\"customersApi\": {",
308-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/crudapiplugin.schema.json\",",
308+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/crudapiplugin.schema.json\",",
309309
"\t\"apiFile\": \"customers-api.json\"",
310310
"}"
311311
],
@@ -315,7 +315,7 @@
315315
"prefix": "devproxy-plugin-crud-api-file",
316316
"body": [
317317
"{",
318-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/crudapiplugin.apifile.schema.json\",",
318+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/crudapiplugin.apifile.schema.json\",",
319319
"\t\"actions\": [",
320320
"\t\t$1",
321321
"\t],",
@@ -328,7 +328,7 @@
328328
"CrudApiPluginFileSchema": {
329329
"prefix": "devproxy-plugin-crud-api-file-schema",
330330
"body": [
331-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/crudapiplugin.apifile.schema.json\","
331+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/crudapiplugin.apifile.schema.json\","
332332
],
333333
"description": "CrudApiPlugin API file schema"
334334
},
@@ -359,7 +359,7 @@
359359
"prefix": "devproxy-plugin-dev-tools-config",
360360
"body": [
361361
"\"devTools\": {",
362-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/devtoolsplugin.schema.json\",",
362+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/devtoolsplugin.schema.json\",",
363363
"\t\"preferredBrowser\": \"Edge\"",
364364
"}"
365365
],
@@ -381,7 +381,7 @@
381381
"prefix": "devproxy-plugin-entra-mock-response-config",
382382
"body": [
383383
"\"entraMockResponsePlugin\": {",
384-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockresponseplugin.schema.json\",",
384+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/mockresponseplugin.schema.json\",",
385385
"\t\"mocksFile\": \"mocks.json\"",
386386
"}"
387387
],
@@ -402,7 +402,7 @@
402402
"prefix": "devproxy-plugin-execution-summary-config",
403403
"body": [
404404
"\"executionSummaryPlugin\": {",
405-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/executionsummaryplugin.schema.json\",",
405+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/executionsummaryplugin.schema.json\",",
406406
"\t\"groupBy\": \"url\"",
407407
"}"
408408
],
@@ -424,7 +424,7 @@
424424
"prefix": "devproxy-plugin-generic-random-error-config",
425425
"body": [
426426
"\"genericRandomErrorPlugin\": {",
427-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/genericrandomerrorplugin.schema.json\",",
427+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/genericrandomerrorplugin.schema.json\",",
428428
"\t\"errorsFile\": \"errors.json\",",
429429
"\t\"rate\": 50",
430430
"}"
@@ -435,7 +435,7 @@
435435
"prefix": "devproxy-plugin-generic-random-error-file",
436436
"body": [
437437
"{",
438-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/genericrandomerrorplugin.errorsfile.schema.json\",",
438+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/genericrandomerrorplugin.errorsfile.schema.json\",",
439439
"\t\"errors\": [",
440440
"\t\t$1",
441441
"\t]",
@@ -446,7 +446,7 @@
446446
"GenericRandomErrorPluginFileSchema": {
447447
"prefix": "devproxy-plugin-generic-random-error-file-schema",
448448
"body": [
449-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/genericrandomerrorplugin.errorsfile.schema.json\","
449+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/genericrandomerrorplugin.errorsfile.schema.json\","
450450
],
451451
"description": "GenericRandomErrorPlugin errors file schema"
452452
},
@@ -503,7 +503,7 @@
503503
"prefix": "devproxy-plugin-graph-minimal-permissions-guidance-config",
504504
"body": [
505505
"\"graphMinimalPermissionsGuidancePlugin\": {",
506-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/graphminimalpermissionsguidanceplugin.schema.json\",",
506+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/graphminimalpermissionsguidanceplugin.schema.json\",",
507507
"\t\"permissionsToIgnore\": [",
508508
"\t\t\"profile\",",
509509
"\t\t\"openid\",",
@@ -529,7 +529,7 @@
529529
"prefix": "devproxy-plugin-graph-minimal-permissions-config",
530530
"body": [
531531
"\"graphMinimalPermissionsPlugin\": {",
532-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/graphmininalpermissionsplugin.schema.json\",",
532+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/graphmininalpermissionsplugin.schema.json\",",
533533
"\t\"type\": \"delegated\"",
534534
"}"
535535
],
@@ -561,7 +561,7 @@
561561
"prefix": "devproxy-plugin-graph-mock-response-config",
562562
"body": [
563563
"\"graphMockResponsePlugin\": {",
564-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockresponseplugin.schema.json\",",
564+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/mockresponseplugin.schema.json\",",
565565
"\t\"mocksFile\": \"mocks.json\"",
566566
"}"
567567
],
@@ -592,7 +592,7 @@
592592
"prefix": "devproxy-plugin-graph-random-error-config",
593593
"body": [
594594
"\"graphRandomErrorPlugin\": {",
595-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/graphrandomerrorplugin.schema.json\",",
595+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/graphrandomerrorplugin.schema.json\",",
596596
"\t\"allowedErrors\": [ 429, 500, 502, 503, 504, 507 ]",
597597
"\t\"rate\": 50",
598598
"}"
@@ -656,7 +656,7 @@
656656
"prefix": "devproxy-plugin-http-file-generator-config",
657657
"body": [
658658
"\"httpFileGeneratorPlugin\": {",
659-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/httpfilegeneratorplugin.schema.json\",",
659+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/httpfilegeneratorplugin.schema.json\",",
660660
"\t\"includeOptionsRequests\": false",
661661
"}"
662662
],
@@ -678,7 +678,7 @@
678678
"prefix": "devproxy-plugin-latency-config",
679679
"body": [
680680
"\"latencyPlugin\": {",
681-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/latencyplugin.schema.json\",",
681+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/latencyplugin.schema.json\",",
682682
"\t\"minMs\": 200,",
683683
"\t\"maxMs\": 10000",
684684
"}"
@@ -700,7 +700,7 @@
700700
"prefix": "devproxy-plugin-minimal-csom-permissions-config",
701701
"body": [
702702
"\"minimalCsomPermissionsPlugin\": {",
703-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/minimalcsompermissionsplugin.schema.json\",",
703+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/minimalcsompermissionsplugin.schema.json\",",
704704
"\t\"typesFilePath\": \"./api-specs\"",
705705
"}"
706706
],
@@ -722,7 +722,7 @@
722722
"prefix": "devproxy-plugin-minimal-permissions-config",
723723
"body": [
724724
"\"minimalPermissionsPlugin\": {",
725-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/minimalpermissionsplugin.schema.json\",",
725+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/minimalpermissionsplugin.schema.json\",",
726726
"\t\"apiSpecsFolderPath\": \"./api-specs\"",
727727
"}"
728728
],
@@ -744,7 +744,7 @@
744744
"prefix": "devproxy-plugin-minimal-permissions-guidance-config",
745745
"body": [
746746
"\"minimalPermissionsGuidancePlugin\": {",
747-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/minimalpermissionsguidanceplugin.schema.json\",",
747+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/minimalpermissionsguidanceplugin.schema.json\",",
748748
"\t\"apiSpecsFolderPath\": \"./api-specs\"",
749749
"}"
750750
],
@@ -777,7 +777,7 @@
777777
"prefix": "devproxy-plugin-mock-request-config",
778778
"body": [
779779
"\"mockRequestPlugin\": {",
780-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockrequestplugin.schema.json\",",
780+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/mockrequestplugin.schema.json\",",
781781
"\t\"mockFile\": \"mock-request.json\"",
782782
"}"
783783
],
@@ -799,7 +799,7 @@
799799
"prefix": "devproxy-plugin-mock-response-config",
800800
"body": [
801801
"\"mockResponsePlugin\": {",
802-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockresponseplugin.schema.json\",",
802+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/mockresponseplugin.schema.json\",",
803803
"\t\"mocksFile\": \"mocks.json\"",
804804
"}"
805805
],
@@ -808,7 +808,7 @@
808808
"MockResponsePluginFileSchema": {
809809
"prefix": "devproxy-plugin-mock-response-schema",
810810
"body": [
811-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockresponseplugin.mocksfile.schema.json\","
811+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/mockresponseplugin.mocksfile.schema.json\","
812812
],
813813
"description": "MockResponsePlugin schema"
814814
},
@@ -870,7 +870,7 @@
870870
"prefix": "devproxy-plugin-open-api-spec-generator-config",
871871
"body": [
872872
"\"openApiSpecGeneratorPlugin\": {",
873-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/openapispecgeneratorplugin.schema.json\",",
873+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/openapispecgeneratorplugin.schema.json\",",
874874
"\t\"includeOptionsRequests\": false,",
875875
"\t\"specVersion\": \"v3_0\",",
876876
"\t\"specFormat\": \"Json\"",
@@ -893,7 +893,7 @@
893893
"prefix": "devproxy-plugin-rate-limiting-config",
894894
"body": [
895895
"\"rateLimiting\": {",
896-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/ratelimitingplugin.schema.json\",",
896+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/ratelimitingplugin.schema.json\",",
897897
"\t\"costPerRequest\": 2,",
898898
"\t\"rateLimit\": 120,",
899899
"\t\"retryAfterSeconds\": 5",
@@ -905,7 +905,7 @@
905905
"prefix": "devproxy-plugin-rate-limiting-file",
906906
"body": [
907907
"{",
908-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/ratelimitingplugin.customresponsefile.schema.json\",",
908+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/ratelimitingplugin.customresponsefile.schema.json\",",
909909
"\t\"body\": {",
910910
"\t\t$1",
911911
"\t},",
@@ -920,7 +920,7 @@
920920
"RateLimitingFileSchema": {
921921
"prefix": "devproxy-plugin-rate-limiting-file-schema",
922922
"body": [
923-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/ratelimitingplugin.customresponsefile.schema.json\","
923+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/ratelimitingplugin.customresponsefile.schema.json\","
924924
],
925925
"description": "Dev Proxy rate limiting file schema"
926926
},
@@ -951,7 +951,7 @@
951951
"prefix": "devproxy-plugin-rewrite-file",
952952
"body": [
953953
"{",
954-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/rewriteplugin.rewritesfile.schema.json\",",
954+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/rewriteplugin.rewritesfile.schema.json\",",
955955
"\t\"rewrites\": [",
956956
"\t\t$1",
957957
"\t]",
@@ -962,21 +962,21 @@
962962
"RewritePluginFileSchema":{
963963
"prefix": "devproxy-plugin-rewrite-file-schema",
964964
"body": [
965-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/rewriteplugin.rewritesfile.schema.json\","
965+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/rewriteplugin.rewritesfile.schema.json\","
966966
],
967967
"description": "RewritePlugin rewrites file schema"
968968
},
969969
"RewritePluginConfig":{
970970
"prefix": "devproxy-plugin-rewrite-config",
971971
"body": [
972972
"\"rewritePlugin\": {",
973-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/rewriteplugin.schema.json\",",
973+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.27.0/rewriteplugin.schema.json\",",
974974
"\t\"rewritesFile\": \"rewrites.json\"",
975975
"}"
976976
],
977977
"description": "RewritePlugin config section"
978978
},
979-
"UrlDiscoveryPlugin": {
979+
"UrlDiscoveryPlugin": {
980980
"prefix": "devproxy-plugin-url-discovery",
981981
"body": [
982982
"{",

0 commit comments

Comments
 (0)