Skip to content

Commit

Permalink
add Bid.foreignSubsidyMeasures field and codelist
Browse files Browse the repository at this point in the history
  • Loading branch information
odscjen committed Oct 18, 2024
1 parent e9b3277 commit 3393d1b
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 3 deletions.
13 changes: 13 additions & 0 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 Down Expand Up @@ -160,6 +168,11 @@ Report issues for this extension in the [ocds-extensions repository](https://git

## Changelog

### 2024-10-18

* Add `Bid.foreignSubsidyMeasures` field
* Add `foreignSubsidyMeasures.csv` codelist

### 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","Notification submitted, administrative closure of FSR preliminary review procedure"
fsr-commit,"Notification submitted, decision with commitments","Notification submitted, decision with commitments"
fsr-irregul,"Notification submitted, decision on irregular tender or request to participate","Notification submitted, decision on irregular tender or request to participate"
fsr-meat,"Declaration submitted, standard MEAT award","Declaration submitted, standard MEAT award"
fsr-no-obj,"Notification submitted, decision with no objection","Notification submitted, decision with no objection"
fsr-proh,"Notification submitted, decision prohibiting the award","Notification submitted, decision prohibiting the award"
fsr-stand,"Declaration submitted, standard award procedure","Declaration submitted, standard award procedure"
6 changes: 4 additions & 2 deletions extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
"+milestoneType.csv",
"+partyRole.csv",
"+relatedProcessScheme.csv",
"sources.csv"
"sources.csv",
"foreignSubsidyMeasures.csv"
],
"contactPoint": {
"name": "Open Contracting Partnership",
Expand All @@ -31,6 +32,7 @@
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_lots_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_selectionCriteria_extension/master/extension.json",
"https://raw.githubusercontent.com/open-contracting-extensions/ocds_bid_extension/master/extension.json"
]
}
26 changes: 25 additions & 1 deletion release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
"properties": {
"deliveryAddresses": {
"title": "Delivery addresses",
"description": "The addresse(s) to which the supplier delivers the item.",
"description": "The address(es) to which the supplier delivers the item.",
"type": "array",
"items": {
"$ref": "#/definitions/Address"
Expand Down Expand Up @@ -244,6 +244,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 3393d1b

Please sign in to comment.