-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathcatalog.json
More file actions
9712 lines (9712 loc) · 403 KB
/
catalog.json
File metadata and controls
9712 lines (9712 loc) · 403 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"$schema": "https://json.schemastore.org/schema-catalog.json",
"version": 1,
"schemas": [
{
"name": "revola.json",
"description": "Configuration file for Revola",
"fileMatch": [
".revola.json",
".revola.config.json",
"revola.json",
"revola.config.json"
],
"url": "https://www.schemastore.org/revola.json"
},
{
"name": "Hashgraph Online Skill Manifest",
"description": "Manifest for Hashgraph Online Registry Broker skill packages",
"fileMatch": [
"**/.hol/skill.json",
"**/hol/skill.json",
"hol-skill.json"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/hashgraph-online/skill-publish/main/schemas/skill.schema.json"
},
{
"name": "release-hub.json",
"description": "Configuration file for Release Hub",
"fileMatch": [
".release-hub.json",
".release-hub.config.json",
"release-hub.json",
"release-hub.config.json"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/teneplaysofficial/release-hub/main/schema/release-hub.schema.json"
},
{
"name": "ReleaseKit",
"description": "Configuration for ReleaseKit release automation",
"fileMatch": ["releasekit.config.json"],
"url": "https://goosewobbler.github.io/releasekit/schema.json"
},
{
"name": "Releasaurus Config",
"description": "Configuration file for Releasaurus",
"fileMatch": ["releasaurus.toml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/robgonnella/releasaurus/refs/heads/main/schema/schema.json"
},
{
"name": "Bacon config",
"description": "Bacon configuration file",
"fileMatch": ["bacon.toml", "**/bacon/prefs.toml"],
"url": "https://dystroy.org/bacon/.bacon.schema.json"
},
{
"name": "Upsun config",
"description": "Upsun configuration file",
"fileMatch": ["**/.upsun/config.yml", "**/.upsun/config.yaml"],
"url": "https://meta.upsun.com/schema/upsun"
},
{
"name": "Platform.sh application",
"description": "Platform.sh application configuration file",
"fileMatch": [
".platform.app.yml",
".platform.app.yaml",
"**/.platform.app.yml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/platformsh/platformify/refs/heads/main/validator/schema/platformsh.application.json"
},
{
"name": "Platform.sh routes",
"description": "Platform.sh routes configuration file",
"fileMatch": ["**/.platform/routes.yml", "**/.platform/routes.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/platformsh/platformify/refs/heads/main/validator/schema/platformsh.routes.json"
},
{
"name": "Platform.sh services",
"description": "Platform.sh services configuration file",
"fileMatch": ["**/.platform/services.yml", "**/.platform/services.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/platformsh/platformify/refs/heads/main/validator/schema/platformsh.services.json"
},
{
"name": "1Password SSH Agent Config",
"description": "Configuration file for the 1Password SSH agent",
"fileMatch": ["**/1password/ssh/agent.toml"],
"url": "https://developer.1password.com/schema/ssh-agent-config.json"
},
{
"name": "Application Accelerator",
"description": "Application Accelerator for VMware Tanzu",
"fileMatch": ["accelerator.yaml"],
"url": "https://www.schemastore.org/accelerator.json"
},
{
"name": "amplify.yml",
"description": "AWS Amplify Console build settings file",
"fileMatch": ["amplify.yml", "amplify.yaml"],
"url": "https://www.schemastore.org/amplify.json"
},
{
"name": "Applicant Profile Protocol",
"description": "Structured JSON format for professional profiles, resumes, and CVs with skills, experience, education, and certifications",
"fileMatch": ["*.app.json"],
"url": "https://app-protocol.org/schema/app-1.0.json"
},
{
"name": "gRPC API Gateway & OpenAPI Config",
"description": "Config file for gRPC API Gateway & OpenAPI v3.1 generation",
"fileMatch": [
"grpc_api_gateway.yaml",
"grpc_api_gateway.yml",
"grpc_api_gateway.json",
"*_gateway.yml",
"*_gateway.yaml",
"*_gateway.json",
"*_openapi.yml",
"*_openapi.yaml",
"*_openapi.json"
],
"url": "https://www.schemastore.org/grpc-api-gateway.json"
},
{
"name": ".NET Aspire 8.0 Manifest",
"description": "Manifest generated by .NET Aspire AppHosts to support deployment automation",
"fileMatch": ["aspire-manifest.json"],
"url": "https://www.schemastore.org/aspire-8.0.json",
"versions": {
"8.0": "https://www.schemastore.org/aspire-8.0.json"
}
},
{
"name": "AnyWork Automation Configuration",
"description": "AnyWork Automation Configuration used to configure automation scripts on AnyWork",
"fileMatch": [".awc.yaml", ".awc.yml", ".awc.json", ".awc.jsonc", ".awc"],
"url": "https://www.schemastore.org/anywork-ac-1.1.json",
"versions": {
"1.0": "https://www.schemastore.org/anywork-ac-1.0.json"
}
},
{
"name": "@factorial/drupal-breakpoints-css",
"description": "@factorial/drupal-breakpoints-css config file",
"fileMatch": ["breakpoints.config.yml"],
"url": "https://www.schemastore.org/factorial-drupal-breakpoints-css-0.2.0.json"
},
{
"name": ".adonisrc.json",
"description": "AdonisJS configuration file",
"fileMatch": [".adonisrc.json"],
"url": "https://github.com/_ext/raw.githubusercontent.com/adonisjs/application/master/adonisrc.schema.json"
},
{
"name": "aerleon.yml",
"description": "Aerleon configuration file",
"fileMatch": ["aerleon.yml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/aerleon/aerleon/main/schemas/aerleon-config.schema.json"
},
{
"name": "Aerleon Network & Service Definitions",
"description": "Aerleon network & service definition file",
"fileMatch": ["**/def/**/*.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/aerleon/aerleon/main/schemas/aerleon-definitions.schema.json"
},
{
"name": "Aerleon Policy",
"description": "Aerleon policy file",
"fileMatch": ["**/policies/**/*.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/aerleon/aerleon/main/schemas/aerleon-policies.schema.json"
},
{
"name": ".agripparc.json",
"description": "the Agrippa config file",
"fileMatch": [".agripparc.json", "agripparc.json"],
"url": "https://www.schemastore.org/agripparc-1.4.json",
"versions": {
"1.2": "https://www.schemastore.org/agripparc-1.2.json",
"1.3": "https://www.schemastore.org/agripparc-1.3.json",
"1.4": "https://www.schemastore.org/agripparc-1.4.json"
}
},
{
"name": "Air",
"description": "R formatter and language server",
"fileMatch": ["air.toml", ".air.toml"],
"url": "https://github.com/posit-dev/air/releases/latest/download/air.schema.json"
},
{
"name": ".aiproj.json",
"description": "Settings for project analysis by the Application Inspector",
"fileMatch": [".aiproj.json"],
"url": "https://www.schemastore.org/aiproj-1.9.json",
"versions": {
"1.0": "https://www.schemastore.org/aiproj-1.0.json",
"1.1": "https://www.schemastore.org/aiproj-1.1.json",
"1.2": "https://www.schemastore.org/aiproj-1.2.json",
"1.3": "https://www.schemastore.org/aiproj-1.3.json",
"1.4": "https://www.schemastore.org/aiproj-1.4.json",
"1.5": "https://www.schemastore.org/aiproj-1.5.json",
"1.6": "https://www.schemastore.org/aiproj-1.6.json",
"1.7": "https://www.schemastore.org/aiproj-1.7.json",
"1.8": "https://www.schemastore.org/aiproj-1.8.json",
"1.9": "https://www.schemastore.org/aiproj-1.9.json"
}
},
{
"name": "ABCInventoryModuleData",
"description": "ABCInventoryModuleData defining the structure of ABCInventoryModuleData including Principal Data, inventory, and transaction data in ABC-Plan's Inventory Management Module",
"fileMatch": ["abc-inventory-module-data-*.json"],
"url": "https://www.schemastore.org/abc-inventory-module-data-5.2.0.json",
"versions": {
"1.0.0": "https://www.schemastore.org/abc-inventory-module-data-1.0.0.json",
"2.0.0": "https://www.schemastore.org/abc-inventory-module-data-2.0.0.json",
"3.0.0": "https://www.schemastore.org/abc-inventory-module-data-3.0.0.json",
"4.0.0": "https://www.schemastore.org/abc-inventory-module-data-4.0.0.json",
"5.1.0": "https://www.schemastore.org/abc-inventory-module-data-5.1.0.json",
"5.2.0": "https://www.schemastore.org/abc-inventory-module-data-5.2.0.json"
}
},
{
"name": "ABCClinicalDemandForecast",
"description": "ABCClinicalDemandForecast defining the structure of clinical trial demand forecasting data in ABC-Plan",
"fileMatch": ["abc-clinical-demand-forecast-*.json"],
"url": "https://www.schemastore.org/abc-clinical-demand-forecast-1.0.0.json",
"versions": {
"1.0.0": "https://www.schemastore.org/abc-clinical-demand-forecast-1.0.0.json"
}
},
{
"name": "ABCSupplyPlan",
"description": "ABCSupplyPlan representing all the state for performing inventory optimization and expiry analysis in ABC-Plan MasterPlanner",
"fileMatch": ["abc-supply-plan-*.json"],
"url": "https://www.schemastore.org/abc-supply-plan-12.0.0.json",
"versions": {
"1.0.0": "https://www.schemastore.org/abc-supply-plan-1.0.0.json",
"2.0.0": "https://www.schemastore.org/abc-supply-plan-2.0.0.json",
"3.0.0": "https://www.schemastore.org/abc-supply-plan-3.0.0.json",
"4.0.0": "https://www.schemastore.org/abc-supply-plan-4.0.0.json",
"5.0.0": "https://www.schemastore.org/abc-supply-plan-5.0.0.json",
"6.0.0": "https://www.schemastore.org/abc-supply-plan-6.0.0.json",
"7.0.0": "https://www.schemastore.org/abc-supply-plan-7.0.0.json",
"8.0.0": "https://www.schemastore.org/abc-supply-plan-8.0.0.json",
"9.0.0": "https://www.schemastore.org/abc-supply-plan-9.0.0.json",
"10.0.0": "https://www.schemastore.org/abc-supply-plan-10.0.0.json",
"10.1.0": "https://www.schemastore.org/abc-supply-plan-10.1.0.json",
"11.0.0": "https://www.schemastore.org/abc-supply-plan-11.0.0.json",
"11.1.0": "https://www.schemastore.org/abc-supply-plan-11.1.0.json",
"11.2.0": "https://www.schemastore.org/abc-supply-plan-11.2.0.json",
"11.3.0": "https://www.schemastore.org/abc-supply-plan-11.3.0.json",
"11.4.0": "https://www.schemastore.org/abc-supply-plan-11.4.0.json",
"12.0.0": "https://www.schemastore.org/abc-supply-plan-12.0.0.json"
}
},
{
"name": "ACP Attempts",
"description": "AI Context Protocol debug session tracking file",
"fileMatch": ["**/.acp/acp.attempts.json", "acp.attempts.json"],
"url": "https://acp-protocol.dev/schemas/v1/attempts.schema.json"
},
{
"name": "ACP Cache File",
"description": "AI Context Protocol cache file format for storing indexed codebase metadata",
"fileMatch": [".acp.cache.json"],
"url": "https://acp-protocol.dev/schemas/v1/cache.schema.json"
},
{
"name": "ACP Configuration File",
"description": "AI Context Protocol configuration file for project-level settings",
"fileMatch": [".acp.config.json"],
"url": "https://acp-protocol.dev/schemas/v1/config.schema.json"
},
{
"name": "ACP Primer",
"description": "AI Context Protocol primer definition for AI context bootstrapping",
"fileMatch": ["primer.json", "*.primer.json", "primer.defaults.json"],
"url": "https://acp-protocol.dev/schemas/v1/primer.schema.json"
},
{
"name": "ACP Sync",
"description": "AI Context Protocol tool synchronization configuration",
"fileMatch": ["**/.acp/acp.sync.json", "acp.sync.json"],
"url": "https://acp-protocol.dev/schemas/v1/sync.schema.json"
},
{
"name": "ACP Variables File",
"description": "AI Context Protocol variables file for reusable context variables",
"fileMatch": [".acp.vars.json"],
"url": "https://acp-protocol.dev/schemas/v1/vars.schema.json"
},
{
"name": "AIConfig",
"description": "AIConfig that is used to store generative AI prompts, models and model parameters",
"fileMatch": [
"aiconfig.json",
"aiconfig.jsonc",
"*.aiconfig.json",
"*.aiconfig.jsonc",
"aiconfig.yml",
"aiconfig.yaml",
"*.aiconfig.yml",
"*.aiconfig.yaml"
],
"url": "https://www.schemastore.org/aiconfig-1.0.json"
},
{
"name": "Airlock Microgateway",
"description": "Airlock Microgateway configuration",
"fileMatch": [
"microgateway-config.yaml",
"microgateway-config.yml",
"airlock-microgateway-config.yaml",
"airlock-microgateway-config.yml"
],
"url": "https://www.schemastore.org/airlock-microgateway-3.2.json",
"versions": {
"3.0": "https://www.schemastore.org/airlock-microgateway-3.0.json",
"3.1": "https://www.schemastore.org/airlock-microgateway-3.1.json",
"3.2": "https://www.schemastore.org/airlock-microgateway-3.2.json"
}
},
{
"name": "angular.json",
"description": "Angular configuration file",
"fileMatch": ["angular.json"],
"url": "https://github.com/_ext/raw.githubusercontent.com/angular/angular-cli/master/packages/angular/cli/lib/config/workspace-schema.json"
},
{
"name": ".angular-cli.json",
"description": "Angular CLI configuration file",
"fileMatch": [".angular-cli.json", "angular-cli.json"],
"url": "https://github.com/_ext/raw.githubusercontent.com/angular/angular-cli/v10.1.6/packages/angular/cli/lib/config/schema.json"
},
{
"name": "apple-app-site-association",
"description": "Apple Universal Link, App Site Association",
"fileMatch": ["apple-app-site-association"],
"url": "https://www.schemastore.org/apple-app-site-association.json"
},
{
"name": "App config Spotify Backstage",
"description": "Spotify's Backstage App configuration for all plugins",
"fileMatch": [
"app-config.yml",
"app-config.yaml",
"app-config.local.yaml",
"app-config.local.yml",
"app-config.production.yaml",
"app-config.production.yml"
],
"url": "https://www.schemastore.org/app-config.json"
},
{
"name": "app-definition.yaml",
"description": "Appsemble app definition",
"fileMatch": ["app-definition.yaml"],
"url": "https://appsemble.app/api.json#/components/schemas/AppDefinition"
},
{
"name": ".appsemblerc.yaml",
"description": "Appsemble RC file",
"fileMatch": [".appsemblerc.yaml"],
"url": "https://gitlab.com/appsemble/appsemble/-/raw/HEAD/packages/cli/assets/appsemblerc.schema.json"
},
{
"name": "appsscript.json",
"description": "Google Apps Script manifest file",
"fileMatch": ["appsscript.json"],
"url": "https://www.schemastore.org/appsscript.json"
},
{
"name": "appsettings.json",
"description": "ASP.NET Core's configuration file",
"fileMatch": ["appsettings.json", "appsettings.*.json"],
"url": "https://www.schemastore.org/appsettings.json"
},
{
"name": "appveyor.yml",
"description": "AppVeyor CI configuration file",
"fileMatch": ["appveyor.yml"],
"url": "https://www.schemastore.org/appveyor.json"
},
{
"name": "appsettings.StormPetrel.json",
"description": "Scand.StormPetrel.Generator NuGet package appsettings.StormPetrel.json file",
"fileMatch": ["appsettings.StormPetrel.json"],
"url": "https://github.com/_ext/raw.githubusercontent.com/Scandltd/storm-petrel/main/generator/assets/appsettings.StormPetrel.Schema.json"
},
{
"name": "aqua.yaml",
"description": "aqua configuration file",
"fileMatch": [".aqua.yaml", ".aqua.yml", "aqua.yaml", "aqua.yml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/aquaproj/aqua/main/json-schema/aqua-yaml.json"
},
{
"name": "aqua-generate-registry.yaml",
"description": "aqua generate registry configuration file",
"fileMatch": ["aqua-generate-registry.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/aquaproj/aqua/main/json-schema/aqua-generate-registry.json"
},
{
"name": "aqua-policy.yaml",
"description": "aqua policy configuration file",
"fileMatch": [".aqua-policy.yaml", "aqua-policy.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/aquaproj/aqua/main/json-schema/policy.json"
},
{
"name": "registry.yaml",
"description": "aqua registry configuration file",
"fileMatch": [],
"url": "https://github.com/_ext/raw.githubusercontent.com/aquaproj/aqua/main/json-schema/registry.json"
},
{
"name": "arazzo.json",
"description": "An OpenAPI Arazzo document",
"fileMatch": ["arazzo.json", "arazzo.yml", "arazzo.yaml"],
"url": "https://www.schemastore.org/openapi-arazzo-1.X.json"
},
{
"name": "arb.json",
"description": "Application Resource Bundle",
"fileMatch": ["arb.json"],
"url": "https://github.com/_ext/raw.githubusercontent.com/google/app-resource-bundle/main/schema/arb.json"
},
{
"name": "architect.yml",
"description": "Architect.io Component",
"fileMatch": [
"architect.yml",
"architect.yaml",
"*.architect.yml",
"*.architect.yaml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/architect-team/architect-cli/main/src/dependency-manager/schema/architect.schema.json"
},
{
"name": "arc.json",
"description": "A OpenJS Architect",
"fileMatch": ["arc.json", "arc.yml", "arc.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/architect/parser/v2.3.0/arc-schema.json"
},
{
"name": "Argo CD",
"description": "Argo CD base resources",
"url": "https://github.com/_ext/raw.githubusercontent.com/argoproj/argo-schema-generator/main/schema/argo_cd_kustomize_schema.json"
},
{
"name": "Argo Events",
"description": "Argo Events Event Sources and Sensors",
"url": "https://github.com/_ext/raw.githubusercontent.com/argoproj/argo-events/master/api/jsonschema/schema.json"
},
{
"name": "Argo Workflows",
"description": "Argo Workflow configuration file",
"url": "https://github.com/_ext/raw.githubusercontent.com/argoproj/argo-workflows/master/api/jsonschema/schema.json"
},
{
"name": "artifacthub-repo.yml",
"description": "Artifact Hub repository metadata file",
"fileMatch": ["artifacthub-repo.yml"],
"url": "https://www.schemastore.org/artifacthub-repo.json"
},
{
"name": "asm-lsp",
"description": "Configuration file for asm-lsp",
"fileMatch": [".asm-lsp.toml", "asm-lsp.toml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/bergercookie/asm-lsp/master/asm-lsp_config_schema.json"
},
{
"name": "AssemblyScript",
"description": "AssemblyScript is TypeScript-like language that is compiled to WebAssembly (wasm)",
"fileMatch": ["asconfig.json"],
"url": "https://www.schemastore.org/asconfig-schema.json"
},
{
"name": "ast-grep sgconfig.yml",
"description": "ast-grep project config",
"fileMatch": ["sgconfig.yml", "sgconfig.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/ast-grep/ast-grep/main/schemas/project.json"
},
{
"name": "ast-grep rules",
"description": "ast-grep rule config",
"fileMatch": [
"**/.astgrep/rules/**/*.yaml",
"**/.astgrep/rules/**/*.yml",
"**/.ast-grep/rules/**/*.yaml",
"**/.ast-grep/rules/**/*.yml",
"**/ast-grep/rules/**/*.yaml",
"**/ast-grep/rules/**/*.yml",
"**/astgrep/rules/**/*.yaml",
"**/astgrep/rules/**/*.yml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/ast-grep/ast-grep/main/schemas/rule.json"
},
{
"name": "AsyncAPI",
"description": "AsyncAPI documentation files",
"fileMatch": ["*asyncapi*.json", "*asyncapi*.yml", "*asyncapi*.yaml"],
"url": "https://www.asyncapi.com/schema-store/all.schema-store.json"
},
{
"name": "AsyncAPI Tool File",
"description": "A validating AsyncAPI tool files",
"fileMatch": [".asyncapi-tool"],
"url": "https://github.com/_ext/raw.githubusercontent.com/asyncapi/website/master/scripts/tools/tools-schema.json"
},
{
"name": "Atmos Manifests",
"description": "Atmos Stack Manifests. Documentation: https://atmos.tools",
"fileMatch": [],
"url": "https://atmos.tools/schemas/atmos/atmos-manifest/1.0/atmos-manifest.json"
},
{
"name": "Aurora Agile Meta-Framework",
"description": "Yaml for Aurora Agile Meta-Framework",
"fileMatch": ["*.aurora.yaml", "*.aurora.yml"],
"url": "https://www.schemastore.org/aurora-1.3.json",
"versions": {
"1.0": "https://www.schemastore.org/aurora-1.0.json",
"1.1": "https://www.schemastore.org/aurora-1.1.json",
"1.2": "https://www.schemastore.org/aurora-1.2.json",
"1.3": "https://www.schemastore.org/aurora-1.3.json"
}
},
{
"name": "Avro Avsc",
"description": "Avro Avsc file",
"fileMatch": ["*.avsc"],
"url": "https://www.schemastore.org/avro-avsc.json"
},
{
"name": "Awesome Repositories",
"description": "Configuration for awesome repository catalogs with categories",
"fileMatch": [
"awesome-repositories.json",
"awesome-repositories.yaml",
"awesome-repositories.yml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/abordage/schemas/main/schemas/awesome-repositories/awesome-repositories.schema.json"
},
{
"name": "AWS AppConfig Feature Flags-v1",
"description": "AWS CDK AppConfig Feature Flags",
"fileMatch": ["*.appConfig.featureFlags.json"],
"url": "https://www.schemastore.org/aws-cdk-appconfig-featureflags-1.0.0.json"
},
{
"name": "azure.yaml",
"description": "Azure Developer CLI (azd) configuration file",
"fileMatch": ["azure.yaml", "azure.yml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json",
"versions": {
"alpha": "https://github.com/_ext/raw.githubusercontent.com/Azure/azure-dev/main/schemas/alpha/azure.yaml.json",
"1.0": "https://github.com/_ext/raw.githubusercontent.com/Azure/azure-dev/main/schemas/v1.0/azure.yaml.json"
}
},
{
"name": "Azure Container App template for defining an immutable revision",
"description": "Azure Container App template for defining an immutable revision",
"fileMatch": ["*.containerapp-template.json"],
"url": "https://www.schemastore.org/azure-containerapp-template.json"
},
{
"name": "Azure Device Update for IoT Hub import manifest",
"description": "Azure Device Update for IoT Hub import manifest",
"fileMatch": ["*.importmanifest.json"],
"url": "https://www.schemastore.org/azure-deviceupdate-import-manifest-5.0.json",
"versions": {
"4.0": "https://www.schemastore.org/azure-deviceupdate-import-manifest-4.0.json",
"5.0": "https://www.schemastore.org/azure-deviceupdate-import-manifest-5.0.json"
}
},
{
"name": "Azure Device Update for IoT Hub update manifest",
"description": "Azure Device Update for IoT Hub update manifest",
"fileMatch": ["*.updatemanifest.json"],
"url": "https://www.schemastore.org/azure-deviceupdate-update-manifest-5.json",
"versions": {
"4": "https://www.schemastore.org/azure-deviceupdate-update-manifest-4.json",
"5": "https://www.schemastore.org/azure-deviceupdate-update-manifest-5.json"
}
},
{
"name": "Azure DevOps extension manifest",
"description": "Azure DevOps extension manifest",
"url": "https://www.schemastore.org/azure-devops-extension-manifest-1.0.json",
"versions": {
"1.0": "https://www.schemastore.org/azure-devops-extension-manifest-1.0.json"
}
},
{
"name": "Azure IoT EdgeAgent deployment",
"description": "Azure IoT EdgeAgent deployment",
"url": "https://www.schemastore.org/azure-iot-edgeagent-deployment-1.1.json",
"versions": {
"1.0": "https://www.schemastore.org/azure-iot-edgeagent-deployment-1.0.json",
"1.1": "https://www.schemastore.org/azure-iot-edgeagent-deployment-1.1.json"
}
},
{
"name": "Azure IoT EdgeHub deployment",
"description": "Azure IoT EdgeHub deployment",
"url": "https://www.schemastore.org/azure-iot-edgehub-deployment-1.2.json",
"versions": {
"1.0": "https://www.schemastore.org/azure-iot-edgehub-deployment-1.0.json",
"1.1": "https://www.schemastore.org/azure-iot-edgehub-deployment-1.1.json",
"1.2": "https://www.schemastore.org/azure-iot-edgehub-deployment-1.2.json"
}
},
{
"name": "Azure IoT Edge deployment",
"description": "Azure IoT Edge deployment",
"url": "https://www.schemastore.org/azure-iot-edge-deployment-2.0.json",
"versions": {
"1.0": "https://www.schemastore.org/azure-iot-edge-deployment-1.0.json",
"1.1": "https://www.schemastore.org/azure-iot-edge-deployment-2.0.json"
}
},
{
"name": "Azure IoT Edge deployment template",
"description": "Azure IoT Edge deployment template",
"fileMatch": [
"deployment.template.json",
"deployment.debug.template.json"
],
"url": "https://www.schemastore.org/azure-iot-edge-deployment-template-4.0.json",
"versions": {
"1.0": "https://www.schemastore.org/azure-iot-edge-deployment-template-1.0.json",
"1.1": "https://www.schemastore.org/azure-iot-edge-deployment-template-2.0.json",
"1.2": "https://www.schemastore.org/azure-iot-edge-deployment-template-3.0.json",
"1.3": "https://www.schemastore.org/azure-iot-edge-deployment-template-4.0.json"
}
},
{
"name": "Azure Landing Zones Library metadata",
"description": "Azure Landing Zones Library metadata",
"fileMatch": ["alz_library_metadata.json"],
"url": "https://github.com/_ext/raw.githubusercontent.com/Azure/Azure-Landing-Zones-Library/main/schemas/library_metadata.json"
},
{
"name": "Azure Landing Zones Library policy default values",
"description": "Azure Landing Zones Library policy default values",
"fileMatch": [
"alz_policy_default_values.json",
"alz_policy_default_values.yaml",
"alz_policy_default_values.yml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/Azure/Azure-Landing-Zones-Library/main/schemas/default_policy_values.json"
},
{
"name": "Azure Landing Zones Library architecture definition",
"description": "Azure Landing Zones Library architecture definition",
"fileMatch": [
"*.alz_architecture_definition.json",
"*.alz_architecture_definition.yaml",
"*.alz_architecture_definition.yml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/Azure/Azure-Landing-Zones-Library/main/schemas/architecture_definition.json"
},
{
"name": "Azure Landing Zones Library archetype definition",
"description": "Azure Landing Zones Library archetype definition",
"fileMatch": [
"*.alz_archetype_definition.json",
"*.alz_archetype_definition.yaml",
"*.alz_archetype_definition.yml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/Azure/Azure-Landing-Zones-Library/main/schemas/archetype_definition.json"
},
{
"name": "Azure Landing Zones Library archetype override",
"description": "Azure Landing Zones Library archetype override",
"fileMatch": [
"*.alz_archetype_override.json",
"*.alz_archetype_override.yaml",
"*.alz_archetype_override.yml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/Azure/Azure-Landing-Zones-Library/main/schemas/archetype_override.json"
},
{
"name": "Barba-CV",
"description": "Deterministic CV / resume data format",
"fileMatch": ["barba-cv.json"],
"url": "https://github.com/_ext/raw.githubusercontent.com/Eurobotics-Association/barba-cv/main/schema/barba-cv.schema.json"
},
{
"name": "Biome Formatter Config",
"description": "Configuration file for the Biome formatter",
"fileMatch": ["biome.json", "biome.jsonc"],
"url": "https://biomejs.dev/schemas/latest/schema.json"
},
{
"name": "bottom configuration",
"description": "Configuration file for bottom",
"fileMatch": ["bottom.toml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/ClementTsang/bottom/main/schema/v0.10/bottom.json",
"versions": {
"nightly": "https://github.com/_ext/raw.githubusercontent.com/ClementTsang/bottom/main/schema/nightly/bottom.json",
"0.12.0": "https://github.com/_ext/raw.githubusercontent.com/ClementTsang/bottom/main/schema/v0.12.0/bottom.json",
"0.11": "https://github.com/_ext/raw.githubusercontent.com/ClementTsang/bottom/main/schema/v0.11/bottom.json",
"0.10": "https://github.com/_ext/raw.githubusercontent.com/ClementTsang/bottom/main/schema/v0.10/bottom.json",
"0.9": "https://github.com/_ext/raw.githubusercontent.com/ClementTsang/bottom/main/schema/v0.9/bottom.json"
}
},
{
"name": "buf.yaml",
"description": "buf.yaml is used to define a module. It's the primary configuration file, and is responsible for the module's name, dependencies, and lint and breaking configuration",
"fileMatch": ["buf.yaml"],
"url": "https://www.schemastore.org/buf.json"
},
{
"name": "buf.gen.yaml",
"description": "buf.gen.yaml is a configuration file used by the buf generate command to generate integration code for the languages of your choice",
"fileMatch": ["buf.gen.yaml"],
"url": "https://www.schemastore.org/buf.gen.json"
},
{
"name": "buf.lock",
"description": "buf.lock is a dependency lock file generated by buf via 'buf dep update'. It represents a single, reproducible build of the workspace's external dependencies and should never be hand-edited",
"fileMatch": ["buf.lock"],
"url": "https://www.schemastore.org/buf.lock.json"
},
{
"name": "buf.plugin.yaml",
"description": "A `buf.plugin.yaml` file captures metadata about the plugin. It includes mandatory and optional fields that are displayed on the individual plugin page and the BSR plugin. Documentation: https://buf.build/plugins",
"fileMatch": ["buf.plugin.yaml"],
"url": "https://www.schemastore.org/buf.plugin.json"
},
{
"name": "buf.policy.yaml",
"description": "buf.policy.yaml defines a policy containing lint, breaking change detection, and plugin configuration that can be shared across BSR modules",
"fileMatch": ["buf.policy.yaml"],
"url": "https://www.schemastore.org/buf.policy.json"
},
{
"name": "buf.work.yaml",
"description": "buf.work.yaml is used to define a workspace, which is an advanced local development feature. Workspaces make it possible to consolidate one or more modules into a single buildable unit. They also allow users to run buf operations across multiple modules with a single execution (such as buf lint)",
"fileMatch": ["buf.work.yaml"],
"url": "https://www.schemastore.org/buf.work.json"
},
{
"name": "cargo-mutants-config.yaml",
"description": "cargo-mutants configuration file",
"fileMatch": ["**/.cargo/mutants.toml"],
"url": "https://www.schemastore.org/cargo-mutants-config.json"
},
{
"name": "Cinnamon Spice info.json",
"description": "The 'info.json' metadata file used in Cinnamon Spice components",
"fileMatch": [],
"url": "https://www.schemastore.org/cinnamon-spice.info.json"
},
{
"name": "Cloud.gov Workshop Configuration",
"description": "Configuration for IaC managed resources in Cloud.gov Workshop",
"fileMatch": ["cg-workshop.yml", "**/cg-workshop/*.yml"],
"url": "https://workshop.cloud.gov/workshop/workshop-schemas/-/raw/main/cg-workshop.schema.json"
},
{
"name": "cmdx.yaml",
"description": "cmdx configuration file",
"fileMatch": [".cmdx.yaml", ".cmdx.yml", "cmdx.yaml", "cmdx.yml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/suzuki-shunsuke/cmdx/refs/heads/main/json-schema/cmdx.json"
},
{
"name": "CodeRabbit",
"description": "Supercharge your entire team with AI-driven contextual feedback & smart chat",
"fileMatch": [".coderabbit.yaml"],
"url": "https://coderabbit.ai/integrations/schema.v2.json"
},
{
"name": "CodeCV",
"description": "CV format specification",
"fileMatch": [
"cv.json",
"cv.yaml",
"cv.yml",
"cv.toml",
"*.cv.json",
"*.cv.yaml",
"*.cv.yml",
"*.cv.toml"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json",
"versions": {
"0.9.24": "https://github.com/_ext/raw.githubusercontent.com/codecv-co/codecv/0.9.24/cv.schema.json"
}
},
{
"name": "CodifyCLI",
"description": "Transform your workflow with Codify, the ultimate configuration as code tool designed to manage local user environments",
"fileMatch": [
"codify.json",
"codify.yaml",
"codify.json5",
"codify.jsonc",
"*.codify.json",
"*.codify.yaml",
"*.codify.json5",
"*.codify.jsonc"
],
"url": "https://github.com/_ext/raw.githubusercontent.com/codifyCLI/codify-schemas/main/src/schemastore/codify-schema.json"
},
{
"name": "CloudCannon Configuration",
"description": "Configuration file for CloudCannon, the Git-based CMS that brings visual editing to your modern tech stack, freeing developers from content tasks while empowering editors to make changes",
"fileMatch": [
"cloudcannon.config.yml",
"cloudcannon.config.yaml",
"cloudcannon.config.json",
"*.cloudcannon.config.yml",
"*.cloudcannon.config.yaml",
"*.cloudcannon.config.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-config.schema.json"
},
{
"name": "CloudCannon Configuration (Structures)",
"description": "Supporting configuration file for CloudCannon containing Structure definitions",
"fileMatch": [
"cloudcannon.structures.yml",
"cloudcannon.structures.yaml",
"cloudcannon.structures.json",
"*.cloudcannon.structures.yml",
"*.cloudcannon.structures.yaml",
"*.cloudcannon.structures.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-structures.schema.json"
},
{
"name": "CloudCannon Configuration (Inputs)",
"description": "Supporting configuration file for CloudCannon containing Input definitions",
"fileMatch": [
"cloudcannon.inputs.yml",
"cloudcannon.inputs.yaml",
"cloudcannon.inputs.json",
"*.cloudcannon.inputs.yml",
"*.cloudcannon.inputs.yaml",
"*.cloudcannon.inputs.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-inputs.schema.json"
},
{
"name": "CloudCannon Configuration (Structure Value)",
"description": "Supporting configuration file for CloudCannon containing a single Structure Value definition",
"fileMatch": [
"cloudcannon.structure-value.yml",
"cloudcannon.structure-value.yaml",
"cloudcannon.structure-value.json",
"*.cloudcannon.structure-value.yml",
"*.cloudcannon.structure-value.yaml",
"*.cloudcannon.structure-value.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-structure-value.schema.json"
},
{
"name": "CloudCannon Configuration (Snippets)",
"description": "Supporting configuration file for CloudCannon containing Snippet definitions",
"fileMatch": [
"cloudcannon.snippets.yml",
"cloudcannon.snippets.yaml",
"cloudcannon.snippets.json",
"*.cloudcannon.snippets.yml",
"*.cloudcannon.snippets.yaml",
"*.cloudcannon.snippets.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-snippets.schema.json"
},
{
"name": "CloudCannon Configuration (Snippets Imports)",
"description": "Supporting configuration file for CloudCannon containing Snippets Imports",
"fileMatch": [
"cloudcannon.snippets-imports.yml",
"cloudcannon.snippets-imports.yaml",
"cloudcannon.snippets-imports.json",
"*.cloudcannon.snippets-imports.yml",
"*.cloudcannon.snippets-imports.yaml",
"*.cloudcannon.snippets-imports.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-snippets-imports.schema.json"
},
{
"name": "CloudCannon Configuration (Snippets Definitions)",
"description": "Supporting configuration file for CloudCannon containing Snippets Definitions",
"fileMatch": [
"cloudcannon.snippets-definitions.yml",
"cloudcannon.snippets-definitions.yaml",
"cloudcannon.snippets-definitions.json",
"*.cloudcannon.snippets-definitions.yml",
"*.cloudcannon.snippets-definitions.yaml",
"*.cloudcannon.snippets-definitions.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-snippets-definitions.schema.json"
},
{
"name": "CloudCannon Configuration (Editables)",
"description": "Supporting configuration file for CloudCannon containing Editables definitions",
"fileMatch": [
"cloudcannon.editables.yml",
"cloudcannon.editables.yaml",
"cloudcannon.editables.json",
"*.cloudcannon.editables.yml",
"*.cloudcannon.editables.yaml",
"*.cloudcannon.editables.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-editables.schema.json"
},
{
"name": "CloudCannon Configuration (Collections)",
"description": "Supporting configuration file for CloudCannon containing Collections configuration",
"fileMatch": [
"cloudcannon.collections.yml",
"cloudcannon.collections.yaml",
"cloudcannon.collections.json",
"*.cloudcannon.collections.yml",
"*.cloudcannon.collections.yaml",
"*.cloudcannon.collections.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-collections.schema.json"
},
{
"name": "CloudCannon Configuration (Collection Structures)",
"description": "Supporting configuration file for CloudCannon containing Collection Structure definitions",
"fileMatch": [
"cloudcannon.schemas.yml",
"cloudcannon.schemas.yaml",
"cloudcannon.schemas.json",
"*.cloudcannon.schemas.yml",
"*.cloudcannon.schemas.yaml",
"*.cloudcannon.schemas.json"
],
"url": "https://github.com/cloudcannon/configuration-types/releases/latest/download/cloudcannon-schemas.schema.json"
},
{
"name": "Lando (landofile)",
"description": "The configuration file for a Lando app. Documentation: https://github.com/lando-community/lando-spec",
"fileMatch": [".lando.yml", ".lando.*.yml"],
"url": "https://lando-community.github.io/lando-spec/landofile-spec.json"
},
{
"name": "latexindent configuration",
"description": "Configuration file for latexindent",
"fileMatch": ["latexindent.yaml", ".latexindent.yaml"],
"url": "https://github.com/cmhughes/latexindent.pl/raw/main/documentation/latexindent-yaml-schema.json"
},
{
"name": "Lobe AI Agent",
"description": "Lobe Agents is an AI agent for LobeChat",
"fileMatch": ["lobe-agent.json"],
"url": "https://chat-agents.lobehub.com/schema/lobeAgentSchema_v1.json"
},
{
"name": "Loki",
"description": "Like Prometheus, but for logs",
"fileMatch": ["loki.yml", "loki.yaml"],
"url": "https://www.schemastore.org/loki.json"
},
{
"name": "Azure Pipelines",
"description": "Azure Pipelines YAML pipelines definition",
"fileMatch": ["azure-pipelines.yml", "azure-pipelines.yaml"],
"url": "https://github.com/_ext/raw.githubusercontent.com/microsoft/azure-pipelines-vscode/master/service-schema.json"
},
{
"name": "FasterCI Configuration",
"description": "FasterCI repository configuration file",
"fileMatch": ["**/.fasterci/config.yaml"],
"url": "https://fasterci.com/config.schema.json"
},
{
"name": "Fence configuration",
"description": "Configuration file for fence, a lightweight, container-free sandbox for running commands with network and filesystem restrictions",
"fileMatch": ["fence.json"],
"url": "https://github.com/_ext/raw.githubusercontent.com/Use-Tusk/fence/refs/heads/main/docs/schema/fence.schema.json"
},
{
"name": "Foxx Manifest",
"description": "ArangoDB Foxx service manifest file",
"fileMatch": ["manifest.json"],
"url": "https://www.schemastore.org/foxx-manifest.json"
},
{
"name": "flagd flag configuration",
"description": "Flag configuration for the OpenFeature spec compliant flagd provider",
"fileMatch": [
"flagd.json",
"flagd.yaml",
"flagd.yml",
"*.flagd.json",
"*.flagd.yaml",
"*.flagd.yml"
],
"url": "https://flagd.dev/schema/v0/flags.json",
"versions": {
"0.1.1": "https://github.com/_ext/raw.githubusercontent.com/open-feature/flagd-schemas/json/json-schema-v0.1.1/json/flagd-definitions.json",
"0.2.0": "https://github.com/_ext/raw.githubusercontent.com/open-feature/flagd-schemas/json/json-schema-v0.2.0/json/flags.json"
}
},
{
"name": "fly.io Configuration",