39 | *
40 | */
41 |
42 | $active-nav-color: #1d8feb;
43 |
44 | .header {
45 | @extend %contain-floats;
46 |
47 | @include screen {
48 | background: $black;
49 | color: $white;
50 | border-bottom: 10px solid $white;
51 | }
52 | }
53 |
54 | .header__container {
55 | @extend %site-width-container;
56 | @extend %contain-floats;
57 | zoom: 1;
58 |
59 | padding: 9px 0 6px;
60 |
61 | @include screen {
62 | border-bottom: 10px solid $mainstream-brand;
63 | margin-bottom: -10px;
64 | }
65 | }
66 |
67 | .header.header--full-width {
68 | margin-bottom: 0;
69 |
70 | @include screen {
71 | border-bottom: 10px solid $mainstream-brand;
72 | }
73 |
74 | .header__container {
75 | border-bottom: none;
76 | width: auto;
77 | max-width: none;
78 | margin: 0 $gutter-half;
79 |
80 | @include media(tablet) {
81 | margin: 0 $gutter;
82 | }
83 | }
84 | }
85 |
86 | .header--without-border {
87 | border-bottom: none;
88 | margin-bottom: 0;
89 |
90 | .header__container {
91 | border-bottom: none;
92 | margin-bottom: 0;
93 | }
94 | }
95 |
96 | .header__brand {
97 | font-size: 30px;
98 |
99 | // Give brand focus outline on mobile
100 | &:after {
101 | content: ".";
102 | height: 0;
103 | clear: both;
104 | visibility: hidden;
105 | }
106 |
107 | a:link, a:visited {
108 | text-decoration: none;
109 | }
110 |
111 | a:hover {
112 | text-decoration: underline;
113 | }
114 |
115 | .govuk-logo {
116 | float: left;
117 | }
118 |
119 | @include screen {
120 | a:link, a:visited {
121 | color: $white;
122 | }
123 |
124 | a:focus {
125 | background-color: inherit;
126 | }
127 |
128 | @include media(tablet) {
129 | float: left;
130 |
131 | .govuk-logo {
132 | float: none;
133 | }
134 |
135 | a:hover {
136 | text-decoration: none;
137 | border-bottom: 1px solid $white;
138 | }
139 | }
140 | }
141 |
142 | @include print {
143 | a:link, a:visited {
144 | color: $black;
145 | }
146 | }
147 | }
148 |
149 | .header__title {
150 | @include core-24;
151 | display: block;
152 | float: left;
153 | clear: left;
154 |
155 | @include media(tablet) {
156 | display: inherit;
157 | float: none;
158 | clear: none;
159 | }
160 |
161 | .phase-banner {
162 | margin-left: 5px;
163 | }
164 | }
165 |
166 | .header__navigation {
167 | @include screen {
168 |
169 | // We want the same font size on mobile as tablet, so we can't use bold-16.
170 | @include _core-font-generator(
171 | $font-size: 16px,
172 | $font-size-640: 16px,
173 | $font-size-print: 12pt,
174 | $line-height: (20 / 16),
175 | $line-height-640: (20 / 16),
176 | $font-weight: 700
177 | );
178 |
179 | clear: both;
180 |
181 | padding-top: 10px;
182 |
183 | a:link, a:visited {
184 | color: $white;
185 | text-decoration: none;
186 | padding: 8px 0;
187 | display: inline-block;
188 | }
189 |
190 | .active a:link, .active a:visited {
191 | color: $active-nav-color;
192 | }
193 |
194 | a:focus, .active a:focus {
195 | color: $black;
196 | }
197 |
198 | a:hover, a:active {
199 | text-decoration: underline;
200 | }
201 |
202 | ul {
203 | border-top: 1px solid $grey-1;
204 | margin: 0;
205 | padding: 8px 0 0;
206 | }
207 |
208 | li {
209 | list-style: none;
210 | margin: 2px 0;
211 | }
212 |
213 | @include media(tablet) {
214 | display: block;
215 | clear: none;
216 | padding-top: 2px;
217 | border-top: none;
218 | float: right;
219 |
220 | a:link, a:visited {
221 | padding: 0;
222 | }
223 |
224 | ul {
225 | border-top: none;
226 | padding: 0;
227 | }
228 |
229 | li {
230 | float: left;
231 | margin: 12px 0 0 $gutter-half;
232 | }
233 | }
234 | }
235 |
236 | @include print {
237 | display: none;
238 | }
239 | }
240 |
241 | .header__navigation-toggle {
242 | display: none;
243 | }
244 |
245 | .js {
246 | .header__navigation {
247 | display: none;
248 |
249 | @include media(tablet) {
250 | display: block;
251 | }
252 | }
253 |
254 | .header__navigation-toggle {
255 | display: block;
256 | float: right;
257 | color: $white;
258 | background: transparent;
259 | border: 1px solid $grey-1;
260 | border-radius: 3px;
261 | padding: 2px 6px 1px;
262 | font-size: 80%;
263 | font-weight: bold;
264 |
265 | input {
266 | display: none;
267 | }
268 |
269 | @include media(tablet) {
270 | display: none;
271 | }
272 |
273 | &:after {
274 | display: inline-block;
275 | font-size: 8px;
276 | padding-left: 5px;
277 | vertical-align: middle;
278 | content: " \25BC";
279 | }
280 | }
281 |
282 | &.nav-open .header__navigation-toggle:after {
283 | content: "\25B2";
284 | }
285 |
286 | &.nav-open .header__navigation {
287 | display: block;
288 | }
289 | }
290 |
--------------------------------------------------------------------------------
/_sass/modules/_phase-banner.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Phase Banner Component
3 | *
4 | * Example Usage:
5 | *
6 | *
7 | * My Product Beta
8 | *
9 | */
10 |
11 | .phase-banner {
12 | @include bold-14;
13 | padding: 2px 5px 0;
14 | text-transform: uppercase;
15 | letter-spacing: 1px;
16 | vertical-align: middle;
17 |
18 | @include screen {
19 | background: $govuk-blue;
20 | color: $white;
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/_sass/modules/_skip-link.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Skip Link Component
3 | *
4 | * Notes:
5 | *
6 | * - Should be the first element in your
7 | * - Ensure the target (e.g. #main) exists within your pages.
8 | *
9 | * Example Usage:
10 | *
11 | * Skip to main content
12 | */
13 |
14 | .skip-link {
15 | display: block;
16 | position: absolute;
17 | left: -9999em;
18 |
19 | &:focus {
20 | position: relative;
21 | left: inherit;
22 | background: $yellow;
23 | color: $black;
24 | text-decoration: none;
25 | padding: 5px $gutter-half;
26 |
27 | @include media(tablet) {
28 | padding: 5px $gutter;
29 | }
30 | }
31 | }
32 |
--------------------------------------------------------------------------------
/_sass/modules/_technical-documentation.scss:
--------------------------------------------------------------------------------
1 | // Adds combination of margin and padding to headings to make them appear
2 | // correctly when they're linked to as anchors, and scale them on mobile
3 | @mixin heading-offset($tabletTopMargin) {
4 | // Scale margins with font size on mobile (16/19ths)
5 | $mobileTopMargin: ceil($tabletTopMargin * (16 / 19));
6 |
7 | // Offset headings down on mobile so that linking to anchors they appear after
8 | // the sticky 'table of contents' element
9 | $stickyTocOffset: 20px + $gutter-half + 10px + 1px;
10 |
11 | // Pad the heading so that when linking to an anchor there is at most a
12 | // $gutter-half (mobile) or $gutter (tablet and above) sized gap between the
13 | // top of the viewport and the heading.
14 | padding-top: min($mobileTopMargin, $gutter-half) + $stickyTocOffset;
15 | margin-top: max(0, $mobileTopMargin - $gutter-half) - $stickyTocOffset;
16 |
17 | @include media(tablet) {
18 | padding-top: min($tabletTopMargin, $gutter);
19 | margin-top: max(0, $tabletTopMargin - $gutter);
20 | }
21 | }
22 |
23 | .technical-documentation {
24 | // Required for IE11 to render correctly
25 | display: block;
26 | margin: 0 $gutter-half 10px;
27 | max-width: 40em;
28 |
29 | line-height: 1.4;
30 |
31 | color: $text-colour;
32 |
33 | @include media(tablet) {
34 | // We add 2 pixels to the gutter here to ensure there's sufficient spacing between
35 | // an anchor link (see _anchored-heading.scss) on a heading and the left-hand pane.
36 | margin: 0 ($gutter + 2px) $gutter;
37 | }
38 |
39 | // Headings
40 | h1 {
41 | @include bold-48;
42 | @include heading-offset($gutter * 2);
43 |
44 | &:first-of-type {
45 | @include heading-offset($gutter);
46 | }
47 | }
48 |
49 | h2 {
50 | @include bold-36;
51 | @include heading-offset($gutter * 1.5);
52 | }
53 |
54 | h3, h4, h5, h6 {
55 | @include heading-offset($gutter);
56 | }
57 |
58 | h3 {
59 | @include bold-24;
60 | }
61 |
62 | h4 {
63 | @include bold-19;
64 | }
65 |
66 | h5 {
67 | @include bold-19;
68 | color: $secondary-text-colour;
69 | }
70 |
71 | h6 {
72 | @include core-19;
73 | color: $secondary-text-colour;
74 | }
75 |
76 | // Expand margin when h1 followed directly by paragraph
77 | h1 + p {
78 | @include media(tablet) {
79 | margin-top: $gutter * 1.5;
80 | }
81 | }
82 |
83 | // Tighten up margins where headings follow each other
84 | h1 + h2 {
85 | @include heading-offset($gutter);
86 | }
87 |
88 | h2 + h3, h3 + h4, h4 + h5, h5 + h6 {
89 | @include heading-offset(20px);
90 | }
91 |
92 | p {
93 | margin-top: ceil($gutter-half * (16 / 19));
94 | margin-bottom: 0;
95 |
96 | @include media(tablet) {
97 | margin-top: $gutter-half;
98 | }
99 | }
100 |
101 | img {
102 | max-width: 100%;
103 | width: auto;
104 | height: auto;
105 | }
106 |
107 | ol, ul {
108 | margin: $gutter-half 0 0;
109 | padding-left: 20px;
110 | }
111 |
112 | ol ol, ul ul, ol ul, ul ol {
113 | margin-top: 0;
114 | }
115 |
116 | li {
117 | margin-top: 5px;
118 | }
119 |
120 | ol + p, ul + p, .table-container + p {
121 | margin-top: ceil($gutter * (16 / 19));
122 |
123 | @include media(tablet) {
124 | margin-top: $gutter;
125 | }
126 | }
127 |
128 | blockquote {
129 | background: $grey-4;
130 | padding: $gutter-half;
131 | margin: $gutter-half;
132 | border-left: 5px solid $grey-3;
133 | }
134 |
135 | pre {
136 | background: $code-00;
137 | padding: 15px;
138 | overflow: auto;
139 | position: relative;
140 | border: 1px solid $code-02;
141 | }
142 |
143 | pre code {
144 | background: none;
145 | color: inherit;
146 | padding: 0;
147 | }
148 |
149 | code {
150 | background: $code-01;
151 | padding: 3px 5px;
152 | border-radius: 1px;
153 |
154 | font-family: monaco, Consolas, "Lucida Console", monospace;
155 | font-size: 15px;
156 | color: $code-0E;
157 |
158 | @include media(tablet) {
159 | font-size: 16px;
160 | }
161 |
162 | // Handle long strings (URLs, long variable names, etc) by allowing them
163 | // to break anywhere if required.
164 | overflow-wrap: break-word;
165 | word-wrap: break-word;
166 |
167 | -ms-word-break: break-all;
168 | /* This is the dangerous one in WebKit, as it breaks things wherever */
169 | word-break: break-all;
170 | /* Instead use this non-standard one: */
171 | word-break: break-word;
172 | }
173 |
174 | // Support monospace headings for e.g. listing API endpoints
175 | h1, h2, h3, h4, h5, h6 {
176 | code {
177 | font-size: inherit;
178 | color: $text-colour;
179 | background: none;
180 | padding: 0;
181 | }
182 | }
183 |
184 | .table-container {
185 | display: block;
186 | max-width: 100%;
187 | overflow-x: auto;
188 |
189 | margin-top: $gutter-half;
190 | }
191 |
192 | table {
193 | width: 100%;
194 |
195 | border-collapse: collapse;
196 | border-spacing: 0;
197 | }
198 |
199 | th, td {
200 | padding: $gutter-one-third $gutter-two-thirds $gutter-one-third 0;
201 |
202 | background-color: transparent;
203 | border-bottom: 1px solid $border-colour;
204 | border-width: 0 0 1px 0;
205 |
206 | @include core-16;
207 | vertical-align: top;
208 | text-align: left;
209 | }
210 |
211 | th {
212 | font-weight: bold;
213 | }
214 |
215 | td {
216 | p, ul, ol {
217 | margin: 0;
218 | }
219 | p+p, p+ul, p+ol,
220 | ul+p, ul+ol,
221 | ol+p {
222 | margin-top: $gutter-one-third;
223 | }
224 | }
225 |
226 | hr {
227 | height: 1px;
228 | border: none;
229 | margin-top: $gutter - 1px;
230 | margin-bottom: $gutter;
231 | background-color: $border-colour;
232 | color: $border-colour;
233 | }
234 | }
235 |
--------------------------------------------------------------------------------
/_sass/modules/_toc.scss:
--------------------------------------------------------------------------------
1 | @include screen {
2 | .toc {
3 |
4 | @include core-16;
5 | padding: $gutter-half;
6 |
7 | ul {
8 | list-style: none;
9 | padding: 0;
10 | margin: 0;
11 | }
12 |
13 | &__close {
14 | display: none;
15 | }
16 |
17 | a:link, a:visited {
18 | text-decoration: none;
19 | color: $link-colour;
20 | }
21 |
22 | a:hover {
23 | text-decoration: underline;
24 | }
25 |
26 | &__list {
27 |
28 | a:link, a:visited {
29 | display: block;
30 | padding: 8px $gutter-half;
31 | margin: 0 $gutter-half * -1;
32 | border-left: 5px solid transparent;
33 |
34 | @include media(tablet) {
35 | &.toc-link--in-view {
36 | color: $link-active-colour;
37 | border-left-color: $link-active-colour;
38 | background-color: $grey-4;
39 | }
40 | }
41 | }
42 |
43 | // Top level
44 | > ul > li > a:link {
45 | @include bold-19;
46 | }
47 |
48 | @include media(tablet) {
49 | // Level 2
50 | > ul > li > ul {
51 | margin-bottom: 20px;
52 | }
53 |
54 | // Level 3
55 | li li li {
56 | a:link, a:visited {
57 | padding-left: $gutter-half * 2;
58 | }
59 | }
60 |
61 | // Level 4
62 | li li li li {
63 | a:link, a:visited {
64 | padding-left: $gutter-half * 4;
65 | }
66 | }
67 |
68 | // Level 5
69 | li li li li li {
70 | a:link, a:visited {
71 | padding-left: $gutter-half * 5;
72 | }
73 | }
74 |
75 | // Level 6
76 | li li li li li li {
77 | a:link, a:visited {
78 | padding-left: $gutter-half * 6;
79 | }
80 | }
81 | }
82 | }
83 | }
84 |
85 | .toc-show {
86 | display: none;
87 | }
88 |
89 | @include media(tablet) {
90 | .toc {
91 | padding: 22px $gutter $gutter-half;
92 | }
93 |
94 | // Prevent the fixedsticky spacer from appearing if the browser is resized
95 | // from mobile to desktop.
96 | .fixedsticky-on + .fixedsticky-dummy {
97 | display: none !important;
98 | }
99 | }
100 |
101 | @include media(mobile) {
102 | .js {
103 | .toc {
104 | display: none;
105 |
106 | // Hide third level nav and below on mobile
107 | li li li {
108 | display: none;
109 | }
110 | }
111 |
112 | .toc-show {
113 | display: block;
114 | position: sticky;
115 | top: 0;
116 | box-sizing: border-box;
117 | width: 100%;
118 | z-index: 10;
119 |
120 | &__label {
121 | display: block;
122 | position: relative;
123 | z-index: 10;
124 |
125 | padding: $gutter-half $gutter-half 10px;
126 |
127 | background: $grey-4;
128 | @supports(backdrop-filter: blur(2px)) {
129 | background: transparentize($grey-4, 0.05);
130 | backdrop-filter: blur(2px);
131 | }
132 | border-bottom: 1px solid $grey-2;
133 | box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
134 | color: $text-colour;
135 | text-decoration: none;
136 | }
137 |
138 | &__icon {
139 | width: 20px;
140 | height: 20px;
141 | float: right;
142 |
143 | background-image: file-url('govuk-icn-numbered-list.png');
144 | background-repeat: no-repeat;
145 | background-position: left center;
146 |
147 | @include device-pixel-ratio {
148 | background-image: file-url('govuk-icn-numbered-list@2x.png');
149 | background-size: 20px 20px;
150 | }
151 | }
152 | }
153 |
154 | .toc__list {
155 | margin-right: $gutter * 1.5;
156 | }
157 |
158 | .toc__close {
159 | display: block;
160 | position: sticky;
161 | right: 0;
162 | top: 0;
163 |
164 | float: right;
165 | width: 20px;
166 | height: 20px;
167 |
168 | background-image: file-url('govuk-icn-close.png');
169 | background-repeat: no-repeat;
170 | background-position: left center;
171 |
172 | @include device-pixel-ratio {
173 | background-image: file-url('govuk-icn-close@2x.png');
174 | background-size: 20px 20px;
175 | }
176 | }
177 |
178 | /* Applied to */
179 | &.toc-open {
180 | overflow: hidden;
181 |
182 | body {
183 | height: 100%;
184 | overflow: hidden;
185 | pointer-events: none;
186 | }
187 |
188 | .toc-show {
189 | visibility: hidden;
190 | }
191 |
192 | .toc {
193 | display: block;
194 | pointer-events: auto;
195 | position: fixed;
196 | top: 0;
197 | bottom: 0;
198 | left: 0;
199 | right: 0;
200 | z-index: 10;
201 |
202 | overflow: auto;
203 | -webkit-overflow-scrolling: touch;
204 | -ms-overflow-style: none;
205 |
206 | background: $white;
207 | @supports(backdrop-filter: blur(2px)) {
208 | background: transparentize($white, 0.05);
209 | backdrop-filter: blur(2px);
210 | }
211 | }
212 | }
213 | }
214 | }
215 | }
216 |
217 | @include print {
218 | .toc {
219 | display: none;
220 | }
221 | }
222 |
--------------------------------------------------------------------------------
/_sass/palette/_syntax-highlighting.scss:
--------------------------------------------------------------------------------
1 | // A Base16 palette
2 | // https://github.com/chriskempson/base16
3 |
4 | $code-00: scale-color($highlight-colour, $lightness:50%); /* Default Background */
5 | $code-01: #f5f5f5; /* Lighter Background (Unused) */
6 | $code-02: #bfc1c3; /* Selection Background */
7 | $code-03: darken($secondary-text-colour, 2%);; /* Comments, Invisibles, Line Highlighting */
8 | $code-04: #e8e8e8; /* Dark Foreground (Unused) */
9 | $code-05: $text-colour; /* Default Foreground, Caret, Delimiters, Operators */
10 | $code-06: #ffffff; /* Light Foreground (Unused) */
11 | $code-07: #ffffff; /* Light Background (Unused) */
12 |
13 | $code-08: #B26749; /* Variables, XML Tags, Markup Link Text, Markup Lists */
14 | $code-09: #0E7754; /* Integers, Boolean, Constants, XML Attributes, Markup Link Url */
15 | $code-0A: #4C4077; /* Classes, Markup Bold, Search Text Background */
16 | $code-0B: $govuk-blue; /* Strings, Inherited Class, Markup Code */
17 | $code-0C: $govuk-blue; /* Support, Regular Expressions, Escape Characters, Markup Quotes */
18 | $code-0D: #4C4077; /* Functions, Methods, Attribute IDs, Headings */
19 | $code-0E: #a71d5d; /* Keywords, Storage, Selector, Markup Italic */
20 | $code-0F: #C92424; /* Deprecated, Opening/Closing Embedded Language Tags e.g. (Unused) */
21 |
22 | $code-insert-bg: #DEF8CA;
23 | $code-delete-bg: #FADDDD;
24 |
--------------------------------------------------------------------------------
/_sass/utilities/_printable.scss:
--------------------------------------------------------------------------------
1 | $is-print: false !default;
2 |
3 | @mixin screen {
4 | @if not $is-print {
5 | @content;
6 | }
7 | }
8 |
9 | @mixin print {
10 | @if $is-print {
11 | @content;
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/_sass/vendor/_fixedsticky.scss:
--------------------------------------------------------------------------------
1 | .fixedsticky {
2 | position: -webkit-sticky;
3 | position: -moz-sticky;
4 | position: -ms-sticky;
5 | position: -o-sticky;
6 | position: sticky;
7 | }
8 | /* When position: sticky is supported but native behavior is ignored */
9 | .fixedsticky-withoutfixedfixed .fixedsticky-off,
10 | .fixed-supported .fixedsticky-off {
11 | position: relative;
12 | }
13 | .fixedsticky-withoutfixedfixed .fixedsticky-on,
14 | .fixed-supported .fixedsticky-on {
15 | position: fixed;
16 | }
17 | .fixedsticky-dummy {
18 | display: none;
19 | }
20 | .fixedsticky-on + .fixedsticky-dummy {
21 | display: block;
22 | }
23 |
--------------------------------------------------------------------------------
/accessibility.md:
--------------------------------------------------------------------------------
1 | # Accessibility
2 |
3 | ## Accessibility statement for DfE Architecture
4 |
5 | This accessibility statement applies to DfE Architecture at [https://dfe-digital.github.io/architecture/](https://dfe-digital.github.io/architecture/).
6 |
7 | This website is run by the architecture community at the Department for Education (DfE). We want as many people as possible to be able to use this website. For example, that means you should be able to:
8 |
9 | + change colours, contrast levels and fonts
10 | + zoom in up to 300% without problems
11 | + navigate most of the website using just a keyboard
12 | + navigate most of the website using speech recognition software
13 | + listen to most of the website using a screen reader (including the most recent versions of JAWS, NVDA and VoiceOver)
14 |
15 | We’ve also made the website text as simple as possible to understand.
16 |
17 | [AbilityNet](https://mcmw.abilitynet.org.uk/) has advice on making your device easier to use if you have a disability.
18 |
19 | ### How accessible this website is
20 |
21 | Currently the website should be fully accessible and there are no linked images or documents on the pages which could cause accessibility issues.
22 |
23 | ### What to do if you cannot access parts of this website
24 |
25 | If you need information on this website in a different format like accessible PDF, large print, easy read, audio recording or braille, contact [architecture.profession@education.gov.uk](mailto:architecture.profession@education.gov.uk) with details of your request.
26 |
27 | We’ll aim to reply within 3 working days.
28 |
29 | ### Reporting accessibility problems with this website
30 |
31 | We’re always looking to improve the accessibility of this website. If you find any problems not listed on this page or think we’re not meeting accessibility requirements, email [architecture.profession@education.gov.uk](mailto:architecture.profession@education.gov.uk).
32 |
33 | ### Enforcement procedure
34 |
35 | The Equality and Human Rights Commission (EHRC) is responsible for enforcing the Public Sector Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018 (the ‘accessibility regulations’). If you’re not happy with how we respond to your complaint, [contact the Equality Advisory and Support Service (EASS)](https://www.equalityadvisoryservice.com/).
36 |
37 | ## Technical information about this website’s accessibility
38 |
39 | DfE is committed to making its website accessible, in accordance with the Public Sector Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018.
40 |
41 | ## Compliance status
42 |
43 | This website is partially compliant with the [Web Content Accessibility Guidelines version 2.1](https://www.w3.org/TR/WCAG21/) AA standard, due to the non-compliances listed below.
44 |
45 | ### Non-accessible content
46 |
47 | The following pages contain PNG images which are not fully explained in the text:
48 |
49 | - [https://dfe-digital.github.io/architecture/common-components](https://dfe-digital.github.io/architecture/common-components)
50 | - [https://dfe-digital.github.io/architecture/capability/architecture-capability-framework](https://dfe-digital.github.io/architecture/capability/architecture-capability-framework)
51 |
52 | These issues partially fail or fail [WCAG 2.1 success criterion 1.4.5 Images of Text.](https://www.w3.org/TR/2008/WD-UNDERSTANDING-WCAG20-20081103/visual-audio-contrast-text-presentation.html)
53 |
54 | There are also parts of this documentation that are not accessible because of [issues caused by the Technical Documentation Template.](https://tdt-documentation.london.cloudapps.digital/accessibility/#using-the-technical-documentation-template-for-your-own-documentation)
55 |
56 | ## How we tested this website
57 |
58 | We last tested this website for accessibility issues in September 2020.
59 |
60 | We used manual and automated tests to look for issues such as:
61 |
62 | - lack of keyboard accessibility
63 | - link text that’s not descriptive
64 | - non-unique or non-hierarchical headings
65 | - italics, bold or block capital formatting
66 | - inaccessible formatting in general
67 | - inaccessible language
68 | - inaccessible diagrams or images
69 | - lack of colour contrast for text, important graphics and controls
70 | - images not having meaningful alt text
71 | - problems when using assistive technologies such as screen readers and screen magnifiers
72 |
73 | ## What we’re doing to improve accessibility
74 |
75 | When we publish new content, we’ll make sure our use of images meets accessibility standards.
76 |
77 | We plan to fix the issues with the images by the end of December 2021.
78 |
79 | This statement was prepared on 24 September 2020. It was last updated on 1 October 2021.
80 |
--------------------------------------------------------------------------------
/documents/Architecture Principles format 2019c.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/documents/Architecture Principles format 2019c.xlsx
--------------------------------------------------------------------------------
/documents/arb-passport.vsdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/documents/arb-passport.vsdx
--------------------------------------------------------------------------------
/documents/common-component-matrix.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/documents/common-component-matrix.xlsx
--------------------------------------------------------------------------------
/documents/design-pack-just-text.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/documents/design-pack-just-text.docx
--------------------------------------------------------------------------------
/documents/design-pack.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/documents/design-pack.docx
--------------------------------------------------------------------------------
/documents/dfe-architecture-framework-pathways.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/documents/dfe-architecture-framework-pathways.pdf
--------------------------------------------------------------------------------
/documents/example-diagrams.vsdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/documents/example-diagrams.vsdx
--------------------------------------------------------------------------------
/documents/security-checklist.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/documents/security-checklist.xlsx
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/favicon.ico
--------------------------------------------------------------------------------
/governance/design-governance.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Governance
3 | expires: 2025-09-19
4 | ---
5 |
6 |
7 | # Design governance and assurance
8 |
9 | We have different ways of delivering services in DfE. But we always need to ensure that the architecture and design of our services meets the necessary [digital, data and technology standards for DfE](https://standards.education.gov.uk).
10 |
11 | We want to make sure we're doing the right things (through governance) and doing things right (through assurance). And **not slowing down delivery** in the process.
12 |
13 | We use a self-certification, exemption-based approach for governance and assurance of design across digital, data and technology. The core principle being that a team should be able to easily find and apply [standards](https://standards.education.gov.uk) in their work.
14 |
15 | Assuming a design complies with the standards, the team should not experience any friction in delivery. Where there is an exemption - where there is no standard, it’s not possible to comply with a standard or a standard needs updating – there is a process for agreeing what to do. This might involve a few, or several people, depending on the complexity of the decision to be made.
16 |
17 | ## Responsibilities and decision-making
18 |
19 | The Senior Responsible Owner (SRO) or Service Owner (usually a Deputy Director) is accountable for all delivery within their service, programme, portfolio or division. They rely on the advice of subject matter experts within their multi-disciplinary teams, when taking ownership of key technical decisions and risks in their domain.
20 |
21 | The Digital, Data, Technology (DDT) Senior Leadership Team are collectively accountable for strategic design decisions across the organisation, ensuring all cross-divisional or cross-functional impacts are considered. This decision-making is supported by specialists in professional communities.
22 |
23 | Everyone is expected to comply with the digital, data and technolgy standards for DfE. Where this isn’t possible or not happening (an exemption), a group of specialists may be convened to help guide the team. This can take various forms, but we typically call this a 'design forum'. They would discuss and agree an appropriate course of action for the exemption.
24 |
25 | In the unlikely event a consensus can’t be reached, escalation to the DDT Senior Leadership Team or DDT Design and Delivery Board may be required.
26 |
27 | ## How design assurance works in practice
28 |
29 | 
30 |
31 | ### Self-certification
32 |
33 | During each design sprint, the person or team responsible for the design will search DfE manuals and repositories for principles, standards, patterns or guidance that is applicable to their work. Where these artefacts exist, the design would be expected to comply and follow the guidance provided. If compliance is achieved within the design, the delivery team do not need to seek any further approvals. This is self-certification.
34 |
35 | Manuals and repositories:
36 |
37 | * [Find and use standards](https://standards.education.gov.uk)
38 | * [Accessibility manual](https://accessibility.education.gov.uk/)
39 | * [Design manual](https://design.education.gov.uk/)
40 | * [User research manual](https://user-research.education.gov.uk/)
41 | * [Technical guidance](https://technical-guidance.education.gov.uk/)
42 | * [Architecture manual](https://dfe-digital.github.io/architecture/#dfe-architecture)
43 | * [Data architecture repository](https://educationgovuk.sharepoint.com/sites/lvewp00391/Lists/DSAAG%20Items/AllItems.aspx)
44 | * [Cyber and information security](https://cyber-security.education.gov.uk/)
45 |
46 | The team will also need to determine whether their design will close any existing exemptions. They can do this by searching [Find and use standards](https://standards.education.gov.uk) for known exemptions.
47 |
48 | If exemptions do need to be closed, this should be done on the [Service Health Check App](https://educationgovuk.sharepoint.com/sites/ServiceHealthCheck/SitePages/Service-Health-Check-Hub-App-v3.aspx?csf=1&web=1&e=fgNNwr).
49 |
50 | If not, the delivery team can proceed, and ensure they maintain the design in an appropriate repository for the service.
51 |
52 | Where guiding artefacts do not exist, then the team are free to design their solution to meet their user needs.
53 |
54 | If artefacts cover part, but not all of a design, only the parts within scope of those artefacts are expected to be aligned with. In this instance, the team should consider what *should* exist to cover the gap and discuss this with the standard owner or the [DDT standards forum](https://standards.education.gov.uk/support), to highlight the gap.
55 |
56 | Should the need for a new standard, pattern or other artefact emerge during design work, this should also be raised with the [DDT standards forum](https://standards.education.gov.uk/support) for discussion.
57 |
58 | ### Managing an exemption
59 |
60 | Where compliance with one or more artefacts cannot be achieved, then an exemption should be raised on the [Service Healthcheck App](https://educationgovuk.sharepoint.com/sites/ServiceHealthCheck/SitePages/Service-Health-Check-Hub-App-v3.aspx?csf=1&web=1&e=fgNNwr) before proceeding with the delivery of the design.
61 |
62 | This can result in a number of outcomes, depending on the nature of the exemption:
63 |
64 | **Minor exemptions**
65 |
66 | Where there is a short-term reason not to comply with a standard, or a pre-existing design precludes compliance, this should be discussed with the standard owner.
67 |
68 | Considering the nature if the non-compliance and options for how and when the design could be made to comply would likely result in a temporary exemption. This will include conditions for the exemption - typically, the agreed timescales in which compliance may be achieved, how it would be monitored, or further exemption sought. For example, a pre-existing platform choice may be granted exemption for a service until it is next due for contract renewal.
69 |
70 | **Standard challenge**
71 |
72 | Where the standard is considered overly limiting on the design, so intentional non-compliance is likely, the design and reasoning should be discussed with the standard owner. They will consider any concerns and investigate whether the standard is still appropriate, establishing if it needs updating or replacing.
73 |
74 | A temporary exemption may be applied whilst the standard is reviewed, but this will always carry a constraint that the team will need to align with the updated standard within a prescribed period of time (regardless of whether the standard is changed or not as part of the review).
75 |
76 | **Major exemption**
77 |
78 | Where non-compliance is more significant or complex, the DDT standards forum will arrange a review, at pace, pulling in a range of subject matter experts and perspectives to ascertain whether an exemption is possible and the conditions that would be applied.
79 |
80 | **exemption review**
81 |
82 | In all exemption cases, there will be a timeframe agreed to reach compliance, in which the delivery team will need to review the exemption and update their design. If the design then complies, the team must ensure they update the design in their repository.
83 |
84 | **Where a decision can't be made**
85 |
86 | In all cases where the delivery team wish to dispute the terms of an exemption or the appropriateness of any specific artefact, and consensus cannot be reached by a design forum, then an escalation process is available.
87 |
88 | This will be facilitated by the DDT standards forum, who will escalate to a group of nominated Deputy Directors from the DDT Senior Leadership Team.
89 |
90 | If a consensus cannot be achieved at this level, the dispute will be escalated to the DDT Design and Delivery Board for review and a decision.
91 |
92 |
93 | ## Things to help you
94 |
95 | DDT professionals and teams have access to a plethora of design skills and experience from across professional communities in DfE.
96 |
97 | You may find it helpful to ask your community for help with design problems, or run a technical show and tell at a community meet-up.
98 |
99 | You can also ask the [Heads of profession](https://educationgovuk.sharepoint.com/sites/lvewp00199/SitePages/Head-of-Professions.aspx) to help facilitate a peer review of your design.
100 |
101 | ### Peer review
102 |
103 | A peer review is bringing together the *right* people to review your design and provide helpful, constructive advice, whatever your stage of delivery. This could be early on when you're thinking about the problem space and options, or later on, when you have physical design.
104 |
105 | Typically, you'd have a design and some narrative documented to share in advance of the session - this could be in a form of a simple diagram, a design pack or links to documentation on your repository/wiki. This gives reviewers the opportunity to understand the context and think of any burning questions about your design beforehand.
106 |
107 | During the session, you'll walk through key points of your design, seek and discuss feedback. It should be an open, honest and constructive conversation, amongst trusted peers. You'll be expected to make notes yourself and summarise these (and any actions) back to the group. For particularly large or complex designs, the DDT standards forum may be able to provide facilitation/secretariat support.
108 |
109 | After the session, the team will need to record and track any significant or cross-cutting decisions and actions.
110 |
111 | Contact the [DDT standards forum](https://standards.education.gov.uk/support) for advice on setting up a peer review.
112 |
113 | ### Show and tells
114 |
115 | It may be more appropriate for you to bring specialists and team members together for a Show and Tell. These are a great way to provide support, challenge and design assurance in a less formal setting.
116 |
117 | Reach out to the respective [Head of Profession](https://educationgovuk.sharepoint.com/sites/lvewp00199/SitePages/Head-of-Professions.aspx) to get a slot at a community meet-up.
118 |
119 | ## Further guidance
120 |
121 | For any other information on standards or assuring your design, reach out to the [DDT standards forum](https://standards.education.gov.uk/support).
122 |
--------------------------------------------------------------------------------
/governance/technical-governance.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Governance
3 | expires: 2024-07-01
4 | ---
5 |
6 |
7 | # Technical governance
8 |
9 | > This guidance has been superceded by [design governance](../design-governance).
10 |
11 | We have different ways of delivering services in DfE. But we always need to ensure that the technical design of our services meets the necessary [technical standards](../../standards/technical-standards).
12 |
13 | We want to make sure we're doing the right things (through governance) and doing things right (through assurance). And **not slowing down delivery** in the process.
14 |
15 | We’re testing a self-certification, exception-based approach for technical governance. The core principle being that a team should be able to easily find and apply the DfE [technical standards](../../standards/technical-standards) in their work.
16 |
17 | Assuming a technical design complies with the standards, the team should not experience any friction in delivery. Where there is an exception - where there is no standard, it’s not possible to comply with a standard or a standard needs updating – there is a process for agreeing what to do. This might involve a few, or several people, depending on the complexity of the decision to be made.
18 |
19 | ## Responsibilities and decision-making
20 |
21 | The Senior Responsible Owner (SRO) or Service Owner (usually a Deputy Director) is accountable for all delivery within their service, programme, portfolio or division. They rely on the advice of technical experts within their multi-disciplinary teams when taking ownership of key technical decisions and risks in their domain.
22 |
23 | The Digital, Data, Technology (DDT) Senior Leadership Team are collectively accountable for strategic technical decisions across the organisation, ensuring all cross-divisional or cross-functional impacts are considered. This decision making is supported by technical specialists in professional communities.
24 |
25 | Everyone is expected to comply with DfE technical standards. Where this isn’t possible or not happening – an exception - a group of technical specialists may be convened to help guide the team. We call this a technical design forum. They would discuss and agree an appropriate course of action for the exception.
26 |
27 | In the unlikely event a consensus can’t be reached, escalation to the DDT Senior Leadership Team or DDT Design and Delivery Board may be required.
28 |
29 |
30 | ## How design assurance works in practice
31 |
32 | 
33 |
34 | ### Self-certification
35 |
36 | During each design sprint, the person or team responsible for the technical design will search the [architecture repository](https://educationgovuk.sharepoint.com/sites/architecture/artefacts/Forms/AllItems.aspx) for artefacts that are applicable to their work - these might be standards, patterns or guidance. Where these artefacts exist, the design would be expected to comply and follow the guidance contained in those artefacts. If compliance with artefacts is achieved within the technical design, the delivery team do not need to seek any further approvals. This is self-certification.
37 |
38 | The team will also need to determine whether the technical design will close any existing exceptions. They can do this by searching the [architecture repository](https://educationgovuk.sharepoint.com/sites/architecture/artefacts/Forms/AllItems.aspx). If exceptions do need to be closed, the architecture team should be notified.
39 |
40 | If not, the delivery team can proceed with registering the design in the [architecture repository](https://educationgovuk.sharepoint.com/sites/architecture/artefacts/Forms/AllItems.aspx).
41 |
42 | Where artefacts do not exist, then the team cannot align with them and are free to design their solution to meet their user needs. If artefacts cover part, but not all, of a design, only the parts within scope of those artefacts could reasonably be expected to align with them. In this instance, the team should consider whether there *should* be artefacts to cover the gap and discuss this with the [architecture team](mailto:architecture.profession@education.gov.uk) to highlight the gap.
43 |
44 | Should the need for a new standard, pattern or other artefact emerge during technical design work, this should also be raised with the [architecture team](mailto:architecture.profession@education.gov.uk) for discussion.
45 |
46 | ### Managing an exception
47 |
48 | Where compliance with one or more artefacts cannot be achieved, then an exception should be discussed with the [architecture team](mailto:architecture.profession@education.gov.uk) before proceeding with the delivery of the design.
49 |
50 | This can result in a number of outcomes, depending on the nature of the exemption:
51 |
52 | **Minor exceptions**
53 |
54 | Where there is a short-term reason not to comply with a standard, or a pre-existing design precludes compliance, this should be discussed with the [architecture team](mailto:architecture.profession@education.gov.uk).
55 |
56 | Considering the nature if the non-compliance and options for how and when the design could be made to comply would likely result in a temporary exemption. This will include conditions for the exemption - typically,the agreed timescales in which compliance may be achieved, how it would be monitored, or further exemption sought. For example, a pre-existing platform choice may be granted exception for a solution or service until it is next due for contract renewal.
57 |
58 | **Artefact challenge**
59 |
60 | Where the artefact is considered overly limiting on the design, so intentional non-compliance is likely, the design and reasoning should be discussed with the [architecture team](mailto:architecture.profession@education.gov.uk). They will consider any concerns and investigate whether the artefact is still appropriate, establishing if it needs updating or replacing.
61 |
62 | A temporary exemption may be applied whilst the artefact is reviewed, but this will always carry a constraint that the team will need to align with the updated artefact within a prescribed period of time (regardless of whether the artefact is changed or not as part of the review).
63 |
64 | **Major exception**
65 |
66 | Where non-compliance is more significant or complex, the architecture team will arrange a review, at pace, pulling in a range of subject matter experts and perspectives to ascertain whether an exception is possible and the conditions that would be applied.
67 |
68 | **Exception review**
69 |
70 | In all exception cases, there will be a timeframe agreed to reach compliance, in which the delivery team will need to review the exception and update their design. If the design then complies, then it will need to be registered in the [architecture repository](https://educationgovuk.sharepoint.com/sites/architecture/artefacts/Forms/AllItems.aspx), once agreed with the architecture team.
71 |
72 | **Where a decision can't be made**
73 |
74 | In all cases where the delivery team wish to dispute the terms of an exception or the appropriateness of any specific artefact, and consensus cannot be reached by a technical design forum, then an escalation process is available.
75 |
76 | This will be facilitated by the architecture team, who will escalate to a group of nominated Deputy Directors from the DDT Senior Leadership Team.
77 |
78 | If a consensus cannot be achieved at this level, the dispute will be escalated to the Design and Delivery Board for review and a decision.
79 |
80 |
81 | ## Things to help you
82 |
83 | Architects and teams have access to a plethora of design skills and experience from across professional communities in DfE.
84 |
85 | You may find it helpful to ask for help with design problems or run a technical show and tell at an architecture community meet-up. You can also ask the [architecture team](mailto:architecture.profession@education.gov.uk) to help facilitate a peer review of your design
86 |
87 | ### Peer review
88 |
89 | The architecture team can help you find the right people to review your design and provide helpful, constructive advice, whatever your stage of delivery. This could be early on when you're thinking about the problem space and options, or later on, when you have physical design.
90 |
91 | Typically, you'd have a design and some narrative documented to share in advance of the session - this could be in a form of a passport, design pack or links to technical documentation on your repository/wiki. This gives reviewers the opportunity to understand the context and think of any burning questions about your design beforehand.
92 |
93 | During the session, you'll walk through key points of your design, seek and discuss feedback. It should be an open, honest and constructive conversation, amongst trusted peers. You'll be expected to make notes yourself and summarise these (and any actions) back to the group. For particularly large or complex designs, the profession may be able to provide facilitation/secretariat support.
94 |
95 | After the session, the architecture team will record and track any significant or cross-cutting architecture decisions and actions.
96 |
97 | Contact the [architecture team](mailto:architecture.profession@education.gov.uk) to discuss your peer review needs.
98 |
99 | ### Technical show and tells
100 |
101 | It may be more appropriate for you to bring architects and team members together for a technical Show and Tell. These are a great way to provide support, challenge and design assurance in a less formal setting.
102 |
103 | Contact the [architecture team](mailto:architecture.profession@education.gov.uk) or add to the [community meet-up agenda](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Community/Meet%20ups/Architecture%20Community%20Meet-up%20-%20Schedule%20and%20Agenda.docx?d=w2c07d8b55f624fcdb6739fab9b7ed8d3&csf=1&web=1&e=Qlm7lw) to get a slot at the next community meet-up.
104 |
105 | ### Templates
106 |
107 | > There are currently no set standards for documenting technical design. The following templates and examples are no longer in use, however, they do provide some guidance and may help you to develop your design.
108 |
109 | - [Design pack, with example diagrams](../documents/design-pack.docx)
110 | - [Design pack, text only](../documents/design-pack-just-text.docx)
111 |
112 | ## Further guidance
113 |
114 | For more information on technical governance or assuring your technical design, contact the [architecture team](mailto:architecture.profession@education.gov.uk)
115 |
--------------------------------------------------------------------------------
/images/Architecture-governance-2019.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/Architecture-governance-2019.png
--------------------------------------------------------------------------------
/images/anchored-heading-icon-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/anchored-heading-icon-2x.png
--------------------------------------------------------------------------------
/images/anchored-heading-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/anchored-heading-icon.png
--------------------------------------------------------------------------------
/images/ccts-phases.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/ccts-phases.png
--------------------------------------------------------------------------------
/images/cms-overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/cms-overview.png
--------------------------------------------------------------------------------
/images/definitions-levels-of-work.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/definitions-levels-of-work.png
--------------------------------------------------------------------------------
/images/definitions-service-aspects.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/definitions-service-aspects.png
--------------------------------------------------------------------------------
/images/definitions-service-blueprint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/definitions-service-blueprint.png
--------------------------------------------------------------------------------
/images/definitions-service-performance.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/definitions-service-performance.jpg
--------------------------------------------------------------------------------
/images/dfesignin-roadmap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/dfesignin-roadmap.png
--------------------------------------------------------------------------------
/images/exception-based-governance-all.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/exception-based-governance-all.png
--------------------------------------------------------------------------------
/images/exception-based-governance-technical.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/exception-based-governance-technical.png
--------------------------------------------------------------------------------
/images/framework-pathways.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/framework-pathways.jpg
--------------------------------------------------------------------------------
/images/gov.uk_logotype_crown-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/gov.uk_logotype_crown-2x.png
--------------------------------------------------------------------------------
/images/gov.uk_logotype_crown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/gov.uk_logotype_crown.png
--------------------------------------------------------------------------------
/images/gov.uk_logotype_crown_invert_trans.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/gov.uk_logotype_crown_invert_trans.png
--------------------------------------------------------------------------------
/images/govuk-crest-2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/govuk-crest-2x.png
--------------------------------------------------------------------------------
/images/govuk-crest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/govuk-crest.png
--------------------------------------------------------------------------------
/images/govuk-icn-close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/govuk-icn-close.png
--------------------------------------------------------------------------------
/images/govuk-icn-close@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/govuk-icn-close@2x.png
--------------------------------------------------------------------------------
/images/govuk-icn-numbered-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/govuk-icn-numbered-list.png
--------------------------------------------------------------------------------
/images/govuk-icn-numbered-list@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/govuk-icn-numbered-list@2x.png
--------------------------------------------------------------------------------
/images/mapping-overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/mapping-overview.png
--------------------------------------------------------------------------------
/images/notifications-overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/notifications-overview.png
--------------------------------------------------------------------------------
/images/open-government-licence.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/open-government-licence.png
--------------------------------------------------------------------------------
/images/open-government-licence_2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/open-government-licence_2x.png
--------------------------------------------------------------------------------
/images/postcode-overview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DFE-Digital/architecture/52eac85eefa5cd4af287bee7977d8a2d2f5cbab1/images/postcode-overview.png
--------------------------------------------------------------------------------
/index.md:
--------------------------------------------------------------------------------
1 | # DfE Architecture
2 | This site documents the architecture principles, standards and guidance that we expect teams working within the [Department for Education (DfE)](https://www.gov.uk/government/organisations/department-for-education) to follow when designing services.
3 |
4 | It complements the [UK Government Service Manual](https://www.gov.uk/service-manual) and its [technology section](https://www.gov.uk/service-manual/technology), which covers service design more broadly.
5 |
6 | It should be used in conjunction with the [DfE Digital Technical Guidance](https://technical-guidance.education.gov.uk), when building digital services.
7 |
8 | ## Principles
9 |
10 | {% assign principle_groups = site.pages
11 | | where: "principle", true %}
12 |
13 | {% for principle in principle_groups %}
14 | - [{{ principle.title }}]({{ principle.url | relative_url }})
15 | {% endfor %}
16 | - [Technical Architecture Principles](https://technical-guidance.education.gov.uk/principles/architecture/#technical-architecture-principles)
17 |
18 | ## Standards
19 |
20 | {% assign standard_groups = site.pages
21 | | where: "standard", true %}
22 |
23 | {% for standard in standard_groups %}
24 | - [{{ standard.title }}]({{ standard.url | relative_url }})
25 | {% endfor %}
26 | - [Common Components](common-components/)
27 |
28 | ## Patterns
29 |
30 | {% assign pattern_groups = site.pages
31 | | where: "pattern", true %}
32 |
33 | {% for pattern in pattern_groups %}
34 | - [{{ pattern.title }}]({{ pattern.url | relative_url }})
35 | {% endfor %}
36 | - [User-centred design patterns](https://design.education.gov.uk/design-system/patterns/)
37 |
38 | ## Governance
39 |
40 | - [Design governance](governance/design-governance.md)
41 |
42 | ## Profession
43 |
44 | - [Architecture roles](profession/architecture-roles.md)
45 | - [Architecture profession](profession/architecture-profession.md)
46 | - [Architecture community](profession/architecture-community.md)
47 | - [Architecture Capability Framework](profession/architecture-capability-framework.md)
48 |
49 | ## Repositories
50 |
51 | - [DfE SharePoint repo](https://educationgovuk.sharepoint.com/sites/architecture/WorkplaceDocuments)
52 | - [DfE Digital Confluence](https://dfedigital.atlassian.net)
53 | - [ESFA Confluence](https://skillsfundingagency.atlassian.net)
54 |
55 |
56 |
57 |
58 |
--------------------------------------------------------------------------------
/javascripts/application.js:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 | {% include javascripts/vendor/jquery.js %}
4 | {% include javascripts/vendor/modernizr.js %}
5 | {% include javascripts/vendor/fixedsticky.js %}
6 | {% include javascripts/vendor/lodash.js %}
7 | {% include javascripts/analytics.js %}
8 | {% include javascripts/start-modules.js %}
9 |
10 | $(function() {
11 | $('.fixedsticky').fixedsticky();
12 | });
13 |
--------------------------------------------------------------------------------
/patterns/infrastructure-patterns.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Patterns
3 | expires: 2020-01-01
4 | ---
5 |
6 | # Infrastructure patterns
7 |
8 | ## Complex systems
9 |
10 | - [Complex systems pattern in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_Complex_System.docx?d=w464d55b7ce0349368bb6add4f033c5c6&csf=1&e=OCLva1)
11 |
12 | ## Platform as a Service (PaaS)
13 |
14 | - [PaaS pattern in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_PaaS.docx?d=wf80821e40a4940628963ef92cdc37bff&csf=1&e=7vOa94)
15 |
16 | ## Platform administration
17 |
18 | - [Platform admin pattern in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_Platform_administration.docx?d=wdfe153887f7643e38b4e84338d07e462&csf=1&e=CLnqhx)
19 |
20 | ## Data storage
21 |
22 | - [Data storage pattern in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_Datastorage.docx?d=w91709765c22040ea932a181b98c081a5&csf=1&e=1CvQkr)
23 |
24 | ## Deployment
25 |
26 | - [Deployment pattern in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_Deployment.docx?d=wdfe4d148b4bc4033937c97061ae34208&csf=1&e=MeUhDy)
27 |
--------------------------------------------------------------------------------
/patterns/integration-patterns.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Patterns
3 | expires: 2020-01-01
4 | ---
5 |
6 | # Integration patterns
7 |
8 | - [DfE API strategy and integration patterns in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Strategy/Approved/DfE%20API%20Strategy%20and%20Integration%20Patterns.docx?d=w0d2c25dac0f64fd7abba4472a44ad3b0&csf=1&web=1&e=8WisEg)
9 |
--------------------------------------------------------------------------------
/patterns/requirement-patterns.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Patterns
3 | expires: 2020-01-01
4 | ---
5 |
6 | # Technical requirements for procurement
7 |
8 | ## Non-functional requirements (NFRs)
9 |
10 | - [Reference NFRs in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/DFE%20Reference%20NFRs.docx?d=wad9f0663140a442ebd404c7837b6ce0f&csf=1&e=qh9Wjr)
11 |
12 | - [Simple example NFRs in SharePoint repo](https://educationgovuk.sharepoint.com/:x:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Example%20NFRs%20-%20National%20Careers%20Service.xlsx?d=w988b58c4d30846a3a4f4ed66f8e13241&csf=1&e=QvfBiT)
13 |
14 | ## Invitation to Tender (ITT) specification
15 |
16 | - [Example ITT in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/EXAMPLE%20ITT%20Technical%20Specification.doc?d=w738a9f5489644520b7dfaeb9410bc60b&csf=1&e=8gLncV)
17 |
--------------------------------------------------------------------------------
/patterns/security-patterns.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Patterns
3 | expires: 2020-01-01
4 | ---
5 |
6 | # Security patterns
7 |
8 | ## Identity and Access Management (IdAM)
9 |
10 | - [IdaM patterns in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_IdAM.docx?d=wff10a2368c8b492897fa93d0f195b69d&csf=1&e=Khtmnz)
11 |
12 | ## Logging
13 |
14 | - [Logging patterns in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_Logging.docx?d=w457f67fc6c494110917c91195b46b6fd&csf=1&e=tX40M5)
15 |
16 | ## Monitoring
17 |
18 | - [Monitoring patterns in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_Monitoring.docx?d=wbeacf1d28e0846fda9964cf8627ef311&csf=1&e=YQ1LLC)
19 |
20 | ## Perimeter Security
21 |
22 | - [Perimeter security patterns in SharePoint repo](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Reference%20Architecture/Patterns/Pattern_Perimeter_Security.docx?d=w4a4dc8de7bd440588c012920426f3c2a&csf=1&e=D2YWmb)
23 |
--------------------------------------------------------------------------------
/principles/accessibility-principles.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Accessibility Principles
3 | expires: 2021-01-01
4 | ---
5 |
6 | # Accessibility Principles
7 |
8 | These high-level principles from [Craig Abbott](https://twitter.com/abbott567) and [Colin](https://twitter.com/htmlandbacon) at DWP Digital encapsulate how we should consider accessibility needs when designing services in DfE.
9 |
10 | [DESIGN for Accessibility](https://educationgovuk.sharepoint.com/:w:/r/sites/lvewp00043/Shared%20Documents/Design%20Principles.docx) is a more detailed set of principles and guidelines that teams should work with when designing and building services in DfE.
11 |
12 | For more information, talk to the [accessibility team](mailto:Accessibility.Support@education.gov.uk) or see guidance on the [Digital Accessibility Hub](https://educationgovuk.sharepoint.com/sites/lvewp00043/SitePages/Digital-Accessibility-Hub-Home.aspx) in SharePoint.
13 |
14 | ## 1. Inclusion is better than empathy
15 |
16 | It's good to understand how other people might feel, but don’t assume you know their needs. 1 in 3 show unconscious bias towards people who have a disability. Include a diverse group of people and be collaborative when designing services.
17 |
18 | ## 2. Accessible design is good design
19 |
20 | Good design meets needs and solves problems. If you design something which is inaccessible you create barriers. Good design is not just what looks good, it must work for everyone regardless of what tools they use or what impairments they have.
21 |
22 | ## 3. Start with what works
23 |
24 | Start simple and only add complexity if it is needed. Use what is already available and re-use what others have already proven to work. The more things you design from scratch, the more work you need to do to make sure they're accessible.
25 |
26 | ## 4. If it's not accessible, it's not done
27 |
28 | Do not consider something finished until you are sure it is accessible. Accessibility is not a choice, it is law. It is always a priority, and if you neglect it you will create more work for yourself later.
29 |
30 | ## 5. This is 'still for everyone'*
31 |
32 | Everything we design should be as inclusive, readable and usable as possible. We are still building for the needs of everyone. We provide services for some of the most vulnerable people in society, not just people who are using the web.
33 |
34 | '* From the book, [Accessibility for Everyone](https://laurakalbag.com/book/) by Laura Kalbag
35 |
--------------------------------------------------------------------------------
/principles/business-architecture-principles.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Business Architecture Principles
3 | expires: 2025-08-31
4 | ---
5 | # Business Architecture Principles
6 |
7 | Business Architecture aims to achieve alignment between an organisation’s strategy and its operational delivery.
8 |
9 | For DfE, it can provide insight into how DfE’s capabilities, its organisation and information can be best structured and used to bring value, through the delivery of DfE’s public service mission and, more broadly, through transparency, accessibility, sustainability and the efficient use of resources.
10 |
11 | Business Architecture principles serve as a set of rules and guidelines that shape business architecture activities and, together with appropriate [standards](https://standards.education.gov.uk), provide the consistency and focus necessary to deliver high quality outcomes.
12 |
13 | These principles should not be considered in isolation, rather they should build on [enterprise-architecture-principles](enterprise-architecture-principles).
14 |
15 | Like most principles, they intend to be enduring and seldom amended.
16 |
17 |
18 | ## 1. Align with business strategy
19 |
20 | Business architecture should always align with, and prioritise activities that support, DfE’s overall strategy and goals.
21 |
22 | **Rationale**
23 |
24 | * Ensures that architecture recommendations and decisions regarding DfE’s capabilities, organisation and information directly support DfE’s strategy and goals.
25 | * Business architecture helps determine the structures that enable strategy to be executed effectively and efficiently.
26 |
27 | **Implications**
28 |
29 | * All business architecture initiatives must demonstrate how they contribute to DfE's overall strategy and goals.
30 | * A solid understanding of DfE strategy and goals is a pre-requisite to implementing business architecture.
31 |
32 | ## 2. The organisation drives the narrative
33 |
34 | Business architecture activities are driven by the stakeholder voice. Business architects should be able to link work back to well-researched stakeholder requirements and present architecture options based on requirements, for stakeholders to review.
35 |
36 | **Rationale**
37 |
38 | * Satisfying stakeholder requirements increases the chance of successfully delivering improvements through architecture-led business change.
39 | * By keeping a stakeholder-centric focus, business architects can design solutions that enhance satisfaction and deliver value.
40 |
41 | **Implications**
42 |
43 | * All business architecture initiatives must demonstrate how they contribute to organisational success.
44 | * Stakeholders play an important part in business architecture - their buy-in and active engagement are essential to success.
45 | * Establish communication channels, involve stakeholders early in the design process, and maintain ongoing dialogue.
46 |
47 | ## 3. The greater the scope, the greater the benefit
48 |
49 | When mapping, modelling and analysing, always aim to include as many of the core business architecture elements (capabilities, organisation, information and value streams) and as wide a view of the organisation as possible.
50 |
51 | **Rationale**
52 |
53 | * Mapping or modelling in isolation will only provide a 'sliced' view of the organisation, limiting analysis and limiting the ability to identify improvements.
54 | * Mapping or modelling all elements and relating elements to each other exponentially increases understanding of an organisation.
55 | * A holistic approach helps to avoid silos and ensures that changes in one area do not negatively impact others.
56 |
57 | **Implications**
58 |
59 | * Time and effort required to map or model more broadly may be significant.
60 | * Time and effort required to maintain maps and models, once created, may be significant.
61 |
62 | ## 4. Increase organisational value
63 |
64 | Focus on identifying, creating and optimising value. Prioritise activities that generate measurable outcomes or improvements for DfE, rather than engaging in projects with unclear or marginal value.
65 |
66 | **Rationale**
67 |
68 | * As a public body, DfE must demonstrate value for taxpayer money.
69 | * Public funds must be used efficiently to deliver maximum value.
70 |
71 | **Implications**
72 |
73 | * Continuous review and optimisation of business processes is required, leveraging technology for automation where appropriate and minimising waste.
74 |
--------------------------------------------------------------------------------
/profession/architecture-capability-framework.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: capability
3 | expires: 2022-12-01
4 | ---
5 |
6 | # Architecture Capability Framework
7 |
8 | > This page is being drafted, but we wanted to share the information we'd gathered as soon as it was available. If you have any comments, please contact the [architecture profession](mailto:architecture.profession@education.gov.uk))
9 |
10 | ## Purpose
11 | This framework provides an outline of the roles, skills and experience that architects working within DfE have or would like to build.
12 |
13 | We have published the our [DfE architecture capability framework](https://educationgovuk.sharepoint.com/:w:/r/sites/architecture/WorkplaceDocuments/Profession/Capability%20Framework/DfE%20Architecture%20Capability%20Framework%20v1.5.docx?d=wb8d7319a79104592ba8b4d0c9c5724d3&csf=1&web=1&e=KVquE7), focused initially on our enterprise, solution, technical and security architect roles. This will be expanded to include other architecture roles soon.
14 |
15 | On these guidance pages, we summarise information in the framework, and describe some of the pathways into architecture and how to develop an architecture career.
16 |
17 | The framework should help also people working and interacting with architects understand what we do and how we do it.
18 |
19 | It builds on the [GOV.UK DDaT Capability Framework](https://www.gov.uk/government/collections/digital-data-and-technology-profession-capability-framework), extending the various skills, levels and mastery for the context of DfE.
20 |
21 |
22 |
23 |
24 | *[Add examples for other architect roles]*
25 |
26 | ### Objectives
27 | *[Add standard deliverables, expectations at different levels, links to professional objective template]*
28 |
29 | ### Learning and development
30 | Architects can find a multitude of self-serve learning and development resources on the [architecture toolkit](https://planner.cloud.microsoft/webui/plan/V_MJD_d-AUqrjB4GRgyug5YABPL1/view/board?tid=fad277c9-c60a-4da1-b5f3-b3b8b34a82f9). If you have any specific needs, or would like to set up some shadowing, coaching or mentoring, come and talk to the [profession team](mailto:architecture.profession@education.gov.uk).
31 |
32 | ### Community
33 | The architecture community is there to support you in your developing your skills and experience. There are regular masterclasses and knowledge sharing sessions, as well as opportunities to hear from and engage with our suppliers. head over to the [architecture community page](../../profession/architecture-community) to read more.
34 |
35 | ## Pathways into architecture
36 | Here are some examples of how architects come into the profession and what the career pathways might look like:
37 |
38 | 
39 |
40 | You can also download a [PDF version](../documents/dfe-architecture-framework-pathways.pdf) of this architecture pathway map.
41 |
42 | *[Add detail on DDaT pathways + DfE - from business analysis, development / DevOps, technical roles]*
43 |
44 | ## Profiles
45 | *[Add case studies for Enterprise / Solution / Technical / Data Architect]*
46 |
47 | For more information, or for help finding an architect for your project, contact the [architecture profession](mailto:architecture.profession@education.gov.uk)
48 |
--------------------------------------------------------------------------------
/profession/architecture-community.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: profession
3 | expires: 2025-09-31
4 | ---
5 |
6 | # Architecture Community
7 | There is a thriving architecture community in DfE. We meet up monthly, to 'show and tell' good things that are happening in architecture. And to hear from wider Government, private sector, relevant suppliers and vendors on new, innovative solutions. And to just chat and share knowledge.
8 |
9 | You don't have to be an architect to join in - we welcome updates from all parts of DfE (if there's an architecture / design connection). And anyone that's interested in what we're doing is very welcome to dive into the conversations.
10 |
11 | If you want to get involved or have something to share, drop us a line in the [architecture profession](mailto:architecture.profession@education.gov.uk).
12 |
13 | ## Communities of Practice
14 | There are several architecture-related Communities of Practice within the DfE, providing opportunities for sharing knowledge, seeking advice and exchanging ideas within a particular domain.
15 |
16 | For more information, contact the named community lead below:
17 |
18 | | Community of Practice | Lead architect |
19 | | ----------| ---------- |
20 | | Technical Architecture | Andy Emley |
21 | | Architecture in Data Science| Pete Holding / Stuart Baillie |
22 | | Data Architecture | Richard Boland |
23 |
24 | ## Community meet-up
25 | We have a monthly, open-invite meet-up for all architects across DfE and those with an interest in architecture (civil servants and contractors).
26 |
27 | The meet-up provides opportunity to discuss and share all things architecture and design, and typically includes:
28 |
29 | - **Regular internal and external speakers**, sharing their experiences from the front line of architecture
30 | - **Discussing common challenges in architecture**, such as technical debt, patterns, roadmaps and strategy
31 | - **Lean coffee discussion**, where we propose, vote and talk about any challenges of the day
32 |
33 | Hosting of the meet-up and topics is shared by the community and usually rotates round [architecture leads](architecture-profession#architecture-leads).
34 |
35 | ## Collaboration channels
36 | We use DfE Slack and Teams channels to collaborate across the community. Here we share interesting articles, chat about current challenges and ask (lots of) questions - you can usually find out if someone is tackling a similar problem or is hosting a session that you can join.
37 |
38 | - [#architecture](https://ukgovernmentdfe.slack.com/archives/CFGA9DZSL) on DfE Slack
39 | - [Architecture Community](https://teams.microsoft.com/l/team/19%3a431430007aba4eceaddb4a0ab32dc412%40thread.skype/conversations?groupId=a7bd5aaa-9b44-4594-b058-4ac717af83d9&tenantId=fad277c9-c60a-4da1-b5f3-b3b8b34a82f9) on DfE Teams
40 |
41 | You can self-join these channels with your DfE account, but please reach out to the [architecture profession](mailto:architecture.profession@education.gov.uk) if you're struggling.
42 |
43 | ## Useful resources
44 | In addition to our communities, there are a wide range of helpful resources available, for knowledge sharing, seeking advice, exchanging ideas and providing guidance to help you.
45 |
46 | Feel free to dive in:
47 |
48 | - [DfE architecture toolkit](https://planner.cloud.microsoft/webui/plan/V_MJD_d-AUqrjB4GRgyug5YABPL1/view/board?tid=fad277c9-c60a-4da1-b5f3-b3b8b34a82f9)
49 | - [#architecture](https://ukgovernmentdigital.slack.com/archives/C04V6F4SX) on cross-Government (xGov) Slack
50 | - [xGov Enterprise Architect community](http://ukgovernmente-rue7893.slack.com/) on Slack
51 | - [xGov Business Architecture Group](https://khub.net/group/x-gov-business-architecture-group)
52 |
--------------------------------------------------------------------------------
/profession/architecture-profession.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: profession
3 | expires: 2022-03-31
4 | ---
5 |
6 | # Architecture profession
7 |
8 | ## What we do and how we help
9 |
10 | Architecture in DfE follows a profession-led model. Architects are embedded in service delivery teams, portfolios or domains and are supported by the architecture profession.
11 |
12 | The architecture profession:
13 |
14 | - builds architecture capability across DfE, providing a capability framework, supporting recruitment, career pathways and professional development opportunities
15 | - sets architecture and technical design standards, providing guidance and a proportionate assurance framework
16 | - builds architecture and technical design communities, facilitating regular meet-ups with opportunities for all to share and learn
17 |
18 | There is a large community of permanent, managed service and contingent architects across the department, plus commercial frameworks to help fulfill your needs.
19 |
20 | If you're looking for architecture support for your project, you should discuss your needs with your [architecture lead](architecture-leads.md) in the first instance.
21 |
22 | ## Help to find an architect
23 |
24 | The architecture profession will work with you and your [architecture lead](#architecture-leads) to fulfill your needs. That could be supporting you to recruit permanent staff or helping you bring in the right people or services, through one of our compliant commercial routes to market. This will enable you to:
25 |
26 | - get the right architecture skills, at the right time, at the right price
27 | - on-board architects into DfE consistently, so they understand our ways of working and assurance framework
28 | - provide oversight and assurance of their outputs and deliverables
29 | - link them into the wider DfE architecture profession and communities
30 | - exit them professionally when their work is complete, with appropriate handover and knowledge transfer
31 |
32 | The profession can provide example [job descriptions](https://job-descriptions.education.gov.uk), structured recruitment materials and template statements of work (for managed services and contingent workers).
33 |
34 | If you'd like to know more, or discuss your needs in more detail, contact the [architecture profession](mailto:architecture.profession@education.gov.uk).
35 |
36 | ## Architecture leads
37 |
38 | Architecture leads work within a DfE portfolio or domain. They work closely with DDT business partners and other DDT specialists to support, steer and help join-up delivery.
39 |
40 | They:
41 |
42 | - assist, advise and guide programmes and projects, ensuring alignment with:
43 | - technical strategies
44 | - common patterns and components
45 | - architecture principles
46 | - architecture standards and assurance
47 | - can help identify architects and other technical specialists needed to support delivery, specifically:
48 | - supporting recruitment of the right people to meet the needs of the portfolio / domain
49 | - working with delivery teams to align with architecture principles, standards and patterns
50 | - helping identify common goals / problems being solved across DfE and linking up
51 |
52 | Use the table below to find out who your architecture lead is. Or contact the [architecture profession](mailto:architecture.profession@education.gov.uk) if you're not sure.
53 |
54 |
55 | | Portfolio/domain | Architecture lead(s) |
56 | | - | - |
57 | | Teacher services | tbc - Speak to Rob Rodney |
58 | | Children and families | Ben Vandersteen |
59 | | Schools and curriculum | tbc - speak to Mamood Sultan |
60 | | Cyber security | tbc - speak to Angela Scale |
61 | | End user services | John Phillips |
62 | | Operational services | Mario Gledhill |
63 | | Enterprise architecture | Ant McCrea |
64 | | Data architecture | Richard Boland / Rajinder Bilkhu |
65 | | Data science | Pete Holding |
66 | | Apprenticeship Service | tbc - speak to Craig Faulkner |
67 | | National Careers Service | Chris Jones |
68 |
69 | ## Help with assurance
70 |
71 | For most services, it is expected that **architecture will emerge and evolve** over time as services themselves change based on emerging user needs and other drivers.
72 |
73 | The benefit of iterative delivery is to release value to users as early as possible, then iterate and continuously improve to derive better outcomes based on user feedback. This requires ongoing, continuous architecture and technical design review, to ensure services are created sustainably and consistently across the portfolio or domain and the wider organisation. Embedded architects work alongside product managers, developers, service designers and many other people to achieve this.
74 |
75 | In DfE, we encourage an 'in-line' assurance approach, where decisions about architecture and technology are made within a portfolio or service team based on user need, with assurance from wider technical communities where needed. By aligning with architecture principles and complying with [technical standards](../../standards/technical-standards/) in DfE, we believe minimum-viable governance speeds up delivery. Architects can share and assure their work in communities, ensuring fit with broader organisational strategies.
76 |
77 | To see how your needs for architecture and technical design assurance might be best met, see our [design assurance guidance](../../governance/technical-governance/)
78 |
79 | ## Further information
80 |
81 | More information on architecture roles and responsibilities is available on our [architecture capability framework](../../capability/architecture-capability-framework/) guidance.
82 |
83 | For any other information on the architecture practice, contact the [architecture profession](mailto:architecture.profession@education.gov.uk).
84 |
--------------------------------------------------------------------------------
/profession/architecture-roles.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: capability
3 | expires: 2024-12-01
4 | ---
5 |
6 | # Architecture roles
7 |
8 | All architects in DfE design and deliver services that provide outcomes for end users and the department. They are responsible for the technical quality of the products and services we deliver, thinking innovatively and bringing a broader perspective to service delivery.
9 |
10 | In DfE, we have a broad mix of enterprise, business, solution, technical, data, security and specialist architects. We sometimes have tech leads that have 'architecture' responsibilities. There are lots of different roles and teams that 'do' architecture in one way or another, across a number of business areas.
11 |
12 | Here are the more common roles:
13 |
14 | ## Enterprise architects
15 |
16 | Enterprise architects generally work across the DfE at a strategic level, to translate business strategy into change and technical delivery.
17 |
18 | Their responsibilities typically include:
19 |
20 | - establishing broad architectural principles, policies and standards
21 | - assuring technology decisions are aligned to architecture and technical strategies
22 | - ownership of architecture strategy and roadmaps for the organisation, including ‘as-is’ and ‘to-be’ transitional states
23 | - understanding DfE's ecosystem and its inter-dependencies
24 |
25 | Enterprise architect roles in DfE align with the [Enterprise architect](https://ddat-capability-framework.service.gov.uk/role/enterprise-architect) role in the Government Digital and Data Capability Framework.
26 |
27 | You can read more about the role in the standard [Enterprise architect job description](https://job-descriptions.education.gov.uk/architects/enterprise-architect/).
28 |
29 | ## Business architects
30 |
31 | Business architects bridge the gap between business strategy and delivery. They help business and delivery teams to understand how capabilities, the organisation and information contribute to delivering value, through organisational objectives.
32 |
33 | Business architects typically create capability, information and organisation maps, value stream diagrams and business models. They employ techniques such as heat-mapping, to provide greater understanding of the landscape, enabling more efficient and effective delivery.
34 |
35 | Business architect roles in DfE align with the [Business architect](https://ddat-capability-framework.service.gov.uk/role/business-architect) role in the Government Digital and Data Capability Framework.
36 |
37 | You can read more about the [role of a business architect](../business-architecture) or view the standard [Business architect job description](https://job-descriptions.education.gov.uk/architects/business-architect/).
38 |
39 | ## Solution architects
40 |
41 | Solution architects typically work within delivery teams to find the best use of data, applications and technology for the design and delivery of services and products. Whilst also helping to deliver business change and achieving organisational objectives.
42 |
43 | Solution architects own the overall technical vision for a solution or set of solutions, or within a particular domain. They work within service delivery teams to assure the implementation and delivery of those solutions.
44 |
45 | Solution architect roles in DfE align with the [Solution architect](https://ddat-capability-framework.service.gov.uk/role/solution-architect) role in the Government Digital and Data Capability Framework.
46 |
47 | You can read more about the role in the standard [Solution architect job description](https://job-descriptions.education.gov.uk/architects/solution-architect/).
48 |
49 | ## Technical architects
50 |
51 | Technical architects are generally embedded within a multi-disciplinary team (or across multiple teams), working end-to-end to help to design and implement technical solutions. They are often specialists or technical subject matter experts in one or more disciplines (e.g. software development, data, security, DevOps). They tend to work in continuous delivery environments and are comfortable with turning business problems into technical design. They tend to be from a software development or engineering background and are comfortable using technical toolsets and / or code.
52 |
53 | Technical architects typically work in portfolios and service lines within DfE, such as those found in Teacher Services or Children and Families, for example. This role is aligns with the [Technical architect](https://ddat-capability-framework.service.gov.uk/role/technical-architect) role in the Government Digital and Data Capability Framework.
54 |
55 | You can read more about the role in the standard [Technical Architect job description](https://job-descriptions.education.gov.uk/architects/technical-architect/).
56 |
57 | ## Data architects
58 |
59 | Data architects set the vision for DfE’s use of data, through data design, to meet business needs. They design and build data models to fulfil the strategic data needs of the business.
60 |
61 | For more information, have a look at the [DfE data architecture](https://educationgovuk.sharepoint.com/sites/lvedfe00108/) site.
62 |
63 | ## Security architects
64 |
65 | Security architects design, build and assure the security of solutions. In DfE, they will create and designs security for a system or service, maintain security documentation and develops architecture patterns and secure approaches to new technologies. Security architects:
66 |
67 | - recommend security controls and identify solutions that support a business objective
68 | - provide specialist advice and recommend approaches across teams and various stakeholders
69 | - communicate widely with other stakeholders
70 | - advise on important security-related technologies and assess the risk associated with proposed changes
71 | - inspire and influence others to execute security principles
72 |
73 | This role aligns with the [Security Architect](https://ddat-capability-framework.service.gov.uk/role/security-architect) role in the Government Digital and Data Capability Framework.
74 |
75 | ## Specialist architects
76 |
77 | We also have some [Specialist Technical Architects](https://www.gov.uk/guidance/technical-specialist-architect) (focused on things like infrastructure or networks, for example), who work closely with service delivery teams and the other parts of the department to help achieve our goals.
78 |
79 | ## Profession support
80 |
81 | To keep everything running smoothly, we have a small profession team, comprising the Head of Profession, an architecture profession manager and some professional support. Have a look at our [architecture profession page](../../profession/architecture-profession) for more information.
82 |
83 |
84 | ## The role of an architect through the delivery lifecycle
85 |
86 | Here are some questions and focus areas architects might have at different stages of the delivery lifecycle:
87 |
88 | **Planning / inception / pre-discovery**
89 | - Questions - What is the problem space? Is there a problem to solve?
90 | - Focus - Problem framing, stakeholder mapping, input to business case
91 |
92 | **Discovery**
93 | - Questions - What is the problem? How big is it? Can we solve it?
94 | - Focus - Problem statement, goals and drivers, conceptual views, business/technical capability mapping, early option thinking
95 |
96 | **Alpha**
97 | - Questions - What are our riskiest assumptions? How can we release value early?
98 | - Focus - Solution prototyping, capability / service / application views, data architecture, design assumptions and constraints, options considered / tested
99 |
100 | **Beta**
101 | - Questions - What should we build first and is it adding value?
102 | - Focus - Moving from high to low-level design (applications, data, integration, hosting, security), infrastructure / network topology, disaster recovery, logging, auditing, error handling, managing the service and support, recording and adjusting architecture / design decisions
103 |
104 | **Live**
105 | - Questions - How can we continually add value to the service?
106 | - Focus - Continual improvement, relationships with suppliers, learning / future recommendations
107 |
108 |
109 | ## Responsibilities of an architect
110 |
111 | Here are some examples of the expected responsibilities of an architect at different levels:
112 |
113 | | | G6 Lead Architect | G7 Senior Architect | SEO Architect |
114 | | - | - | - | - |
115 | |__Delivery__ | Across one or more portfolios or business domains | Across a programme or group of projects, aligned to a portfolio or domain | Across one or a small group of projects, aligned to a portfolio or domain |
116 | |__Assurance__ | Review of business cases, establish in-line assurance mechanisms, reviewing submissions for assurance, technical service assessment, design assurance of major/critical programmes | Establish/support assurance mechanisms, assurance submissions, technical service assessment, design assurance of projects and programmes | Participate in assurance mechanisms, technical service assessment, design assurance of projects |
117 | |__Strategies__ | Own one or more technology strategies and roadmaps | + One or more technology strategies and roadmaps |
118 | |__Thought leadership__ | Write thematic papers to influence, lead community discussions | + Write thematic papers to influence, lead community discussions |
119 | |__Line management__ | Team plans and management, workforce management | + Management and coaching of colleagues |
120 | |__Corporate__ | Budget delegation, leading cross-cutting work, mentoring, recruitment, xGovernment collaboration | + Cross-cutting work (actively involved), mentoring, recruitment, xGovernment collaboration | + Recruitment, xGovernment collaboration |
121 |
122 | (+ indicates a stretch goal)
123 |
124 | Architects (or those aspiring to be architects) should consider:
125 |
126 | - Which level am I currently operating at?
127 | - What else could / should I do?
128 | - How can I create space to cover?
129 | - What support do I need?
130 |
131 | Have a look at our [capability framework](architecture-capability-framework) page for more information.
132 |
--------------------------------------------------------------------------------
/profession/business-architecture.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: profession
3 | expires: 2025-12-11
4 | ---
5 |
6 | # Business Architecture
7 |
8 | In DfE, business architects work in a variety of different contexts, performing various tasks. This guidance highlights Business Architecture best practice, in an effort to bring consistency to the practice as it matures in DfE.
9 |
10 | Best practice helps business architects when creating artefacts - it can ‘jump start’ tasks which might otherwise need scoping, and support combining, comparing or contrasting artefacts.
11 |
12 | Whilst several business architecture practices are suggested, they are not mandated in DfE. However, they are considered sensible in the context of DfE.
13 |
14 | Business architects should refer to the [common definitions](../standards/common-definitions).
15 |
16 |
17 | ## Mapping
18 |
19 | Maps are high-level visual representations of the 'things' being mapped.
20 |
21 | Mapping should focus on two things as a minimum - visualisation of things mapped, and the relationships and flows between them.
22 |
23 | The purpose of mapping is to aid the understanding of and communicate, regarding the things being mapped.
24 |
25 | The recommended basic mapping tool is Microsoft Visio. For more complex mapping exercises, use ArchiMate compatible tools such as Archi.
26 |
27 | A business architect might typically map value streams, business capabilities (and services that realise them), organisational structures and stakeholder relationships.
28 |
29 |
30 | ## Modelling
31 |
32 | Models are detailed, structured representations of what is being modelled.
33 |
34 | Modelling in the context of business architecture should focus on describing and simulating business activities, or ‘what’ an organisation does.
35 |
36 | The purpose of modelling is to aid analysis of business activities to drive improved decision making.
37 |
38 | The recommended basic modelling tools are Microsoft Visio or Excel. For more complex modelling exercises, use ArchiMate compatible tools such as Archi.
39 |
40 | What things might a business architect typically model? Business capabilities, processes, information/intelligence (data), operating models, services.
41 |
42 |
43 | ## Who to contact
44 |
45 | If you're interested in Business Architecture, reach out to [Paul Cripwell](https://www.microsoft365.com/search/overview?auth=2&home=1&pp=11bcb046-7de9-4dd9-858d-7997129df02d%40fad277c9-c60a-4da1-b5f3-b3b8b34a82f9%7CPaul.CRIPWELL%40education.gov.uk)
--------------------------------------------------------------------------------
/profession/get-help-with-architecture-flow.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: profession
3 | expires: 2023-02-15
4 | ---
5 |
6 | # Get help with architecture
7 | > This is a prototype of a process flow to help everyone understand the steps involved in securing architecture support for your project.
8 | > It will be used to test the steps with the actors involved, to then iterate and refine the process.
9 | > Any comments to the [architecture profession mailbox](architecture.profession@education.gov.uk) please.
10 |
11 | ```mermaid
12 | graph TD
13 | A(fa:fa-user Requestor) -->|Define the need and raise| B(fa:fa-handshake DDaT Business Partner)
14 | B --> C{Is this an architecture need?}
15 | C -.-> |Seek advice| D(fa:fa-users Profession)
16 | D -.-> C
17 | C --> |No: help define the need| B
18 | C --> |Yes|E{Portfolio fit?}
19 | E --> |Yes: small request| F(fa:fa-briefcase Portfolio)
20 | E --> |Yes: large request, raise canvas| G(fa:fa-road Roadmap)
21 | E --> |No: raise for emergency triage| H(fa:fa-exclamation-triangle Emergency Triage)
22 | F --> |Confirm support, agree SoW| A
23 | G --> I{Prioritised?}
24 | I --> |Yes| F
25 | I --> |No| B
26 | B --> |Unable to meet demand| A
27 | F -.-> |Capacity issues: seek advice| H
28 | H -.-> F
29 | H --> J(Establish portfolio and prioritisation)
30 | J --> |Confirm position|F
31 | ```
32 |
33 | ## Useful links
34 |
35 | - [DDaT Business Partners](https://educationgovuk.sharepoint.com/sites/lvewp00038/SitePages/DDaT-Business-Partners.aspx)
36 | - [Architecture guidance](https://dfe-digital.github.io/architecture)
37 |
--------------------------------------------------------------------------------
/profession/get-help-with-architecture-sequence.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: profession
3 | expires: 2023-02-15
4 | ---
5 |
6 | # Get help with architecture
7 | > This is a prototype of a process flow to help everyone understand the steps involved in securing architecture support for your project.
8 | > It will be used to test the steps with the actors involved, to then iterate and refine the process.
9 | > Any comments to the [architecture profession mailbox](architecture.profession@education.gov.uk) please.
10 |
11 | ```mermaid
12 | sequenceDiagram
13 | participant Requestor
14 | participant DDaT Business Partner
15 | participant Portfolio
16 | participant Roadmap
17 | participant Emergency Triage
18 | participant Profession
19 |
20 | Requestor ->> DDaT Business Partner: Define the need and raise
21 | note over DDaT Business Partner: Is this definitely an architecture need?
22 | DDaT Business Partner -->> Profession: Seek advice
23 | DDaT Business Partner -->> Requestor: Help to define the need
24 | note over DDaT Business Partner: Does this fit within an existing portfolio?
25 | DDaT Business Partner ->> Portfolio: Yes: small request
26 | note over Portfolio: Identify architecture support
27 | Portfolio ->> Requestor: Confirm support, agree statement of work
28 | DDaT Business Partner ->> Roadmap: Yes: large request, raise canvas
29 | note over Roadmap: Prioritised?
30 | Roadmap ->> Portfolio: Yes
31 | note over Portfolio: Identify architecture support
32 | Portfolio -->> Emergency Triage: If capacity issues, seek advice
33 | Portfolio ->> Requestor: Confirm support, agree statement of work
34 | Roadmap ->> DDaT Business Partner: No: confirm line to take (no, but...)
35 | DDaT Business Partner ->> Requestor: Unable to meet demand
36 |
37 | DDaT Business Partner ->> Emergency Triage: No: raise for emergency triage
38 | note over Emergency Triage: Establish portfolio and agree prioritisation
39 | Emergency Triage ->> Portfolio: Confirm position
40 | note over Portfolio: Is support available?
41 | Portfolio -->> Emergency Triage: Seek advice
42 | Portfolio -->> Profession: Exceptionally, consult profession
43 | Portfolio ->> Requestor: Yes: Confirm support, agree statement of work
44 | Portfolio ->> DDaT Business Partner: No: Confirm line to take
45 | DDaT Business Partner ->> Requestor: Unable to meet demand
46 | ```
47 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | # DfE Architecture
2 | This site documents the architecture principles, standards and guidance that we expect teams working
3 | within the [Department for Education (DfE)](https://www.gov.uk/government/organisations/department-for-education)
4 | to follow when designing services.
5 |
6 | It complements the [GDS Service Manual](https://www.gov.uk/service-manual) and its
7 | [technology section](https://www.gov.uk/service-manual/technology),
8 | which covers service design more broadly.
9 |
10 | It should be used in conjunction with the
11 | [DfE Digital Technical Guidance](https://dfe-digital.github.io/technical-guidance),
12 | when building digital services.
13 |
14 | ## Adding new guidance
15 |
16 | Create a new Markdown (.md) file in the [DfE Architecture repo](https://github.com/DFE-Digital/enterprise-architecture) that follows this pattern, add a link to it
17 | from this page, and make a pull request:
18 |
19 | ```markdown
20 | ---
21 | category: The broader area this fits into
22 | expires: yyyy-mm-dd (6 months from now)
23 | ---
24 | # What you're writing about
25 |
26 | Introduction of a couple of paragraphs to explain why what you're
27 | writing about is important. The [title should probably be a verb, not a
28 | noun](https://designnotes.blog.gov.uk/2015/06/22/good-services-are-verbs-2/) (e.g. "Storing source code", not "Code
29 | repositories").
30 |
31 | ## User needs
32 |
33 | Why do we do this? Who is it helping?
34 |
35 | ## Principles
36 |
37 | What broad approaches do we follow when we do this?
38 |
39 | ## Tools
40 |
41 | What specific software (commercial or open source) do we use to help us do this?
42 | ```
43 |
44 | The service manual has some useful information on
45 | [learning about and writing user needs](https://www.gov.uk/service-manual/user-research/start-by-learning-user-needs).
--------------------------------------------------------------------------------
/standards/architecture-documentation.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Standards
3 | expires: 2022-06-12
4 | ---
5 |
6 | # Architecture documentation
7 |
8 | In DfE, architects are trusted to choose the most appropriate way of documenting their design thinking, decisions and rationale, in a way that best fits with their delivery. It's important that design is done in the open and architects share their thinking across the community. The architecture profession provides various tools, techniques and guides to help architects do that.
9 |
10 | ## Architecture Decision Records
11 |
12 | Use of lightweight Architecture Decision Records (ADRs), as [described by Michael Nygard](https://cognitect.com/blog/2011/11/15/documenting-architecture-decisions), is a technique strongly encouraged in DfE, for capturing important architectural decisions along with their context and consequences. Recording design decisions in this way enables retrospective review at key points, benefits future team members getting up-to-speed quickly, as well as providing a basis for external oversight, where needed. We recommend storing ADRs in source control, to provide a record that remains in sync with the code itself.
13 |
14 | There is a wealth of related information on the [ADR Github organisation](https://adr.github.io/). In DfE, we favour the [Markdown Architecture Decision Records (MADR)](https://adr.github.io/madr/) approach, though appreciate any implementation is better than none.
15 |
--------------------------------------------------------------------------------
/standards/business-architecture.md:
--------------------------------------------------------------------------------
1 | ---
2 | category: Guidance
3 | expires: 2025-12-12
4 | ---
5 |
6 | # Business architecture
7 |
8 | ## Best practice
9 |
10 | In DfE, business architects may be employed in various ways, performing various tasks. Whilst there may be inconsistency in what a business architect is tasked to do, it can be useful for DfE to have accepted best practice, focused on how usual business architecture tasks might be performed.
11 |
12 | Accepted best practice helps provide business architects with guidance when creating artefacts. It can ‘jump start’ tasks which would otherwise need scoping and support the combination and comparison of artefacts, by providing consistency if such activities are desired.
13 |
14 | Many business architecture practices might be suggested or used in DfE. Whilst the practices offered below are considered sensible for DfE, none are mandated.
15 |
16 | Business architects should refer to the [DfE Subject Taxonomy](https://educationgovuk.sharepoint.com/sites/lvedfe00014) and [common definitions](../common-definitions/) for terms and definitions, for descriptions of some of the ‘things’.
17 |
18 |
19 | ## Mapping
20 |
21 | Maps are high-level visual representations of the things being mapped.
22 |
23 | Mapping should focus on two things as a minimum - visualisation of things mapped, and the relationships and flows between them.
24 |
25 | The purpose of mapping is to aid the understanding of, and communicate regarding, the things being mapped.
26 |
27 | The recommended basic mapping tool in DfE is Microsoft Visio. For more complex mapping exercises, use ArchiMate compatible tools, such as [Archi](https://www.archimatetool.com/).
28 |
29 | *What things might a business architect typically map?* Value streams, organisational structures, stakeholder relationships.
30 |
31 |
32 | ## Modelling
33 |
34 | Models are detailed, structured representations of what is being modelled.
35 |
36 | Modelling in the context of business architecture should focus on describing and simulating business activities, or ‘what’ an organisation does.
37 |
38 | The purpose of modelling is to aid analysis of business activities to drive improved decision making.
39 |
40 | The recommended basic modelling tools are Microsoft Visio or Excel. For more complex modelling exercises, use ArchiMate compatible tools such as [Archi](https://www.archimatetool.com/).
41 |
42 | *What things might a business architect typically model?* Business capabilities, processes, information/intelligence (from data), operating models, services.
43 |
44 |
45 | ## Capability modelling
46 |
47 | As described in [common definitions](../common-definitions/#capability), capabilities are abstract concepts used to describe *what* we do.
48 |
49 | To deliver most value in an organisation, capability models should be comparable and therefore need to be created in a consistent manner. This ensures clarity, reliability and usability for various stakeholders and across initiatives.
50 |
51 | In DfE, capability models should follow the guidance below:
52 |
53 | ### Categorisation
54 |
55 | Capabilities should be categorised as [strategic, core or enabling](../common-definitions/#capability)
56 |
57 | ### Levelling
58 |
59 | Capabilities should be levelled (decomposed), usually to 3 levels, with the following characteristics:
60 |
61 | * Level 1 - broad scope, stable and enduring, often cut across organisational groups, can be easily decomposed
62 | * Level 2 - operational focus, narrowing to actionable scope, relatively stable, direct ‘child’ of a level 1 capability
63 | * Level 3 - process or task focused, specific scope, subject to regular change, direct ‘child’ of a level 2 capability
64 |
65 | A generic example of levelling is:
66 |
67 | |Level 1| Level 2|Level 3|
68 | |-----------|-----------|-----------|
69 | |Customer Relationship Management|- Customer Segmentation and Analytics - Customer Support and Service - Customer Feedback Management|For Level 2 Customer Feedback Management: - Feedback Collection - Feedback Analysis - Feedback Integration - Feedback Management Tools and Platforms|
70 | |Product Development|- Ideation and Concept Development - User Research and Analysis - Product Testing and Validation - Product Lifecycle Management - Product Design and Prototyping|For Level 2 Product Design and Prototyping: - Conceptual Design - Prototype Development - Design Validation - Collaboration and Tools|
71 | |Supply Chain Management|- Supply Chain Risk Management - Demand Planning and Forecasting - Procurement and Supplier Management|For Level 2 Procurement and Supplier Management: - Bid Management - Contract Management|
72 |
73 | ### Scope
74 |
75 | Avoid capabilities so broad that they include multiple unrelated areas. And/or are too abstract to provide practical value, requiring an unmanageable number of levels to decompose. For example, ‘delivering customer services’, ‘managing financial operations’ or ’developing products and services’ are all too broad.
76 |
77 | ### Definition
78 |
79 | Capabilities should be described to a level of detail that is easily understood and unambiguous, to ensure clarity, aid ease of use and avoid risk of duplication.
80 |
--------------------------------------------------------------------------------
/stylesheets/print.scss:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 | $path: '{{ "/images/" | relative_url }}';
4 | $is-print: true;
5 |
6 | @import "core";
7 |
--------------------------------------------------------------------------------
/stylesheets/screen-old-ie.scss:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 | $path: '{{ "/images/" | relative_url }}';
4 | $is-ie: true;
5 | $ie-version: 8;
6 |
7 | @import "core";
8 |
--------------------------------------------------------------------------------
/stylesheets/screen.scss:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 | $path: '{{ "/images/" | relative_url }}';
4 | @import "core";
5 | @import "vendor/fixedsticky";
6 |
--------------------------------------------------------------------------------