Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Alignment of info, servers objects and security scope names #114

Merged
merged 5 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions code/API_definitions/kyc-fill-in.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,25 +49,20 @@ info:

It is important to remark that in cases where personal user data is processed by the API, and users can exercise their rights through mechanisms such as opt-in and/or opt-out, the use of 3-legged access tokens becomes mandatory. This measure ensures that the API remains in strict compliance with user privacy preferences and regulatory obligations, upholding the principles of transparency and user-centric data control.


termsOfService: http://swagger.io/terms/
contact:
email: [email protected]
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html

version: wip
x-camara-commonalities: 0.4.0

servers:
- url: '{apiRoot}/{basePath}'
- url: '{apiRoot}/kyc-fill-in/vwip'

variables:
apiRoot:
default: http://localhost:9091
description: API root
basePath:
default: kyc-fill-in/v0
description: Base path for the KYC-Fill-in API

tags:
- name: Fill-in
Expand All @@ -84,7 +79,7 @@ paths:

security:
- openId:
- know-your-customer:fill-in
- kyc-fill-in:fill-in

parameters:
- $ref: '#/components/parameters/x-correlator'
Expand Down
12 changes: 3 additions & 9 deletions code/API_definitions/kyc-match.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,29 +45,23 @@ info:
It is important to remark that in cases where personal user data is processed by the API, and users can exercise their rights through mechanisms such as opt-in and/or opt-out, the use of 3-legged access tokens becomes mandatory. This measure ensures that the API remains in strict compliance with user privacy preferences and regulatory obligations, upholding the principles of transparency and user-centric data control.


termsOfService: http://swagger.io/terms/
contact:
email: [email protected]
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html

version: wip
x-camara-commonalities: 0.4.0


servers:
- url: '{apiRoot}/{basePath}'
- url: '{apiRoot}/kyc-match/vwip'
variables:
apiRoot:
default: http://localhost:9091
description: API root
basePath:
default: kyc-match/v0
description: Base path for the KYC-Match API

tags:
- name: Match

description: Operations to match a customer identity against the account data bound to their phone number.

paths:
Expand All @@ -81,7 +75,7 @@ paths:

security:
- openId:
- know-your-customer:match
- kyc-match:match


parameters:
Expand Down