Skip to content

Commit 9e976e6

Browse files
committed
Update snippets to use v0.26.0 schema. Closes #227
Closes #227
1 parent 2dcea53 commit 9e976e6

File tree

2 files changed

+38
-37
lines changed

2 files changed

+38
-37
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919

2020
- Command: Refactored stop command logic
2121
- Diagnostics: Changed check to ensure at least one plugin from Error to Warning
22+
- Snippets: Updated all snippets to use `v0.26.0` schema
2223

2324
## [0.18.3] - 2025-03-03
2425

src/snippets.json

Lines changed: 37 additions & 37 deletions
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.25.0/rc.schema.json\",",
6+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/rc.schema.json\","
23+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/mockresponseplugin.mocksfile.schema.json\",",
45+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/mockresponseplugin.mocksfile.schema.json\","
56+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/authplugin.schema.json\",",
143+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/authplugin.schema.json\",",
168+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/apicenterminimalpermissionsplugin.schema.json\",",
211+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/apicenteronboardingplugin.schema.json\",",
236+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/apicenterproductionversionplugin.schema.json\",",
262+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/cachingguidanceplugin.schema.json\",",
286+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/crudapiplugin.schema.json\",",
308+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/crudapiplugin.apifile.schema.json\",",
318+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/crudapiplugin.apifile.schema.json\","
331+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/devtoolsplugin.schema.json\",",
362+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/mockresponseplugin.schema.json\",",
384+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/executionsummaryplugin.schema.json\",",
405+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/genericrandomerrorplugin.schema.json\",",
427+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/genericrandomerrorplugin.errorsfile.schema.json\",",
438+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/genericrandomerrorplugin.errorsfile.schema.json\","
449+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/graphminimalpermissionsguidanceplugin.schema.json\",",
506+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/graphmininalpermissionsplugin.schema.json\",",
532+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/mockresponseplugin.schema.json\",",
564+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/graphrandomerrorplugin.schema.json\",",
595+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/httpfilegeneratorplugin.schema.json\",",
659+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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.25.0/latencyplugin.schema.json\",",
681+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.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/refs/heads/main/schemas/v0.26.0/minimalcsompermissionsplugin.schema.json\",",
703+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/minimalcsompermissionsplugin.schema.json\",",
704704
"\t\"typesFilePath\": \"./api-specs\"",
705705
"}"
706706
],
@@ -721,7 +721,7 @@
721721
"prefix": "devproxy-plugin-minimal-permissions-config",
722722
"body": [
723723
"\"minimalPermissionsPlugin\": {",
724-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/minimalpermissionsplugin.schema.json\",",
724+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/minimalpermissionsplugin.schema.json\",",
725725
"\t\"apiSpecsFolderPath\": \"./api-specs\"",
726726
"}"
727727
],
@@ -754,7 +754,7 @@
754754
"prefix": "devproxy-plugin-mock-request-config",
755755
"body": [
756756
"\"mockRequestPlugin\": {",
757-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/mockrequestplugin.schema.json\",",
757+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockrequestplugin.schema.json\",",
758758
"\t\"mockFile\": \"mock-request.json\"",
759759
"}"
760760
],
@@ -776,7 +776,7 @@
776776
"prefix": "devproxy-plugin-mock-response-config",
777777
"body": [
778778
"\"mockResponsePlugin\": {",
779-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/mockresponseplugin.schema.json\",",
779+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockresponseplugin.schema.json\",",
780780
"\t\"mocksFile\": \"mocks.json\"",
781781
"}"
782782
],
@@ -785,7 +785,7 @@
785785
"MockResponsePluginFileSchema": {
786786
"prefix": "devproxy-plugin-mock-response-schema",
787787
"body": [
788-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/mockresponseplugin.mocksfile.schema.json\","
788+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/mockresponseplugin.mocksfile.schema.json\","
789789
],
790790
"description": "MockResponsePlugin schema"
791791
},
@@ -847,7 +847,7 @@
847847
"prefix": "devproxy-plugin-open-api-spec-generator-config",
848848
"body": [
849849
"\"openApiSpecGeneratorPlugin\": {",
850-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/openapispecgeneratorplugin.schema.json\",",
850+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/openapispecgeneratorplugin.schema.json\",",
851851
"\t\"includeOptionsRequests\": false,",
852852
"\t\"specVersion\": \"v3_0\",",
853853
"\t\"specFormat\": \"Json\"",
@@ -870,7 +870,7 @@
870870
"prefix": "devproxy-plugin-rate-limiting-config",
871871
"body": [
872872
"\"rateLimiting\": {",
873-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/ratelimitingplugin.schema.json\",",
873+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/ratelimitingplugin.schema.json\",",
874874
"\t\"costPerRequest\": 2,",
875875
"\t\"rateLimit\": 120,",
876876
"\t\"retryAfterSeconds\": 5",
@@ -882,7 +882,7 @@
882882
"prefix": "devproxy-plugin-rate-limiting-file",
883883
"body": [
884884
"{",
885-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/ratelimitingplugin.customresponsefile.schema.json\",",
885+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/ratelimitingplugin.customresponsefile.schema.json\",",
886886
"\t\"body\": {",
887887
"\t\t$1",
888888
"\t},",
@@ -897,7 +897,7 @@
897897
"RateLimitingFileSchema": {
898898
"prefix": "devproxy-plugin-rate-limiting-file-schema",
899899
"body": [
900-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/ratelimitingplugin.customresponsefile.schema.json\","
900+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/ratelimitingplugin.customresponsefile.schema.json\","
901901
],
902902
"description": "Dev Proxy rate limiting file schema"
903903
},
@@ -928,7 +928,7 @@
928928
"prefix": "devproxy-plugin-rewrite-file",
929929
"body": [
930930
"{",
931-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/rewriteplugin.rewritesfile.schema.json\",",
931+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/rewriteplugin.rewritesfile.schema.json\",",
932932
"\t\"rewrites\": [",
933933
"\t\t$1",
934934
"\t]",
@@ -939,15 +939,15 @@
939939
"RewritePluginFileSchema":{
940940
"prefix": "devproxy-plugin-rewrite-file-schema",
941941
"body": [
942-
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/rewriteplugin.rewritesfile.schema.json\","
942+
"\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/rewriteplugin.rewritesfile.schema.json\","
943943
],
944944
"description": "RewritePlugin rewrites file schema"
945945
},
946946
"RewritePluginConfig":{
947947
"prefix": "devproxy-plugin-rewrite-config",
948948
"body": [
949949
"\"rewritePlugin\": {",
950-
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.25.0/rewriteplugin.schema.json\",",
950+
"\t\"\\$schema\": \"https://raw.githubusercontent.com/dotnet/dev-proxy/main/schemas/v0.26.0/rewriteplugin.schema.json\",",
951951
"\t\"rewritesFile\": \"rewrites.json\"",
952952
"}"
953953
],

0 commit comments

Comments
 (0)