forked from eclipse-tractusx/eclipse-tractusx.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkitsData.js
More file actions
1563 lines (1524 loc) · 61.6 KB
/
Copy pathkitsData.js
File metadata and controls
1563 lines (1524 loc) · 61.6 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
/*********************************************************************************
* Eclipse Tractus-X - eclipse-tractusx.github.io
*
* Copyright (c) 2025 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* https://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
import React from 'react';
/*
KIT MASTER DATA
In this file you will find all the master data for the KITs presented in the Kits Gallery and other places.
For each KIT the information model is the following:
{
id: '<unique-kit-id>',
name: '<KIT NAME IN UPPERCASE>',
logo: <kit logo class>,
logoLicencse: {
type: '<license-type>', // e.g., 'CC-BY-4.0', 'Apache-2.0', 'CC0 1.0 Universal', 'MIT'
authors: '<semicolon-separated-list-of-authors>', // e.g., '2026 Eclipse Tractus-X Contributors; 2024,2025 Company Name'
licenseUrl: '<url-to-license-file>', // GitHub URL to .license file
sourceUrl: '<url-to-source-file>', // GitHub URL to logo source file
originalSourceUrl: '<url-to-original-source>' // Optional: URL to original source if logo is derived
},
logoHeight: <logo_height>,
logoWidth: <logo_width>,
route: '<route-to-the-kit-adoption-view>',
colors: {
primary: <primary color in hex>,
gradient: 'linear-gradient(135deg, <lighter primary color in hex> 0%, <primary color in hex> 100%)'
},
maturity: {
currentLevel: '<graduation-level> (Sandbox, Incubation, Graduated)',
graduationStatus: '<graduation_status>' ('Draft' | 'In Progress' | 'In Review' | 'No Further Development' )
graduatedAt: '<YYYY-MM-DD>' // only if currentLevel is 'Graduated'
deprecatedAt: '<YYYY-MM-DD>' // only if the kit is deprecated
},
deprecated: <status boolean true|false >
domain: '<domain category>' // Only for use case KITs (e.g., 'Sustainability', 'Engineering', 'Supply Chain', 'Quality', 'Production')
industries: [<list of industries where the kit is used>], // Optional for foundation KITs, available for use case KITs
description: '<kit description>',
metadata: {
created: '<YYYY-MM-DD>',
lastUpdated: '<YYYY-MM-DD>',
latestVersion: '<version>',
new: <boolean>
}
}
Depending on the logic category from the KIT feel free to place it under one of the following sections
*/
// Import the raw logos
import AutonomousOperationKitLogo from "@site/static/img/kits/autonomous-operation/autonomous-operation-kit-raw-logo.svg"
import ConnectorKitLogo from "@site/static/img/kits/connector/connector-kit-raw-logo.svg";
import DataGovernanceLogo from "@site/static/img/kits/data-governance/data-governance-kit-raw-logo.svg";
import DataTrustSecurityLogo from "@site/static/img/kits/data-trust-and-security/data-trust-and-security-kit-raw-logo.svg";
import BusinessPartnerLogo from "@site/static/img/kits/business-partner/business-partner-raw-logo.svg";
import IndustryCoreKitLogo from "@site/static/img/kits/industry-core/industry-core-kit-raw-logo.svg";
import DigitalTwinKitLogo from "@site/static/img/kits/digital-twin/digital-twin-kit-raw-logo.svg";
import DataDrivenQualityLogo from "@site/static/img/kits/data-driven-quality-management/data-driven-quality-management-kit-raw-logo.svg";
import TraceabilityKitLogo from "@site/static/img/kits/traceability/traceability-kit-raw-logo.svg";
import DataChainKitLogo from "@site/static/img/kits/data-chain/data-chain-kit-raw-logo.svg";
import DueDiligenceKitLogo from "@site/static/img/kits/due-diligence/due-diligence-kit-raw-logo.svg";
import EcoPassKitLogo from "@site/static/img/kits/eco-pass/eco-pass-kit-raw-logo.svg";
import EngineeringAsAServiceKITLogo from "@site/static/img/kits/engineering-as-a-service/engineering-as-a-service-kit-raw-logo.svg";
import PCFKitLogo from "@site/static/img/kits/pcf/pcf-kit-raw-logo.svg";
import CBAMKitLogo from "@site/static/img/kits/cbam/cbam-kit-raw-logo.svg";
import PurisKitLogo from "@site/static/img/kits/puris/puris-kit-raw-logo.svg";
import DCMKitLogo from "@site/static/img/kits/demand-and-capacity-management/demand-and-capacity-management-kit-raw-logo.svg";
import ESSKitLogo from "@site/static/img/kits/ess/ess-kit-raw-logo.svg";
import LogisticsKitLogo from "@site/static/img/kits/logistics/logistics-kit-raw-logo.svg";
import MaaSKitLogo from "@site/static/img/kits/manufacturing-as-a-service/manufacturing-as-a-service-kit-raw-logo.svg";
import ModelBasedProductionLogo from "@site/static/img/kits/model-based-production/model-based-production-kit-raw-logo.svg";
import ModularEngineeringKITLogo from "@site/static/img/kits/modular-engineering/modular-engineering-kit-raw-logo.svg";
import ModularProductionLogo from "@site/static/img/kits/modular-production/modular-production-kit-raw-logo.svg";
import OSIMKitLogo from "@site/static/img/kits/osim/osim-kit-raw-logo.svg";
import RequirementsKitLogo from "@site/static/img/kits/requirements/requirements-kit-raw-logo.svg";
import SupplyChainDisruptionLogo from "@site/static/img/kits/supply-chain-disruption-notification/supply-chain-disruption-notification-kit-raw-logo.svg";
import AgentsKitLogo from "@site/static/img/kits/agents/agents-kit-raw-logo.svg";
import BehaviorTwinKitLogo from "@site/static/img/kits/behavior-twin/behavior-twin-kit-raw-logo.svg";
import CircularityKitLogo from "@site/static/img/kits/circularity/circularity-kit-raw-logo.svg";
import CustomsKitLogo from "@site/static/img/kits/customs/customs-kit-raw-logo.svg";
import GeometryKitLogo from "@site/static/img/kits/geometry/geometry-kit-logo.svg";
import CCMKitLogo from "@site/static/img/kits/company-certificate-management/ccm-kit-raw-logo.svg";
import AiServiceKitLogo from "@site/static/img/kits/ai-service/ai-service-kit-raw-logo.svg";
import MaterialAccountingKitLogo from "@site/static/img/kits/material-accounting/material-accounting-kit-raw-logo.svg";
import EsdscomKitLogo from "@site/static/img/kits/esdscom-kit/esdscom-kit-raw-logo.svg";
import PcfDataAcquisitionKitLogo from "@site/static/img/kits/pcf-data-acquisition/pcf-data-acquisition-kit-raw-logo.svg";
// Import Material-UI icons for industries
import DirectionsCar from '@mui/icons-material/DirectionsCar';
import PrecisionManufacturing from '@mui/icons-material/PrecisionManufacturing';
import Memory from '@mui/icons-material/Memory';
import ApartmentIcon from '@mui/icons-material/Apartment';
import Science from '@mui/icons-material/Science';
// Categories with their corresponding CSS class names and colors
export const licenses = {
'CC-BY-4.0': "https://creativecommons.org/licenses/by/4.0/",
"Apache-2.0": "https://www.apache.org/licenses/LICENSE-2.0",
"CC0 1.0 Universal": "https://creativecommons.org/publicdomain/zero/1.0/",
"MIT": "https://opensource.org/licenses/MIT"
}
// Kit data with their respective logos, routes, industries, and descriptions
export const kitsData = {
dataspaceFoundation: [
{
id: 'connector',
name: 'CONNECTOR KIT',
logo: ConnectorKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors', // Komma separated list of authors
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/connector/connector-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/connector/connector-kit-raw-logo.svg'
},
logoHeight: 80,
logoWidth: 80,
route: '/docs-kits/kits/connector-kit/adoption-view',
colors: {
primary: '#2316E3',
gradient: 'linear-gradient(135deg, #3372CC 0%, #2316E3 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2024-06-07'
},
deprecated: false,
domain: "Enablement Service",
description: 'The EDC as a connector implements a framework agreement for sovereign, cross-organizational data exchange.',
metadata: {
created: '2022-08-01',
lastUpdated: '2026-03-18',
latestVersion: '4.0.0',
new: false
}
},
{
id: 'data-governance',
name: 'DATA GOVERNANCE KIT',
logo: DataGovernanceLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/data-governance/data-governance-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/data-governance/data-governance-kit-raw-logo.svg'
},
logoHeight: 90,
logoWidth: 90,
route: '/docs-kits/kits/data-governance-kit/adoption-view',
colors: {
primary: '#1E13C2',
gradient: 'linear-gradient(135deg, #3372CC 0%, #1E13C2 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft',
deprecatedAt: '2025-11-13'
},
deprecated: true,
domain: "Governance",
description: 'Enable and simplify data governance.',
metadata: {
created: '2024-03-08',
lastUpdated: '2024-03-08',
latestVersion: '0.1.0',
new: false
}
},
{
id: 'data-trust-security',
name: 'DATA TRUST & SECURITY KIT',
logo: DataTrustSecurityLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/data-trust-and-security/data-trust-and-security-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/data-trust-and-security/data-trust-and-security-kit-raw-logo.svg'
},
logoHeight: 110,
logoWidth: 110,
route: '/docs-kits/kits/data-trust-and-security-kit/adoption-view',
colors: {
primary: '#2A1FB3',
gradient: 'linear-gradient(135deg, #3372CC 0%, #2A1FB3 100%)'
},
maturity: {
currentLevel: 'Incubating',
graduationStatus: 'in progress'
},
deprecated: false,
domain: "Security",
description: 'Enable content validation, certification and verification for any use case semantic data.',
metadata: {
created: '2025-09-30',
lastUpdated: '2025-09-30',
latestVersion: '0.0.1',
new: false
}
},
{
id: 'business-partner',
name: 'BUSINESS PARTNER KIT',
logo: BusinessPartnerLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/business-partner/business-partner-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/business-partner/business-partner-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/business-partner-kit/adoption-view',
colors: {
primary: '#1E13C2',
gradient: 'linear-gradient(135deg, #3372CC 0%, #1E13C2 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2025-09-08'
},
deprecated: false,
domain: "Participant Management",
description: 'Get high-quality data business partner data records including the unique identifier.',
metadata: {
created: '2023-03-01',
lastUpdated: '2026-03-18',
latestVersion: '10.1.0',
new: false
}
},
{
id: 'digital-twin',
name: 'DIGITAL TWIN KIT',
logo: DigitalTwinKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/digital-twin/digital-twin-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/digital-twin/digital-twin-kit-raw-logo.svg'
},
logoHeight: 80,
logoWidth: 80,
route: '/docs-kits/kits/digital-twin-kit/adoption-view',
colors: {
primary: '#EA3650',
gradient: 'linear-gradient(135deg, #F08B9B 0%, #EA3650 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2024-08-01'
},
deprecated: false,
domain: "Enablement Service",
description: 'Digital Twins enable data-level interoperability - even between parties previously unknown to each other.',
metadata: {
created: '2023-07-12',
lastUpdated: '2026-02-28',
latestVersion: '2.0.2',
new: false
}
}
],
industryCoreFoundation: [
{
id: 'industry-core',
name: 'INDUSTRY CORE KIT',
logo: IndustryCoreKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/industry-core/industry-core-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/industry-core/industry-core-kit-raw-logo.svg'
},
logoHeight: 120,
logoWidth: 120,
route: '/docs-kits/kits/industry-core-kit/adoption-view',
colors: {
primary: '#EC4A61',
gradient: 'linear-gradient(135deg, #F08B9B 0%, #EC4A61 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2025-03-17'
},
deprecated: false,
domain: "Use Case Platform",
description: 'Connceting Use-Cases with Core Services',
metadata: {
created: '2024-02-28',
lastUpdated: '2025-03-17',
latestVersion: '1.4.0',
new: false
}
},
{
id: 'data-chain',
name: 'DATA CHAIN KIT',
logo: DataChainKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/data-chain/data-chain-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/data-chain/data-chain-kit-raw-logo.svg',
},
logoHeight: 90,
logoWidth: 90,
route: '/docs-kits/kits/data-chain-kit/adoption-view',
colors: {
primary: '#EB4877',
gradient: 'linear-gradient(135deg, #F08B9B 0%, #EB4877 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2024-03-07'
},
deprecated: false,
domain: "Traceability",
description: 'Data Chain KIT is made for apps and services to access connected data distributed between organizations.',
metadata: {
created: '2023-03-01',
lastUpdated: '2024-05-28',
latestVersion: '3.0.1',
new: false
}
},
{
id: 'traceability',
name: 'TRACEABILITY KIT',
logo: TraceabilityKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/traceability/traceability-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/traceability/traceability-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/traceability-kit/adoption-view',
colors: {
primary: '#F45D3C',
gradient: 'linear-gradient(135deg, #FFBD59 0%, #F45D3C 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2024-12-01'
},
deprecated: false,
domain: "Traceability",
description: 'Trace parts and materials across the entire value chain to enable data driven use cases over all n-tier levels.',
metadata: {
created: '2023-04-12',
lastUpdated: '2026-02-17',
latestVersion: '8.0.0',
new: false
}
},
{
id: 'supply-chain-disruption',
name: 'SUPPLY CHAIN DISRUPTION NOTIFICATION KIT',
logo: SupplyChainDisruptionLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/supply-chain-disruption-notification/supply-chain-disruption-notification-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/supply-chain-disruption-notification/supply-chain-disruption-notification-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/supply-chain-disruption-notification-kit/adoption-view',
colors: {
primary: '#9653ED',
gradient: 'linear-gradient(135deg, #E5CCFF 0%, #9653ED 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2025-08-22'
},
deprecated: false,
domain: 'Supply Chain',
description: 'Inform partners about disruptions in the supply chain.',
metadata: {
created: '2024-08-01',
lastUpdated: '2025-08-22',
latestVersion: '2.0.0',
new: false
}
},
{
id: 'agents',
name: 'KNOWLEDGE AGENTS KIT',
logo: AgentsKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/agents/agents-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/agents/agents-kit-raw-logo.svg'
},
logoHeight: 80,
logoWidth: 80,
route: '/docs-kits/kits/knowledge-agents-kit/adoption-view/intro',
colors: {
primary: '#2718FA',
gradient: 'linear-gradient(135deg, #3372CC 0%, #2718FA 100%)'
},
maturity: {
currentLevel: 'Incubating',
graduationStatus: 'draft'
},
deprecated: false,
domain: "Enablement Service",
description: 'Generate Knowledge from Data. Scalable & Efficient Semantic Dataspace Federation.',
metadata: {
created: '2023-09-04',
lastUpdated: '2024-12-09',
latestVersion: '1.3.0',
new: false
}
},
{
id: 'ai-service',
name: 'AI SERVICE KIT',
logo: AiServiceKitLogo,
logoHeight: 80,
logoWidth: 80,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/ai-service/ai-service-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/ai-service/ai-service-kit-raw-logo.svg',
originalSourceUrl: 'https://www.svgrepo.com/svg/235253/chip-ai',
},
route: '/docs-kits/kits/ai-service-kit/adoption-view',
colors: {
primary: '#071de2',
gradient: 'linear-gradient(135deg, #6170f5 0%, #071de2 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Artificial Intelligence (AI)',
description: 'Defines standard ways to expose and use AI Services.',
metadata: {
created: '2025-12-19',
lastUpdated: '2026-01-29',
latestVersion: '0.0.1',
new: true
}
},
],
useCases: [
{
id: 'esdscom',
name: 'eSDS COMMUNICATION KIT',
logo: EsdscomKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 eSDScom Workgroup and contributors; 2026 Catena-X Automotive Network e.V.; 2026 Contributors to the Eclipse Foundation',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/esdscom-kit/esdscom-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/esdscom-kit/esdscom-kit-raw-logo.svg'
},
logoHeight: 90,
logoWidth: 90,
route: '/docs-kits/next/kits/esdscom-kit/adoption-view',
colors: {
primary: '#E8730C',
gradient: 'linear-gradient(135deg, #F5A623 0%, #E8730C 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Supply Chain',
industries: ['chemical','automotive'],
description: 'Standardized exchange of safety data sheets, exposure scenarios and compliance information in the global chemical supply chain.',
metadata: {
created: '2025-09-01',
lastUpdated: '2026-08-06',
latestVersion: '0.0.1',
new: true
}
},
{
id: 'ess',
name: 'ESS KIT',
logo: ESSKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/ess/ess-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/ess/ess-kit-raw-logo.svg'
},
logoHeight: 90,
logoWidth: 90,
route: '/docs-kits/kits/environmental-and-social-standards-kit/adoption-view',
colors: {
primary: '#2B9943',
gradient: 'linear-gradient(135deg, #66C791 0%, #2B9943 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Sustainability',
industries: ['automotive', 'construction'],
description: 'Environmental and Social Standards Incident Management in supply chains.',
metadata: {
created: '2024-03-06',
lastUpdated: '2024-07-11',
latestVersion: '0.3.0',
new: false
}
},
{
id: 'pcf',
name: 'PRODUCT CARBON FOOTPRINT KIT',
logo: PCFKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/pcf/pcf-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/pcf/pcf-kit-raw-logo.svg'
},
logoHeight: 120,
logoWidth: 120,
route: '/docs-kits/kits/product-carbon-footprint-exchange-kit/adoption-view',
colors: {
primary: '#368C7D',
gradient: 'linear-gradient(135deg, #66C791 0%, #368C7D 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2024-08-05'
},
deprecated: false,
domain: 'Sustainability',
industries: ['automotive', 'manufacturing', 'construction', 'semiconductor'],
description: 'Product-specific CO2 footprint.',
metadata: {
created: '2023-08-23',
lastUpdated: '2025-12-19',
latestVersion: '1.4.0',
new: false
}
},
{
id: 'cbam',
name: 'CBAM KIT',
logo: CBAMKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/cbam/cbam-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/cbam/cbam-kit-raw-logo.svg'
},
logoHeight: 120,
logoWidth: 120,
route: '/docs-kits/kits/cbam-kit/adoption-view',
colors: {
primary: '#3a7c96',
gradient: 'linear-gradient(135deg, #66C791 0%, #003399 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Sustainability',
industries: ['automotive'],
description: 'Carbon Border Adjustment Mechanism (CBAM) compliance and reporting for cross-border emissions data.',
metadata: {
created: '2025-08-13',
lastUpdated: '2026-03-09',
latestVersion: '0.1.0',
new: true
}
},
{
id: 'eco-pass',
name: 'ECO PASS KIT',
logo: EcoPassKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/eco-pass/eco-pass-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/eco-pass/eco-pass-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/eco-pass-kit/adoption-view',
colors: {
primary: '#267063',
gradient: 'linear-gradient(135deg, #66C791 0%, #267063 100%)'
},
maturity: {
currentLevel: 'Incubating',
graduationStatus: 'in review'
},
deprecated: false,
domain: 'Sustainability',
industries: ['automotive', 'manufacturing', 'construction'],
description: 'Leverage the transparency of digital product passports to strengthen sustainability & compliance.',
metadata: {
created: '2023-08-11',
lastUpdated: '2026-03-03',
latestVersion: '1.5.1',
new: false
}
},
{
id: 'circularity',
name: 'CIRCULARITY KIT',
logo: CircularityKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/circularity/circularity-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/circularity/circularity-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/circularity-kit/adoption-view',
colors: {
primary: '#41891F',
gradient: 'linear-gradient(135deg, #66C791 0%, #41891F 100%)'
},
maturity: {
currentLevel: 'Incubating',
graduationStatus: 'in review'
},
deprecated: false,
domain: 'Sustainability',
industries: ['automotive', 'manufacturing'],
description: 'Enable circular economy business models with data exchange across company boundaries.',
metadata: {
created: '2023-12-08',
lastUpdated: '2024-09-17',
latestVersion: '1.3.0',
new: false
}
},
{
id: 'material-accounting',
name: 'MATERIAL ACCOUNTING KIT',
logo: MaterialAccountingKitLogo,
logoLicencse: {
type: 'Apache-2.0',
authors: '2026 Bytedance;2026 Catena-X Automotive Network e.V.;2026 Contributors to the Eclipse Foundation',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/material-accounting/material-accounting-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/material-accounting/material-accounting-kit-raw-logo.svg',
originalSourceUrl: 'https://www.svgrepo.com/svg/388392/recycling'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/next/kits/material-accounting-kit/adoption-view',
colors: {
primary: '#1cb60e',
gradient: 'linear-gradient(135deg, #6cd162 0%, #1cb60e 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Sustainability',
industries: ['automotive', 'manufacturing', 'chemical'],
description: 'Enable circular economy through end-of-life transparency and data exchange in after market supply chains.',
metadata: {
created: '2026-05-21',
lastUpdated: '2026-05-28',
latestVersion: '0.0.1',
new: true
}
},
{
id: 'due-diligence',
name: 'DUE DILIGENCE CHECK KIT',
logo: DueDiligenceKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors; 2026 Catena-X Automotive Network e.V.',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/due-diligence/due-diligence-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/due-diligence/due-diligence-kit-raw-logo.svg'
},
logoHeight: 140,
logoWidth: 140,
route: '/docs-kits/kits/due-diligence-check-kit/adoption-view',
colors: {
primary: '#01b94b',
gradient: 'linear-gradient(135deg, #49ce97 0%, #01b94b 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Sustainability',
industries: ['automotive', 'chemical'],
description: 'Facilitate due diligence processes by providing standardized data exchange for risk assessment and compliance check.',
metadata: {
created: '2026-02-23',
lastUpdated: '2026-03-09',
latestVersion: '0.0.1',
new: true
}
},
{
id: 'dcm',
name: 'DEMAND & CAPACITY MANAGEMENT KIT',
logo: DCMKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/demand-and-capacity-management/demand-and-capacity-management-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/demand-and-capacity-management/demand-and-capacity-management-kit-raw-logo.svg'
},
logoHeight: 80,
logoWidth: 80,
route: '/docs-kits/kits/demand-and-capacity-management-kit/adoption-view/overview',
colors: {
primary: '#B95EFF',
gradient: 'linear-gradient(135deg, #E5CCFF 0%, #B95EFF 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2025-09-29'
},
deprecated: false,
domain: 'Supply Chain',
industries: ['automotive', 'semiconductor'],
description: 'Quick build of solutions for companies of any size to engage a collaborative capacity management.',
metadata: {
created: '2023-03-01',
lastUpdated: '2026-03-03',
latestVersion: '1.5.0',
new: false
}
},
{
id: 'logistics',
name: 'LOGISTICS KIT',
logo: LogisticsKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/logistics/logistics-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/logistics/logistics-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/logistics-kit/adoption-view',
colors: {
primary: '#B95EFF',
gradient: 'linear-gradient(135deg, #E5CCFF 0%, #B95EFF 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Supply Chain',
industries: ['automotive', 'construction'],
description: 'Provide packing information, transport data and customs topics.',
metadata: {
created: '2025-02-12',
lastUpdated: '2025-02-12',
latestVersion: '1.0.0',
new: false
}
},
{
id: 'customs',
name: 'CUSTOMS KIT',
logo: CustomsKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/customs/customs-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/customs/customs-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/customs-kit/adoption-view',
colors: {
primary: '#B95EFF',
gradient: 'linear-gradient(135deg, #E5CCFF 0%, #B95EFF 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Supply Chain',
industries: ['automotive'],
description: 'Basis for a more efficient customs process and ensure a robust preference calculation result.',
metadata: {
created: '2025-02-25',
lastUpdated: '2025-05-16',
latestVersion: '0.0.0',
new: false
}
},
{
id: 'osim',
name: 'ONLINE SIMULATION KIT',
logo: OSIMKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/osim/osim-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/osim/osim-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/online-simulation-kit/adoption-view',
colors: {
primary: '#AB6BFF',
gradient: 'linear-gradient(135deg, #E5CCFF 0%, #AB6BFF 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Supply Chain',
industries: ['automotive'],
description: 'Gain increased supply chain transparency through collaborative simulation across all stakeholders.',
metadata: {
created: '2023-08-18',
lastUpdated: '2025-03-06',
latestVersion: '3.1.0',
new: false
}
},
{
id: 'puris',
name: 'PURIS KIT',
logo: PurisKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/puris/puris-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/puris/puris-kit-raw-logo.svg'
},
logoHeight: 80,
logoWidth: 80,
route: '/docs-kits/kits/puris-kit/adoption-view',
colors: {
primary: '#A159FF',
gradient: 'linear-gradient(135deg, #E5CCFF 0%, #A159FF 100%)'
},
maturity: {
currentLevel: 'Graduated',
graduatedAt: '2025-08-16'
},
deprecated: false,
domain: 'Supply Chain',
industries: ['automotive'],
description: 'Predictive Unit Realtime Information Service',
metadata: {
created: '2023-11-29',
lastUpdated: '2025-08-16',
latestVersion: '0.4.0',
new: false
}
},
{
id: 'model-based-production',
name: 'MODEL BASED PRODUCTION KIT',
logo: ModelBasedProductionLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/model-based-production/model-based-production-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/model-based-production/model-based-production-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/model-based-development-and-data-processing-kit/adoption-view',
colors: {
primary: '#FEBC02',
gradient: 'linear-gradient(135deg, #FFC357 0%, #FEBC02 100%)'
},
maturity: {
currentLevel: 'Sandbox',
graduationStatus: 'draft'
},
deprecated: false,
domain: 'Engineering',
industries: ['automotive'],
description: 'Federated simulation and data processing.',
metadata: {
created: '2023-12-08',
lastUpdated: '2024-05-27',
latestVersion: '1.0.0',
new: false
}
},
{
id: 'behavior-twin',
name: 'BEHAVIOUR TWIN KIT',
logo: BehaviorTwinKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/behavior-twin/behavior-twin-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/behavior-twin/behavior-twin-kit-raw-logo.svg'
},
logoHeight: 80,
logoWidth: 80,
route: '/docs-kits/kits/behaviour-twin-kit/overview',
colors: {
primary: '#FFA601',
gradient: 'linear-gradient(135deg, #FFC357 0%, #FFA601 100%)'
},
maturity: {
currentLevel: 'Incubating',
graduationStatus: 'draft'
},
deprecated: false,
domain: "Simulations",
industries: ['automotive'],
description: 'Maximize the potential of usage data through calculation services and simulations.',
metadata: {
created: '2024-05-16',
lastUpdated: '2024-05-21',
latestVersion: '1.0.0',
new: false
}
},
{
id: 'data-driven-quality',
name: 'DATA DRIVEN QUALITY KIT',
logo: DataDrivenQualityLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/data-driven-quality-management/data-driven-quality-management-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/data-driven-quality-management/data-driven-quality-management-kit-raw-logo.svg'
},
logoHeight: 120,
logoWidth: 120,
route: '/docs-kits/kits/data-driven-quality-management-kit/adoption-view',
colors: {
primary: '#EE6A28',
gradient: 'linear-gradient(135deg, #FFBD59 0%, #EE6A28 100%)'
},
maturity: {
currentLevel: 'Incubating',
graduationStatus: 'in review'
},
deprecated: false,
domain: 'Quality',
industries: ['automotive'],
description: 'Data driven quality management enables data provider and consumer to exchange and analyse existing data across company boundaries.',
metadata: {
created: '2023-08-18',
lastUpdated: '2025-12-01',
latestVersion: '2.1.0',
new: false
}
},
{
id: 'requirements',
name: 'REQUIREMENTS KIT',
logo: RequirementsKitLogo,
logoLicencse: {
type: 'CC-BY-4.0',
authors: '2026 Eclipse Tractus-X Contributors',
licenseUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/requirements/requirements-kit-raw-logo.svg.license',
sourceUrl: 'https://github.com/eclipse-tractusx/eclipse-tractusx.github.io/blob/main/static/img/kits/requirements/requirements-kit-raw-logo.svg'
},
logoHeight: 100,
logoWidth: 100,
route: '/docs-kits/kits/requirements-kit/adoption-view',