Skip to content
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

add payee and paymentAddress fields #30

Merged
merged 2 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,16 @@ A contracting process where fees are applied to access bidding documents and to
"methodOfPayment": [
"wireTransfer",
"cheque"
]
],
"payee": {
"id": "ORG-0001",
"name": "Highway Division"
},
"paymentAddress": {
"locality": "Jawali",
"region": "Himachal Pradesh",
"countryName": "India"
}
},
{
"id": "2",
Expand All @@ -45,7 +54,11 @@ A contracting process where fees are applied to access bidding documents and to
"description": "Fee payable within e-procurement system.",
"methodOfPayment": [
"wireTransfer"
]
],
"payee": {
"id": "ORG-0001",
"name": "Highway Division"
}
}
]
}
Expand Down Expand Up @@ -88,6 +101,7 @@ Report issues for this extension in the [ocds-extensions repository](https://git

* Make `ParticipationFee.id` required so that participation fees are merged by identifier
* Add `relativeValue` field
* Add `payee` and `paymentAddress` fields
odscjen marked this conversation as resolved.
Show resolved Hide resolved

### v1.1.5

Expand Down
10 changes: 10 additions & 0 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@
"codelist": "methodOfPayment.csv",
"openCodelist": true,
"uniqueItems": true
},
"payee": {
odscjen marked this conversation as resolved.
Show resolved Hide resolved
"title": "Payee",
"description": "The organization that receives the participation fees.",
odscjen marked this conversation as resolved.
Show resolved Hide resolved
"$ref": "#/definitions/OrganizationReference"
},
"paymentAddress": {
"title": "Payment address",
odscjen marked this conversation as resolved.
Show resolved Hide resolved
"description": "The address to which non-electronic participation fees should be submitted.",
odscjen marked this conversation as resolved.
Show resolved Hide resolved
"$ref": "#/definitions/Address"
}
}
},
Expand Down