Variable $OauthProfileResourceServerRequiredClaimConst

$OauthProfileResourceServerRequiredClaim: {
    properties: {
        oauthProfileName: {
            description: "The name of the OAuth profile.";
            type: "string";
        };
        resourceServerRequiredClaimName: {
            description: "The name of the access token claim to verify.";
            type: "string";
        };
        resourceServerRequiredClaimValue: {
            description: "The required claim value, which must be a string containing a valid JSON value.";
            type: "string";
        };
    };
} = ...

Type declaration

  • properties: {
        oauthProfileName: {
            description: "The name of the OAuth profile.";
            type: "string";
        };
        resourceServerRequiredClaimName: {
            description: "The name of the access token claim to verify.";
            type: "string";
        };
        resourceServerRequiredClaimValue: {
            description: "The required claim value, which must be a string containing a valid JSON value.";
            type: "string";
        };
    }
    • oauthProfileName: {
          description: "The name of the OAuth profile.";
          type: "string";
      }
      • description: "The name of the OAuth profile."
      • type: "string"
    • resourceServerRequiredClaimName: {
          description: "The name of the access token claim to verify.";
          type: "string";
      }
      • description: "The name of the access token claim to verify."
      • type: "string"
    • resourceServerRequiredClaimValue: {
          description: "The required claim value, which must be a string containing a valid JSON value.";
          type: "string";
      }
      • description: "The required claim value, which must be a string containing a valid JSON value."
      • type: "string"