forked from SchemaStore/schemastore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalog.json
6726 lines (6726 loc) · 267 KB
/
catalog.json
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": "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://json.schemastore.org/accelerator.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://json.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://json.schemastore.org/aspire-8.0.json",
"versions": {
"8.0": "https://json.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://json.schemastore.org/anywork-ac-1.1.json",
"versions": {
"1.0": "https://json.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://json.schemastore.org/factorial-drupal-breakpoints-css-0.2.0.json"
},
{
"name": ".adonisrc.json",
"description": "AdonisJS configuration file",
"fileMatch": [".adonisrc.json"],
"url": "https://raw.githubusercontent.com/adonisjs/application/master/adonisrc.schema.json"
},
{
"name": "aerleon.yml",
"description": "Aerleon configuration file",
"fileMatch": ["aerleon.yml"],
"url": "https://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://raw.githubusercontent.com/aerleon/aerleon/main/schemas/aerleon-definitions.schema.json"
},
{
"name": "Aerleon Policy",
"description": "Aerleon policy file",
"fileMatch": ["**/policies/**/*.yaml"],
"url": "https://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://json.schemastore.org/agripparc-1.4.json",
"versions": {
"1.2": "https://json.schemastore.org/agripparc-1.2.json",
"1.3": "https://json.schemastore.org/agripparc-1.3.json",
"1.4": "https://json.schemastore.org/agripparc-1.4.json"
}
},
{
"name": ".aiproj.json",
"description": "Settings for project analysis by the Application Inspector",
"fileMatch": [".aiproj.json"],
"url": "https://json.schemastore.org/aiproj-1.3.json",
"versions": {
"1.0": "https://json.schemastore.org/aiproj-1.0.json",
"1.1": "https://json.schemastore.org/aiproj-1.1.json",
"1.2": "https://json.schemastore.org/aiproj-1.2.json",
"1.3": "https://json.schemastore.org/aiproj-1.3.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://json.schemastore.org/abc-supply-plan-3.0.0.json",
"versions": {
"1.0.0": "https://json.schemastore.org/abc-supply-plan-1.0.0.json",
"2.0.0": "https://json.schemastore.org/abc-supply-plan-2.0.0.json",
"3.0.0": "https://json.schemastore.org/abc-supply-plan-3.0.0.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://json.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://json.schemastore.org/airlock-microgateway-3.2.json",
"versions": {
"3.0": "https://json.schemastore.org/airlock-microgateway-3.0.json",
"3.1": "https://json.schemastore.org/airlock-microgateway-3.1.json",
"3.2": "https://json.schemastore.org/airlock-microgateway-3.2.json"
}
},
{
"name": "Airplane task",
"description": "Airplane tasks",
"fileMatch": ["*.task.json", "*.task.yaml", "*.task.yml"],
"url": "https://api.airplane.dev/v0/schemas/task.json"
},
{
"name": "angular.json",
"description": "Angular configuration file",
"fileMatch": ["angular.json"],
"url": "https://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://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://json.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://json.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://json.schemastore.org/appsscript.json"
},
{
"name": "appsettings.json",
"description": "ASP.NET Core's configuration file",
"fileMatch": ["appsettings.json", "appsettings.*.json"],
"url": "https://json.schemastore.org/appsettings.json"
},
{
"name": "appveyor.yml",
"description": "AppVeyor CI configuration file",
"fileMatch": ["appveyor.yml"],
"url": "https://json.schemastore.org/appveyor.json"
},
{
"name": "architect.yml",
"description": "Architect.io Component",
"fileMatch": [
"architect.yml",
"architect.yaml",
"*.architect.yml",
"*.architect.yaml"
],
"url": "https://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://raw.githubusercontent.com/architect/parser/v2.3.0/arc-schema.json"
},
{
"name": "Argo Events",
"description": "Argo Events Event Sources and Sensors",
"url": "https://raw.githubusercontent.com/argoproj/argo-events/master/api/jsonschema/schema.json"
},
{
"name": "Argo Workflows",
"description": "Argo Workflow configuration file",
"url": "https://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://json.schemastore.org/artifacthub-repo.json"
},
{
"name": "asm-lsp",
"description": "Configuration file for asm-lsp",
"fileMatch": [".asm-lsp.toml", "asm-lsp.toml"],
"url": "https://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://json.schemastore.org/asconfig-schema.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://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://json.schemastore.org/aurora-1.1.json",
"versions": {
"1.0": "https://json.schemastore.org/aurora-1.0.json",
"1.1": "https://json.schemastore.org/aurora-1.1.json"
}
},
{
"name": "Avro Avsc",
"description": "Avro Avsc file",
"fileMatch": ["*.avsc"],
"url": "https://json.schemastore.org/avro-avsc.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://json.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://json.schemastore.org/azure-deviceupdate-import-manifest-5.0.json",
"versions": {
"4.0": "https://json.schemastore.org/azure-deviceupdate-import-manifest-4.0.json",
"5.0": "https://json.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://json.schemastore.org/azure-deviceupdate-update-manifest-5.json",
"versions": {
"4": "https://json.schemastore.org/azure-deviceupdate-update-manifest-4.json",
"5": "https://json.schemastore.org/azure-deviceupdate-update-manifest-5.json"
}
},
{
"name": "Azure DevOps extension manifest",
"description": "Azure DevOps extension manifest",
"url": "https://json.schemastore.org/azure-devops-extension-manifest-1.0.json",
"versions": {
"1.0": "https://json.schemastore.org/azure-devops-extension-manifest-1.0.json"
}
},
{
"name": "Azure IoT EdgeAgent deployment",
"description": "Azure IoT EdgeAgent deployment",
"url": "https://json.schemastore.org/azure-iot-edgeagent-deployment-1.1.json",
"versions": {
"1.0": "https://json.schemastore.org/azure-iot-edgeagent-deployment-1.0.json",
"1.1": "https://json.schemastore.org/azure-iot-edgeagent-deployment-1.1.json"
}
},
{
"name": "Azure IoT EdgeHub deployment",
"description": "Azure IoT EdgeHub deployment",
"url": "https://json.schemastore.org/azure-iot-edgehub-deployment-1.2.json",
"versions": {
"1.0": "https://json.schemastore.org/azure-iot-edgehub-deployment-1.0.json",
"1.1": "https://json.schemastore.org/azure-iot-edgehub-deployment-1.1.json",
"1.2": "https://json.schemastore.org/azure-iot-edgehub-deployment-1.2.json"
}
},
{
"name": "Azure IoT Edge deployment",
"description": "Azure IoT Edge deployment",
"url": "https://json.schemastore.org/azure-iot-edge-deployment-2.0.json",
"versions": {
"1.0": "https://json.schemastore.org/azure-iot-edge-deployment-1.0.json",
"1.1": "https://json.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://json.schemastore.org/azure-iot-edge-deployment-template-4.0.json",
"versions": {
"1.0": "https://json.schemastore.org/azure-iot-edge-deployment-template-1.0.json",
"1.1": "https://json.schemastore.org/azure-iot-edge-deployment-template-2.0.json",
"1.2": "https://json.schemastore.org/azure-iot-edge-deployment-template-3.0.json",
"1.3": "https://json.schemastore.org/azure-iot-edge-deployment-template-4.0.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://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 architecture definition",
"fileMatch": [
"*.alz_archetype_definition.json",
"*.alz_archetype_definition.yaml",
"*.alz_archetype_definition.yml"
],
"url": "https://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://raw.githubusercontent.com/Azure/Azure-Landing-Zones-Library/main/schemas/archetype_override.json"
},
{
"name": "bottom configuration",
"description": "Configuration file for bottom",
"fileMatch": ["bottom.toml"],
"url": "https://raw.githubusercontent.com/ClementTsang/bottom/main/schema/v0.10/bottom.json",
"versions": {
"nightly": "https://raw.githubusercontent.com/ClementTsang/bottom/main/schema/nightly/bottom.json",
"0.10": "https://raw.githubusercontent.com/ClementTsang/bottom/main/schema/v0.10/bottom.json",
"0.9": "https://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://json.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://json.schemastore.org/buf.gen.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://json.schemastore.org/buf.plugin.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://json.schemastore.org/buf.work.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://raw.githubusercontent.com/hexagonkt/codecv/master/cv.schema.json",
"versions": {
"0.9.9": "https://raw.githubusercontent.com/hexagonkt/codecv/0.9.9/cv.schema.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://json.schemastore.org/loki.json"
},
{
"name": "Azure Pipelines",
"description": "Azure Pipelines YAML pipelines definition",
"fileMatch": ["azure-pipelines.yml", "azure-pipelines.yaml"],
"url": "https://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": "Foxx Manifest",
"description": "ArangoDB Foxx service manifest file",
"fileMatch": ["manifest.json"],
"url": "https://json.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://raw.githubusercontent.com/open-feature/flagd-schemas/json/json-schema-v0.1.1/json/flagd-definitions.json",
"0.2.0": "https://raw.githubusercontent.com/open-feature/flagd-schemas/json/json-schema-v0.2.0/json/flags.json"
}
},
{
"name": "fly.io Configuration",
"description": "fly.io, a cloud provider, configuration",
"fileMatch": ["fly.toml"],
"url": "https://json.schemastore.org/fly.json"
},
{
"name": "Freifunk.de Community API",
"description": "Freifunk.de Community API. Documentation: https://github.com/freifunk/directory.api.freifunk.net",
"fileMatch": ["*.freifunk-api.json"],
"url": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.5.2.json",
"versions": {
"development": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/development.json",
"0.1": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.1.json",
"0.2.0": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.2.0.json",
"0.4.9": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.4.9.json",
"0.4.10": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.4.10.json",
"0.4.11": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.4.11.json",
"0.4.12": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.4.12.json",
"0.4.13": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.4.13.json",
"0.4.14": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.4.14.json",
"0.4.15": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.4.15.json",
"0.4.16": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.4.16.json",
"0.5.0": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.5.0.json",
"0.5.1": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.5.1.json",
"0.5.2": "https://raw.githubusercontent.com/freifunk/api.freifunk.net/master/specs/0.5.2.json"
}
},
{
"name": "Frogbot Config",
"description": "The Frogbot configuration required to scan Git repositories",
"fileMatch": ["frogbot-config.yml"],
"url": "https://raw.githubusercontent.com/jfrog/frogbot/master/schema/frogbot-schema.json"
},
{
"name": ".asmdef",
"description": "Unity 3D assembly definition file",
"fileMatch": ["*.asmdef"],
"url": "https://json.schemastore.org/asmdef.json"
},
{
"name": "babelrc.json",
"description": "Babel configuration file",
"fileMatch": [".babelrc", ".babelrc.json", "babel.config.json"],
"url": "https://json.schemastore.org/babelrc.json"
},
{
"name": ".backportrc.json",
"description": "Backport configuration file",
"fileMatch": [".backportrc.json"],
"url": "https://json.schemastore.org/backportrc.json"
},
{
"name": "batect.yml",
"description": "Batect configuration file",
"fileMatch": ["batect.yml", "batect-bundle.yml"],
"url": "https://ide-integration.batect.dev/v1/configSchema.json"
},
{
"name": "bamboo-spec",
"description": "The Bamboo Specs allows you to define Bamboo configuration as code, and have corresponding plans/deployments created or updated automatically in Bamboo",
"fileMatch": ["**/bamboo-specs/*.yaml", "**/bamboo-specs/*.yml"],
"url": "https://json.schemastore.org/bamboo-spec.json"
},
{
"name": "beef-database-codegen",
"description": "Beef (Business Entity Execution Framework) database code-generation configuration",
"fileMatch": [
"database.beef.yaml",
"database.beef.yml",
"database.beef.json"
],
"url": "https://raw.githubusercontent.com/Avanade/Beef/master/tools/Beef.CodeGen.Core/Schema/database.beef.json"
},
{
"name": "beef-entity-codegen",
"description": "Beef (Business Entity Execution Framework) entity code-generation configuration",
"fileMatch": [
"entity.beef.yaml",
"entity.beef.yml",
"entity.beef.json",
"refdata.beef.yaml",
"refdata.beef.yml",
"refdata.beef.json",
"datamodel.beef.yaml",
"datamodel.beef.yml",
"datamodel.beef.json"
],
"url": "https://raw.githubusercontent.com/Avanade/Beef/master/tools/Beef.CodeGen.Core/Schema/entity.beef.json"
},
{
"name": "beef-database-v5-codegen",
"description": "Beef (Business Entity Execution Framework) database code-generation configuration (v5)",
"fileMatch": [
"database.beef-5.yaml",
"database.beef-5.yml",
"database.beef-5.json",
"*.database.beef-5.yaml",
"*.database.beef-5.yml",
"*.database.beef-5.json"
],
"url": "https://raw.githubusercontent.com/Avanade/Beef/master/tools/Beef.CodeGen.Core/Schema/database.beef-5.json"
},
{
"name": "beef-entity-v5-codegen",
"description": "Beef (Business Entity Execution Framework) entity code-generation configuration (v5)",
"fileMatch": [
"entity.beef-5.yaml",
"entity.beef-5.yml",
"entity.beef-5.json",
"refdata.beef-5.yaml",
"refdata.beef-5.yml",
"refdata.beef-5.json",
"datamodel.beef-5.yaml",
"datamodel.beef-5.yml",
"datamodel.beef-5.json",
"*.entity.beef-5.yaml",
"*.entity.beef-5.yml",
"*.entity.beef-5.json",
"*.refdata.beef-5.yaml",
"*.refdata.beef-5.yml",
"*.refdata.beef-5.json",
"*.datamodel.beef-5.yaml",
"*.datamodel.beef-5.yml",
"*.datamodel.beef-5.json"
],
"url": "https://raw.githubusercontent.com/Avanade/Beef/master/tools/Beef.CodeGen.Core/Schema/entity.beef-5.json"
},
{
"name": "bigquery-table",
"description": "BigQuery table",
"fileMatch": ["*.bigquery.json"],
"url": "https://json.schemastore.org/bigquery-table.json"
},
{
"name": "Bigconfig",
"description": "Bigconfig is a yaml-based declarative monitoring as code solution. Data engineers can deploy Bigeye metrics from the command-line for convenient and scalable data quality monitoring",
"fileMatch": ["bigconfig.yml", "bigconfig.yaml"],
"url": "https://json.schemastore.org/bigconfig.json"
},
{
"name": "bitbucket-pipelines",
"description": "Bitbucket Pipelines CI/CD manifest",
"fileMatch": ["bitbucket-pipelines.yml"],
"url": "https://bitbucket.org/atlassianlabs/intellij-bitbucket-references-plugin/raw/master/src/main/resources/schemas/bitbucket-pipelines.schema.json"
},
{
"name": "bitrise",
"description": "The configuration format of the Bitrise CLI. Bitrise is a collection of tools and services to help you with the development and automation of your software projects, with a main focus on mobile apps",
"fileMatch": ["bitrise.yml", "bitrise.yaml", "bitrise.json"],
"url": "https://json.schemastore.org/bitrise.json"
},
{
"name": "bitrise-step",
"description": "Steps and Workflows are the heart of how Bitrise works. A Bitrise build is simply a series of Steps. Bitrise is a collection of tools and services to help you with the development and automation of your software projects, with a main focus on mobile apps",
"fileMatch": ["step.yml"],
"url": "https://json.schemastore.org/bitrise-step.json"
},
{
"name": ".bootstraprc",
"description": "Webpack bootstrap-loader configuration file",
"fileMatch": [".bootstraprc"],
"url": "https://json.schemastore.org/bootstraprc.json"
},
{
"name": "bower.json",
"description": "Bower package description file",
"fileMatch": ["bower.json", ".bower.json"],
"url": "https://json.schemastore.org/bower.json"
},
{
"name": ".bowerrc",
"description": "Bower configuration file",
"fileMatch": [".bowerrc"],
"url": "https://json.schemastore.org/bowerrc.json"
},
{
"name": "Boyka Framework",
"description": "Boyka Framework config file",
"fileMatch": ["boyka-config.json"],
"url": "https://json.schemastore.org/boyka-config.json"
},
{
"name": "behat.yml",
"description": "Behat configuration file",
"fileMatch": ["behat.yml", "*.behat.yml"],
"url": "https://json.schemastore.org/behat.json"
},
{
"name": "partial-black.json",
"description": "black, a Python formatter",
"fileMatch": [],
"url": "https://json.schemastore.org/partial-black.json"
},
{
"name": "bozr.suite.json",
"description": "Bozr test suite file",
"fileMatch": [".suite.json", ".xsuite.json"],
"url": "https://json.schemastore.org/bozr.json"
},
{
"name": "browser.i18n.json",
"description": "browser.i18n messages.json translation file",
"fileMatch": ["messages.json"],
"url": "https://json.schemastore.org/browser.i18n.json"
},
{
"name": "browsh configuration",
"description": "Configuration file for browsh",
"fileMatch": ["**/browsh/config.toml"],
"url": "https://raw.githubusercontent.com/browsh-org/browsh/master/webext/assets/browsh-schema.json"
},
{
"name": "bucklescript",
"description": "BuckleScript configuration file",
"fileMatch": ["bsconfig.json"],
"url": "https://raw.githubusercontent.com/rescript-lang/rescript-compiler/master/docs/docson/build-schema.json"
},
{
"name": "Build Info",
"description": "Build Info is the metadata of a build. It includes all the details about the build broken down into segments that include version history, artifacts, project modules, dependencies, and everything that was required to create the build",
"fileMatch": ["*buildinfo*.json", "*build-info*.json", "*.buildinfo"],
"url": "https://raw.githubusercontent.com/jfrog/build-info-go/main/buildinfo-schema.json"
},
{
"name": "Bukkit plugin.yml",
"description": "Minecraft Bukkit plugin description files",
"fileMatch": ["plugin.yml"],
"url": "https://json.schemastore.org/bukkit-plugin.json"
},
{
"name": "Buildkite",
"description": "Buildkite pipeline.yml files",
"fileMatch": [
"buildkite.yml",
"buildkite.yaml",
"buildkite.json",
"buildkite.*.yml",
"buildkite.*.yaml",
"buildkite.*.json",
"**/.buildkite/pipeline.yml",
"**/.buildkite/pipeline.yaml",
"**/.buildkite/pipeline.json",
"**/.buildkite/pipeline.*.yml",
"**/.buildkite/pipeline.*.yaml",
"**/.buildkite/pipeline.*.json"
],
"url": "https://raw.githubusercontent.com/buildkite/pipeline-schema/main/schema.json"
},
{
"name": ".build.yml",
"description": "Sourcehut Build Manifest",
"fileMatch": [".build.yml"],
"url": "https://json.schemastore.org/sourcehut-build-0.65.0.json",
"versions": {
"0.41.2": "https://json.schemastore.org/sourcehut-build-0.41.2.json",
"0.65.0": "https://json.schemastore.org/sourcehut-build-0.65.0.json"
}
},
{
"name": "bundleconfig.json",
"description": "bundleconfig.json files",
"fileMatch": ["bundleconfig.json"],
"url": "https://json.schemastore.org/bundleconfig.json"
},
{
"name": "BungeeCord plugin.yml",
"description": "BungeeCord plugin description files",
"fileMatch": ["plugin.yml", "bungee.yml"],
"url": "https://json.schemastore.org/bungee-plugin.json"
},
{
"name": "block.json",
"description": "WordPress block.json files",
"fileMatch": ["block.json"],
"url": "https://schemas.wp.org/trunk/block.json",
"versions": {
"trunk": "https://raw.githubusercontent.com/WordPress/gutenberg/trunk/schemas/json/block.json"
}
},
{
"name": "Block Protocol Metadata",
"description": "Block Metadata in Block Protocol",
"fileMatch": ["block-metadata.json"],
"url": "https://blockprotocol.org/schemas/block-metadata.json"
},
{
"name": "BX CI",
"description": "CI configuration for Amdocs Bill Experience projects",
"fileMatch": ["**/bxci.yaml", "**/bxci.yml"],
"url": "https://json.schemastore.org/bxci.schema-2.x.json",
"versions": {
"1.0": "https://json.schemastore.org/bxci.schema-1.0.json",
"1.0.1": "https://json.schemastore.org/bxci.schema-1.0.1.json",
"2.0.0": "https://json.schemastore.org/bxci.schema-2.0.0.json",
"2.x": "https://json.schemastore.org/bxci.schema-2.x.json"
}
},
{
"name": "Better Scripts",
"description": "Better scripts configuration file",
"fileMatch": [
"scripts.json",
"better-scripts.json",
".better-scriptsrc",
".better-scriptsrc.json"
],
"url": "https://raw.githubusercontent.com/iamyoki/better-scripts/main/lib/schema.json"
},
{
"name": "Bleep",
"description": "A bleeping fast Scala build tool",
"fileMatch": ["bleep.yaml", "bleep.yml"],
"url": "https://raw.githubusercontent.com/oyvindberg/bleep/master/schema.json"
},
{
"name": "CMake Presets",
"description": "CMake Presets",
"fileMatch": ["CMakePresets.json", "CMakeUserPresets.json"],
"url": "https://raw.githubusercontent.com/Kitware/CMake/master/Help/manual/presets/schema.json"
},
{
"name": "Cache Warmup config",
"description": "Cache Warmup config",
"fileMatch": [
"cache-warmup.json",
"cache-warmup.yaml",
"cache-warmup.yml"
],
"url": "https://raw.githubusercontent.com/eliashaeussler/cache-warmup/main/res/cache-warmup-config.schema.json"
},
{
"name": "Calqulus pipeline",
"description": "Qualisys Calqulus pipeline",
"fileMatch": ["*.calqulus.yaml", "*.calqulus.yml"],
"url": "https://raw.githubusercontent.com/qualisys/qualisys-schemas/master/calqulus-pipeline.schema.json"
},
{
"name": "Camel YAML DSL",
"description": "Camel YAML DSL",
"fileMatch": [
"*.camel.yaml",
"*.camelk.yaml",
"*.camel.yml",
"*.camelk.yml"
],
"url": "https://raw.githubusercontent.com/apache/camel/main/dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/schema/camelYamlDsl.json",
"versions": {
"3.x": "https://raw.githubusercontent.com/apache/camel/camel-3.x/dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/schema/camel-yaml-dsl.json",
"4.x": "https://raw.githubusercontent.com/apache/camel/main/dsl/camel-yaml-dsl/camel-yaml-dsl/src/generated/resources/schema/camelYamlDsl.json"
}
},
{
"name": "Carafe",
"description": "Carafe compatible JavaScript Bundles",
"url": "https://carafe.fm/schema/draft-02/bundle.schema.json",
"versions": {
"draft-02": "https://carafe.fm/schema/draft-02/bundle.schema.json",
"draft-01": "https://carafe.fm/schema/draft-01/bundle.schema.json"
}
},
{
"name": "Cargo Manifest",
"description": "Manifest for Cargo, the Rust package manager and build tool",
"fileMatch": ["Cargo.toml"],
"url": "https://json.schemastore.org/cargo.json"
},
{
"name": "Cargo Make",
"description": "cargo-make, a Rust task runner and build tool",
"fileMatch": ["Makefile.toml"],
"url": "https://json.schemastore.org/cargo-make.json"
},
{
"name": "Catalog Info Backstage",
"description": "Backstage Catalog Info",
"fileMatch": ["catalog-info.yaml"],
"url": "https://json.schemastore.org/catalog-info.json"
},
{
"name": "Chromia Model",
"description": "Chromia Model Config File",
"fileMatch": ["chromia.yml", "chromia.yaml"],
"url": "https://gitlab.com/chromaway/core-tools/chromia-cli/-/raw/dev/chromia-build-tools/src/main/resources/chromia-model-schema.json"
},
{
"name": "cibuildwheel",
"description": "cibuildwheel, a Python redistributable wheel builder",
"fileMatch": ["cibuildwheel.toml", ".cibuildwheel.toml"],
"url": "https://json.schemastore.org/cibuildwheel.json"
},
{
"name": "CityJSON",
"description": "the representation of 3D city models",
"url": "https://raw.githubusercontent.com/cityjson/specs/master/schemas/cityjson.min.schema.json"
},
{
"name": "CloudEvents specification",
"description": "A specification for describing event data in a common way. Documentation: https://cloudevents.io",
"fileMatch": [],
"url": "https://raw.githubusercontent.com/cloudevents/spec/master/cloudevents/formats/cloudevents.json"
},
{
"name": "conda-forge",
"description": "Conda-forge configuration file",
"fileMatch": ["conda-forge.yml"],
"url": "https://raw.githubusercontent.com/conda-forge/conda-smithy/main/conda_smithy/data/conda-forge.json"
},
{
"name": "Conjure",
"description": "Conjure Human-Readable Format",
"fileMatch": ["**/conjure/**.yml"],
"url": "https://raw.githubusercontent.com/palantir/conjure/master/conjure.schema.json"
},
{
"name": "CNC Codes",
"description": "G/M codes for Machine Tools or 3D Printers",
"fileMatch": ["*.cncc.json"],
"url": "https://appliedengdesign.github.io/cnccodes-json-schema/draft/2022-07/schema",
"versions": {
"latest": "https://appliedengdesign.github.io/cnccodes-json-schema/draft/2022-07/schema",
"2022-07": "https://appliedengdesign.github.io/cnccodes-json-schema/draft/2022-07/schema",
"2022-06": "https://appliedengdesign.github.io/cnccodes-json-schema/draft/2022-06/schema"
}
},
{
"name": "Cog config file",
"description": "cog.yaml files",
"fileMatch": ["cog.yaml", "cog.yml"],
"url": "https://raw.githubusercontent.com/replicate/cog/main/pkg/config/data/config_schema_v1.0.json",
"versions": {
"1.0": "https://raw.githubusercontent.com/replicate/cog/main/pkg/config/data/config_schema_v1.0.json"
}
},
{
"name": "Commandbox Box.json",
"description": "Commandbox used with cli, cfml web servers and modules",
"url": "https://raw.githubusercontent.com/Ortus-Solutions/vscode-commandbox/master/resources/schemas/box.schema.json"
},
{
"name": "Commandbox Server.json",
"description": "Commandbox used with cfml web servers",
"url": "https://raw.githubusercontent.com/Ortus-Solutions/vscode-commandbox/master/resources/schemas/server.schema.json"
},
{
"name": "CumulusCI Config",
"description": "cumulusci.yml file for configuring CumulusCI, a Salesforce automation framework",
"fileMatch": ["cumulusci.yml"],
"url": "https://raw.githubusercontent.com/SFDO-Tooling/CumulusCI/main/cumulusci/schema/cumulusci.jsonschema.json"
},
{
"name": "Clawject config",
"description": "Clawject configuration file",
"fileMatch": [".clawjectrc", ".clawjectrc.json"],
"url": "https://raw.githubusercontent.com/clawject/clawject/main/packages/clawject/src/compile-time/config/schema.json"
},
{
"name": "CVE Record Format",
"description": "CVE record format to describe security vulnerabilities",
"fileMatch": ["CVE-*.json"],
"url": "https://raw.githubusercontent.com/CVEProject/cve-schema/master/schema/docs/CVE_Record_Format_bundled.json"
},
{
"name": "Cycle Stack File",
"description": "A Cycle.io stack file for environments as code",
"fileMatch": ["cycle.json", "cycle.yml", "cycle.yaml"],
"url": "https://raw.githubusercontent.com/cycleplatform/api-spec/main/stackspec/stackspec.json"
},
{
"name": "DataYoga Connections",
"description": "Collection of defined source and target connections used within DataYoga jobs",
"fileMatch": ["connections.dy.yaml"],
"url": "https://raw.githubusercontent.com/datayoga-io/datayoga/main/schemas/connections.schema.json"
},
{
"name": "DataYoga Job",
"description": "Declarative definition of sequential pipeline steps within a DataYoga job",
"fileMatch": ["**/jobs/**/*.dy.yaml"],
"url": "https://raw.githubusercontent.com/datayoga-io/datayoga/main/schemas/job.schema.json"
},
{
"name": "dbt Project",
"description": "dbt project configurations",
"fileMatch": ["dbt_project.yml"],
"url": "https://raw.githubusercontent.com/dbt-labs/dbt-jsonschema/main/schemas/latest/dbt_project-latest.json"
},
{
"name": "Dein Config",
"description": "Dein.vim, a Vim/Neovim plugin manager",
"fileMatch": ["dein.toml"],