Skip to content

Commit

Permalink
Add DPS tender config
Browse files Browse the repository at this point in the history
  • Loading branch information
smithumble committed Sep 5, 2023
1 parent c8798f9 commit dffe05d
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions data_model/schema/TenderConfig/dynamicPurchasingSystem.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"type": "object",
"properties": {
"hasAuction": {
"type": "boolean",
"enum": [
true,
false
],
"default": true
},
"hasAwardingOrder": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"hasValueRestriction": {
"type": "boolean",
"enum": [
false
],
"default": false
},
"valueCurrencyEquality": {
"type": "boolean",
"enum": [
true
],
"default": true
},
"hasPrequalification": {
"type": "boolean",
"enum": [
false
],
"default": false
},
"minBidsNumber": {
"type": "integer",
"minimum": 1,
"maximum": 1,
"default": 1
}
},
"required": [
"hasAuction",
"hasAwardingOrder",
"hasValueRestriction",
"valueCurrencyEquality",
"hasPrequalification",
"minBidsNumber"
],
"additionalProperties": false
}

0 comments on commit dffe05d

Please sign in to comment.