Skip to content

Commit 6e8a8ac

Browse files
authoredMay 3, 2024
Merge pull request #30 from open-contracting-extensions/144_payeeAddresses
add payee and paymentAddress fields
2 parents 2786b9c + c32a728 commit 6e8a8ac

File tree

2 files changed

+30
-4
lines changed

2 files changed

+30
-4
lines changed
 

‎README.md‎

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,16 @@ A contracting process where fees are applied to access bidding documents and to
3131
"methodOfPayment": [
3232
"wireTransfer",
3333
"cheque"
34-
]
34+
],
35+
"payee": {
36+
"id": "ORG-0001",
37+
"name": "Highway Division"
38+
},
39+
"paymentAddress": {
40+
"locality": "Jawali",
41+
"region": "Himachal Pradesh",
42+
"countryName": "India"
43+
}
3544
},
3645
{
3746
"id": "2",
@@ -45,7 +54,11 @@ A contracting process where fees are applied to access bidding documents and to
4554
"description": "Fee payable within e-procurement system.",
4655
"methodOfPayment": [
4756
"wireTransfer"
48-
]
57+
],
58+
"payee": {
59+
"id": "ORG-0001",
60+
"name": "Highway Division"
61+
}
4962
}
5063
]
5164
}
@@ -87,7 +100,10 @@ Report issues for this extension in the [ocds-extensions repository](https://git
87100
### Unreleased
88101

89102
* Make `ParticipationFee.id` required so that participation fees are merged by identifier
90-
* Add `relativeValue` field
103+
* Add fields:
104+
* `relativeValue`
105+
* `payee`
106+
* `paymentAddress`
91107

92108
### v1.1.5
93109

‎release-schema.json‎

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
]
5252
},
5353
"methodOfPayment": {
54-
"title": "Method(s) of payment",
54+
"title": "Payment methods",
5555
"description": "The accepted ways in which fees can be paid.",
5656
"type": [
5757
"array",
@@ -63,6 +63,16 @@
6363
"codelist": "methodOfPayment.csv",
6464
"openCodelist": true,
6565
"uniqueItems": true
66+
},
67+
"paymentAddress": {
68+
"title": "Payment address",
69+
"description": "The physical address to which to submit non-electronic participation payments.",
70+
"$ref": "#/definitions/Address"
71+
},
72+
"payee": {
73+
"title": "Payee",
74+
"description": "The organization that receives the participation fee.",
75+
"$ref": "#/definitions/OrganizationReference"
6676
}
6777
}
6878
},

0 commit comments

Comments
 (0)
Please sign in to comment.