Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 2.53 KB

OAuth2TokenIntrospection.md

File metadata and controls

20 lines (16 loc) · 2.53 KB

OAuth2TokenIntrospection

Properties

Name Type Description Notes
Active bool Active is a boolean indicator of whether or not the presented token is currently active. The specifics of a token's "active" state will vary depending on the implementation of the authorization server and the information it keeps about its tokens, but a "true" value return for the "active" property will generally indicate that a given token has been issued by this authorization server, has not been revoked by the resource owner, and is within its given time window of validity (e.g., after its issuance time and before its expiration time). [optional] [default to null]
Aud string ClientID is a service-specific string identifier or list of string identifiers representing the intended audience for this token. [optional] [default to null]
ClientId string ClientID is aclient identifier for the OAuth 2.0 client that requested this token. [optional] [default to null]
Exp int64 Expires at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token will expire. [optional] [default to null]
Ext map[string]interface{} Extra is arbitrary data set by the session. [optional] [default to null]
Iat int64 Issued at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token was originally issued. [optional] [default to null]
Iss string Issuer is a string representing the issuer of this token [optional] [default to null]
Nbf int64 NotBefore is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token is not to be used before. [optional] [default to null]
Scope string Scope is a JSON string containing a space-separated list of scopes associated with this token. [optional] [default to null]
Sub string Subject of the token, as defined in JWT [RFC7519]. Usually a machine-readable identifier of the resource owner who authorized this token. [optional] [default to null]
Username string Username is a human-readable identifier for the resource owner who authorized this token. [optional] [default to null]

[Back to Model list] [Back to API list] [Back to README]