Skip to content

Commit c35ddaf

Browse files
authored
Merge pull request #8 from brett-allen/patch-1
corrected error in Claim schemas
2 parents bd22ee0 + 12e4d8b commit c35ddaf

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

profiles/payment-profile.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@ Profile specific request schema [JSONSchema]:
106106
"$schema": "http://json-schema.org/draft-07/schema",
107107
"$id": "https://cds-au/qr/pos-wallet/1/request/session/claim",
108108
"type": "object",
109+
"additionalProperties": false,
110+
"required": [
111+
"customerId",
112+
"instrument"
113+
],
109114
"properties": {
110-
"additionalProperties": false,
111-
"required": [
112-
"customerId",
113-
"instrument"
114-
],
115115
"customerId": {
116116
"type": "string",
117117
"description": "Identifier of the customer for the payment"
@@ -143,12 +143,12 @@ Profile specific response schema [JSONSchema]:
143143
"$schema": "http://json-schema.org/draft-07/schema",
144144
"$id": "https://cds-au/qr/pos-merchant/1/response/session/claim",
145145
"type": "object",
146+
"additionalProperties": true,
147+
"required": [
148+
"merchantId",
149+
"status"
150+
],
146151
"properties": {
147-
"additionalProperties": true,
148-
"required": [
149-
"merchantId",
150-
"status"
151-
],
152152
"merchantId": {
153153
"type": "string",
154154
"description": "Identifier of the merchant for the payment"

0 commit comments

Comments
 (0)