-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
participationFees: Proportional fees #81
participationFees: Proportional fees #81
Comments
The eProcurement System of the Government of Assam publishes Earnest Money Deposit (EMD), modelled in OCDS as participation fees, as a percentage of estimated tender value. (source - Assam Public Procurement Rules, 2020, Example Modelling recommendation is to mention the percentage in |
UK's draft bill contains: 38 Dynamic markets: fees
44 Frameworks
(emphasis added) I don't know if the phrase "estimated value of the awarded contract" / "estimated value of any contract awarded" refers to:
If (2), then the value cannot be calculated in advance, and the ParticipationFee would need a field like Either way, there might need to be another field to indicate which value the percentage is calculated from, e.g. a codelist of 'tenderValue' and 'awardValue' or similar. |
How does the following sound? @duncandewhurst @jpmckinney I think it covers all 3 jurisdictions cases mentioned so far.
proportionalValue.csv (closed codelist)
{
"tender": {
"participationFees": [
{
"id": "1",
"percentageValue": "15",
"percentageSource": "awardValue",
"type": [
"win"
],
"description": "The winning bidder will be required to pay a fee of 15% of the awarded contract."
}
]
}
} |
I think we only have evidence for two possible monetary values:
Maybe instead:
|
That's less wordy which is good! So...
relativeUnit.csv (closed codelist)
{
"tender": {
"participationFees": [
{
"id": "1",
"relativeValue": {
"number": 0.15,
"unit": "award"
},
"type": [
"win"
],
"description": "The winning bidder will be required to pay a fee of 15% of the awarded contract."
}
]
}
} |
I think, when coming up with my proposal, I was thinking about how to make a generic subschema (e.g. So, a more explicit one might be:
Add JSON Schema constraints for percentage to be from 0 to 100. The codelist can be named We can reuse definitions from OCDS fields.
|
In Kazakhstan participation fees have a proportional expression, presumably of either the tender or award value, depending on the type of fee, though I wasn't able to find an example due to technical issues with the Kazakh e-procurement portal.
For fees calculated on the tender value, the fee value could be calculated and provided in
participationFee.value
, however for fees calculated on the award value this wouldn't be possible until after the fact, so a new field onparticipationFee
may be required to express the fee percentage.The text was updated successfully, but these errors were encountered: