@theia/core 1.72.0-next.5 → 1.72.0-next.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/lib/browser/catalog.json +474 -30
- package/lib/browser/frontend-application-module.d.ts +3 -0
- package/lib/browser/frontend-application-module.d.ts.map +1 -1
- package/lib/browser/frontend-application-module.js +5 -2
- package/lib/browser/frontend-application-module.js.map +1 -1
- package/lib/browser/hover-service.d.ts +4 -4
- package/lib/browser/hover-service.d.ts.map +1 -1
- package/lib/browser/hover-service.js +10 -7
- package/lib/browser/hover-service.js.map +1 -1
- package/lib/browser/index.d.ts +1 -0
- package/lib/browser/index.d.ts.map +1 -1
- package/lib/browser/index.js +1 -0
- package/lib/browser/index.js.map +1 -1
- package/lib/browser/markdown-rendering/markdown-link-handler.d.ts +15 -0
- package/lib/browser/markdown-rendering/markdown-link-handler.d.ts.map +1 -0
- package/lib/browser/markdown-rendering/markdown-link-handler.js +60 -0
- package/lib/browser/markdown-rendering/markdown-link-handler.js.map +1 -0
- package/lib/browser/markdown-rendering/markdown-renderer.d.ts +5 -0
- package/lib/browser/markdown-rendering/markdown-renderer.d.ts.map +1 -1
- package/lib/browser/markdown-rendering/markdown-renderer.js +6 -1
- package/lib/browser/markdown-rendering/markdown-renderer.js.map +1 -1
- package/lib/browser/widgets/select-component.d.ts.map +1 -1
- package/lib/browser/widgets/select-component.js.map +1 -1
- package/lib/common/markdown-rendering/markdown-string.d.ts +7 -0
- package/lib/common/markdown-rendering/markdown-string.d.ts.map +1 -1
- package/lib/common/markdown-rendering/markdown-string.js +34 -2
- package/lib/common/markdown-rendering/markdown-string.js.map +1 -1
- package/lib/common/markdown-rendering/markdown-string.spec.d.ts +2 -0
- package/lib/common/markdown-rendering/markdown-string.spec.d.ts.map +1 -0
- package/lib/common/markdown-rendering/markdown-string.spec.js +47 -0
- package/lib/common/markdown-rendering/markdown-string.spec.js.map +1 -0
- package/lib/node/backend-application-module.d.ts.map +1 -1
- package/lib/node/backend-application-module.js +7 -0
- package/lib/node/backend-application-module.js.map +1 -1
- package/lib/node/backend-application.d.ts +43 -3
- package/lib/node/backend-application.d.ts.map +1 -1
- package/lib/node/backend-application.js +82 -15
- package/lib/node/backend-application.js.map +1 -1
- package/lib/node/backend-application.spec.d.ts +2 -0
- package/lib/node/backend-application.spec.d.ts.map +1 -0
- package/lib/node/backend-application.spec.js +252 -0
- package/lib/node/backend-application.spec.js.map +1 -0
- package/lib/node/logger-cli-contribution.spec.js +9 -9
- package/lib/node/logger-cli-contribution.spec.js.map +1 -1
- package/package.json +16 -16
- package/src/browser/frontend-application-module.ts +6 -3
- package/src/browser/hover-service.ts +9 -7
- package/src/browser/index.ts +1 -0
- package/src/browser/markdown-rendering/markdown-link-handler.ts +61 -0
- package/src/browser/markdown-rendering/markdown-renderer.ts +6 -0
- package/src/browser/style/index.css +31 -32
- package/src/browser/style/scrollbars.css +0 -2
- package/src/browser/style/select-component.css +6 -3
- package/src/browser/widgets/select-component.tsx +1 -1
- package/src/common/markdown-rendering/markdown-string.spec.ts +50 -0
- package/src/common/markdown-rendering/markdown-string.ts +34 -2
- package/src/node/backend-application-module.ts +11 -1
- package/src/node/backend-application.spec.ts +310 -0
- package/src/node/backend-application.ts +104 -19
- package/src/node/logger-cli-contribution.spec.ts +9 -9
package/lib/browser/catalog.json
CHANGED
|
@@ -86,6 +86,16 @@
|
|
|
86
86
|
"fileMatch": ["**/1password/ssh/agent.toml"],
|
|
87
87
|
"url": "https://developer.1password.com/schema/ssh-agent-config.json"
|
|
88
88
|
},
|
|
89
|
+
{
|
|
90
|
+
"name": "AlgoVoi Compliance Receipt v1",
|
|
91
|
+
"description": "Categorical compliance screening receipt for agentic-payment flows; emitted at admission time and retained as part of an audit chain under UK MLR 2017, EU AMLD5/6, MiCA Art 80, AMLR Art 56, DORA Art 14",
|
|
92
|
+
"fileMatch": [
|
|
93
|
+
"algovoi-compliance-receipt.json",
|
|
94
|
+
"algovoi-compliance-receipt-*.json",
|
|
95
|
+
"**/algovoi/compliance-receipt-*.json"
|
|
96
|
+
],
|
|
97
|
+
"url": "https://www.schemastore.org/algovoi-compliance-receipt-v1.json"
|
|
98
|
+
},
|
|
89
99
|
{
|
|
90
100
|
"name": "Application Accelerator",
|
|
91
101
|
"description": "Application Accelerator for VMware Tanzu",
|
|
@@ -221,16 +231,19 @@
|
|
|
221
231
|
"name": "ABCClinicalDemandForecast",
|
|
222
232
|
"description": "ABCClinicalDemandForecast defining the structure of clinical trial demand forecasting data in ABC-Plan",
|
|
223
233
|
"fileMatch": ["abc-clinical-demand-forecast-*.json"],
|
|
224
|
-
"url": "https://www.schemastore.org/abc-clinical-demand-forecast-
|
|
234
|
+
"url": "https://www.schemastore.org/abc-clinical-demand-forecast-4.0.0.json",
|
|
225
235
|
"versions": {
|
|
226
|
-
"1.0.0": "https://www.schemastore.org/abc-clinical-demand-forecast-1.0.0.json"
|
|
236
|
+
"1.0.0": "https://www.schemastore.org/abc-clinical-demand-forecast-1.0.0.json",
|
|
237
|
+
"2.0.0": "https://www.schemastore.org/abc-clinical-demand-forecast-2.0.0.json",
|
|
238
|
+
"3.0.0": "https://www.schemastore.org/abc-clinical-demand-forecast-3.0.0.json",
|
|
239
|
+
"4.0.0": "https://www.schemastore.org/abc-clinical-demand-forecast-4.0.0.json"
|
|
227
240
|
}
|
|
228
241
|
},
|
|
229
242
|
{
|
|
230
243
|
"name": "ABCSupplyPlan",
|
|
231
244
|
"description": "ABCSupplyPlan representing all the state for performing inventory optimization and expiry analysis in ABC-Plan MasterPlanner",
|
|
232
245
|
"fileMatch": ["abc-supply-plan-*.json"],
|
|
233
|
-
"url": "https://www.schemastore.org/abc-supply-plan-
|
|
246
|
+
"url": "https://www.schemastore.org/abc-supply-plan-13.0.0.json",
|
|
234
247
|
"versions": {
|
|
235
248
|
"1.0.0": "https://www.schemastore.org/abc-supply-plan-1.0.0.json",
|
|
236
249
|
"2.0.0": "https://www.schemastore.org/abc-supply-plan-2.0.0.json",
|
|
@@ -248,7 +261,8 @@
|
|
|
248
261
|
"11.2.0": "https://www.schemastore.org/abc-supply-plan-11.2.0.json",
|
|
249
262
|
"11.3.0": "https://www.schemastore.org/abc-supply-plan-11.3.0.json",
|
|
250
263
|
"11.4.0": "https://www.schemastore.org/abc-supply-plan-11.4.0.json",
|
|
251
|
-
"12.0.0": "https://www.schemastore.org/abc-supply-plan-12.0.0.json"
|
|
264
|
+
"12.0.0": "https://www.schemastore.org/abc-supply-plan-12.0.0.json",
|
|
265
|
+
"13.0.0": "https://www.schemastore.org/abc-supply-plan-13.0.0.json"
|
|
252
266
|
}
|
|
253
267
|
},
|
|
254
268
|
{
|
|
@@ -1225,6 +1239,12 @@
|
|
|
1225
1239
|
"fileMatch": [],
|
|
1226
1240
|
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/partial-fastapi.json"
|
|
1227
1241
|
},
|
|
1242
|
+
{
|
|
1243
|
+
"name": "partial-scheduled.json",
|
|
1244
|
+
"description": "Scheduled job configuration for pyproject.toml",
|
|
1245
|
+
"fileMatch": [],
|
|
1246
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/partial-scheduled.json"
|
|
1247
|
+
},
|
|
1228
1248
|
{
|
|
1229
1249
|
"name": "bozr.suite.json",
|
|
1230
1250
|
"description": "Bozr test suite file",
|
|
@@ -1937,6 +1957,12 @@
|
|
|
1937
1957
|
"fileMatch": ["**/.codex/config.toml"],
|
|
1938
1958
|
"url": "https://developers.openai.com/codex/config-schema.json"
|
|
1939
1959
|
},
|
|
1960
|
+
{
|
|
1961
|
+
"name": "Codex Hooks",
|
|
1962
|
+
"description": "OpenAI Codex hooks configuration file",
|
|
1963
|
+
"fileMatch": ["**/.codex/hooks.json"],
|
|
1964
|
+
"url": "https://www.schemastore.org/codex-hooks.json"
|
|
1965
|
+
},
|
|
1940
1966
|
{
|
|
1941
1967
|
"name": "codemagic",
|
|
1942
1968
|
"description": "Codemagic CI/CD file configuration",
|
|
@@ -2674,6 +2700,246 @@
|
|
|
2674
2700
|
"description": "Policy file for use with Enterprise Contract",
|
|
2675
2701
|
"url": "https://enterprisecontract.dev/enterprise-contract-controller/schema/policy_spec.json"
|
|
2676
2702
|
},
|
|
2703
|
+
{
|
|
2704
|
+
"name": "Envilder Map File",
|
|
2705
|
+
"description": "Envilder secret mapping file that maps environment variable names to cloud secret paths",
|
|
2706
|
+
"fileMatch": ["envilder.json", "envilder.*.json"],
|
|
2707
|
+
"url": "https://envilder.com/schema/map-file.v1.json"
|
|
2708
|
+
},
|
|
2709
|
+
{
|
|
2710
|
+
"name": "Enonic XP API descriptor",
|
|
2711
|
+
"description": "YAML descriptor for Enonic XP Universal and Harmonized APIs",
|
|
2712
|
+
"fileMatch": [
|
|
2713
|
+
"**/src/main/resources/apis/*/*.yaml",
|
|
2714
|
+
"**/src/main/resources/apis/*/*.yml"
|
|
2715
|
+
],
|
|
2716
|
+
"url": "https://www.schemastore.org/enonic-xp-api-8.0.0-B4.json",
|
|
2717
|
+
"versions": {
|
|
2718
|
+
"latest": "https://www.schemastore.org/enonic-xp-api-8.0.0-B4.json",
|
|
2719
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-api-8.0.0-B4.json"
|
|
2720
|
+
}
|
|
2721
|
+
},
|
|
2722
|
+
{
|
|
2723
|
+
"name": "Enonic XP Admin Extension descriptor",
|
|
2724
|
+
"description": "YAML descriptor for Enonic XP Admin Extensions",
|
|
2725
|
+
"fileMatch": [
|
|
2726
|
+
"**/src/main/resources/admins/extensions/*/*.yaml",
|
|
2727
|
+
"**/src/main/resources/admins/extensions/*/*.yml"
|
|
2728
|
+
],
|
|
2729
|
+
"url": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0-B4.json",
|
|
2730
|
+
"versions": {
|
|
2731
|
+
"latest": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0-B4.json",
|
|
2732
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-admin-extension-8.0.0-B4.json"
|
|
2733
|
+
}
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"name": "Enonic XP Admin Tool descriptor",
|
|
2737
|
+
"description": "YAML descriptor for Enonic XP Admin Tools",
|
|
2738
|
+
"fileMatch": [
|
|
2739
|
+
"**/src/main/resources/admin/tools/*/*.yaml",
|
|
2740
|
+
"**/src/main/resources/admin/tools/*/*.yml"
|
|
2741
|
+
],
|
|
2742
|
+
"url": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0-B4.json",
|
|
2743
|
+
"versions": {
|
|
2744
|
+
"latest": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0-B4.json",
|
|
2745
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-admin-tool-8.0.0-B4.json"
|
|
2746
|
+
}
|
|
2747
|
+
},
|
|
2748
|
+
{
|
|
2749
|
+
"name": "Enonic XP Application descriptor",
|
|
2750
|
+
"description": "YAML descriptor for Enonic XP Applications",
|
|
2751
|
+
"fileMatch": [
|
|
2752
|
+
"**/src/main/resources/application.yaml",
|
|
2753
|
+
"**/src/main/resources/application.yml"
|
|
2754
|
+
],
|
|
2755
|
+
"url": "https://www.schemastore.org/enonic-xp-application-8.0.0-B4.json",
|
|
2756
|
+
"versions": {
|
|
2757
|
+
"latest": "https://www.schemastore.org/enonic-xp-application-8.0.0-B4.json",
|
|
2758
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-application-8.0.0-B4.json"
|
|
2759
|
+
}
|
|
2760
|
+
},
|
|
2761
|
+
{
|
|
2762
|
+
"name": "Enonic XP CMS descriptor",
|
|
2763
|
+
"description": "YAML descriptor for Enonic XP CMS configuration",
|
|
2764
|
+
"fileMatch": [
|
|
2765
|
+
"**/src/main/resources/cms/cms.yaml",
|
|
2766
|
+
"**/src/main/resources/cms/cms.yml"
|
|
2767
|
+
],
|
|
2768
|
+
"url": "https://www.schemastore.org/enonic-xp-cms-8.0.0-B4.json",
|
|
2769
|
+
"versions": {
|
|
2770
|
+
"latest": "https://www.schemastore.org/enonic-xp-cms-8.0.0-B4.json",
|
|
2771
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-cms-8.0.0-B4.json"
|
|
2772
|
+
}
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
"name": "Enonic XP Content Type descriptor",
|
|
2776
|
+
"description": "YAML descriptor for Enonic XP Content Types",
|
|
2777
|
+
"fileMatch": [
|
|
2778
|
+
"**/src/main/resources/cms/content-types/*/*.yaml",
|
|
2779
|
+
"**/src/main/resources/cms/content-types/*/*.yml"
|
|
2780
|
+
],
|
|
2781
|
+
"url": "https://www.schemastore.org/enonic-xp-content-type-8.0.0-B4.json",
|
|
2782
|
+
"versions": {
|
|
2783
|
+
"latest": "https://www.schemastore.org/enonic-xp-content-type-8.0.0-B4.json",
|
|
2784
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-content-type-8.0.0-B4.json"
|
|
2785
|
+
}
|
|
2786
|
+
},
|
|
2787
|
+
{
|
|
2788
|
+
"name": "Enonic XP Form Fragment descriptor",
|
|
2789
|
+
"description": "YAML descriptor for Enonic XP Form Fragments",
|
|
2790
|
+
"fileMatch": [
|
|
2791
|
+
"**/src/main/resources/cms/form-fragments/*/*.yaml",
|
|
2792
|
+
"**/src/main/resources/cms/form-fragments/*/*.yml"
|
|
2793
|
+
],
|
|
2794
|
+
"url": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0-B4.json",
|
|
2795
|
+
"versions": {
|
|
2796
|
+
"latest": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0-B4.json",
|
|
2797
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-form-fragment-8.0.0-B4.json"
|
|
2798
|
+
}
|
|
2799
|
+
},
|
|
2800
|
+
{
|
|
2801
|
+
"name": "Enonic XP ID Provider descriptor",
|
|
2802
|
+
"description": "YAML descriptor for Enonic XP ID Providers",
|
|
2803
|
+
"fileMatch": [
|
|
2804
|
+
"**/src/main/resources/idprovider/idprovider.yaml",
|
|
2805
|
+
"**/src/main/resources/idprovider/idprovider.yml"
|
|
2806
|
+
],
|
|
2807
|
+
"url": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0-B4.json",
|
|
2808
|
+
"versions": {
|
|
2809
|
+
"latest": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0-B4.json",
|
|
2810
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-idprovider-8.0.0-B4.json"
|
|
2811
|
+
}
|
|
2812
|
+
},
|
|
2813
|
+
{
|
|
2814
|
+
"name": "Enonic XP Layout descriptor",
|
|
2815
|
+
"description": "YAML descriptor for Enonic XP Layouts",
|
|
2816
|
+
"fileMatch": [
|
|
2817
|
+
"**/src/main/resources/cms/layouts/*/*.yaml",
|
|
2818
|
+
"**/src/main/resources/cms/layouts/*/*.yml"
|
|
2819
|
+
],
|
|
2820
|
+
"url": "https://www.schemastore.org/enonic-xp-layout-8.0.0-B4.json",
|
|
2821
|
+
"versions": {
|
|
2822
|
+
"latest": "https://www.schemastore.org/enonic-xp-layout-8.0.0-B4.json",
|
|
2823
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-layout-8.0.0-B4.json"
|
|
2824
|
+
}
|
|
2825
|
+
},
|
|
2826
|
+
{
|
|
2827
|
+
"name": "Enonic XP Macro descriptor",
|
|
2828
|
+
"description": "YAML descriptor for Enonic XP Macros",
|
|
2829
|
+
"fileMatch": [
|
|
2830
|
+
"**/src/main/resources/cms/macros/*/*.yaml",
|
|
2831
|
+
"**/src/main/resources/cms/macros/*/*.yml"
|
|
2832
|
+
],
|
|
2833
|
+
"url": "https://www.schemastore.org/enonic-xp-macro-8.0.0-B4.json",
|
|
2834
|
+
"versions": {
|
|
2835
|
+
"latest": "https://www.schemastore.org/enonic-xp-macro-8.0.0-B4.json",
|
|
2836
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-macro-8.0.0-B4.json"
|
|
2837
|
+
}
|
|
2838
|
+
},
|
|
2839
|
+
{
|
|
2840
|
+
"name": "Enonic XP Mixin descriptor",
|
|
2841
|
+
"description": "YAML descriptor for Enonic XP Mixins",
|
|
2842
|
+
"fileMatch": [
|
|
2843
|
+
"**/src/main/resources/cms/mixins/*/*.yaml",
|
|
2844
|
+
"**/src/main/resources/cms/mixins/*/*.yml"
|
|
2845
|
+
],
|
|
2846
|
+
"url": "https://www.schemastore.org/enonic-xp-mixin-8.0.0-B4.json",
|
|
2847
|
+
"versions": {
|
|
2848
|
+
"latest": "https://www.schemastore.org/enonic-xp-mixin-8.0.0-B4.json",
|
|
2849
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-mixin-8.0.0-B4.json"
|
|
2850
|
+
}
|
|
2851
|
+
},
|
|
2852
|
+
{
|
|
2853
|
+
"name": "Enonic XP Page descriptor",
|
|
2854
|
+
"description": "YAML descriptor for Enonic XP Pages",
|
|
2855
|
+
"fileMatch": [
|
|
2856
|
+
"**/src/main/resources/cms/pages/*/*.yaml",
|
|
2857
|
+
"**/src/main/resources/cms/pages/*/*.yml"
|
|
2858
|
+
],
|
|
2859
|
+
"url": "https://www.schemastore.org/enonic-xp-page-8.0.0-B4.json",
|
|
2860
|
+
"versions": {
|
|
2861
|
+
"latest": "https://www.schemastore.org/enonic-xp-page-8.0.0-B4.json",
|
|
2862
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-page-8.0.0-B4.json"
|
|
2863
|
+
}
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
"name": "Enonic XP Part descriptor",
|
|
2867
|
+
"description": "YAML descriptor for Enonic XP Parts",
|
|
2868
|
+
"fileMatch": [
|
|
2869
|
+
"**/src/main/resources/cms/parts/*/*.yaml",
|
|
2870
|
+
"**/src/main/resources/cms/parts/*/*.yml"
|
|
2871
|
+
],
|
|
2872
|
+
"url": "https://www.schemastore.org/enonic-xp-part-8.0.0-B4.json",
|
|
2873
|
+
"versions": {
|
|
2874
|
+
"latest": "https://www.schemastore.org/enonic-xp-part-8.0.0-B4.json",
|
|
2875
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-part-8.0.0-B4.json"
|
|
2876
|
+
}
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
"name": "Enonic XP Service descriptor",
|
|
2880
|
+
"description": "YAML descriptor for Enonic XP Services",
|
|
2881
|
+
"fileMatch": [
|
|
2882
|
+
"**/src/main/resources/services/*/*.yaml",
|
|
2883
|
+
"**/src/main/resources/services/*/*.yml"
|
|
2884
|
+
],
|
|
2885
|
+
"url": "https://www.schemastore.org/enonic-xp-service-8.0.0-B4.json",
|
|
2886
|
+
"versions": {
|
|
2887
|
+
"latest": "https://www.schemastore.org/enonic-xp-service-8.0.0-B4.json",
|
|
2888
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-service-8.0.0-B4.json"
|
|
2889
|
+
}
|
|
2890
|
+
},
|
|
2891
|
+
{
|
|
2892
|
+
"name": "Enonic XP Site descriptor",
|
|
2893
|
+
"description": "YAML descriptor for Enonic XP Sites",
|
|
2894
|
+
"fileMatch": [
|
|
2895
|
+
"**/src/main/resources/cms/site.yaml",
|
|
2896
|
+
"**/src/main/resources/cms/site.yml"
|
|
2897
|
+
],
|
|
2898
|
+
"url": "https://www.schemastore.org/enonic-xp-site-8.0.0-B4.json",
|
|
2899
|
+
"versions": {
|
|
2900
|
+
"latest": "https://www.schemastore.org/enonic-xp-site-8.0.0-B4.json",
|
|
2901
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-site-8.0.0-B4.json"
|
|
2902
|
+
}
|
|
2903
|
+
},
|
|
2904
|
+
{
|
|
2905
|
+
"name": "Enonic XP Style descriptor",
|
|
2906
|
+
"description": "YAML descriptor for Enonic XP Styles",
|
|
2907
|
+
"fileMatch": [
|
|
2908
|
+
"**/src/main/resources/cms/style/style.yaml",
|
|
2909
|
+
"**/src/main/resources/cms/style/style.yml"
|
|
2910
|
+
],
|
|
2911
|
+
"url": "https://www.schemastore.org/enonic-xp-style-8.0.0-B4.json",
|
|
2912
|
+
"versions": {
|
|
2913
|
+
"latest": "https://www.schemastore.org/enonic-xp-style-8.0.0-B4.json",
|
|
2914
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-style-8.0.0-B4.json"
|
|
2915
|
+
}
|
|
2916
|
+
},
|
|
2917
|
+
{
|
|
2918
|
+
"name": "Enonic XP Task descriptor",
|
|
2919
|
+
"description": "YAML descriptor for Enonic XP Tasks",
|
|
2920
|
+
"fileMatch": [
|
|
2921
|
+
"**/src/main/resources/tasks/*/*.yaml",
|
|
2922
|
+
"**/src/main/resources/tasks/*/*.yml"
|
|
2923
|
+
],
|
|
2924
|
+
"url": "https://www.schemastore.org/enonic-xp-task-8.0.0-B4.json",
|
|
2925
|
+
"versions": {
|
|
2926
|
+
"latest": "https://www.schemastore.org/enonic-xp-task-8.0.0-B4.json",
|
|
2927
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-task-8.0.0-B4.json"
|
|
2928
|
+
}
|
|
2929
|
+
},
|
|
2930
|
+
{
|
|
2931
|
+
"name": "Enonic XP Webapp descriptor",
|
|
2932
|
+
"description": "YAML descriptor for Enonic XP Webapps",
|
|
2933
|
+
"fileMatch": [
|
|
2934
|
+
"**/src/main/resources/webapp/webapp.yaml",
|
|
2935
|
+
"**/src/main/resources/webapp/webapp.yml"
|
|
2936
|
+
],
|
|
2937
|
+
"url": "https://www.schemastore.org/enonic-xp-webapp-8.0.0-B4.json",
|
|
2938
|
+
"versions": {
|
|
2939
|
+
"latest": "https://www.schemastore.org/enonic-xp-webapp-8.0.0-B4.json",
|
|
2940
|
+
"8.0.0-B4": "https://www.schemastore.org/enonic-xp-webapp-8.0.0-B4.json"
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
2677
2943
|
{
|
|
2678
2944
|
"name": ".esmrc.json",
|
|
2679
2945
|
"description": "Configuration files for the esm module/package in Node.js",
|
|
@@ -3156,6 +3422,11 @@
|
|
|
3156
3422
|
],
|
|
3157
3423
|
"url": "https://www.schemastore.org/github-issue-forms.json"
|
|
3158
3424
|
},
|
|
3425
|
+
{
|
|
3426
|
+
"name": "GitHub Pages Jekyll",
|
|
3427
|
+
"description": "YAML Jekyll configuration for sites built by GitHub Pages",
|
|
3428
|
+
"url": "https://www.schemastore.org/github-pages-jekyll.json"
|
|
3429
|
+
},
|
|
3159
3430
|
{
|
|
3160
3431
|
"name": "GitHub Workflow",
|
|
3161
3432
|
"description": "YAML GitHub Workflow",
|
|
@@ -3362,6 +3633,12 @@
|
|
|
3362
3633
|
"description": "Goreleaser Pro configuration file",
|
|
3363
3634
|
"url": "https://goreleaser.com/static/schema-pro.json"
|
|
3364
3635
|
},
|
|
3636
|
+
{
|
|
3637
|
+
"name": "Anodizer",
|
|
3638
|
+
"description": "Anodizer Rust release-automation configuration file",
|
|
3639
|
+
"fileMatch": [".anodizer.yaml", ".anodizer.yml"],
|
|
3640
|
+
"url": "https://tj-smith47.github.io/anodizer/schema.json"
|
|
3641
|
+
},
|
|
3365
3642
|
{
|
|
3366
3643
|
"name": "Goss",
|
|
3367
3644
|
"description": "Goss - Quick and Easy server validation",
|
|
@@ -3506,7 +3783,7 @@
|
|
|
3506
3783
|
"hz-*.yaml",
|
|
3507
3784
|
"hz-*.json"
|
|
3508
3785
|
],
|
|
3509
|
-
"url": "https://hazelcast.com/schema/config/hazelcast-config-5.
|
|
3786
|
+
"url": "https://hazelcast.com/schema/config/hazelcast-config-5.7.json"
|
|
3510
3787
|
},
|
|
3511
3788
|
{
|
|
3512
3789
|
"name": "Home Assistant Integration Manifest",
|
|
@@ -3620,7 +3897,9 @@
|
|
|
3620
3897
|
"1.12": "https://ifstate.net/schema/1.12/ifstate.conf.schema.json",
|
|
3621
3898
|
"1.13": "https://ifstate.net/schema/1.13/ifstate.conf.schema.json",
|
|
3622
3899
|
"2.0": "https://ifstate.net/schema/2.0/ifstate.conf.schema.json",
|
|
3623
|
-
"2.1": "https://ifstate.net/schema/2.1/ifstate.conf.schema.json"
|
|
3900
|
+
"2.1": "https://ifstate.net/schema/2.1/ifstate.conf.schema.json",
|
|
3901
|
+
"2.2": "https://ifstate.net/schema/2.2/ifstate.conf.schema.json",
|
|
3902
|
+
"2.3": "https://ifstate.net/schema/2.3/ifstate.conf.schema.json"
|
|
3624
3903
|
}
|
|
3625
3904
|
},
|
|
3626
3905
|
{
|
|
@@ -4442,6 +4721,16 @@
|
|
|
4442
4721
|
],
|
|
4443
4722
|
"url": "https://raw.githubusercontent.com/getmockd/mockd/main/schema/mockd.schema.json"
|
|
4444
4723
|
},
|
|
4724
|
+
{
|
|
4725
|
+
"name": "MockServer Expectations",
|
|
4726
|
+
"description": "MockServer expectations configuration for defining request matchers and response actions. See https://www.mock-server.com",
|
|
4727
|
+
"fileMatch": [
|
|
4728
|
+
"mockserverInitialization.json",
|
|
4729
|
+
"*mockserver*Initialization.json",
|
|
4730
|
+
"mockserver*.json"
|
|
4731
|
+
],
|
|
4732
|
+
"url": "https://www.mock-server.com/schema/expectations.json"
|
|
4733
|
+
},
|
|
4445
4734
|
{
|
|
4446
4735
|
"name": "monospace.yml",
|
|
4447
4736
|
"description": "MonoSpace configuration file",
|
|
@@ -4548,6 +4837,18 @@
|
|
|
4548
4837
|
"fileMatch": ["ngui_*.yaml", "ngui_*.yml", "ngui_*.json"],
|
|
4549
4838
|
"url": "https://raw.githubusercontent.com/RedHat-UX/next-gen-ui-agent/refs/heads/main/spec/config/agent_config.schema.json"
|
|
4550
4839
|
},
|
|
4840
|
+
{
|
|
4841
|
+
"name": "cargo-nextest repository configuration",
|
|
4842
|
+
"description": "Repository configuration for cargo-nextest. Documentation: https://nexte.st/docs/configuration/",
|
|
4843
|
+
"fileMatch": ["**/.config/nextest.toml"],
|
|
4844
|
+
"url": "https://nexte.st/schemas/repo-config.json"
|
|
4845
|
+
},
|
|
4846
|
+
{
|
|
4847
|
+
"name": "cargo-nextest user configuration",
|
|
4848
|
+
"description": "User configuration for cargo-nextest. Documentation: https://nexte.st/docs/user-config/",
|
|
4849
|
+
"fileMatch": ["**/nextest/config.toml"],
|
|
4850
|
+
"url": "https://nexte.st/schemas/user-config.json"
|
|
4851
|
+
},
|
|
4551
4852
|
{
|
|
4552
4853
|
"name": "nFPM",
|
|
4553
4854
|
"description": "nFPM configuration file",
|
|
@@ -5132,6 +5433,12 @@
|
|
|
5132
5433
|
"fileMatch": ["submol*.json", "submol*.yml", "submol*.yaml"],
|
|
5133
5434
|
"url": "https://www.schemastore.org/pgap_yaml_input_reader.json"
|
|
5134
5435
|
},
|
|
5436
|
+
{
|
|
5437
|
+
"name": "pgrls",
|
|
5438
|
+
"description": "Configuration for pgrls, the Postgres Row-Level Security linter (pgrls.toml)",
|
|
5439
|
+
"fileMatch": ["pgrls.toml"],
|
|
5440
|
+
"url": "https://www.schemastore.org/pgrls.json"
|
|
5441
|
+
},
|
|
5135
5442
|
{
|
|
5136
5443
|
"name": "pattern.json",
|
|
5137
5444
|
"description": "Patternplate pattern manifest file",
|
|
@@ -5250,6 +5557,22 @@
|
|
|
5250
5557
|
"fileMatch": [".pre-commit-hooks.yml", ".pre-commit-hooks.yaml"],
|
|
5251
5558
|
"url": "https://www.schemastore.org/pre-commit-hooks.json"
|
|
5252
5559
|
},
|
|
5560
|
+
{
|
|
5561
|
+
"name": "PRML manifest",
|
|
5562
|
+
"description": "Pre-Registered ML Manifest \u2014 open spec for committing ML evaluation claims to a SHA-256 hash before the run (CC BY 4.0). https://spec.falsify.dev/v0.1",
|
|
5563
|
+
"fileMatch": [
|
|
5564
|
+
"*.prml.yaml",
|
|
5565
|
+
"*.prml.yml",
|
|
5566
|
+
"manifest.prml.yaml",
|
|
5567
|
+
"prml-manifest.yaml",
|
|
5568
|
+
"prml-manifest.yml"
|
|
5569
|
+
],
|
|
5570
|
+
"url": "https://spec.falsify.dev/schema/prml-v0.1.schema.json",
|
|
5571
|
+
"versions": {
|
|
5572
|
+
"v0.1": "https://spec.falsify.dev/schema/prml-v0.1.schema.json",
|
|
5573
|
+
"v0.2-rfc": "https://spec.falsify.dev/schema/prml-v0.2.schema.json"
|
|
5574
|
+
}
|
|
5575
|
+
},
|
|
5253
5576
|
{
|
|
5254
5577
|
"name": ".phrase.yml",
|
|
5255
5578
|
"description": "Phrase configuration file",
|
|
@@ -5854,8 +6177,8 @@
|
|
|
5854
6177
|
},
|
|
5855
6178
|
{
|
|
5856
6179
|
"name": "rustfmt",
|
|
5857
|
-
"description": "rustfmt, a tool to format Rust code",
|
|
5858
|
-
"fileMatch": ["rustfmt.toml"],
|
|
6180
|
+
"description": "rustfmt, a tool to format Rust code. Documentation: https://rust-lang.github.io/rustfmt",
|
|
6181
|
+
"fileMatch": ["rustfmt.toml", ".rustfmt.toml"],
|
|
5859
6182
|
"url": "https://www.schemastore.org/rustfmt.json"
|
|
5860
6183
|
},
|
|
5861
6184
|
{
|
|
@@ -6191,6 +6514,12 @@
|
|
|
6191
6514
|
],
|
|
6192
6515
|
"url": "https://www.schemastore.org/snowflake-connections.json"
|
|
6193
6516
|
},
|
|
6517
|
+
{
|
|
6518
|
+
"name": "Solarxy project config",
|
|
6519
|
+
"description": "Solarxy 3D model viewer and validator project configuration",
|
|
6520
|
+
"fileMatch": ["solarxy.toml"],
|
|
6521
|
+
"url": "https://www.schemastore.org/solarxy-config.json"
|
|
6522
|
+
},
|
|
6194
6523
|
{
|
|
6195
6524
|
"name": "Solidarity",
|
|
6196
6525
|
"description": "CLI config for enforcing environment settings",
|
|
@@ -7470,11 +7799,6 @@
|
|
|
7470
7799
|
],
|
|
7471
7800
|
"url": "https://www.schemastore.org/winget-pkgs-locale-1.0.0.json"
|
|
7472
7801
|
},
|
|
7473
|
-
{
|
|
7474
|
-
"name": "Winutil",
|
|
7475
|
-
"description": "Configuration for files in \"ChrisTitusTech/winutil\"",
|
|
7476
|
-
"url": "https://www.schemastore.org/winutil-presets.json"
|
|
7477
|
-
},
|
|
7478
7802
|
{
|
|
7479
7803
|
"name": "commitlint (.commitlintrc)",
|
|
7480
7804
|
"description": "commitlint configuration files",
|
|
@@ -7943,7 +8267,7 @@
|
|
|
7943
8267
|
"name": "Shopware CLI Extension Store Configuration",
|
|
7944
8268
|
"description": "Shopware CLI Extension Store Configuration",
|
|
7945
8269
|
"fileMatch": [".shopware-extension.yml", ".shopware-extension.yaml"],
|
|
7946
|
-
"url": "https://
|
|
8270
|
+
"url": "https://shopware.github.io/shopware-cli/shopware-extension-schema.json"
|
|
7947
8271
|
},
|
|
7948
8272
|
{
|
|
7949
8273
|
"name": "Shopware CLI Project Store Configuration",
|
|
@@ -7954,7 +8278,7 @@
|
|
|
7954
8278
|
".shopware-project.local.yml",
|
|
7955
8279
|
".shopware-project.local.yaml"
|
|
7956
8280
|
],
|
|
7957
|
-
"url": "https://
|
|
8281
|
+
"url": "https://shopware.github.io/shopware-cli/shopware-project-schema.json"
|
|
7958
8282
|
},
|
|
7959
8283
|
{
|
|
7960
8284
|
"name": "Qodana",
|
|
@@ -8022,7 +8346,13 @@
|
|
|
8022
8346
|
{
|
|
8023
8347
|
"name": "Updatecli Compose",
|
|
8024
8348
|
"description": "Updatecli Compose file, more information on https://www.updatecli.io/docs/core/compose/",
|
|
8025
|
-
"fileMatch": [
|
|
8349
|
+
"fileMatch": [
|
|
8350
|
+
"**/updatecli-compose.d/**/*.yaml",
|
|
8351
|
+
"**/updatecli-compose.d/**/*.yml",
|
|
8352
|
+
"**/updatecli-compose.d/**/*.json",
|
|
8353
|
+
"update-compose.yaml",
|
|
8354
|
+
"updatecli-compose.yaml"
|
|
8355
|
+
],
|
|
8026
8356
|
"url": "https://www.updatecli.io/schema/latest/compose/config.json"
|
|
8027
8357
|
},
|
|
8028
8358
|
{
|
|
@@ -8331,7 +8661,7 @@
|
|
|
8331
8661
|
"name": "completely.yml",
|
|
8332
8662
|
"description": "Completely completion",
|
|
8333
8663
|
"fileMatch": ["completely.yml", "completely.yaml"],
|
|
8334
|
-
"url": "https://
|
|
8664
|
+
"url": "https://raw.githubusercontent.com/DannyBen/completely/master/schemas/completely.json"
|
|
8335
8665
|
},
|
|
8336
8666
|
{
|
|
8337
8667
|
"name": "Madness (madness.yml)",
|
|
@@ -8445,7 +8775,7 @@
|
|
|
8445
8775
|
"name": "Declarative Automation Bundles",
|
|
8446
8776
|
"description": "Declarative Automation Bundles config",
|
|
8447
8777
|
"fileMatch": ["databricks.yml", "databricks.yaml"],
|
|
8448
|
-
"url": "https://
|
|
8778
|
+
"url": "https://github.com/databricks/cli/releases/latest/download/jsonschema.json"
|
|
8449
8779
|
},
|
|
8450
8780
|
{
|
|
8451
8781
|
"name": "JSON Schema Draft 4 (unofficial with '$ref' and 'format')",
|
|
@@ -8591,7 +8921,7 @@
|
|
|
8591
8921
|
{
|
|
8592
8922
|
"name": "GlazeWM settings",
|
|
8593
8923
|
"description": "GlazeWM settings",
|
|
8594
|
-
"fileMatch": ["**/.glaze-wm/config.yaml"],
|
|
8924
|
+
"fileMatch": ["**/.glaze-wm/config.yaml", "**/glazewm/config.yaml"],
|
|
8595
8925
|
"url": "https://www.schemastore.org/glazewm.json"
|
|
8596
8926
|
},
|
|
8597
8927
|
{
|
|
@@ -8786,19 +9116,19 @@
|
|
|
8786
9116
|
"url": "https://www.schemastore.org/any.json"
|
|
8787
9117
|
},
|
|
8788
9118
|
{
|
|
8789
|
-
"name": "
|
|
8790
|
-
"description": "Zerops
|
|
8791
|
-
"fileMatch": ["zerops.
|
|
9119
|
+
"name": "zerops.yml",
|
|
9120
|
+
"description": "Zerops build, deploy and run configuration YAML file",
|
|
9121
|
+
"fileMatch": ["zerops.yml", "zerops.yaml"],
|
|
8792
9122
|
"url": "https://api.app-prg1.zerops.io/api/rest/public/settings/zerops-yml-json-schema.json"
|
|
8793
9123
|
},
|
|
8794
9124
|
{
|
|
8795
|
-
"name": "Zerops
|
|
8796
|
-
"description": "Zerops
|
|
9125
|
+
"name": "Zerops import file",
|
|
9126
|
+
"description": "Zerops infrastructure-as-code import YAML file",
|
|
8797
9127
|
"fileMatch": [
|
|
8798
|
-
"zerops-import.yaml",
|
|
8799
|
-
"zerops-*-import.yaml",
|
|
8800
9128
|
"zerops-import.yml",
|
|
8801
|
-
"zerops
|
|
9129
|
+
"zerops-import.yaml",
|
|
9130
|
+
"zerops-*-import.yml",
|
|
9131
|
+
"zerops-*-import.yaml"
|
|
8802
9132
|
],
|
|
8803
9133
|
"url": "https://api.app-prg1.zerops.io/api/rest/public/settings/import-project-yml-json-schema.json"
|
|
8804
9134
|
},
|
|
@@ -8921,10 +9251,10 @@
|
|
|
8921
9251
|
"url": "https://www.schemastore.org/winutil-applications.json"
|
|
8922
9252
|
},
|
|
8923
9253
|
{
|
|
8924
|
-
"name": "Preset list for a
|
|
9254
|
+
"name": "Preset list for a \"ChrisTitusTech/winutil\"",
|
|
8925
9255
|
"description": "Preset list for a WinUtil",
|
|
8926
9256
|
"fileMatch": ["**/*winutil*/config/preset.json"],
|
|
8927
|
-
"url": "https://www.schemastore.org/winutil-
|
|
9257
|
+
"url": "https://www.schemastore.org/winutil-presets.json"
|
|
8928
9258
|
},
|
|
8929
9259
|
{
|
|
8930
9260
|
"name": "GitHub Actions typing",
|
|
@@ -9703,6 +10033,15 @@
|
|
|
9703
10033
|
"fileMatch": ["*.nexusrpc.yaml", "*.nexusrpc.yml"],
|
|
9704
10034
|
"url": "https://raw.githubusercontent.com/nexus-rpc/nexus-rpc-gen/main/schemas/nexus-rpc-gen.json"
|
|
9705
10035
|
},
|
|
10036
|
+
{
|
|
10037
|
+
"name": "Agent Permission Policy",
|
|
10038
|
+
"description": "Cross-agent permission policy for AI coding agents",
|
|
10039
|
+
"fileMatch": [
|
|
10040
|
+
"**/.agents/permissions.json",
|
|
10041
|
+
"**/.agents/permissions.local.json"
|
|
10042
|
+
],
|
|
10043
|
+
"url": "https://raw.githubusercontent.com/Mearman/agent-permissions/main/agent-permissions.schema.json"
|
|
10044
|
+
},
|
|
9706
10045
|
{
|
|
9707
10046
|
"name": "AgentCore CLI",
|
|
9708
10047
|
"description": "Configuration file for Amazon Bedrock AgentCore CLI projects",
|
|
@@ -9770,9 +10109,114 @@
|
|
|
9770
10109
|
},
|
|
9771
10110
|
{
|
|
9772
10111
|
"name": "Envelope Team Definition",
|
|
9773
|
-
"description": "Open standard for AI agent team definitions
|
|
10112
|
+
"description": "Open standard for AI agent team definitions \u2014 declare agents, roles, tools, access policies, and pipelines in a single versioned document",
|
|
9774
10113
|
"fileMatch": ["*.envelope.json", "team.envelope.json"],
|
|
9775
10114
|
"url": "https://schema.openenvelope.org/team/v1.json"
|
|
10115
|
+
},
|
|
10116
|
+
{
|
|
10117
|
+
"name": "Acton",
|
|
10118
|
+
"description": "Configuration file for Acton projects",
|
|
10119
|
+
"fileMatch": ["Acton.toml"],
|
|
10120
|
+
"url": "https://raw.githubusercontent.com/ton-blockchain/acton/master/crates/acton-config/schemas/acton.schema.json"
|
|
10121
|
+
},
|
|
10122
|
+
{
|
|
10123
|
+
"name": "memnex",
|
|
10124
|
+
"description": "Open specification for portable meeting outputs \u2014 transcripts, summaries, action items, and decisions. https://memnex.org",
|
|
10125
|
+
"fileMatch": ["*.memnex.json", "meeting-output.json"],
|
|
10126
|
+
"url": "https://memnex.org/schema/v0.2/meeting-output.schema.json",
|
|
10127
|
+
"versions": {
|
|
10128
|
+
"0.1": "https://memnex.org/schema/v0.1/meeting-output.schema.json",
|
|
10129
|
+
"0.2": "https://memnex.org/schema/v0.2/meeting-output.schema.json"
|
|
10130
|
+
}
|
|
10131
|
+
},
|
|
10132
|
+
{
|
|
10133
|
+
"name": "runspec",
|
|
10134
|
+
"description": "Interface specification for anything runnable \u2014 scripts, apps, and MCP tools",
|
|
10135
|
+
"fileMatch": ["runspec.toml"],
|
|
10136
|
+
"url": "https://raw.githubusercontent.com/JasonFinestone/runspec/main/schema/runspec.schema.json"
|
|
10137
|
+
},
|
|
10138
|
+
{
|
|
10139
|
+
"name": "dacier.yml",
|
|
10140
|
+
"description": "Dacier configuration file",
|
|
10141
|
+
"fileMatch": ["dacier.yml", "dacier.yaml"],
|
|
10142
|
+
"url": "https://raw.githubusercontent.com/daciertech/SchedulerStartup/refs/heads/main/.schemas/dacier-schema-vscode.json"
|
|
10143
|
+
},
|
|
10144
|
+
{
|
|
10145
|
+
"name": "Qlik Talend Cloud Pipeline - Project",
|
|
10146
|
+
"description": "QTCP project definition",
|
|
10147
|
+
"fileMatch": ["**/qtcp_project.yaml"],
|
|
10148
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/project.schema.json"
|
|
10149
|
+
},
|
|
10150
|
+
{
|
|
10151
|
+
"name": "Qlik Talend Cloud Pipeline - Task",
|
|
10152
|
+
"description": "Task definition within QTCP project",
|
|
10153
|
+
"fileMatch": ["**/qtcp_tasks/*/task.yaml"],
|
|
10154
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.schema.json"
|
|
10155
|
+
},
|
|
10156
|
+
{
|
|
10157
|
+
"name": "Qlik Talend Cloud Pipeline - Dataset",
|
|
10158
|
+
"description": "Dataset definition within QTCP task",
|
|
10159
|
+
"fileMatch": ["**/qtcp_tasks/*/datasets/*.yaml"],
|
|
10160
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.dataset.schema.json"
|
|
10161
|
+
},
|
|
10162
|
+
{
|
|
10163
|
+
"name": "Qlik Talend Cloud Pipeline - Schedule",
|
|
10164
|
+
"description": "Scheduling definition for QTCP tasks",
|
|
10165
|
+
"fileMatch": ["**/qtcp_tasks/*/schedule.yaml"],
|
|
10166
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.schedule.schema.json"
|
|
10167
|
+
},
|
|
10168
|
+
{
|
|
10169
|
+
"name": "Qlik Talend Cloud Pipeline - Data Model",
|
|
10170
|
+
"description": "Data model definition for QTCP tasks",
|
|
10171
|
+
"fileMatch": ["**/qtcp_tasks/*/model.yaml"],
|
|
10172
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.model.schema.json"
|
|
10173
|
+
},
|
|
10174
|
+
{
|
|
10175
|
+
"name": "Qlik Talend Cloud Pipeline - Source Selection",
|
|
10176
|
+
"description": "Source selection definition for QTCP tasks",
|
|
10177
|
+
"fileMatch": ["**/qtcp_tasks/*/sourceSelection.yaml"],
|
|
10178
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.sourceselection.schema.json"
|
|
10179
|
+
},
|
|
10180
|
+
{
|
|
10181
|
+
"name": "Qlik Talend Cloud Pipeline - Transformation Rules",
|
|
10182
|
+
"description": "Transformation rules definition for QTCP tasks",
|
|
10183
|
+
"fileMatch": ["**/qtcp_tasks/*/transformationRules.yaml"],
|
|
10184
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.transformation.rules.schema.json"
|
|
10185
|
+
},
|
|
10186
|
+
{
|
|
10187
|
+
"name": "Qlik Talend Cloud Pipeline - Transformation Data Flow",
|
|
10188
|
+
"description": "Transformation data flow definition for QTCP tasks",
|
|
10189
|
+
"fileMatch": ["**/qtcp_tasks/*/transformationDataFlows/*.yaml"],
|
|
10190
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/task.transformationdataflow.schema.json"
|
|
10191
|
+
},
|
|
10192
|
+
{
|
|
10193
|
+
"name": "Qlik Talend Cloud Pipeline - New Task Defaults",
|
|
10194
|
+
"description": "Default configurations for creating new QTCP tasks (via the UI)",
|
|
10195
|
+
"fileMatch": ["**/qtcp_tasks/newTaskDefaults.yaml"],
|
|
10196
|
+
"url": "https://raw.githubusercontent.com/qlik-oss/schemas/refs/heads/main/qtcp/newtaskdefaults.schema.json"
|
|
10197
|
+
},
|
|
10198
|
+
{
|
|
10199
|
+
"name": "QuikRun Configuration",
|
|
10200
|
+
"description": "Configuration for QuikRun",
|
|
10201
|
+
"fileMatch": ["quikrun.toml"],
|
|
10202
|
+
"url": "https://www.schemastore.org/quikrun.json"
|
|
10203
|
+
},
|
|
10204
|
+
{
|
|
10205
|
+
"name": "Caido Proxy Configuration",
|
|
10206
|
+
"description": "Caido Proxy configuration file",
|
|
10207
|
+
"fileMatch": ["caido.yml", "caido.yaml"],
|
|
10208
|
+
"url": "https://raw.githubusercontent.com/caido/schemas/main/.schemastore/proxy/config.schema.json"
|
|
10209
|
+
},
|
|
10210
|
+
{
|
|
10211
|
+
"name": "amxx-builder manifest",
|
|
10212
|
+
"description": "amxx-builder (amxb) project manifest",
|
|
10213
|
+
"fileMatch": [
|
|
10214
|
+
"amxbuild.yml",
|
|
10215
|
+
"amxbuild.yaml",
|
|
10216
|
+
"amxbuild.*.yml",
|
|
10217
|
+
"amxbuild.*.yaml"
|
|
10218
|
+
],
|
|
10219
|
+
"url": "https://raw.githubusercontent.com/AmxxModularEcosystem/amxx-builder/master/schema/amxbuild.schema.json"
|
|
9776
10220
|
}
|
|
9777
10221
|
]
|
|
9778
10222
|
}
|