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

fix tokenIntrospection response description #3495

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions docs/_static/auth/v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -592,16 +592,16 @@ components:
$ref: '#/components/schemas/cnf'
iss:
type: string
description: Contains the DID of the authorizer. Should be equal to 'sub'
example: did:web:example.com:resource-owner
description: Issuer URL of the authorizer.
example: https://example.com/oauth2/authorizer
aud:
type: string
description: RFC7662 - Service-specific string identifier or list of string identifiers representing the intended audience for this token, as defined in JWT [RFC7519].
example: "https://target_token_endpoint"
client_id:
type: string
description: The client (DID) the access token was issued to
example: did:web:example.com:client
description: The client identity the access token was issued to. Since the verifiable presentation is used to grant access, the client_id is just a reflection of the client_id in the access token request.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: The client identity the access token was issued to. Since the verifiable presentation is used to grant access, the client_id is just a reflection of the client_id in the access token request.
description: The client identity the access token was issued to. Since the Verifiable Presentation is used to grant access, the client_id reflects the client_id in the access token request.

example: https://example.com/oauth2/client
exp:
type: integer
description: Expiration date in seconds since UNIX epoch
Expand Down
Loading