IntrospectionResponse
Defined in: packages/core/src/types.ts:151
Token introspection response as defined in RFC 7662 Section 2.2.
Properties
Section titled “Properties”active
Section titled “active”active:
boolean
Defined in: packages/core/src/types.ts:153
Whether the token is currently active.
optionalaud?:string
Defined in: packages/core/src/types.ts:169
Audience the token is intended for.
client_id?
Section titled “client_id?”
optionalclient_id?:string
Defined in: packages/core/src/types.ts:157
Client identifier for the token.
optionalexp?:number
Defined in: packages/core/src/types.ts:163
Expiration time as a Unix timestamp in seconds (RFC 7662 Section 2.2).
optionaliat?:number
Defined in: packages/core/src/types.ts:165
Issued-at time as a Unix timestamp in seconds.
optionaliss?:string
Defined in: packages/core/src/types.ts:171
Issuer of the token.
scope?
Section titled “scope?”
optionalscope?:string
Defined in: packages/core/src/types.ts:155
Space-delimited scopes associated with the token.
optionalsub?:string
Defined in: packages/core/src/types.ts:167
Subject of the token.
token_type?
Section titled “token_type?”
optionaltoken_type?:string
Defined in: packages/core/src/types.ts:161
Token type (e.g., "Bearer").
username?
Section titled “username?”
optionalusername?:string
Defined in: packages/core/src/types.ts:159
Human-readable identifier for the resource owner.