Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:OpenBankingUK/conformance-suite …
Browse files Browse the repository at this point in the history
…into feature/ozone-v4
  • Loading branch information
diego-m-ob committed Sep 11, 2024
2 parents b07b26d + 5a23cb8 commit dfde1ce
Showing 1 changed file with 125 additions and 9 deletions.
134 changes: 125 additions & 9 deletions pkg/schema/spec/v4.0.0/payment-initiation-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -8381,7 +8381,6 @@
"additionalProperties": false,
"required": [
"MandateRelatedInformation",
"FirstPaymentDateTime",
"FirstPaymentAmount",
"CreditorAccount"
],
Expand Down Expand Up @@ -8838,7 +8837,6 @@
"additionalProperties": false,
"required": [
"MandateRelatedInformation",
"FirstPaymentDateTime",
"FirstPaymentAmount",
"CreditorAccount"
],
Expand Down Expand Up @@ -9147,7 +9145,6 @@
"additionalProperties": false,
"required": [
"MandateRelatedInformation",
"FirstPaymentDateTime",
"FirstPaymentAmount",
"CreditorAccount"
],
Expand Down Expand Up @@ -14190,6 +14187,32 @@
}
}
},
"OBWriteFilePaymentDetailsResponse1": {
"type": "object",
"required": [
"Data"
],
"properties": {
"Data": {
"type": "object",
"additionalProperties": false,
"properties": {
"PaymentStatus": {
"type": "array",
"items": {
"$ref": "#/components/schemas/OBWriteFilePaymentDetails1"
}
}
}
},
"Links": {
"$ref": "#/components/schemas/Links"
},
"Meta": {
"$ref": "#/components/schemas/Meta"
}
}
},
"OBWritePaymentDetails1": {
"type": "object",
"required": [
Expand Down Expand Up @@ -14238,22 +14261,115 @@
"$ref": "#/components/schemas/OBInternalLocalInstrument1Code"
},
"Status": {
"description": "Status of a transfer, as assigned by the transaction administrator.",
"description": "Status of a transfer, as assigned by the transaction administrator. For a full list of values see `ExternalPaymentTransactionStatus1Code` in *ISO_External_CodeSet.csv* [here](https://github.com/OpenBankingUK/External_Internal_CodeSets)",
"type": "string",
"minLength": 1,
"maxLength": 4
"maxLength": 4,
"enum": [
"PDNG",
"ACTC",
"PATC",
"ACCP",
"ACFC",
"ACSP",
"ACWC",
"ACSC",
"ACWP",
"ACCC",
"BLCK",
"RJCT"
]
},
"StatusReason": {
"description": "Reason Code provided for the status of a transfer.",
"description": "Reason Code provided for the status of a transfer. For a full list of values see code values for `OBExternalStatusReason1Code` in *ISO_External_CodeSet.csv* [here](https://github.com/OpenBankingUK/External_Internal_CodeSets)",
"type": "string",
"minLength": 1,
"maxLength": 4
},
"StatusReasonDescription": {
"description": "Reason provided for the status of a transfer. For a full list of values see the code name entries for `OBExternalStatusReason1Code` in *ISO_External_CodeSet.csv* [here](https://github.com/OpenBankingUK/External_Internal_CodeSets).",
"type": "string",
"minLength": 1,
"maxLength": 256
}
}
}
}
},
"OBWriteFilePaymentDetails1": {
"type": "object",
"required": [
"PaymentTransactionId",
"Status",
"StatusUpdateDateTime"
],
"properties": {
"PaymentTransactionId": {
"type": "string",
"minLength": 1,
"maxLength": 210,
"description": "Unique identifier for the transaction within an servicing institution. This identifier is both unique and immutable."
},
"Status": {
"type": "string",
"description": "Status of a transfer, as assigned by the transaction administrator. For a full list of values see `ExternalPaymentGroupStatus1Code` in *ISO_External_CodeSet.csv* [here](https://github.com/OpenBankingUK/External_Internal_CodeSets)",
"enum": [
"RCVD",
"PDNG",
"ACTC",
"PART",
"ACCP",
"ACFC",
"ACSP",
"ACWC",
"ACSC",
"ACCC",
"RJCT"
]
},
"StatusUpdateDateTime": {
"type": "string",
"format": "date-time",
"description": "Date and time at which the status was assigned to the transfer.\n"
},
"StatusDetail": {
"type": "object",
"description": "Payment status details as per underlying Payment Rail.",
"required": [
"Status"
],
"properties": {
"LocalInstrument": {
"$ref": "#/components/schemas/OBInternalLocalInstrument1Code"
},
"Status": {
"description": "Status of a transfer, as assigned by the transaction administrator. For a full list of values see `ExternalPaymentTransactionStatus1Code` in *ISO_External_CodeSet.csv* [here](https://github.com/OpenBankingUK/External_Internal_CodeSets)",
"type": "string",
"minLength": 1,
"maxLength": 4,
"enum": [
"CANC"
],
"PDNG",
"ACTC",
"PATC",
"ACCP",
"ACFC",
"ACSP",
"ACWC",
"ACSC",
"ACWP",
"ACCC",
"BLCK",
"RJCT"
]
},
"StatusReason": {
"description": "Reason Code provided for the status of a transfer. For a full list of values see code values for `OBExternalStatusReason1Code` in *ISO_External_CodeSet.csv* [here](https://github.com/OpenBankingUK/External_Internal_CodeSets)",
"type": "string",
"minLength": 1,
"maxLength": 4
},
"StatusReasonDescription": {
"description": "Reason provided for the status of a transfer.",
"description": "Reason provided for the status of a transfer. For a full list of values see the code name entries for `OBExternalStatusReason1Code` in *ISO_External_CodeSet.csv* [here](https://github.com/OpenBankingUK/External_Internal_CodeSets).",
"type": "string",
"minLength": 1,
"maxLength": 256
Expand Down

0 comments on commit dfde1ce

Please sign in to comment.