-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheatsheet-body.en.html
More file actions
2179 lines (1968 loc) · 141 KB
/
Copy pathcheatsheet-body.en.html
File metadata and controls
2179 lines (1968 loc) · 141 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
<title>ARE Cheat Sheet — requirements from the stakeholder level down</title>
<style>
/* ---------- tokens ---------- */
:root {
--paper: #e9edf1;
--sheet: #ffffff;
--sheet-2: #f3f6f9;
--ink: #121a24;
--ink-2: #55616f;
--ink-3: #7c8794;
--rule: #c9d3dc;
--rule-soft: #e0e7ed;
--problem: #574aa0;
--problem-bg: #efecfb;
--solution: #0c6360;
--solution-bg:#e2f2f0;
--warn: #a03d24;
--warn-bg: #fbeae4;
--ok: #4a6b2f;
--ok-bg: #ecf3e3;
--shadow: 0 1px 2px rgba(18,26,36,.06), 0 8px 24px -16px rgba(18,26,36,.24);
--sans: "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
--serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
--mono: "Cascadia Mono", Consolas, ui-monospace, "SF Mono", Menlo, monospace;
}
@media (prefers-color-scheme: dark) {
:root {
--paper: #0b1017;
--sheet: #131b24;
--sheet-2: #18222d;
--ink: #e2e9f0;
--ink-2: #97a4b2;
--ink-3: #74818f;
--rule: #2a3642;
--rule-soft: #202b36;
--problem: #a89cf2;
--problem-bg: #221f3a;
--solution: #4ec6bd;
--solution-bg:#0e2b2c;
--warn: #e89273;
--warn-bg: #2f1d16;
--ok: #a3c778;
--ok-bg: #1c2617;
--shadow: 0 1px 2px rgba(0,0,0,.4), 0 12px 32px -20px rgba(0,0,0,.8);
}
}
:root[data-theme="light"] {
--paper: #e9edf1; --sheet: #ffffff; --sheet-2: #f3f6f9;
--ink: #121a24; --ink-2: #55616f; --ink-3: #7c8794;
--rule: #c9d3dc; --rule-soft: #e0e7ed;
--problem: #574aa0; --problem-bg: #efecfb;
--solution: #0c6360; --solution-bg: #e2f2f0;
--warn: #a03d24; --warn-bg: #fbeae4;
--ok: #4a6b2f; --ok-bg: #ecf3e3;
--shadow: 0 1px 2px rgba(18,26,36,.06), 0 8px 24px -16px rgba(18,26,36,.24);
}
:root[data-theme="dark"] {
--paper: #0b1017; --sheet: #131b24; --sheet-2: #18222d;
--ink: #e2e9f0; --ink-2: #97a4b2; --ink-3: #74818f;
--rule: #2a3642; --rule-soft: #202b36;
--problem: #a89cf2; --problem-bg: #221f3a;
--solution: #4ec6bd; --solution-bg: #0e2b2c;
--warn: #e89273; --warn-bg: #2f1d16;
--ok: #a3c778; --ok-bg: #1c2617;
--shadow: 0 1px 2px rgba(0,0,0,.4), 0 12px 32px -20px rgba(0,0,0,.8);
}
/* ---------- base ---------- */
* { box-sizing: border-box; }
body {
margin: 0;
background: var(--paper);
color: var(--ink);
font-family: var(--sans);
font-size: 16px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
a { color: var(--solution); text-underline-offset: 3px; }
:focus-visible { outline: 2px solid var(--problem); outline-offset: 2px; border-radius: 2px; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px 96px; }
/* ---------- masthead ---------- */
header.masthead {
padding: 56px 0 28px;
border-bottom: 2px solid var(--ink);
}
.masthead-top {
display: flex; justify-content: space-between; align-items: flex-start;
gap: 16px; flex-wrap: wrap; margin-bottom: 14px;
}
.eyebrow {
font-family: var(--mono);
font-size: 11.5px;
letter-spacing: .16em;
text-transform: uppercase;
color: var(--ink-3);
margin: 0;
}
.masthead-actions { display: flex; align-items: center; gap: 10px; flex: none; }
/* Language names, not flags: a flag names a country, and neither language
belongs to one. The current language is stated rather than linked. */
.lang { display: inline-flex; align-items: baseline; gap: 6px; margin-right: 4px;
font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .03em; }
.lang .here { color: var(--ink); }
.lang .sep { color: var(--rule); }
.lang a { color: var(--ink-3); text-decoration: none; }
.lang a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.feedback-btn, .poster-btn {
display: inline-flex; align-items: center; gap: 7px; flex: none;
font-family: var(--sans); font-size: 13.5px; font-weight: 600;
padding: 9px 16px; border-radius: 999px; text-decoration: none;
white-space: nowrap;
}
.feedback-btn { background: var(--ink); color: var(--paper); }
.poster-btn { border: 1.5px solid var(--rule); color: var(--ink); }
.feedback-btn:hover { background: #0c6360; color: var(--paper); }
.poster-btn:hover { border-color: var(--ink); }
@media (prefers-color-scheme: dark) { .feedback-btn:hover { background: #4ec6bd; } }
h1 {
font-size: clamp(30px, 5vw, 48px);
line-height: 1.08;
letter-spacing: -.025em;
font-weight: 700;
margin: 0 0 16px;
text-wrap: balance;
}
.standfirst {
font-family: var(--serif);
font-size: clamp(17px, 2.2vw, 20px);
line-height: 1.55;
color: var(--ink-2);
max-width: 62ch;
margin: 0 0 24px;
}
.sourcebar {
display: flex; flex-wrap: wrap; gap: 8px 24px;
font-family: var(--mono); font-size: 12px; color: var(--ink-3);
padding-top: 4px;
}
.sourcebar b { color: var(--ink-2); font-weight: 600; }
/* ---------- nav ---------- */
nav.jump {
position: sticky; top: 0; z-index: 20;
background: color-mix(in srgb, var(--paper) 90%, transparent);
backdrop-filter: blur(8px);
border-bottom: 1px solid var(--rule);
margin-bottom: 40px;
}
.jump-inner {
max-width: 1120px; margin: 0 auto; padding: 8px 20px;
display: flex; flex-wrap: wrap; gap: 3px 4px;
}
.jump a {
flex: none; line-height: 1.4;
font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em;
text-transform: uppercase; text-decoration: none;
color: var(--ink-2); padding: 6px 10px; border-radius: 3px;
white-space: nowrap;
}
.jump a:hover { background: var(--sheet-2); color: var(--ink); }
.jump a[aria-current="true"] { background: var(--ink); color: var(--paper); }
/* ---------- sections ---------- */
section { margin: 0 0 56px; scroll-margin-top: 64px; }
.sec-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; flex-wrap: wrap; }
.sec-num {
font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
color: var(--ink-3); border: 1px solid var(--rule); border-radius: 2px;
padding: 1px 6px;
}
h2 { font-size: clamp(22px, 3vw, 28px); letter-spacing: -.02em; margin: 0; font-weight: 700; }
.sec-lede { color: var(--ink-2); max-width: 66ch; margin: 8px 0 24px; }
h3 { font-size: 17px; margin: 32px 0 10px; letter-spacing: -.01em; }
h3:first-child { margin-top: 0; }
p { max-width: 68ch; }
/* ---------- sheet ---------- */
.sheet {
background: var(--sheet);
border: 1px solid var(--rule);
border-radius: 4px;
box-shadow: var(--shadow);
padding: 22px;
}
.sheet + .sheet { margin-top: 16px; }
/* ---------- badges ---------- */
.tag {
display: inline-flex; align-items: center; gap: 5px;
font-family: var(--mono); font-size: 10.5px; font-weight: 600;
letter-spacing: .08em; text-transform: uppercase;
padding: 2px 7px; border-radius: 2px; white-space: nowrap;
}
.tag.problem { background: var(--problem-bg); color: var(--problem); }
.tag.solution { background: var(--solution-bg); color: var(--solution); }
.tag.warn { background: var(--warn-bg); color: var(--warn); }
.tag.ok { background: var(--ok-bg); color: var(--ok); }
.tag.plain { background: var(--sheet-2); color: var(--ink-2); border: 1px solid var(--rule-soft); }
code, .mono { font-family: var(--mono); font-size: .92em; }
code {
background: var(--sheet-2); border: 1px solid var(--rule-soft);
padding: 1px 5px; border-radius: 3px; color: var(--ink);
}
.missing { color: var(--warn); }
/* ---------- tables ---------- */
.scroller { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: 14.5px; }
th, td { text-align: left; vertical-align: top; padding: 10px 14px 10px 0; border-bottom: 1px solid var(--rule-soft); }
th {
font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
text-transform: uppercase; color: var(--ink-3); font-weight: 600;
border-bottom: 1px solid var(--rule); padding-bottom: 8px;
}
tbody tr:last-child td { border-bottom: none; }
tr.highlight td { background: var(--ok-bg); }
tr.highlight td:first-child { box-shadow: inset 3px 0 0 var(--ok); padding-left: 11px; }
table.kano-cat td:first-child, table.kano-cat th:first-child { white-space: nowrap; }
/* ---------- ladder ---------- */
.ladder { display: flex; flex-direction: column; gap: 2px; }
.rung {
display: grid;
grid-template-columns: 250px 1fr;
gap: 0 24px;
align-items: start;
padding: 16px 0;
border-bottom: 1px solid var(--rule-soft);
}
.rung:last-child { border-bottom: none; }
.rung-iso {
font-family: var(--mono); font-size: 11px; letter-spacing: .08em;
text-transform: uppercase; color: var(--ink-3); display: block; margin-bottom: 4px;
}
.rung-iso.missing { color: var(--warn); }
.rung-name { font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.rung-safe { font-family: var(--serif); font-style: italic; color: var(--ink-2); font-size: 15px; }
.rung-body { display: flex; flex-direction: column; gap: 8px; }
.rung-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.rung-note { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.rung-rail { padding-left: 12px; }
.rung-rail.lvl-0 { border-left: 2px dashed var(--rule); margin-left: 0; }
.rung-rail.lvl-1 { border-left: 2px solid var(--problem); margin-left: 0; }
.rung-rail.lvl-2 { border-left: 2px solid var(--solution); margin-left: 16px; }
.rung-rail.lvl-3 { border-left: 2px solid var(--solution); margin-left: 32px; }
.rung-rail.lvl-4 { border-left: 2px solid var(--t-task); padding-left: 12px; margin-left: 48px; }
/* ---------- Typfarben (gleiche Codierung wie das Uebersichts-SVG) ---------- */
:root {
--t-business:#a8811a; --t-stakeholder:#7b4fb0; --t-system:#2f7d43;
--t-story:#2c6ea8; --t-task:#5a6672; --t-quality:#0f7d76;
--t-constraint:#6b747d; --t-enabler:#6b5e1f;
--we-bg:#111820; --we-fg:#f3f6f9;
--logo-plate:transparent; --logo-pad:0;
}
@media (prefers-color-scheme: dark) {
:root {
--t-business:#e0c05a; --t-stakeholder:#bda1ee; --t-system:#6fc386;
--t-story:#77b4e8; --t-task:#9aa7b4; --t-quality:#5fc9c0;
--t-constraint:#98a2ad; --t-enabler:#dcc97a;
--we-bg:#e8eef4; --we-fg:#0b1017;
--logo-plate:#ffffff; --logo-pad:6px 9px;
}
}
:root[data-theme="light"]{--t-business:#a8811a;--t-stakeholder:#7b4fb0;--t-system:#2f7d43;--t-story:#2c6ea8;--t-task:#5a6672;--t-quality:#0f7d76;--t-constraint:#6b747d;--t-enabler:#6b5e1f;--we-bg:#111820;--we-fg:#f3f6f9;--logo-plate:transparent;--logo-pad:0;}
:root[data-theme="dark"]{--t-business:#e0c05a;--t-stakeholder:#bda1ee;--t-system:#6fc386;--t-story:#77b4e8;--t-task:#9aa7b4;--t-quality:#5fc9c0;--t-constraint:#98a2ad;--t-enabler:#dcc97a;--we-bg:#e8eef4;--we-fg:#0b1017;--logo-plate:#ffffff;--logo-pad:6px 9px;}
a.jumplink { color: inherit; text-decoration: none; border-bottom: 1px dotted var(--ink-3); }
a.jumplink:hover { border-bottom-color: var(--solution); color: var(--solution); }
a.jumplink::after { content: " ↗"; font-size: .85em; color: var(--ink-3); }
.we {
display:inline-flex; align-items:center; font-family:var(--mono); font-size:9.5px;
font-weight:700; letter-spacing:.1em; background:var(--we-bg); color:var(--we-fg);
padding:2px 5px; border-radius:2px; vertical-align:2px; margin-left:7px;
}
.we::before { content:"WE"; }
.ic { display:inline-block; width:17px; height:17px; vertical-align:-3px; margin-right:8px; }
.ic svg { width:17px; height:17px; display:block; }
.ic.c-story svg { fill:var(--t-story); stroke:var(--t-story); }
.ic.c-system svg { fill:var(--t-system); stroke:var(--t-system); }
.ic.c-quality svg { fill:var(--t-quality); stroke:var(--t-quality); }
.ic.c-plain svg { fill:var(--ink-3); stroke:var(--ink-3); }
.ic.c-business svg { fill:var(--t-business); stroke:var(--t-business); }
.ic.c-stakeholder svg { fill:var(--t-stakeholder); stroke:var(--t-stakeholder); }
.ic.c-task svg { fill:var(--t-task); stroke:var(--t-task); }
.c-business i svg { fill:var(--t-business); stroke:var(--t-business); }
.c-stakeholder i svg { fill:var(--t-stakeholder); stroke:var(--t-stakeholder); }
.c-system i svg { fill:var(--t-system); stroke:var(--t-system); }
.c-story i svg { fill:var(--t-story); stroke:var(--t-story); }
.c-task i svg { fill:var(--t-task); stroke:var(--t-task); }
.c-quality i svg { fill:var(--t-quality); stroke:var(--t-quality); }
.c-constraint i svg { fill:var(--t-constraint); stroke:var(--t-constraint); }
.c-enabler i svg { fill:var(--t-enabler); stroke:var(--t-enabler); }
.rung-name .ic { margin-right:7px; }
.kic { display:inline-block; width:30px; height:15px; vertical-align:-2px; margin-right:9px; }
.kic svg { width:30px; height:15px; display:block; }
.kic path { fill:none; stroke-width:2; stroke-linecap:round; }
.swatches { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:10px 16px; margin:0; }
.sw { display:flex; align-items:center; gap:9px; font-size:13.5px; }
.sw i { flex:none; width:24px; height:24px; border-radius:5px; border:1.5px solid;
display:grid; place-items:center; }
.sw i svg { width:15px; height:15px; display:block; }
.sw b { font-weight:600; }
.sw span { color:var(--ink-2); font-size:12.5px; }
.c-business i{border-color:var(--t-business);background:color-mix(in srgb,var(--t-business) 22%,transparent)}
.c-stakeholder i{border-color:var(--t-stakeholder);background:color-mix(in srgb,var(--t-stakeholder) 22%,transparent)}
.c-system i{border-color:var(--t-system);background:color-mix(in srgb,var(--t-system) 22%,transparent)}
.c-story i{border-color:var(--t-story);background:color-mix(in srgb,var(--t-story) 22%,transparent)}
.c-task i{border-color:var(--t-task);background:color-mix(in srgb,var(--t-task) 14%,transparent)}
.c-quality i{border-color:var(--t-quality);background:color-mix(in srgb,var(--t-quality) 22%,transparent)}
.c-constraint i{border-color:var(--t-constraint);background:color-mix(in srgb,var(--t-constraint) 26%,transparent)}
.c-enabler i{border-color:var(--t-enabler);background:color-mix(in srgb,var(--t-enabler) 26%,transparent)}
/* Struktur-Panel */
.panelbar { display:flex; flex-wrap:wrap; gap:10px 14px; align-items:center; padding:0 0 16px; }
.swlabel { font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-3); }
.seg { display:inline-flex; border:1px solid var(--rule); border-radius:4px; overflow:hidden; }
.seg button { font-family:var(--mono); font-size:11.5px; letter-spacing:.05em; background:var(--sheet);
color:var(--ink-2); border:none; padding:7px 14px; cursor:pointer; }
.seg button + button { border-left:1px solid var(--rule); }
.seg button[aria-pressed="true"] { background:var(--ink); color:var(--paper); }
.seg button:hover:not([aria-pressed="true"]) { color:var(--ink); }
.panel[data-view="base"] .only-prop { display:none; }
.panel[data-view="prop"] .only-base { display:none; }
/* Diagramm-Bausteine */
.d-h { font-family:var(--mono); font-size:11px; font-weight:700; letter-spacing:.14em; fill:var(--ink-3); }
.d-model { font-family:var(--sans); font-size:19px; font-weight:700; letter-spacing:-.01em; fill:var(--ink); }
.d-t { font-family:var(--mono); font-size:10.5px; font-weight:700; letter-spacing:.05em; }
.d-s { font-family:var(--mono); font-size:9px; letter-spacing:.05em; fill:var(--ink-2); }
.d-s .fmt { fill:var(--ink); font-weight:700; }
.d-n { font-family:var(--sans); font-size:11.5px; fill:var(--ink-2); }
.d-hl { fill:var(--warn); opacity:.16; }
.d-hl.q { fill:var(--t-quality); }
.d-inv { fill:var(--paper); }
.d-e { stroke:var(--ink-3); fill:none; stroke-width:1.4; }
.d-e-ref { stroke:var(--t-quality); fill:none; stroke-width:1.5; stroke-dasharray:5 3; }
.d-map path { stroke:var(--ink-3); fill:none; stroke-width:1; stroke-dasharray:3 3; }
.d-e-dash { stroke:var(--ink-3); fill:none; stroke-width:1.3; stroke-dasharray:4 3; }
.bul { fill:var(--ink-3); }
.ifc { fill:var(--sheet); stroke:var(--rule); stroke-width:1.2; rx:3; }
.ifc.risk { stroke:var(--warn); stroke-width:2; }
.pers circle, .pers path { fill:none; stroke:var(--t-stakeholder); stroke-width:1.8; stroke-linecap:round; }
.d-el { font-family:var(--mono); font-size:9px; letter-spacing:.04em; fill:var(--ink-2); }
.bx { stroke-width:1.6; rx:4; }
.bx-business{fill:color-mix(in srgb,var(--t-business) 22%,transparent);stroke:var(--t-business)}
.bx-stakeholder{fill:color-mix(in srgb,var(--t-stakeholder) 22%,transparent);stroke:var(--t-stakeholder)}
.bx-system{fill:color-mix(in srgb,var(--t-system) 22%,transparent);stroke:var(--t-system)}
.bx-story{fill:color-mix(in srgb,var(--t-story) 22%,transparent);stroke:var(--t-story)}
.bx-task{fill:color-mix(in srgb,var(--t-task) 12%,transparent);stroke:var(--t-task)}
.bx-quality{fill:color-mix(in srgb,var(--t-quality) 20%,transparent);stroke:var(--t-quality)}
.bx-constraint{fill:color-mix(in srgb,var(--t-constraint) 26%,transparent);stroke:var(--t-constraint)}
.bx-enabler{fill:color-mix(in srgb,var(--t-enabler) 16%,transparent);stroke:var(--t-enabler)}
.bx-blackbox{fill:var(--ink);stroke:var(--ink)}
.bx-ac{fill:var(--sheet-2);stroke:var(--rule)}
.bx-ac-opt{fill:color-mix(in srgb,var(--t-quality) 10%,transparent);stroke:var(--t-quality);stroke-dasharray:6 3}
.side{fill:color-mix(in srgb,var(--ink) 4%,transparent);stroke:var(--rule);stroke-width:1;rx:8}
.bx-ghost{fill:none;stroke:var(--rule);stroke-dasharray:5 4}
.we-svg rect{fill:var(--we-bg)}
.we-svg text{fill:var(--we-fg);font-family:var(--mono);font-size:8px;font-weight:700;letter-spacing:.08em}
/* ---------- type cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.card {
scroll-margin-top: 72px;
background: var(--sheet); border: 1px solid var(--rule); border-radius: 4px;
box-shadow: var(--shadow); padding: 18px; display: flex; flex-direction: column; gap: 12px;
}
.card-top { display: flex; align-items: center; gap: 10px; }
.card-icon { flex: none; width: 22px; height: 22px; display: block; }
.card-icon svg { width: 22px; height: 22px; display: block; }
.card-icon.c-stakeholder svg { fill: var(--t-stakeholder); stroke: var(--t-stakeholder); }
.card-icon.c-system svg { fill: var(--t-system); stroke: var(--t-system); }
.card-icon.c-story svg { fill: var(--t-story); stroke: var(--t-story); }
.card-icon.c-quality svg { fill: var(--t-quality); stroke: var(--t-quality); }
.card-icon.c-constraint svg { fill: var(--t-constraint); stroke: var(--t-constraint); }
.card-icon.c-enabler svg { fill: var(--t-enabler); stroke: var(--t-enabler); }
.card-icon.plain svg { fill: var(--ink-3); stroke: var(--ink-3); }
.card-name { flex: 1; font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.card-top .tag { flex: none; }
.card-def { font-family: var(--serif); color: var(--ink-2); font-size: 15px; line-height: 1.5; margin: 0; }
.attrs {
background: var(--sheet-2); border: 1px solid var(--rule-soft);
border-radius: 3px; padding: 12px 14px;
}
.attrs h5 {
font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
color: var(--ink-3); margin: 0 0 8px; font-weight: 600;
}
.attr-list {
display: grid; grid-template-columns: max-content 1fr; gap: 5px 14px;
margin: 0; font-size: 13px; line-height: 1.45;
}
.attr-list dt { font-family: var(--mono); font-size: 11.5px; font-weight: 600; color: var(--ink); }
.attr-list dd { margin: 0; color: var(--ink-2); }
.kv { display: grid; grid-template-columns: max-content 1fr; gap: 6px 14px; font-size: 13.5px; }
.kv dt {
font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
color: var(--ink-3); padding-top: 3px;
}
.kv dd { margin: 0; }
/* ---------- template blocks ---------- */
.tpl {
background: var(--sheet-2); border: 1px solid var(--rule-soft);
border-left: 3px solid var(--solution);
border-radius: 0 3px 3px 0; padding: 12px 14px;
font-family: var(--mono); font-size: 13px; line-height: 1.65;
white-space: pre-wrap; overflow-x: auto;
}
.tpl.problem { border-left-color: var(--problem); }
.tpl-label {
font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
color: var(--ink-3); margin: 18px 0 6px; font-weight: 600;
}
.tpl-label:first-child { margin-top: 0; }
.ex {
font-family: var(--serif); font-size: 15px; color: var(--ink-2);
border-left: 3px solid var(--rule); padding-left: 14px; margin: 10px 0 0;
}
.ex b { color: var(--ink); font-weight: 600; font-style: normal; }
.rung-ex {
font-family: var(--serif); font-size: 14px; color: var(--ink-2);
border-left: 3px solid var(--rule); padding-left: 12px; margin: 0;
}
.rung-ex b {
display: block; margin-bottom: 2px;
font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
color: var(--ink-3); font-weight: 600;
}
/* ---------- diagram ---------- */
.diagram { overflow-x: auto; padding: 8px 0 4px; }
.diagram svg { display: block; min-width: 740px; }
/* ---------- kano ---------- */
.k-axis { stroke: var(--rule); stroke-width: 1.2; }
.k-curve { fill: none; stroke-width: 2.4; stroke-linecap: round; }
.k-basic { stroke: var(--warn); }
.k-perf { stroke: var(--solution); }
.k-delight { stroke: var(--ok); }
.k-decay { stroke: var(--problem); stroke-width: 7; fill: none; stroke-linecap: butt; }
.k-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; font-weight: 600; }
.k-axis-label { fill: var(--ink-3); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
.k-axis-title { fill: var(--ink-2); font-family: var(--mono); font-size: 10px; letter-spacing: .14em; font-weight: 600; }
.k-grid { stroke: var(--rule-soft); stroke-width: 1; }
.k-face { fill: none; stroke: var(--ink-3); stroke-width: 1.4; }
.k-face .k-eye { fill: var(--ink-3); stroke: none; }
.k-face .k-mouth { fill: none; stroke: var(--ink-3); stroke-width: 1.6; stroke-linecap: round; }
/* ---------- finder ---------- */
.finder-controls { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 220px; flex: 1; }
.field label {
font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
text-transform: uppercase; color: var(--ink-3);
}
select {
font-family: var(--sans); font-size: 15px; color: var(--ink);
background: var(--sheet-2); border: 1px solid var(--rule);
border-radius: 3px; padding: 9px 10px; width: 100%;
}
.finder-out { border-top: 1px solid var(--rule); padding-top: 18px; }
.finder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.fo-cell h4 {
font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
color: var(--ink-3); margin: 0 0 6px; font-weight: 600;
}
.fo-cell p { margin: 0; font-size: 14.5px; }
.fo-fields { display: flex; flex-wrap: wrap; gap: 5px; }
.callout {
background: var(--ok-bg); border: 1px solid color-mix(in srgb, var(--ok) 35%, transparent);
border-radius: 4px; padding: 16px 18px; margin-top: 24px;
}
.callout.warn { background: var(--warn-bg); border-color: color-mix(in srgb, var(--warn) 35%, transparent); }
.callout h4 { margin: 0 0 8px; font-size: 15px; }
.callout ul { margin: 0; padding-left: 20px; font-size: 14.5px; color: var(--ink-2); }
.callout li { margin-bottom: 4px; }
.callout li b { color: var(--ink); }
ul.cell-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 4px; }
ul.cell-list li { position: relative; padding-left: 14px; }
ul.cell-list li::before {
content: ""; position: absolute; left: 0; top: .62em;
width: 5px; height: 5px; border-radius: 50%; background: var(--ink-3);
}
ul.tight { margin: 0; padding-left: 20px; }
ul.tight li { margin-bottom: 5px; }
footer.colophon {
border-top: 1px solid var(--rule); margin-top: 24px; padding-top: 20px;
font-family: var(--mono); font-size: 11.5px; color: var(--ink-3);
display: flex; flex-wrap: wrap; align-items: center; gap: 6px 24px;
}
footer.colophon .cogc {
/* content-box so the dark-mode plate grows outward instead of shrinking the
mark, which would leave the logo a different size in each theme. */
box-sizing: content-box;
margin-left: auto; flex: none; width: 110px; height: auto;
background: var(--logo-plate); padding: var(--logo-pad); border-radius: 5px;
}
@media (max-width: 720px) {
.rung { grid-template-columns: 1fr; gap: 10px; }
.attr-list, .kv { grid-template-columns: 1fr; gap: 2px 0; }
.attr-list dd, .kv dd { margin-bottom: 8px; }
}
@media print {
nav.jump, .panelbar { display: none; }
.sheet, .card { box-shadow: none; break-inside: avoid; }
}
@media (prefers-reduced-motion: reduce) {
* { transition: none !important; animation: none !important; }
}
</style>
<header class="masthead">
<div class="wrap">
<div class="masthead-top">
<p class="eyebrow">Advanced Requirements Engineering · Cheat Sheet</p>
<div class="masthead-actions">
<span class="lang"><a href="../../cheat-sheet/" hreflang="de" lang="de">Deutsch</a><span class="sep">·</span><span class="here">English</span></span>
<a class="poster-btn" href="../poster/">🖼 Poster</a>
<a class="feedback-btn" href="https://github.com/CapeOfGoodCode/requirements-engineering/issues/new" target="_blank" rel="noopener">💬 Give feedback</a>
</div>
</div>
<h1>From Stakeholder Requirement to Acceptance Criteria</h1>
<p class="standfirst">
Which requirement types there are, how they map onto SAFe, which format describes which level, and how decomposition works its way down.
</p>
<div class="sourcebar">
<span><b>Based on:</b> ISO/IEC/IEEE 29148:2018 · SAFe · Cockburn · Bass/Clements/Kazman</span>
</div>
</div>
</header>
<nav class="jump" aria-label="Sections">
<div class="jump-inner">
<a href="#ebenen">Levels & SAFe</a>
<a href="#artefakte">Artifacts</a>
<a href="#formate">Formats</a>
<a href="#dekomposition">Decomposition</a>
<a href="#grenzen">System Boundaries</a>
<a href="#domain">Domain Model</a>
<a href="#klassifikation">Classification</a>
<a href="#qualitaet">Quality question</a>
<a href="#kano">KANO</a>
<a href="#finder">Format finder</a>
<a href="#struktur">Structure & derivation</a>
</div>
</nav>
<div class="wrap">
<!-- ================= 1. EBENEN ================= -->
<section id="ebenen">
<div class="sec-head"><span class="sec-num">01</span><h2>The levels and the two models</h2></div>
<p class="sec-lede">
One level down means: more concrete, smaller, closer to the solution. Every level down to the User Story stays <b>implementation-free</b> — they say <em>what</em> shall hold. Only at the System Element Requirement is it settled <em>how</em> it gets built.
</p>
<div class="sheet">
<div class="ladder">
<div class="rung">
<div class="rung-rail lvl-0">
<span class="rung-iso">ISO 29148 · Business Requirement (BRS)</span>
<span class="rung-name"><span class="ic c-business" aria-hidden="true"><svg viewBox="0 0 20 20"><circle cx="10" cy="10" r="7" fill="none" stroke-width="1.6"/><circle cx="10" cy="10" r="2.6"/></svg></span>Business Goal</span><br>
<span class="rung-safe">Mission, goals, opportunities</span>
</div>
<div class="rung-body">
<div class="rung-meta">
<span class="tag plain">not decomposed</span>
<span class="tag plain">trace target</span>
</div>
<p class="rung-ex"><b>Example</b>Maximize the infotainment premium option take-rate to offset high localized manufacturing costs.</p>
<p class="rung-note">
A <b>Business Goal <em>has</em> Business Objectives</b> — measurable goals the goal can be checked against. Business Requirements have <b>no children</b>: Stakeholder Requirements are not hung underneath them, they <b>trace</b> to them. The trace target is the <b>Business Objective</b> of the Business Goal; where no objectives are written out, requirements trace directly to the goal. That trace is the proof of relevance — no link ⇒ gold-plating. Alongside the Business Goal, at the same rank, sit Business Process Requirement, Operational Business Requirement, Business Risk and the Business Constraints (budget, schedule, law).
</p>
</div>
</div>
<div class="rung">
<div class="rung-rail lvl-1">
<span class="rung-iso">ISO 29148 · Stakeholder Requirement (StRS)</span>
<span class="rung-name"><span class="ic c-stakeholder" aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="2" y="3.5" width="16" height="3" rx="1.5"/><rect x="4" y="8.5" width="12" height="3" rx="1.5"/><rect x="6" y="13.5" width="8" height="3" rx="1.5"/></svg></span>Stakeholder Requirement</span><br>
<span class="rung-safe">SAFe: Epic</span>
</div>
<div class="rung-body">
<div class="rung-meta">
<span class="tag problem">implementation-free</span>
<span class="tag plain">2–6 months</span>
<span class="tag plain">Strategic Planning</span>
</div>
<p class="rung-ex"><b>Example</b>As a driver I want to make a phone call on the road so that I can go on driving.</p>
<p class="rung-note">
Needs and capabilities that users and stakeholders ask for. Bundles related functionality and carries business value. Deliberately coarse — not
<em>singular</em>, not <em>complete</em>, until it is refined. Check:
<b>Validation</b> (“did we build the right thing?”). Sizing: T-shirt — S = 1 PI, M = 1–2 PI, L > 2 PI, where <b>PI = Program Increment</b>, the planning cadence of 8–12 weeks, or 3–5 sprints of 2–4 weeks, in which a feature is finished.
</p>
</div>
</div>
<div class="rung">
<div class="rung-rail lvl-2">
<span class="rung-iso">ISO 29148 · System Requirement (SyRS)</span>
<span class="rung-name"><span class="ic c-system" aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="2.5" y="4" width="15" height="12" rx="2" fill="none" stroke-width="1.6"/><rect x="5.5" y="7" width="9" height="6" rx="1"/></svg></span>System Requirement</span><br>
<span class="rung-safe">SAFe: Feature</span>
</div>
<div class="rung-body">
<div class="rung-meta">
<span class="tag problem">implementation-free · in the domain</span>
<span class="tag plain">1 PI ≈ 8–12 weeks</span>
<span class="tag plain">Increment Planning</span>
</div>
<p class="rung-ex"><b>Example</b>As a driver I want to dial a phone number while driving so that I can talk to a partner while driving.</p>
<p class="rung-note">
Implementation-free description of <em>what</em> the system has to do. Shippable and sellable with one release. Must be <b>bounded</b> : fully developable and testable within exactly one Program Increment. Check: <b>Verification</b>
(“did we build it right?”). Two special cases sit on the same level. The
<b>Architecture Enabler</b> takes up a Developmental Quality: technical work that changes nothing on the outside. And the <b>Operational Feature</b>: if an Operational Quality affects only one feature, it becomes that feature’s acceptance criterion — if it affects several, it belongs to none of them and therefore gets a feature of its own. That is our proposal, deliberately different from what SAFe suggests.
</p>
</div>
</div>
<div class="rung">
<div class="rung-rail lvl-3">
<span class="rung-iso missing">no counterpart in ISO 29148</span>
<span class="rung-name"><span class="ic c-story" aria-hidden="true"><svg viewBox="0 0 20 20"><circle cx="10" cy="5.5" r="2.6" fill="none" stroke-width="1.6"/><path d="M4.5 16.5c0-3 2.5-5 5.5-5s5.5 2 5.5 5" fill="none" stroke-width="1.6" stroke-linecap="round"/></svg></span>User Story</span>
</div>
<div class="rung-body">
<div class="rung-meta">
<span class="tag problem">implementation-free</span>
<span class="tag plain">1 Sprint · 2–4 weeks</span>
</div>
<p class="rung-ex"><b>Example</b>As a driver I want to select the phone functions and the dialing option while driving so that I can type in a phone number.</p>
<p class="rung-note">
<span class="missing"><b>ISO 29148 has no counterpart for this level.</b></span> The User Story is a SAFe level and still describes <em>what</em> the user should be able to do — not how it is built. The rule that keeps it sound: a User Story should <em>span</em> the subsystems and describe user interaction rather than turning component-specific (“update the CAN message matrix layer” would be the mistake that loses the value).
</p>
</div>
</div>
<div class="rung">
<div class="rung-rail lvl-4">
<span class="rung-iso">ISO 29148 · System Element Requirement</span>
<span class="rung-name"><span class="ic c-task" aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="3.5" y="3.5" width="13" height="13" rx="2" fill="none" stroke-width="1.6"/><rect x="7" y="7" width="6" height="6" rx="1"/></svg></span> System Element Requirement</span><br>
<span class="rung-safe">SAFe: Implementation Task</span>
</div>
<div class="rung-body">
<div class="rung-meta">
<span class="tag warn">implementation-bound</span>
<span class="tag plain">outside the course scope</span>
</div>
<p class="rung-ex"><b>Example</b>The dialer service shall normalize the entered phone number to E.164 before handing it to the telephony stack.</p>
<p class="rung-note">
<b>This is where the solution space begins.</b> The technical specification for software, hardware and their interfaces — the <em>how</em> instead of the <em>what</em>. On the same level sits the <b>Sub-System Requirement</b>, which some organizations keep in addition and decompose further. The course ends one level above.
</p>
</div>
</div>
</div>
</div>
<h3>The two models side by side</h3>
<div class="sheet" style="margin-bottom:20px">
<div class="swatches">
<div class="sw c-business"><i aria-hidden="true"><svg viewBox="0 0 20 20"><circle cx="10" cy="10" r="7" fill="none" stroke-width="1.6"/><circle cx="10" cy="10" r="2.6"/></svg></i><div><b>Business Requirement</b><br><span>goal with objectives</span></div></div>
<div class="sw c-stakeholder"><i aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="2" y="3.5" width="16" height="3" rx="1.5"/><rect x="4" y="8.5" width="12" height="3" rx="1.5"/><rect x="6" y="13.5" width="8" height="3" rx="1.5"/></svg></i><div><b>Stakeholder Requirement</b><br><span>SAFe: Epic</span></div></div>
<div class="sw c-system"><i aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="2.5" y="4" width="15" height="12" rx="2" fill="none" stroke-width="1.6"/><rect x="5.5" y="7" width="9" height="6" rx="1"/></svg></i><div><b>System Requirement</b><br><span>SAFe: Feature</span></div></div>
<div class="sw c-story"><i aria-hidden="true"><svg viewBox="0 0 20 20"><circle cx="10" cy="5.5" r="2.6" fill="none" stroke-width="1.6"/><path d="M4.5 16.5c0-3 2.5-5 5.5-5s5.5 2 5.5 5" fill="none" stroke-width="1.6" stroke-linecap="round"/></svg></i><div><b>User Story</b><br><span>SAFe only</span></div></div>
<div class="sw c-task"><i aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="3.5" y="3.5" width="13" height="13" rx="2" fill="none" stroke-width="1.6"/><rect x="7" y="7" width="6" height="6" rx="1"/></svg></i><div><b>System Element Requirement</b><br><span>SAFe: Implementation Task</span></div></div>
<div class="sw c-quality"><i aria-hidden="true"><svg viewBox="0 0 20 20"><path d="M2 14.5h4l2.5-9 3 12 2.5-7h4" fill="none" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/></svg></i><div><b>Quality</b><br><span>Operational Quality, Quality Scenario</span></div></div>
<div class="sw c-constraint"><i aria-hidden="true"><svg viewBox="0 0 20 20"><path d="M7.5 3.5h-4v13h4M12.5 3.5h4v13h-4" fill="none" stroke-width="1.7" stroke-linecap="round" stroke-linejoin="round"/></svg></i><div><b>Constraint</b><br><span>not negotiable</span></div></div>
<div class="sw c-enabler"><i aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="2.5" y="13" width="15" height="3.5" rx="1"/><path d="M10 3l4.5 5h-9z" stroke-width="1.4" stroke-linejoin="round"/></svg></i><div><b>Enabler</b><br><span>technical work</span></div></div>
</div>
<p style="margin:16px 0 0;font-size:13.5px;color:var(--ink-2);max-width:none">
The badge <span class="we"></span> marks everything that is in neither SAFe nor ISO 29148 but is our proposal.
</p>
</div>
<div class="sheet">
<div class="panelbar">
<span class="swlabel">View</span>
<div class="seg" role="group" aria-label="Choose a view">
<button id="p-base" aria-pressed="true">Original</button>
<button id="p-prop" aria-pressed="false">with our proposals</button>
</div>
</div>
<div class="diagram panel" id="modelpanel" data-view="base">
<svg viewBox="0 0 1220 545" role="img" aria-label="SAFe and ISO 29148 as two separate fields side by side, switchable between the original and our proposals">
<defs>
<marker id="mp-ar" viewBox="0 0 10 10" refX="9" refY="5" markerWidth="7" markerHeight="7" orient="auto-start-reverse">
<path d="M0 0 L10 5 L0 10 z" fill="currentColor"/>
</marker>
</defs>
<rect class="side" x="8" y="16" width="644" height="512"/>
<rect class="side" x="672" y="16" width="534" height="512"/>
<text class="d-model" x="22" y="42">SAFe</text>
<text class="d-model" x="686" y="42">ISO 29148</text>
<!-- ============ SAFe · Enabler ============ -->
<rect class="bx bx-enabler" x="22" y="94" width="124" height="34"/>
<text class="d-s" x="84" y="115" text-anchor="middle" fill="var(--ink)">ENABLER EPIC</text>
<rect class="bx bx-enabler" x="22" y="182" width="124" height="34"/>
<text class="d-s" x="84" y="203" text-anchor="middle" fill="var(--ink)">ENABLER FEATURE</text>
<rect class="bx bx-enabler" x="22" y="320" width="124" height="34"/>
<text class="d-s" x="84" y="341" text-anchor="middle" fill="var(--ink)">ENABLER STORY</text>
<!-- ============ SAFe · Quality-Zweig (unser Vorschlag) ============ -->
<g class="only-prop">
<rect class="bx bx-quality" x="164" y="182" width="190" height="52"/>
<text class="d-s" x="259" y="200" text-anchor="middle" fill="var(--t-quality)">OPERATIONAL QUALITY</text>
<text class="d-s" x="259" y="214" text-anchor="middle">REQUIREMENTS</text>
<text class="d-s" x="259" y="226" text-anchor="middle">SENTENCE</text>
<g class="we-svg"><rect x="330" y="174" width="26" height="14" rx="2"/><text x="343" y="184" text-anchor="middle">WE</text></g>
<rect class="bx bx-quality" x="164" y="266" width="190" height="46"/>
<text class="d-s" x="259" y="286" text-anchor="middle" fill="var(--t-quality)">QUALITY SCENARIO</text>
<text class="d-s" x="259" y="300" text-anchor="middle">6-part template</text>
<g class="we-svg"><rect x="330" y="258" width="26" height="14" rx="2"/><text x="343" y="268" text-anchor="middle">WE</text></g>
<path class="d-e" d="M259 234 L259 262" marker-end="url(#mp-ar)" color="var(--t-quality)" stroke="var(--t-quality)"/>
<text class="d-el" x="267" y="254" fill="var(--t-quality)">1..n</text>
<path class="d-e-ref" d="M384 269 L358 285" marker-end="url(#mp-ar)" color="var(--t-quality)"/>
<path class="d-e-ref" d="M384 407 C 372 396, 364 336, 358 303" marker-end="url(#mp-ar)" color="var(--t-quality)"/>
<text class="d-el" x="164" y="330" fill="var(--t-quality)">n : 1 · several features share it</text>
</g>
<!-- ============ SAFe · Kette ============ -->
<rect class="bx bx-stakeholder" x="376" y="94" width="230" height="58"/>
<text class="d-t" x="491" y="114" text-anchor="middle" fill="var(--t-stakeholder)">EPIC</text>
<text class="d-s only-prop" x="491" y="129" text-anchor="middle">USER STORY FORMAT</text>
<text class="d-s only-prop" x="491" y="142" text-anchor="middle">or REQUIREMENTS SENTENCE</text>
<rect class="bx bx-system" x="376" y="182" width="230" height="110"/>
<text class="d-t" x="491" y="202" text-anchor="middle" fill="var(--t-system)">FEATURE</text>
<text class="d-s only-prop" x="491" y="216" text-anchor="middle">USER STORY FORMAT</text>
<rect class="bx bx-ac" x="388" y="224" width="206" height="26"/>
<text class="d-s only-base" x="491" y="241" text-anchor="middle">ACCEPTANCE CRITERIA · functional</text>
<text class="d-s only-prop" x="491" y="241" text-anchor="middle">ACCEPTANCE CRITERIA · <tspan class="fmt">USE CASE</tspan></text>
<rect class="bx bx-ac-opt" x="388" y="256" width="206" height="26"/>
<text class="d-s only-base" x="491" y="273" text-anchor="middle" fill="var(--t-quality)">NFR · optional</text>
<text class="d-s only-prop" x="491" y="273" text-anchor="middle" fill="var(--t-quality)">QUALITY SCENARIO if 1:1 · optional</text>
<rect class="bx bx-story" x="376" y="320" width="230" height="110"/>
<text class="d-t" x="491" y="340" text-anchor="middle" fill="var(--t-story)">USER STORY</text>
<text class="d-s only-prop" x="491" y="354" text-anchor="middle">USER STORY FORMAT</text>
<rect class="bx bx-ac" x="388" y="362" width="206" height="26"/>
<text class="d-s only-base" x="491" y="379" text-anchor="middle">ACCEPTANCE CRITERIA · functional</text>
<text class="d-s only-prop" x="491" y="379" text-anchor="middle">ACCEPTANCE CRITERIA · <tspan class="fmt">1..n GWT</tspan></text>
<rect class="bx bx-ac-opt" x="388" y="394" width="206" height="26"/>
<text class="d-s only-base" x="491" y="411" text-anchor="middle" fill="var(--t-quality)">NFR · optional</text>
<text class="d-s only-prop" x="491" y="411" text-anchor="middle" fill="var(--t-quality)">QUALITY SCENARIO if 1:1 · optional</text>
<rect class="bx bx-task" x="376" y="458" width="230" height="44"/>
<text class="d-s" x="491" y="484" text-anchor="middle" fill="var(--t-task)">IMPLEMENTATION TASK</text>
<g color="var(--ink-3)">
<path class="d-e" d="M491 152 L491 178" marker-end="url(#mp-ar)"/>
<path class="d-e" d="M491 292 L491 316" marker-end="url(#mp-ar)"/>
<path class="d-e" d="M491 430 L491 454" marker-end="url(#mp-ar)"/>
</g>
<!-- ============ ISO 29148 ============ -->
<rect class="bx bx-business" x="686" y="48" width="506" height="30"/>
<text class="d-t" x="939" y="68" text-anchor="middle" fill="var(--t-business)">BUSINESS REQ</text>
<g class="only-base">
<rect class="bx bx-stakeholder" x="686" y="94" width="506" height="58"/>
<text class="d-t" x="939" y="128" text-anchor="middle" fill="var(--t-stakeholder)">STAKEHOLDER REQ</text>
</g>
<g class="only-prop">
<rect class="bx bx-stakeholder" x="686" y="94" width="230" height="58"/>
<text class="d-s" x="801" y="114" text-anchor="middle" fill="var(--t-stakeholder)">STAKEHOLDER REQ · FUNCTIONAL</text>
<text class="d-s" x="801" y="129" text-anchor="middle">USER STORY FORMAT</text>
<text class="d-s" x="801" y="142" text-anchor="middle">(EXCEPTION: REQUIREMENTS SENTENCE)</text>
<rect class="bx bx-quality" x="924" y="94" width="130" height="58"/>
<text class="d-s" x="989" y="114" text-anchor="middle" fill="var(--t-quality)">STAKEHOLDER REQ</text>
<text class="d-s" x="989" y="127" text-anchor="middle" fill="var(--t-quality)">QUALITY</text>
<text class="d-s" x="989" y="143" text-anchor="middle">REQUIREMENTS SENTENCE</text>
<rect class="bx bx-constraint" x="1062" y="94" width="130" height="58"/>
<text class="d-s" x="1127" y="116" text-anchor="middle" fill="var(--t-constraint)">CONSTRAINT</text>
<text class="d-s" x="1127" y="132" text-anchor="middle">REQUIREMENTS SENTENCE</text>
<text class="d-s" x="1127" y="144" text-anchor="middle">“WILL”</text>
<g class="we-svg"><rect x="1166" y="86" width="26" height="14" rx="2"/><text x="1179" y="96" text-anchor="middle">WE</text></g>
</g>
<rect class="bx bx-system" x="686" y="182" width="230" height="110"/>
<text class="d-s" x="801" y="202" text-anchor="middle" fill="var(--t-system)">SYSTEM REQ · FUNCTIONAL</text>
<text class="d-s only-prop" x="801" y="216" text-anchor="middle">USER STORY FORMAT</text>
<rect class="bx bx-ac only-prop" x="698" y="224" width="206" height="26"/>
<text class="d-s only-prop" x="801" y="241" text-anchor="middle">ACCEPTANCE CRITERIA · <tspan class="fmt">USE CASE</tspan></text>
<rect class="bx bx-ac-opt only-prop" x="698" y="256" width="206" height="26"/>
<text class="d-s only-prop" x="801" y="273" text-anchor="middle" fill="var(--t-quality)">QUALITY SCENARIO if 1:1 · optional</text>
<rect class="bx bx-quality" x="924" y="182" width="130" height="110"/>
<text class="d-s" x="989" y="206" text-anchor="middle" fill="var(--t-quality)">SYSTEM REQ</text>
<text class="d-s" x="989" y="219" text-anchor="middle" fill="var(--t-quality)">QUALITY</text>
<text class="d-s only-prop" x="989" y="240" text-anchor="middle">REQUIREMENTS</text>
<text class="d-s only-prop" x="989" y="252" text-anchor="middle">SENTENCE</text>
<rect class="bx bx-constraint" x="1062" y="182" width="130" height="110"/>
<text class="d-s only-base" x="1127" y="240" text-anchor="middle" fill="var(--t-constraint)">CONSTRAINT</text>
<text class="d-s only-prop" x="1127" y="222" text-anchor="middle" fill="var(--t-constraint)">CONSTRAINT</text>
<text class="d-s only-prop" x="1127" y="240" text-anchor="middle">REQUIREMENTS SENTENCE</text>
<text class="d-s only-prop" x="1127" y="252" text-anchor="middle">“WILL”</text>
<g class="only-prop">
<rect class="bx bx-quality" x="924" y="320" width="130" height="46"/>
<text class="d-s" x="989" y="340" text-anchor="middle" fill="var(--t-quality)">QUALITY SCENARIO</text>
<text class="d-s" x="989" y="354" text-anchor="middle">6-part template</text>
<g class="we-svg"><rect x="1030" y="312" width="26" height="14" rx="2"/><text x="1043" y="322" text-anchor="middle">WE</text></g>
<path class="d-e" d="M989 292 L989 316" marker-end="url(#mp-ar)" color="var(--t-quality)" stroke="var(--t-quality)"/>
<text class="d-el" x="997" y="310" fill="var(--t-quality)">1..n</text>
<path class="d-e-ref" d="M908 269 C 918 292, 918 318, 921 336" marker-end="url(#mp-ar)" color="var(--t-quality)"/>
<text class="d-el" x="872" y="312" fill="var(--t-quality)">n : 1</text>
</g>
<rect class="bx bx-task" x="686" y="458" width="130" height="44"/>
<text class="d-s" x="751" y="477" text-anchor="middle" fill="var(--t-task)">SYSTEM</text>
<text class="d-s" x="751" y="490" text-anchor="middle" fill="var(--t-task)">ELEMENT REQ</text>
<rect class="bx bx-task" x="824" y="458" width="130" height="44"/>
<text class="d-s" x="889" y="477" text-anchor="middle" fill="var(--t-task)">SUB-SYSTEM</text>
<text class="d-s" x="889" y="490" text-anchor="middle" fill="var(--t-task)">REQ</text>
<text class="d-s" x="824" y="518">Sub-System Req is proprietary, decomposed further</text>
<g color="var(--ink-3)">
<path class="d-e" d="M801 152 L801 178" marker-end="url(#mp-ar)"/>
<path class="d-e" d="M989 152 L989 178" marker-end="url(#mp-ar)"/>
<path class="d-e only-base" d="M1127 152 L1127 178" marker-end="url(#mp-ar)"/>
<path class="d-e" d="M751 292 L751 454" marker-end="url(#mp-ar)"/>
</g>
<!-- ============ Zuordnungen über die Feldgrenze ============ -->
<g class="d-map">
<path d="M610 122 L682 122"/>
<path d="M610 210 L682 210"/>
<path d="M610 480 L682 480"/>
<text class="d-el" x="646" y="116" text-anchor="middle">≙</text>
<text class="d-el" x="646" y="204" text-anchor="middle">≙</text>
<text class="d-el" x="646" y="474" text-anchor="middle">≙</text>
</g>
</svg>
</div>
<p id="panelnote" style="margin:14px 0 0;color:var(--ink-2);font-size:14px;max-width:none"></p>
</div>
</section>
<!-- ================= 2. ARTEFAKTE ================= -->
<section id="artefakte">
<div class="sec-head"><span class="sec-num">02</span><h2>The artifacts and their attributes</h2></div>
<div class="cards">
<article class="card" id="k-stakeholder">
<div class="card-top">
<span class="card-icon c-stakeholder" aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="2" y="3.5" width="16" height="3" rx="1.5"/><rect x="4" y="8.5" width="12" height="3" rx="1.5"/><rect x="6" y="13.5" width="8" height="3" rx="1.5"/></svg></span>
<span class="card-name">Stakeholder Requirement</span>
<span class="tag problem">Epic</span>
</div>
<p class="card-def">What a user or stakeholder needs — coarse, bundled, value-oriented.</p>
<div class="attrs">
<h5>Attributes</h5>
<dl class="attr-list">
<dt>Title</dt><dd>short name</dd>
<dt>Owner</dt><dd>owns delivery</dd>
<dt>Source</dt><dd>brought the requirement in; open questions are settled with them</dd>
<dt>Description</dt><dd>see format below</dd>
<dt>Estimate</dt><dd>T-shirt: S = 1 PI · M = 1–2 PI · L > 2 PI</dd>
<dt>Business Outcome</dt><dd>reference to the <b>Business Goal</b>, if there are Business Goals</dd>
<dt>Leading Indicators</dt><dd>reference to the <b>Business Objectives</b> of the referenced Business Goal, if there are any</dd>
<dt>… without goals</dt><dd>If there are neither Business Goals nor Objectives, outcome and leading indicators still belong in writing — otherwise the reason the requirement is being built at all is missing</dd>
</dl>
</div>
<dl class="kv">
<dt>Format</dt><dd>functional → <b>User-Story format</b><br>quality → <b>Requirements-Sentence format</b><br><span style="color:var(--ink-2)">in exceptional cases functional as a Requirements Sentence</span></dd>
<dt>Trace</dt><dd>to a <b>Business Objective</b></dd>
<dt>Elaboration</dt><dd>functional → <b>one</b> coarse <b>Elaboration Use Case</b><br>quality → <b>Quality Scenarios</b>, typically 6–7</dd>
</dl>
</article>
<article class="card" id="k-system">
<div class="card-top">
<span class="card-icon c-system" aria-hidden="true"><svg viewBox="0 0 20 20"><rect x="2.5" y="4" width="15" height="12" rx="2" fill="none" stroke-width="1.6"/><rect x="5.5" y="7" width="9" height="6" rx="1"/></svg></span>
<span class="card-name">System Requirement</span>
<span class="tag solution">Feature</span>
</div>
<p class="card-def">A bounded contribution to the system that fits into exactly one PI and can be shipped.</p>
<div class="attrs">
<h5>Attributes</h5>
<dl class="attr-list">
<dt>Title</dt><dd>short name</dd>
<dt>Severity</dt><dd>must · should · nice-to-have. If you like, track it additionally as a <a class="jumplink" href="#kano"><b>KANO category</b></a><span class="we"></span> — the two axes often coincide, but not always: a legal obligation is a “must”, yet in KANO terms often indifferent.</dd>
<dt>Description</dt><dd>see format below</dd>
<dt>Problem Statement</dt><dd>which problem exists today and is solved here</dd>
<dt>Benefit/Value</dt><dd>who gets which benefit</dd>
<dt>Acceptance Criteria</dt><dd>its own Acceptance Use Case</dd>
<dt>… within it</dt><dd>Dependencies (requires another feature, or replaces it) and the associated Operational Qualities belong in the description block</dd>
</dl>
</div>
<dl class="kv">
<dt>Format</dt><dd><b>User-Story format</b></dd>
<dt>Comes from</dt><dd>success scenario, alternative flow or variation of the Elaboration Use Case</dd>
</dl>
</article>
<article class="card" id="k-story">
<div class="card-top">
<span class="card-icon c-story" aria-hidden="true"><svg viewBox="0 0 20 20"><circle cx="10" cy="5.5" r="2.6" fill="none" stroke-width="1.6"/><path d="M4.5 16.5c0-3 2.5-5 5.5-5s5.5 2 5.5 5" fill="none" stroke-width="1.6" stroke-linecap="round"/></svg></span>
<span class="card-name">User Story</span>
<span class="tag solution">sprint item</span>
</div>
<p class="card-def">A single user interaction from the feature’s Acceptance Criteria, doable in one sprint.</p>
<div class="attrs">
<h5>Attributes</h5>
<dl class="attr-list">
<dt>Title</dt><dd>short name, optional</dd>
<dt>Description</dt><dd>see format below</dd>
<dt>Acceptance Criteria</dt><dd>one or more GWT statements</dd>
<dt>Feature Parent</dt><dd>link to the feature it was sliced from</dd>
</dl>
</div>
<dl class="kv">
<dt>Format</dt><dd><b>User-Story format</b></dd>
<dt>Note</dt><dd>A feature may also map to exactly one User Story. The development team may insist on elaboration and builds its “Definition of Ready” on that.</dd>
</dl>
</article>
<article class="card" id="k-usecase">
<div class="card-top">
<span class="card-icon plain" aria-hidden="true"><svg viewBox="0 0 20 20"><ellipse cx="10" cy="10" rx="8" ry="5.2" fill="none" stroke-width="1.6"/></svg></span>
<span class="card-name">Use Case</span>
<span class="tag plain">after Cockburn</span>
</div>
<p class="card-def">The structured interaction sequence. Two entirely different roles, depending on where it hangs.</p>
<div class="attrs">
<h5>Attributes</h5>
<dl class="attr-list">
<dt>Name</dt><dd>name of the use case</dd>
<dt>Actors</dt><dd>actors involved</dd>
<dt>Trigger</dt><dd>what starts the sequence</dd>
<dt>Preconditions</dt><dd>what must hold beforehand</dd>
<dt>Postconditions</dt><dd>what holds afterwards</dd>
<dt>Success Scenario</dt><dd>the steps of the interaction</dd>
<dt>Alternative Flows</dt><dd>deviations and error cases, numbered against the step</dd>
</dl>
</div>
<dl class="kv">
<dt>At the Stakeholder Req.</dt><dd><b>Elaboration Use Case</b> — exactly <b>one</b>, and coarse: the whole sequence with alternatives and variations</dd>
<dt>At the System Req.</dt><dd><b>Acceptance Use Case</b> — narrower, one per feature. If a feature needs two, it usually is not bounded yet.</dd>
</dl>
</article>
<article class="card" id="k-gwt">
<div class="card-top">
<span class="card-icon plain" aria-hidden="true"><svg viewBox="0 0 20 20"><path d="M3 5.5h14M3 10h10M3 14.5h6" fill="none" stroke-width="1.8" stroke-linecap="round"/></svg></span>
<span class="card-name">GWT-Statement</span>
<span class="tag plain">Given-When-Then</span>
</div>
<p class="card-def">The testable acceptance criterion of a User Story — precondition, action, expected change.</p>
<div class="attrs">
<h5>Attributes</h5>
<dl class="attr-list">
<dt>Given</dt><dd>state before the behavior starts</dd>
<dt>When</dt><dd>the specified action</dd>
<dt>Then</dt><dd>the expected change</dd>
</dl>
</div>