Skip to content

Commit

Permalink
Merge branches 'master' and 'min-bids-number-config' of https://githu…
Browse files Browse the repository at this point in the history
…b.com/ProzorroUKR/standards into min-bids-number-config

� Conflicts:
�	data_model/schema/TenderConfig/aboveThreshold.json
�	data_model/schema/TenderConfig/aboveThresholdEU.json
�	data_model/schema/TenderConfig/aboveThresholdUA.defense.json
�	data_model/schema/TenderConfig/aboveThresholdUA.json
�	data_model/schema/TenderConfig/belowThreshold.json
�	data_model/schema/TenderConfig/closeFrameworkAgreementSelectionUA.json
�	data_model/schema/TenderConfig/closeFrameworkAgreementUA.json
�	data_model/schema/TenderConfig/competitiveDialogueEU.json
�	data_model/schema/TenderConfig/competitiveDialogueEU.stage2.json
�	data_model/schema/TenderConfig/competitiveDialogueUA.json
�	data_model/schema/TenderConfig/competitiveDialogueUA.stage2.json
�	data_model/schema/TenderConfig/esco.json
�	data_model/schema/TenderConfig/negotiation.json
�	data_model/schema/TenderConfig/negotiation.quick.json
�	data_model/schema/TenderConfig/priceQuotation.json
�	data_model/schema/TenderConfig/reporting.json
�	data_model/schema/TenderConfig/simple.defense.json
  • Loading branch information
ozamirets committed Jun 20, 2023
2 parents b7625ee + 1f6b03f commit 150c866
Show file tree
Hide file tree
Showing 18 changed files with 138 additions and 1 deletion.
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/aboveThreshold.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
false
],
"default": false
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -26,6 +33,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/aboveThresholdEU.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 2,
Expand All @@ -26,6 +33,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/aboveThresholdUA.defense.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -26,6 +33,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/aboveThresholdUA.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -26,6 +33,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
9 changes: 9 additions & 0 deletions data_model/schema/TenderConfig/belowThreshold.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true,
false
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -27,6 +35,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/closeFrameworkAgreementUA.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 3,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/competitiveDialogueEU.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 3,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 2,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/competitiveDialogueUA.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 3,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 2,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/esco.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 2,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/negotiation.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/negotiation.quick.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/priceQuotation.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/reporting.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -25,6 +32,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
8 changes: 8 additions & 0 deletions data_model/schema/TenderConfig/simple.defense.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
Expand All @@ -26,6 +33,7 @@
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"minBidsNumber"
],
"additionalProperties": false
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="standards",
version="1.0.57",
version="1.0.58",
description="Prozorro standards",
python_requires=">=2.7",
package_dir={'standards': '.'},
Expand Down

0 comments on commit 150c866

Please sign in to comment.