Skip to content

Commit

Permalink
feat():sp-settlement-api-participant-identifier-is-not-compatible-wit…
Browse files Browse the repository at this point in the history
…h-fspiop-identifiers

- Solution Proposal for [mojaloop-specification/change-request/91](mojaloop/mojaloop-specification#91)
- Included definition for fspId from the FSPIOP Specification
- Updated swagger to include participant name (i.e. fspId) in the Participant definition
  • Loading branch information
mdebarros committed Sep 7, 2021
1 parent a39a3b3 commit a7d9599
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/interface/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1194,7 +1194,14 @@
"type": "object",
"properties": {
"id": {
"type": "integer"
"type": "integer",
"description": "FSP identifier",
"example": 1
},
"name": {
"$ref": "#/definitions/FspId",
"description": "FSPIOP identifier name",
"example": "payerFsp"
},
"accounts": {
"type": "array",
Expand All @@ -1204,6 +1211,13 @@
}
}
},
"FspId": {
"title": "FspId",
"type": "string",
"minLength": 1,
"maxLength": 32,
"description": "FSP identifier"
},
"Settlements": {
"type": "array",
"items": {
Expand Down

0 comments on commit a7d9599

Please sign in to comment.