ccs-digitalmarketplace-frameworks 1.2.40 → 1.2.44
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/digital-outcomes-6/manifests/edit_submission.yml +1 -1
- package/frameworks/digital-outcomes-6/questions/declaration/taxEvasion.yml +1 -1
- package/frameworks/digital-outcomes-6/questions/services/QualityAssuranceTestingAnalyst.yml +1 -1
- package/package.json +1 -1
- package/schema_generator/validation.py +3 -4
- package/scripts/generate-validation-schemas.py +2 -2
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
- name: Digital roles to deliver the capabilities
|
|
47
47
|
summary_page_description: >
|
|
48
|
-
You must be able to provide at least one <a class="govuk-link" href="https://www.gov.uk/government/collections/digital-data-and-technology-profession-capability-framework" target="_blank" rel="noopener noreferrer">digital roles</a> to be eligible to supply digital outcomes.
|
|
48
|
+
You must be able to provide at least one of the <a class="govuk-link" href="https://www.gov.uk/government/collections/digital-data-and-technology-profession-capability-framework" target="_blank" rel="noopener noreferrer">digital, data and technology (DDaT) roles</a> to be eligible to supply digital outcomes.
|
|
49
49
|
editable: False
|
|
50
50
|
edit_questions: True
|
|
51
51
|
questions:
|
|
@@ -3,7 +3,7 @@ question: Have any members of your organisation or a partner organisation been l
|
|
|
3
3
|
type: boolean
|
|
4
4
|
hint: >
|
|
5
5
|
‘Legally found’ means any judicial or administrative decision, which has final or binding effect. Check that your organisation complies with
|
|
6
|
-
<a class="govuk-link" href="
|
|
6
|
+
<a class="govuk-link" href="https://www.legislation.gov.uk/uksi/2015/102/regulation/57" target="_blank" rel="noopener noreferrer">Regulation 57(3) of the Public Contracts Regulations 2015 (opens in new tab)</a>.
|
|
7
7
|
assessment:
|
|
8
8
|
passIfIn:
|
|
9
9
|
- False
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ccs-digitalmarketplace-frameworks",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.44",
|
|
4
4
|
"description": "Data files for Digital Marketplace’s procurement frameworks",
|
|
5
5
|
"repository": "git@github.com:Brickendon-DMp1-5/digitalmarketplace-frameworks",
|
|
6
6
|
"author": "enquiries@digitalmarketplace.service.gov.uk"
|
|
@@ -84,7 +84,7 @@ FRAMEWORKS_AND_LOTS = {
|
|
|
84
84
|
'framework_name': "Digital Outcomes and Specialists 5",
|
|
85
85
|
'lots': DOS_LOTS
|
|
86
86
|
},
|
|
87
|
-
{
|
|
87
|
+
{
|
|
88
88
|
'framework_slug': 'digital-outcomes-6',
|
|
89
89
|
'framework_name': "Digital Outcomes 6",
|
|
90
90
|
'lots': DOS6_LOTS
|
|
@@ -134,8 +134,8 @@ SCHEMAS = {
|
|
|
134
134
|
|
|
135
135
|
def load_questions(schema_type, framework_slug, lot_slug):
|
|
136
136
|
loader = ContentLoader('./')
|
|
137
|
-
print("MANIFESTS[schema_type]['question_set']",MANIFESTS[schema_type]['question_set'])
|
|
138
|
-
print("MANIFESTS[schema_type]['manifest']",MANIFESTS[schema_type]['manifest'])
|
|
137
|
+
print("MANIFESTS[schema_type]['question_set']", MANIFESTS[schema_type]['question_set'])
|
|
138
|
+
print("MANIFESTS[schema_type]['manifest']", MANIFESTS[schema_type]['manifest'])
|
|
139
139
|
|
|
140
140
|
loader.load_manifest(
|
|
141
141
|
framework_slug,
|
|
@@ -452,7 +452,6 @@ def _complement_values(question, values):
|
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
def _followup(question, root):
|
|
455
|
-
print("question========",question)
|
|
456
455
|
schemas = []
|
|
457
456
|
for followup_id, values in question['followup'].items():
|
|
458
457
|
followup_q = root.get_question(followup_id)
|
|
@@ -20,7 +20,7 @@ if __name__ == '__main__':
|
|
|
20
20
|
print("Creating {} directory".format(OUTPUT_DIR))
|
|
21
21
|
os.makedirs(OUTPUT_DIR)
|
|
22
22
|
for schema_type in SCHEMAS:
|
|
23
|
-
print('schema_type',schema_type)
|
|
23
|
+
print('schema_type', schema_type)
|
|
24
24
|
for schema in SCHEMAS[schema_type]:
|
|
25
|
-
print('schema',schema)
|
|
25
|
+
print('schema', schema)
|
|
26
26
|
generate_schema_todir(OUTPUT_DIR, schema_type, *schema)
|