ccs-digitalmarketplace-frameworks 4.10.0 → 4.10.1
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/frameworks/g-cloud-15/manifests/edit_lot_pricing_questions.yml +18 -0
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentage.yml +16 -0
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan1000000.yml +23 -0
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan250000.yml +23 -0
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan2500000.yml +23 -0
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan500000.yml +23 -0
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan5000000.yml +23 -0
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesOver5000000.yml +23 -0
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/multiqCyberSecurityRoleCyberSecuritySecureDesign.yml +2 -2
- package/frameworks/g-cloud-15/questions/lot-pricing-questions/multiqCyberSecurityRoleCyberSecurityTesting.yml +2 -2
- package/package.json +1 -1
|
@@ -106,3 +106,21 @@
|
|
|
106
106
|
- multiqUserCentredDesignRolesServiceDesigner
|
|
107
107
|
- multiqUserCentredDesignRolesTechnicalWriter
|
|
108
108
|
- multiqUserCentredDesignRolesUserResearcher
|
|
109
|
+
|
|
110
|
+
- name: Discount percentage
|
|
111
|
+
display_only: True
|
|
112
|
+
questions:
|
|
113
|
+
- discountPercentage
|
|
114
|
+
|
|
115
|
+
- name: Discount percentage by call-off contract value
|
|
116
|
+
editable: True
|
|
117
|
+
edit_questions: False
|
|
118
|
+
description: |
|
|
119
|
+
You need to provide discount percentages for different call-off contract values. You must enter a value for each value between 0 and 100 for this lot to be completed. All discounts will be visible to potential buyers.
|
|
120
|
+
questions:
|
|
121
|
+
- discountPercentagesLessThan250000
|
|
122
|
+
- discountPercentagesLessThan500000
|
|
123
|
+
- discountPercentagesLessThan1000000
|
|
124
|
+
- discountPercentagesLessThan2500000
|
|
125
|
+
- discountPercentagesLessThan5000000
|
|
126
|
+
- discountPercentagesOver5000000
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
question: |
|
|
2
|
+
<div class="govuk-warning-text">
|
|
3
|
+
<span class="govuk-warning-text__icon" aria-hidden="true">!</span>
|
|
4
|
+
<strong class="govuk-warning-text__text">
|
|
5
|
+
<span class="govuk-visually-hidden">Warning</span>
|
|
6
|
+
You must enter a percentage for call-off contract value, between 0 and 100 for this lot to be completed
|
|
7
|
+
</strong>
|
|
8
|
+
</div>
|
|
9
|
+
|
|
10
|
+
depends:
|
|
11
|
+
- "on": lot
|
|
12
|
+
being:
|
|
13
|
+
- isaas
|
|
14
|
+
- saas
|
|
15
|
+
|
|
16
|
+
type: display
|
package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan1000000.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Between £500,001 and £1,000,000
|
|
2
|
+
question: What is the minimum discount percentage for call-off contracts between £500,001 and £1,000,000?
|
|
3
|
+
|
|
4
|
+
depends:
|
|
5
|
+
- "on": lot
|
|
6
|
+
being:
|
|
7
|
+
- isaas
|
|
8
|
+
- saas
|
|
9
|
+
|
|
10
|
+
type: number
|
|
11
|
+
unit: "%"
|
|
12
|
+
unit_in_full: "percent"
|
|
13
|
+
unit_position: "after"
|
|
14
|
+
limits:
|
|
15
|
+
min_value: 0
|
|
16
|
+
max_value: 100
|
|
17
|
+
integer_only: true
|
|
18
|
+
|
|
19
|
+
validations:
|
|
20
|
+
- name: answer_required
|
|
21
|
+
message: You must provide a percentage discount between 0 and 100
|
|
22
|
+
- name: not_a_number
|
|
23
|
+
message: You must provide a percentage discount between 0 and 100
|
package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan250000.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Less than £250,000
|
|
2
|
+
question: What is the minimum discount percentage for call-off contracts less than £250,000?
|
|
3
|
+
|
|
4
|
+
depends:
|
|
5
|
+
- "on": lot
|
|
6
|
+
being:
|
|
7
|
+
- isaas
|
|
8
|
+
- saas
|
|
9
|
+
|
|
10
|
+
type: number
|
|
11
|
+
unit: "%"
|
|
12
|
+
unit_in_full: "percent"
|
|
13
|
+
unit_position: "after"
|
|
14
|
+
limits:
|
|
15
|
+
min_value: 0
|
|
16
|
+
max_value: 100
|
|
17
|
+
integer_only: true
|
|
18
|
+
|
|
19
|
+
validations:
|
|
20
|
+
- name: answer_required
|
|
21
|
+
message: You must provide a percentage discount between 0 and 100
|
|
22
|
+
- name: not_a_number
|
|
23
|
+
message: You must provide a percentage discount between 0 and 100
|
package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan2500000.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Between £1,000,001 and £2,500,000
|
|
2
|
+
question: What is the minimum discount percentage for call-off contracts between £1,000,001 and £2,500,000?
|
|
3
|
+
|
|
4
|
+
depends:
|
|
5
|
+
- "on": lot
|
|
6
|
+
being:
|
|
7
|
+
- isaas
|
|
8
|
+
- saas
|
|
9
|
+
|
|
10
|
+
type: number
|
|
11
|
+
unit: "%"
|
|
12
|
+
unit_in_full: "percent"
|
|
13
|
+
unit_position: "after"
|
|
14
|
+
limits:
|
|
15
|
+
min_value: 0
|
|
16
|
+
max_value: 100
|
|
17
|
+
integer_only: true
|
|
18
|
+
|
|
19
|
+
validations:
|
|
20
|
+
- name: answer_required
|
|
21
|
+
message: You must provide a percentage discount between 0 and 100
|
|
22
|
+
- name: not_a_number
|
|
23
|
+
message: You must provide a percentage discount between 0 and 100
|
package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan500000.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Between £250,000 and £500,000
|
|
2
|
+
question: What is the minimum discount percentage for call-off contracts between £250,000 and £500,000?
|
|
3
|
+
|
|
4
|
+
depends:
|
|
5
|
+
- "on": lot
|
|
6
|
+
being:
|
|
7
|
+
- isaas
|
|
8
|
+
- saas
|
|
9
|
+
|
|
10
|
+
type: number
|
|
11
|
+
unit: "%"
|
|
12
|
+
unit_in_full: "percent"
|
|
13
|
+
unit_position: "after"
|
|
14
|
+
limits:
|
|
15
|
+
min_value: 0
|
|
16
|
+
max_value: 100
|
|
17
|
+
integer_only: true
|
|
18
|
+
|
|
19
|
+
validations:
|
|
20
|
+
- name: answer_required
|
|
21
|
+
message: You must provide a percentage discount between 0 and 100
|
|
22
|
+
- name: not_a_number
|
|
23
|
+
message: You must provide a percentage discount between 0 and 100
|
package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesLessThan5000000.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Between £2,500,001 and £5,000,000
|
|
2
|
+
question: What is the minimum discount percentage for call-off contracts between £2,500,001 and £5,000,000?
|
|
3
|
+
|
|
4
|
+
depends:
|
|
5
|
+
- "on": lot
|
|
6
|
+
being:
|
|
7
|
+
- isaas
|
|
8
|
+
- saas
|
|
9
|
+
|
|
10
|
+
type: number
|
|
11
|
+
unit: "%"
|
|
12
|
+
unit_in_full: "percent"
|
|
13
|
+
unit_position: "after"
|
|
14
|
+
limits:
|
|
15
|
+
min_value: 0
|
|
16
|
+
max_value: 100
|
|
17
|
+
integer_only: true
|
|
18
|
+
|
|
19
|
+
validations:
|
|
20
|
+
- name: answer_required
|
|
21
|
+
message: You must provide a percentage discount between 0 and 100
|
|
22
|
+
- name: not_a_number
|
|
23
|
+
message: You must provide a percentage discount between 0 and 100
|
package/frameworks/g-cloud-15/questions/lot-pricing-questions/discountPercentagesOver5000000.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Over £5,000,001
|
|
2
|
+
question: What is the minimum discount percentage for call-off contracts over £5,000,001?
|
|
3
|
+
|
|
4
|
+
depends:
|
|
5
|
+
- "on": lot
|
|
6
|
+
being:
|
|
7
|
+
- isaas
|
|
8
|
+
- saas
|
|
9
|
+
|
|
10
|
+
type: number
|
|
11
|
+
unit: "%"
|
|
12
|
+
unit_in_full: "percent"
|
|
13
|
+
unit_position: "after"
|
|
14
|
+
limits:
|
|
15
|
+
min_value: 0
|
|
16
|
+
max_value: 100
|
|
17
|
+
integer_only: true
|
|
18
|
+
|
|
19
|
+
validations:
|
|
20
|
+
- name: answer_required
|
|
21
|
+
message: You must provide a percentage discount between 0 and 100
|
|
22
|
+
- name: not_a_number
|
|
23
|
+
message: You must provide a percentage discount between 0 and 100
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: Cyber security secure design
|
|
2
2
|
question: Cyber security secure design
|
|
3
3
|
hint:
|
|
4
|
-
<a class="govuk-link" target="_blank" rel="noopener noreferrer" href="https://www.security.gov.uk/government-security-profession-career-framework/cyber-roles/security-architect/">View role description <span class="govuk-visually-hidden">for Cyber security secure design
|
|
4
|
+
<a class="govuk-link" target="_blank" rel="noopener noreferrer" href="https://www.security.gov.uk/government-security-profession-career-framework/cyber-roles/security-architect/">View role description <span class="govuk-visually-hidden">for Cyber security secure design </span>(opens in new tab)</a>
|
|
5
5
|
|
|
6
6
|
depends:
|
|
7
7
|
- "on": lot
|
|
@@ -11,7 +11,7 @@ depends:
|
|
|
11
11
|
type: multiquestion
|
|
12
12
|
optional: true
|
|
13
13
|
any_of: roles
|
|
14
|
-
empty_message: You have not added rates fir any Cyber security secure design
|
|
14
|
+
empty_message: You have not added rates fir any Cyber security secure design roles
|
|
15
15
|
|
|
16
16
|
questions:
|
|
17
17
|
- multiqCyberSecurityRoleCyberSecuritySecureDesignAssociate
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
name: Cyber security testing
|
|
2
2
|
question: Cyber security testing
|
|
3
3
|
hint:
|
|
4
|
-
<a class="govuk-link" target="_blank" rel="noopener noreferrer" href="https://www.security.gov.uk/government-security-profession-career-framework/cyber-roles/penetration-testing/">View role description <span class="govuk-visually-hidden">for Cyber security testing
|
|
4
|
+
<a class="govuk-link" target="_blank" rel="noopener noreferrer" href="https://www.security.gov.uk/government-security-profession-career-framework/cyber-roles/penetration-testing/">View role description <span class="govuk-visually-hidden">for Cyber security testing </span>(opens in new tab)</a>
|
|
5
5
|
|
|
6
6
|
depends:
|
|
7
7
|
- "on": lot
|
|
@@ -11,7 +11,7 @@ depends:
|
|
|
11
11
|
type: multiquestion
|
|
12
12
|
optional: true
|
|
13
13
|
any_of: roles
|
|
14
|
-
empty_message: You have not added rates fir any Cyber security testing
|
|
14
|
+
empty_message: You have not added rates fir any Cyber security testing roles
|
|
15
15
|
|
|
16
16
|
questions:
|
|
17
17
|
- multiqCyberSecurityRoleCyberSecurityTestingAssociate
|