|
1 | 1 | // app/data/ethnicities.js |
2 | 2 |
|
| 3 | +// Values in this file match the GOV.UK ethnicity pattern: |
| 4 | +// https://design-system.service.gov.uk/patterns/equality-information/#asking-for-ethnic-group |
| 5 | + |
3 | 6 | module.exports = { |
4 | | - 'Asian or Asian British': [ |
5 | | - 'Bangladeshi', |
6 | | - 'Chinese', |
7 | | - 'Indian', |
8 | | - 'Pakistani', |
9 | | - 'Another Asian background', |
10 | | - ], |
11 | | - 'Black, African, Black British or Caribbean': [ |
12 | | - 'African', |
13 | | - 'Caribbean', |
14 | | - 'Another black background', |
| 7 | + "Asian or Asian British": [ |
| 8 | + "Indian", |
| 9 | + "Pakistani", |
| 10 | + "Bangladeshi", |
| 11 | + "Chinese", |
| 12 | + "Any other Asian background", |
15 | 13 | ], |
16 | | - 'Mixed or multiple ethnic groups': [ |
17 | | - 'Asian and White', |
18 | | - 'Black African and White', |
19 | | - 'Black Caribbean and White', |
20 | | - 'Another mixed background', |
| 14 | + "Black, African, Caribbean or Black British": [ |
| 15 | + "African", |
| 16 | + "Caribbean", |
| 17 | + "Any other Black, African or Caribbean background", |
21 | 18 | ], |
22 | | - White: [ |
23 | | - 'British, English, Northern Irish, Scottish, or Welsh', |
24 | | - 'Irish', |
25 | | - 'Irish Traveller or Gypsy', |
26 | | - 'Another White background', |
| 19 | + "Mixed or multiple ethnic groups": [ |
| 20 | + "White and Black Caribbean", |
| 21 | + "White and Black African", |
| 22 | + "White and Asian", |
| 23 | + "Any other mixed or multiple ethnic background", |
27 | 24 | ], |
28 | | - 'Another ethnic group': [ |
29 | | - 'Arab', |
30 | | - 'Another ethnic background', |
| 25 | + "White": [ |
| 26 | + "English, Welsh, Scottish, Northern Irish or British", |
| 27 | + "Irish", |
| 28 | + "Gypsy or Irish Traveller", |
| 29 | + "Any other White background", |
31 | 30 | ], |
| 31 | + "Other ethnic group": [ |
| 32 | + "Arab", |
| 33 | + "Any other ethnic group", |
| 34 | + ] |
32 | 35 | } |
0 commit comments