ccs-digitalmarketplace-frameworks 2.3.5 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/frameworks/digital-outcomes-and-specialists-7/manifests/edit_service.yml +181 -1
- package/frameworks/digital-outcomes-and-specialists-7/manifests/edit_service_as_admin.yml +204 -0
- package/frameworks/digital-outcomes-and-specialists-7/manifests/edit_submission.yml +8 -0
- package/package.json +1 -1
- package/schemas/manifests.json +3 -0
package/README.md
CHANGED
|
@@ -103,6 +103,7 @@ Each section contains:
|
|
|
103
103
|
* `slug` can be used to manually override the slug used for this section.
|
|
104
104
|
* `editable` controls whether section allows updates for the questions, boolean value
|
|
105
105
|
* `edit_questions` controls whether individual questions can be edited separately (only supported by `multiquestion` questions)
|
|
106
|
+
* `removable` controls whether individual questions can be removed separately (only supported by `multiquestion` questions and is the same as `edit_questions` by default)
|
|
106
107
|
* `description` text to display after the section name. This field is a [TemplateField](https://github.com/alphagov/digitalmarketplace-content-loader/blob/474d9adce0f422700cbf2dfc8815a7503ab368bc/dmcontent/utils.py#L8).
|
|
107
108
|
* `summary_page_description` text to display between the summary table heading and the table body
|
|
108
109
|
* `step` decides how sections are grouped on (brief) overview pages
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
-
|
|
2
2
|
name: Research studio name
|
|
3
|
-
editable:
|
|
3
|
+
editable: True
|
|
4
4
|
questions:
|
|
5
5
|
- serviceName
|
|
6
6
|
|
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
- accessibleApplicationsOutcomes
|
|
15
15
|
- technicalDebtAndFutureLegacy
|
|
16
16
|
- governmentCyberSecurityStandard
|
|
17
|
+
- provideTeamCapabilities
|
|
18
|
+
- provideDigitalRoles
|
|
19
|
+
- workAcrossAllLocations
|
|
17
20
|
|
|
18
21
|
- name: Team capabilities
|
|
19
22
|
editable: False
|
|
@@ -26,3 +29,180 @@
|
|
|
26
29
|
- testingAndAuditing
|
|
27
30
|
- userExperienceAndDesign
|
|
28
31
|
- userResearch
|
|
32
|
+
|
|
33
|
+
- name: Team capabilities
|
|
34
|
+
editable: False
|
|
35
|
+
questions:
|
|
36
|
+
- performanceAnalysisAll
|
|
37
|
+
- securityAll
|
|
38
|
+
- deliveryAll
|
|
39
|
+
- softwareDevelopmentAll
|
|
40
|
+
- supportAndOperationsAll
|
|
41
|
+
- testingAndAuditingAll
|
|
42
|
+
- userExperienceAndDesignAll
|
|
43
|
+
- userResearchAll
|
|
44
|
+
|
|
45
|
+
- name: Architecture roles
|
|
46
|
+
editable: False
|
|
47
|
+
questions:
|
|
48
|
+
- multiqArchitectureRolesBusinessArchitect
|
|
49
|
+
- multiqArchitectureRolesDataArchitect
|
|
50
|
+
- multiqArchitectureRolesEnterpriseArchitect
|
|
51
|
+
- multiqArchitectureRolesNetworkArchitect
|
|
52
|
+
- multiqArchitectureRolesSecurityArchitect
|
|
53
|
+
- multiqArchitectureRolesSolutionArchitect
|
|
54
|
+
- multiqArchitectureRolesTechnicalArchitect
|
|
55
|
+
|
|
56
|
+
- name: Cyber security roles
|
|
57
|
+
editable: False
|
|
58
|
+
questions:
|
|
59
|
+
- multiqCyberSecurityRolesCyberSecurity
|
|
60
|
+
|
|
61
|
+
- name: Data roles
|
|
62
|
+
editable: False
|
|
63
|
+
questions:
|
|
64
|
+
- multiqDataRolesAnalyticsEngineer
|
|
65
|
+
- multiqDataRolesDataAnalyst
|
|
66
|
+
- multiqDataRolesDataEngineer
|
|
67
|
+
- multiqDataRolesDataEthicist
|
|
68
|
+
- multiqDataRolesDataGovernanceManager
|
|
69
|
+
- multiqDataRolesDataScientist
|
|
70
|
+
- multiqDataRolesMachineLearningEngineer
|
|
71
|
+
- multiqDataRolesPerformanceAnalyst
|
|
72
|
+
|
|
73
|
+
- name: IT Operations Roles
|
|
74
|
+
editable: False
|
|
75
|
+
questions:
|
|
76
|
+
- multiqItOperationsRolesApplicationOperationsEngineer
|
|
77
|
+
- multiqItOperationsRolesBusinessRelationshipManager
|
|
78
|
+
- multiqItOperationsRolesChangeAndReleaseManager
|
|
79
|
+
- multiqItOperationsRolesCommandAndControlCentreManager
|
|
80
|
+
- multiqItOperationsRolesEndUserComputingEngineer
|
|
81
|
+
- multiqItOperationsRolesItServiceManager
|
|
82
|
+
- multiqItOperationsRolesIncidentManager
|
|
83
|
+
- multiqItOperationsRolesInfrastructureEngineer
|
|
84
|
+
- multiqItOperationsRolesInfrastructureOperationsEngineer
|
|
85
|
+
- multiqItOperationsRolesProblemManager
|
|
86
|
+
- multiqItOperationsRolesServiceDeskManager
|
|
87
|
+
- multiqItOperationsRolesServiceTransitionManager
|
|
88
|
+
|
|
89
|
+
- name: Product and delivery roles
|
|
90
|
+
editable: False
|
|
91
|
+
questions:
|
|
92
|
+
- multiqProductAndDeliveryBusinessAnalyst
|
|
93
|
+
- multiqProductAndDeliveryDeliveryManager
|
|
94
|
+
- multiqProductAndDeliveryDigitalPortfolioManager
|
|
95
|
+
- multiqProductAndDeliveryProductManager
|
|
96
|
+
- multiqProductAndDeliveryProgrammeDeliveryManager
|
|
97
|
+
- multiqProductAndDeliveryServiceOwner
|
|
98
|
+
|
|
99
|
+
- name: Quality assurance testing (QAT) roles
|
|
100
|
+
editable: False
|
|
101
|
+
questions:
|
|
102
|
+
- multiqQualityAssuranceTestingQualityAssuranceTestingAnalyst
|
|
103
|
+
- multiqQualityAssuranceTestingTestEngineer
|
|
104
|
+
- multiqQualityAssuranceTestingTestManager
|
|
105
|
+
|
|
106
|
+
- name: Software development roles
|
|
107
|
+
editable: False
|
|
108
|
+
questions:
|
|
109
|
+
- multiqSoftwareDevelopmentDevelopmentOperationsEngineer
|
|
110
|
+
- multiqSoftwareDevelopmentFrontendDeveloper
|
|
111
|
+
- multiqSoftwareDevelopmentSoftwareDeveloper
|
|
112
|
+
|
|
113
|
+
- name: User-centred design roles
|
|
114
|
+
editable: False
|
|
115
|
+
questions:
|
|
116
|
+
- multiqUserCentredDesignAccessibilitySpecialist
|
|
117
|
+
- multiqUserCentredDesignContentDesigner
|
|
118
|
+
- multiqUserCentredDesignContentStrategist
|
|
119
|
+
- multiqUserCentredDesignGraphicDesigner
|
|
120
|
+
- multiqUserCentredDesignInteractionDesigner
|
|
121
|
+
- multiqUserCentredDesignServiceDesigner
|
|
122
|
+
- multiqUserCentredDesignTechnicalWriter
|
|
123
|
+
- multiqUserCentredDesignUserResearcher
|
|
124
|
+
|
|
125
|
+
- name: Architecture roles
|
|
126
|
+
editable: False
|
|
127
|
+
questions:
|
|
128
|
+
- multiqArchitectureRolesBusinessArchitectDCDP
|
|
129
|
+
- multiqArchitectureRolesDataArchitectDCDP
|
|
130
|
+
- multiqArchitectureRolesEnterpriseArchitectDCDP
|
|
131
|
+
- multiqArchitectureRolesNetworkArchitectDCDP
|
|
132
|
+
- multiqArchitectureRolesSecurityArchitectDCDP
|
|
133
|
+
- multiqArchitectureRolesSolutionArchitectDCDP
|
|
134
|
+
- multiqArchitectureRolesTechnicalArchitectDCDP
|
|
135
|
+
|
|
136
|
+
- name: Cyber security roles
|
|
137
|
+
editable: False
|
|
138
|
+
questions:
|
|
139
|
+
- multiqCyberSecurityRolesCyberSecurityDCDP
|
|
140
|
+
|
|
141
|
+
- name: Data roles
|
|
142
|
+
editable: False
|
|
143
|
+
questions:
|
|
144
|
+
- multiqDataRolesAnalyticsEngineerDCDP
|
|
145
|
+
- multiqDataRolesDataAnalystDCDP
|
|
146
|
+
- multiqDataRolesDataEngineerDCDP
|
|
147
|
+
- multiqDataRolesDataEthicistDCDP
|
|
148
|
+
- multiqDataRolesDataGovernanceManagerDCDP
|
|
149
|
+
- multiqDataRolesDataScientistDCDP
|
|
150
|
+
- multiqDataRolesMachineLearningEngineerDCDP
|
|
151
|
+
- multiqDataRolesPerformanceAnalystDCDP
|
|
152
|
+
|
|
153
|
+
- name: IT Operations Roles
|
|
154
|
+
editable: False
|
|
155
|
+
questions:
|
|
156
|
+
- multiqItOperationsRolesApplicationOperationsEngineerDCDP
|
|
157
|
+
- multiqItOperationsRolesBusinessRelationshipManagerDCDP
|
|
158
|
+
- multiqItOperationsRolesChangeAndReleaseManagerDCDP
|
|
159
|
+
- multiqItOperationsRolesCommandAndControlCentreManagerDCDP
|
|
160
|
+
- multiqItOperationsRolesEndUserComputingEngineerDCDP
|
|
161
|
+
- multiqItOperationsRolesItServiceManagerDCDP
|
|
162
|
+
- multiqItOperationsRolesIncidentManagerDCDP
|
|
163
|
+
- multiqItOperationsRolesInfrastructureEngineerDCDP
|
|
164
|
+
- multiqItOperationsRolesInfrastructureOperationsEngineerDCDP
|
|
165
|
+
- multiqItOperationsRolesProblemManagerDCDP
|
|
166
|
+
- multiqItOperationsRolesServiceDeskManagerDCDP
|
|
167
|
+
- multiqItOperationsRolesServiceTransitionManagerDCDP
|
|
168
|
+
|
|
169
|
+
- name: Product and delivery roles
|
|
170
|
+
editable: False
|
|
171
|
+
questions:
|
|
172
|
+
- multiqProductAndDeliveryBusinessAnalystDCDP
|
|
173
|
+
- multiqProductAndDeliveryDeliveryManagerDCDP
|
|
174
|
+
- multiqProductAndDeliveryDigitalPortfolioManagerDCDP
|
|
175
|
+
- multiqProductAndDeliveryProductManagerDCDP
|
|
176
|
+
- multiqProductAndDeliveryProgrammeDeliveryManagerDCDP
|
|
177
|
+
- multiqProductAndDeliveryServiceOwnerDCDP
|
|
178
|
+
|
|
179
|
+
- name: Quality assurance testing (QAT) roles
|
|
180
|
+
editable: False
|
|
181
|
+
questions:
|
|
182
|
+
- multiqQualityAssuranceTestingQualityAssuranceTestingAnalystDCDP
|
|
183
|
+
- multiqQualityAssuranceTestingTestEngineerDCDP
|
|
184
|
+
- multiqQualityAssuranceTestingTestManagerDCDP
|
|
185
|
+
|
|
186
|
+
- name: Software development roles
|
|
187
|
+
editable: False
|
|
188
|
+
questions:
|
|
189
|
+
- multiqSoftwareDevelopmentDevelopmentOperationsEngineerDCDP
|
|
190
|
+
- multiqSoftwareDevelopmentFrontendDeveloperDCDP
|
|
191
|
+
- multiqSoftwareDevelopmentSoftwareDeveloperDCDP
|
|
192
|
+
|
|
193
|
+
- name: User-centred design roles
|
|
194
|
+
editable: False
|
|
195
|
+
questions:
|
|
196
|
+
- multiqUserCentredDesignAccessibilitySpecialistDCDP
|
|
197
|
+
- multiqUserCentredDesignContentDesignerDCDP
|
|
198
|
+
- multiqUserCentredDesignContentStrategistDCDP
|
|
199
|
+
- multiqUserCentredDesignGraphicDesignerDCDP
|
|
200
|
+
- multiqUserCentredDesignInteractionDesignerDCDP
|
|
201
|
+
- multiqUserCentredDesignServiceDesignerDCDP
|
|
202
|
+
- multiqUserCentredDesignTechnicalWriterDCDP
|
|
203
|
+
- multiqUserCentredDesignUserResearcherDCDP
|
|
204
|
+
|
|
205
|
+
- name: Outcomes locations
|
|
206
|
+
editable: False
|
|
207
|
+
questions:
|
|
208
|
+
- outcomesLocations
|
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
- accessibleApplicationsOutcomes
|
|
15
15
|
- technicalDebtAndFutureLegacy
|
|
16
16
|
- governmentCyberSecurityStandard
|
|
17
|
+
- provideTeamCapabilities
|
|
18
|
+
- provideDigitalRoles
|
|
19
|
+
- workAcrossAllLocations
|
|
17
20
|
|
|
18
21
|
- name: Team capabilities
|
|
19
22
|
editable: False
|
|
@@ -27,3 +30,204 @@
|
|
|
27
30
|
- testingAndAuditing
|
|
28
31
|
- userExperienceAndDesign
|
|
29
32
|
- userResearch
|
|
33
|
+
|
|
34
|
+
- name: Team capabilities
|
|
35
|
+
editable: False
|
|
36
|
+
questions:
|
|
37
|
+
- performanceAnalysisAll
|
|
38
|
+
- securityAll
|
|
39
|
+
- deliveryAll
|
|
40
|
+
- softwareDevelopmentAll
|
|
41
|
+
- supportAndOperationsAll
|
|
42
|
+
- testingAndAuditingAll
|
|
43
|
+
- userExperienceAndDesignAll
|
|
44
|
+
- userResearchAll
|
|
45
|
+
|
|
46
|
+
- name: Architecture roles
|
|
47
|
+
editable: False
|
|
48
|
+
edit_questions: True
|
|
49
|
+
questions:
|
|
50
|
+
- multiqArchitectureRolesBusinessArchitect
|
|
51
|
+
- multiqArchitectureRolesDataArchitect
|
|
52
|
+
- multiqArchitectureRolesEnterpriseArchitect
|
|
53
|
+
- multiqArchitectureRolesNetworkArchitect
|
|
54
|
+
- multiqArchitectureRolesSecurityArchitect
|
|
55
|
+
- multiqArchitectureRolesSolutionArchitect
|
|
56
|
+
- multiqArchitectureRolesTechnicalArchitect
|
|
57
|
+
|
|
58
|
+
- name: Cyber security roles
|
|
59
|
+
editable: False
|
|
60
|
+
edit_questions: True
|
|
61
|
+
questions:
|
|
62
|
+
- multiqCyberSecurityRolesCyberSecurity
|
|
63
|
+
|
|
64
|
+
- name: Data roles
|
|
65
|
+
editable: False
|
|
66
|
+
edit_questions: True
|
|
67
|
+
questions:
|
|
68
|
+
- multiqDataRolesAnalyticsEngineer
|
|
69
|
+
- multiqDataRolesDataAnalyst
|
|
70
|
+
- multiqDataRolesDataEngineer
|
|
71
|
+
- multiqDataRolesDataEthicist
|
|
72
|
+
- multiqDataRolesDataGovernanceManager
|
|
73
|
+
- multiqDataRolesDataScientist
|
|
74
|
+
- multiqDataRolesMachineLearningEngineer
|
|
75
|
+
- multiqDataRolesPerformanceAnalyst
|
|
76
|
+
|
|
77
|
+
- name: IT Operations Roles
|
|
78
|
+
editable: False
|
|
79
|
+
edit_questions: True
|
|
80
|
+
questions:
|
|
81
|
+
- multiqItOperationsRolesApplicationOperationsEngineer
|
|
82
|
+
- multiqItOperationsRolesBusinessRelationshipManager
|
|
83
|
+
- multiqItOperationsRolesChangeAndReleaseManager
|
|
84
|
+
- multiqItOperationsRolesCommandAndControlCentreManager
|
|
85
|
+
- multiqItOperationsRolesEndUserComputingEngineer
|
|
86
|
+
- multiqItOperationsRolesItServiceManager
|
|
87
|
+
- multiqItOperationsRolesIncidentManager
|
|
88
|
+
- multiqItOperationsRolesInfrastructureEngineer
|
|
89
|
+
- multiqItOperationsRolesInfrastructureOperationsEngineer
|
|
90
|
+
- multiqItOperationsRolesProblemManager
|
|
91
|
+
- multiqItOperationsRolesServiceDeskManager
|
|
92
|
+
- multiqItOperationsRolesServiceTransitionManager
|
|
93
|
+
|
|
94
|
+
- name: Product and delivery roles
|
|
95
|
+
editable: False
|
|
96
|
+
edit_questions: True
|
|
97
|
+
questions:
|
|
98
|
+
- multiqProductAndDeliveryBusinessAnalyst
|
|
99
|
+
- multiqProductAndDeliveryDeliveryManager
|
|
100
|
+
- multiqProductAndDeliveryDigitalPortfolioManager
|
|
101
|
+
- multiqProductAndDeliveryProductManager
|
|
102
|
+
- multiqProductAndDeliveryProgrammeDeliveryManager
|
|
103
|
+
- multiqProductAndDeliveryServiceOwner
|
|
104
|
+
|
|
105
|
+
- name: Quality assurance testing (QAT) roles
|
|
106
|
+
editable: False
|
|
107
|
+
edit_questions: True
|
|
108
|
+
questions:
|
|
109
|
+
- multiqQualityAssuranceTestingQualityAssuranceTestingAnalyst
|
|
110
|
+
- multiqQualityAssuranceTestingTestEngineer
|
|
111
|
+
- multiqQualityAssuranceTestingTestManager
|
|
112
|
+
|
|
113
|
+
- name: Software development roles
|
|
114
|
+
editable: False
|
|
115
|
+
edit_questions: True
|
|
116
|
+
questions:
|
|
117
|
+
- multiqSoftwareDevelopmentDevelopmentOperationsEngineer
|
|
118
|
+
- multiqSoftwareDevelopmentFrontendDeveloper
|
|
119
|
+
- multiqSoftwareDevelopmentSoftwareDeveloper
|
|
120
|
+
|
|
121
|
+
- name: User-centred design roles
|
|
122
|
+
editable: False
|
|
123
|
+
edit_questions: True
|
|
124
|
+
questions:
|
|
125
|
+
- multiqUserCentredDesignAccessibilitySpecialist
|
|
126
|
+
- multiqUserCentredDesignContentDesigner
|
|
127
|
+
- multiqUserCentredDesignContentStrategist
|
|
128
|
+
- multiqUserCentredDesignGraphicDesigner
|
|
129
|
+
- multiqUserCentredDesignInteractionDesigner
|
|
130
|
+
- multiqUserCentredDesignServiceDesigner
|
|
131
|
+
- multiqUserCentredDesignTechnicalWriter
|
|
132
|
+
- multiqUserCentredDesignUserResearcher
|
|
133
|
+
|
|
134
|
+
- name: Architecture roles
|
|
135
|
+
editable: False
|
|
136
|
+
edit_questions: True
|
|
137
|
+
removable: False
|
|
138
|
+
questions:
|
|
139
|
+
- multiqArchitectureRolesBusinessArchitectDCDP
|
|
140
|
+
- multiqArchitectureRolesDataArchitectDCDP
|
|
141
|
+
- multiqArchitectureRolesEnterpriseArchitectDCDP
|
|
142
|
+
- multiqArchitectureRolesNetworkArchitectDCDP
|
|
143
|
+
- multiqArchitectureRolesSecurityArchitectDCDP
|
|
144
|
+
- multiqArchitectureRolesSolutionArchitectDCDP
|
|
145
|
+
- multiqArchitectureRolesTechnicalArchitectDCDP
|
|
146
|
+
|
|
147
|
+
- name: Cyber security roles
|
|
148
|
+
editable: False
|
|
149
|
+
edit_questions: True
|
|
150
|
+
removable: False
|
|
151
|
+
questions:
|
|
152
|
+
- multiqCyberSecurityRolesCyberSecurityDCDP
|
|
153
|
+
|
|
154
|
+
- name: Data roles
|
|
155
|
+
editable: False
|
|
156
|
+
edit_questions: True
|
|
157
|
+
removable: False
|
|
158
|
+
questions:
|
|
159
|
+
- multiqDataRolesAnalyticsEngineerDCDP
|
|
160
|
+
- multiqDataRolesDataAnalystDCDP
|
|
161
|
+
- multiqDataRolesDataEngineerDCDP
|
|
162
|
+
- multiqDataRolesDataEthicistDCDP
|
|
163
|
+
- multiqDataRolesDataGovernanceManagerDCDP
|
|
164
|
+
- multiqDataRolesDataScientistDCDP
|
|
165
|
+
- multiqDataRolesMachineLearningEngineerDCDP
|
|
166
|
+
- multiqDataRolesPerformanceAnalystDCDP
|
|
167
|
+
|
|
168
|
+
- name: IT Operations Roles
|
|
169
|
+
editable: False
|
|
170
|
+
edit_questions: True
|
|
171
|
+
removable: False
|
|
172
|
+
questions:
|
|
173
|
+
- multiqItOperationsRolesApplicationOperationsEngineerDCDP
|
|
174
|
+
- multiqItOperationsRolesBusinessRelationshipManagerDCDP
|
|
175
|
+
- multiqItOperationsRolesChangeAndReleaseManagerDCDP
|
|
176
|
+
- multiqItOperationsRolesCommandAndControlCentreManagerDCDP
|
|
177
|
+
- multiqItOperationsRolesEndUserComputingEngineerDCDP
|
|
178
|
+
- multiqItOperationsRolesItServiceManagerDCDP
|
|
179
|
+
- multiqItOperationsRolesIncidentManagerDCDP
|
|
180
|
+
- multiqItOperationsRolesInfrastructureEngineerDCDP
|
|
181
|
+
- multiqItOperationsRolesInfrastructureOperationsEngineerDCDP
|
|
182
|
+
- multiqItOperationsRolesProblemManagerDCDP
|
|
183
|
+
- multiqItOperationsRolesServiceDeskManagerDCDP
|
|
184
|
+
- multiqItOperationsRolesServiceTransitionManagerDCDP
|
|
185
|
+
|
|
186
|
+
- name: Product and delivery roles
|
|
187
|
+
editable: False
|
|
188
|
+
edit_questions: True
|
|
189
|
+
removable: False
|
|
190
|
+
questions:
|
|
191
|
+
- multiqProductAndDeliveryBusinessAnalystDCDP
|
|
192
|
+
- multiqProductAndDeliveryDeliveryManagerDCDP
|
|
193
|
+
- multiqProductAndDeliveryDigitalPortfolioManagerDCDP
|
|
194
|
+
- multiqProductAndDeliveryProductManagerDCDP
|
|
195
|
+
- multiqProductAndDeliveryProgrammeDeliveryManagerDCDP
|
|
196
|
+
- multiqProductAndDeliveryServiceOwnerDCDP
|
|
197
|
+
|
|
198
|
+
- name: Quality assurance testing (QAT) roles
|
|
199
|
+
editable: False
|
|
200
|
+
edit_questions: True
|
|
201
|
+
removable: False
|
|
202
|
+
questions:
|
|
203
|
+
- multiqQualityAssuranceTestingQualityAssuranceTestingAnalystDCDP
|
|
204
|
+
- multiqQualityAssuranceTestingTestEngineerDCDP
|
|
205
|
+
- multiqQualityAssuranceTestingTestManagerDCDP
|
|
206
|
+
|
|
207
|
+
- name: Software development roles
|
|
208
|
+
editable: False
|
|
209
|
+
edit_questions: True
|
|
210
|
+
removable: False
|
|
211
|
+
questions:
|
|
212
|
+
- multiqSoftwareDevelopmentDevelopmentOperationsEngineerDCDP
|
|
213
|
+
- multiqSoftwareDevelopmentFrontendDeveloperDCDP
|
|
214
|
+
- multiqSoftwareDevelopmentSoftwareDeveloperDCDP
|
|
215
|
+
|
|
216
|
+
- name: User-centred design roles
|
|
217
|
+
editable: False
|
|
218
|
+
edit_questions: True
|
|
219
|
+
removable: False
|
|
220
|
+
questions:
|
|
221
|
+
- multiqUserCentredDesignAccessibilitySpecialistDCDP
|
|
222
|
+
- multiqUserCentredDesignContentDesignerDCDP
|
|
223
|
+
- multiqUserCentredDesignContentStrategistDCDP
|
|
224
|
+
- multiqUserCentredDesignGraphicDesignerDCDP
|
|
225
|
+
- multiqUserCentredDesignInteractionDesignerDCDP
|
|
226
|
+
- multiqUserCentredDesignServiceDesignerDCDP
|
|
227
|
+
- multiqUserCentredDesignTechnicalWriterDCDP
|
|
228
|
+
- multiqUserCentredDesignUserResearcherDCDP
|
|
229
|
+
|
|
230
|
+
- name: Outcomes locations
|
|
231
|
+
editable: True
|
|
232
|
+
questions:
|
|
233
|
+
- outcomesLocations
|
|
@@ -160,6 +160,7 @@
|
|
|
160
160
|
You must be able to provide all roles to be eligible to supply digital capabilities and delivery partners.
|
|
161
161
|
editable: False
|
|
162
162
|
edit_questions: True
|
|
163
|
+
removable: False
|
|
163
164
|
questions:
|
|
164
165
|
- multiqArchitectureRolesBusinessArchitectDCDP
|
|
165
166
|
- multiqArchitectureRolesDataArchitectDCDP
|
|
@@ -174,6 +175,7 @@
|
|
|
174
175
|
You must be able to provide all roles to be eligible to supply digital capabilities and delivery partners.
|
|
175
176
|
editable: False
|
|
176
177
|
edit_questions: True
|
|
178
|
+
removable: False
|
|
177
179
|
questions:
|
|
178
180
|
- multiqCyberSecurityRolesCyberSecurityDCDP
|
|
179
181
|
|
|
@@ -182,6 +184,7 @@
|
|
|
182
184
|
You must be able to provide all roles to be eligible to supply digital capabilities and delivery partners.
|
|
183
185
|
editable: False
|
|
184
186
|
edit_questions: True
|
|
187
|
+
removable: False
|
|
185
188
|
questions:
|
|
186
189
|
- multiqDataRolesAnalyticsEngineerDCDP
|
|
187
190
|
- multiqDataRolesDataAnalystDCDP
|
|
@@ -197,6 +200,7 @@
|
|
|
197
200
|
You must be able to provide all roles to be eligible to supply digital capabilities and delivery partners.
|
|
198
201
|
editable: False
|
|
199
202
|
edit_questions: True
|
|
203
|
+
removable: False
|
|
200
204
|
questions:
|
|
201
205
|
- multiqItOperationsRolesApplicationOperationsEngineerDCDP
|
|
202
206
|
- multiqItOperationsRolesBusinessRelationshipManagerDCDP
|
|
@@ -216,6 +220,7 @@
|
|
|
216
220
|
You must be able to provide all roles to be eligible to supply digital capabilities and delivery partners.
|
|
217
221
|
editable: False
|
|
218
222
|
edit_questions: True
|
|
223
|
+
removable: False
|
|
219
224
|
questions:
|
|
220
225
|
- multiqProductAndDeliveryBusinessAnalystDCDP
|
|
221
226
|
- multiqProductAndDeliveryDeliveryManagerDCDP
|
|
@@ -229,6 +234,7 @@
|
|
|
229
234
|
You must be able to provide all roles to be eligible to supply digital capabilities and delivery partners.
|
|
230
235
|
editable: False
|
|
231
236
|
edit_questions: True
|
|
237
|
+
removable: False
|
|
232
238
|
questions:
|
|
233
239
|
- multiqQualityAssuranceTestingQualityAssuranceTestingAnalystDCDP
|
|
234
240
|
- multiqQualityAssuranceTestingTestEngineerDCDP
|
|
@@ -239,6 +245,7 @@
|
|
|
239
245
|
You must be able to provide all roles to be eligible to supply digital capabilities and delivery partners.
|
|
240
246
|
editable: False
|
|
241
247
|
edit_questions: True
|
|
248
|
+
removable: False
|
|
242
249
|
questions:
|
|
243
250
|
- multiqSoftwareDevelopmentDevelopmentOperationsEngineerDCDP
|
|
244
251
|
- multiqSoftwareDevelopmentFrontendDeveloperDCDP
|
|
@@ -249,6 +256,7 @@
|
|
|
249
256
|
You must be able to provide all roles to be eligible to supply digital capabilities and delivery partners.
|
|
250
257
|
editable: False
|
|
251
258
|
edit_questions: True
|
|
259
|
+
removable: False
|
|
252
260
|
questions:
|
|
253
261
|
- multiqUserCentredDesignAccessibilitySpecialistDCDP
|
|
254
262
|
- multiqUserCentredDesignContentDesignerDCDP
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccs-digitalmarketplace-frameworks",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "Data files for Digital Marketplace’s procurement frameworks",
|
|
5
5
|
"repository": "git@github.com:Crown-Commercial-Service/ccs-digitalmarketplace-frameworks",
|
|
6
6
|
"author": "enquiries@digitalmarketplace.service.gov.uk"
|