Skip to content

Commit

Permalink
Merge pull request #19 from open-contracting-extensions/233_foreignSu…
Browse files Browse the repository at this point in the history
…bsidyMeasure_bids

add Bid.foreignSubsidyMeasures field and codelist
  • Loading branch information
jpmckinney authored Oct 25, 2024
2 parents e9b3277 + 6ab44c8 commit c0a341b
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 28 deletions.
25 changes: 15 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ For complete guidance on meeting the disclosure requirements of European law, se
]
}
],
"bids": {
"details": [
{
"id": "1",
"foreignSubsidyMeasures": "fsr-stand"
}
]
},
"tender": {
"contractPeriod": {
"description": "unknown"
Expand All @@ -49,16 +57,7 @@ For complete guidance on meeting the disclosure requirements of European law, se
"id": "45233130.0",
"description": "Office supplies",
"uri": "http://cpv.data.ac.uk/code-45233130"
},
"deliveryAddresses": [
{
"streetAddress": "4, North London Business Park, Oakleigh Rd S",
"locality": "London",
"region": "London",
"postalCode": "N11 1NP",
"countryName": "United Kingdom"
}
]
}
}
],
"legislativeReferences": [
Expand Down Expand Up @@ -160,6 +159,12 @@ Report issues for this extension in the [ocds-extensions repository](https://git

## Changelog

### 2024-10-18

* Add `Bid.foreignSubsidyMeasures` field.
* Add `foreignSubsidyMeasures.csv` codelist.
* Remove `Item.deliveryAddresses` field (now in Location extension).

### 2024-10-08

* Add fields:
Expand Down
8 changes: 8 additions & 0 deletions codelists/foreignSubsidyMeasures.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Code,Title,Description
fsr-adm-clos,"Notification submitted, administrative closure of FSR preliminary review procedure","The Commission conducted its preliminary review procedure and did not issue a decision before the end of the time limit prescribed by the Foreign Subsidies Regulation (FSR). The FSR procedure ended, and the Buyer can award the contract to the tenderer that submitted the notification."
fsr-commit,"Notification submitted, decision with commitments","The Commission conducted its in-depth investigation and concluded that there are distortive foreign subsidies, but the tenderer provided commitments that remedy the distortion. The Buyer can award the contract to the tenderer that was under in-depth investigation."
fsr-irregul,"Notification submitted, decision on irregular tender or request to participate","The Commission conducted a preliminary review and found that the notification was incomplete, and requested more information from the economic operator who did not comply. The Commission declared the tender or request to participate irregular and requests the Buyer to reject the tender or request to participate."
fsr-meat,"Declaration submitted, standard MEAT award","The Commission has started an in-depth investigation on the tenderer. However, this tenderer did not submit the most economically advantageous tender (MEAT). There was another tenderer who submitted a declaration and MEAT. The Commission did not open an in-depth investigation against that tenderer. Therefore, the Buyer can award the contract to that tenderer with the MEAT."
fsr-no-obj,"Notification submitted, decision with no objection","The Commission conducted its in-depth investigation and concluded that there is no distortion, the Buyer can award the contract to the tenderer that was under in-depth investigation, the Foreign Subsidies Regulation procedure is closed."
fsr-proh,"Notification submitted, decision prohibiting the award","The Commission conducted its in-depth investigation and concluded that there are distortive foreign subsidies. Therefore, it issued a decision to the Buyer prohibiting the award to the tenderer that was under in-depth investigation."
fsr-stand,"Declaration submitted, standard award procedure","A tenderer submitted a declaration to the Commission, but the Commission did not open an in-depth investigation. Therefore, the Buyer can award the contract to the tenderer that submitted that declaration."
9 changes: 6 additions & 3 deletions extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,20 @@
"+milestoneType.csv",
"+partyRole.csv",
"+relatedProcessScheme.csv",
"foreignSubsidyMeasures.csv",
"sources.csv"
],
"contactPoint": {
"name": "Open Contracting Partnership",
"email": "[email protected]"
},
"testDependencies": [
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_submissionTerms_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_lots_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_bid_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_document_publisher_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_exclusionGrounds_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_selectionCriteria_extension/master/extension.json"
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_location_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_lots_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_selectionCriteria_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_submissionTerms_extension/master/extension.json"
]
}
39 changes: 24 additions & 15 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,21 +103,6 @@
}
}
},
"Item": {
"properties": {
"deliveryAddresses": {
"title": "Delivery addresses",
"description": "The addresse(s) to which the supplier delivers the item.",
"type": "array",
"items": {
"$ref": "#/definitions/Address"
},
"wholeListMerge": true,
"uniqueItems": true,
"minItems": 1
}
}
},
"Period": {
"properties": {
"description": {
Expand Down Expand Up @@ -244,6 +229,30 @@
"minItems": 1
}
}
},
"Bid": {
"properties": {
"foreignSubsidyMeasures": {
"title": "Foreign subsidy measures",
"description": "The measures applied under the Foreign Subsidies Regulation (EU) 2022/2560.",
"type": [
"string",
"null"
],
"enum": [
"fsr-adm-clos",
"fsr-commit",
"fsr-irregul",
"fsr-meat",
"fsr-no-obj",
"fsr-proh",
"fsr-stand",
null
],
"codelist": "foreignSubsidyMeasures.csv",
"openCodelist": false
}
}
}
}
}

0 comments on commit c0a341b

Please sign in to comment.