Show / Hide Table of Contents

Class AdditionalValidationPolicy

Additional JWT validation checks.

Inheritance
object
AdditionalValidationPolicy
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class AdditionalValidationPolicy

Properties

Audiences

Declaration
[JsonProperty(PropertyName = "audiences")]
public List<string> Audiences { get; set; }
Property Value
Type Description
List<string>

The list of intended recipients for the token.

Issuers

Declaration
[JsonProperty(PropertyName = "issuers")]
public List<string> Issuers { get; set; }
Property Value
Type Description
List<string>

A list of parties that could have issued the token.

VerifyClaims

Declaration
[JsonProperty(PropertyName = "verifyClaims")]
public List<JsonWebTokenClaim> VerifyClaims { get; set; }
Property Value
Type Description
List<JsonWebTokenClaim>

A list of claims which should be validated to consider the token valid.

In this article
Back to top