-
Notifications
You must be signed in to change notification settings - Fork 34
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
feat: add gnap error response schema to spec #519
Open
njlie
wants to merge
3
commits into
main
Choose a base branch
from
nl/518/gnap-errors
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,10 +74,22 @@ paths: | |
uri: 'https://auth.rafiki.money/continue/4CF492MLVMSW9MKMXKHQ' | ||
'400': | ||
description: Bad Request | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'401': | ||
description: Unauthorized | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'500': | ||
description: Internal Server Error | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
requestBody: | ||
content: | ||
application/json: | ||
|
@@ -198,10 +210,22 @@ paths: | |
wait: 30 | ||
'400': | ||
description: Bad Request | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'401': | ||
description: Unauthorized | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'404': | ||
description: Not Found | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
requestBody: | ||
content: | ||
application/json: | ||
|
@@ -228,10 +252,22 @@ paths: | |
description: No Content | ||
'400': | ||
description: Bad Request | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'401': | ||
description: Unauthorized | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'404': | ||
description: Not Found | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
description: Cancel a grant request or delete a grant client side. | ||
tags: | ||
- grant | ||
|
@@ -279,10 +315,22 @@ paths: | |
assetScale: 2 | ||
'400': | ||
description: Bad Request | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'401': | ||
description: Unauthorized | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'404': | ||
description: Not Found | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
description: Management endpoint to rotate access token. | ||
tags: | ||
- token | ||
|
@@ -295,8 +343,16 @@ paths: | |
description: No Content | ||
'400': | ||
description: Bad Request | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
'401': | ||
description: Unauthorized | ||
content: | ||
application/json: | ||
schema: | ||
$ref: '#/components/schemas/gnap-error' | ||
tags: | ||
- token | ||
components: | ||
|
@@ -532,6 +588,26 @@ components: | |
- debitAmount | ||
- required: | ||
- receiveAmount | ||
gnap-error: | ||
type: object | ||
properties: | ||
error: | ||
type: object | ||
properties: | ||
description: | ||
type: string | ||
code: | ||
type: string | ||
enum: | ||
- invalid_request | ||
- invalid_client | ||
- invalid_interaction | ||
- invalid_rotation | ||
- invalid_continuation | ||
- user_denied | ||
- request_denied | ||
- unknown_interaction | ||
- too_fast | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think |
||
securitySchemes: | ||
GNAP: | ||
name: Authorization | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what do you think of having separate objects per error, and then using specific ones per-response?
e.g. we wouldn't have
too_fast
in a normal grant request, just for grant continuation.Maybe that is too specific, but curious to hear your opinion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I considered that, but it felt at times overly granular to have a schema for an error that was only referenced once -
too_fast
is a pretty good example of that, as it's only thrown by the grant continuation endpoint.In hindsight though, I think it would be more useful to use the specific ones per-response. Biggest reason to me being that these routes may throw the same http code for different reasons, in particular 401 could be thrown by the signature middleware or the actual business logic...