Module Values.JwtValidationActionAdditionalClaimSource

Information about an additional claim to validate.

Sourcetype nonrec t = {
  1. format : JwtValidationActionAdditionalClaimFormatEnum.t;
    (*

    The format of the claim value.

    *)
  2. name : JwtValidationActionAdditionalClaimName.t;
    (*

    The name of the claim. You can't specify exp, iss, nbf, or iat because we validate them by default.

    *)
  3. values : JwtValidationActionAdditionalClaimValues.t;
    (*

    The claim value. The maximum size of the list is 10. Each value can be up to 256 characters in length. If the format is space-separated-values, the values can't include spaces.

    *)
}
Sourceval context_ : string
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of JwtValidationActionAdditionalClaimValue.t ] list | `String of JwtValidationActionAdditionalClaimName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t