UNPKG

@ory/client

Version:

OpenAPI client for @ory/client

36 lines (28 loc) 1.86 kB
# TrustedOAuth2JwtGrantIssuer OAuth2 JWT Bearer Grant Type Issuer Trust Relationship ## 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] **created_at** | **string** | The \"created_at\" indicates, when grant was created. | [optional] [default to undefined] **expires_at** | **string** | The \"expires_at\" indicates, when grant will expire, so we will reject assertion from \"issuer\" targeting \"subject\". | [optional] [default to undefined] **id** | **string** | | [optional] [default to undefined] **issuer** | **string** | The \"issuer\" identifies the principal that issued the JWT assertion (same as \"iss\" claim in JWT). | [optional] [default to undefined] **public_key** | [**TrustedOAuth2JwtGrantJsonWebKey**](TrustedOAuth2JwtGrantJsonWebKey.md) | | [optional] [default to undefined] **scope** | **Array<string>** | The \"scope\" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) | [optional] [default to undefined] **subject** | **string** | The \"subject\" identifies the principal that is the subject of the JWT. | [optional] [default to undefined] ## Example ```typescript import { TrustedOAuth2JwtGrantIssuer } from '@ory/client'; const instance: TrustedOAuth2JwtGrantIssuer = { allow_any_subject, created_at, expires_at, id, issuer, public_key, 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)