UNPKG

@ory/client

Version:

OpenAPI client for @ory/client

32 lines (24 loc) 1.54 kB
# TrustOAuth2JwtGrantIssuer Trust OAuth2 JWT Bearer Grant Type Issuer Request Body ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **allow_any_subject** | **boolean** | The \"allow_any_subject\" indicates that the issuer is allowed to have any principal as the subject of the JWT. | [optional] [default to undefined] **expires_at** | **string** | The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\". | [default to undefined] **issuer** | **string** | The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT). | [default to undefined] **jwk** | [**JsonWebKey**](JsonWebKey.md) | | [default to undefined] **scope** | **Array<string>** | The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) | [default to undefined] **subject** | **string** | The \"subject\" identifies the principal that is the subject of the JWT. | [optional] [default to undefined] ## Example ```typescript import { TrustOAuth2JwtGrantIssuer } from '@ory/client'; const instance: TrustOAuth2JwtGrantIssuer = { allow_any_subject, expires_at, issuer, jwk, scope, subject, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)