Skip to content

Commit

Permalink
add payee and paymentAddress fields
Browse files Browse the repository at this point in the history
  • Loading branch information
odscjen committed May 2, 2024
1 parent 2786b9c commit 1cafcc4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
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

### 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": {
"title": "Payee",
"description": "The organization that receives the participation fees.",
"$ref": "#/definitions/OrganizationReference"
},
"paymentAddress": {
"title": "Payment address",
"description": "The address to which non-electronic participation fees should be submitted.",
"$ref": "#/definitions/Address"
}
}
},
Expand Down

0 comments on commit 1cafcc4

Please sign in to comment.