Auth0 · Schema

FlowActionJwtVerifyJwtParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
token string
audience string
issuer string
View JSON Schema on GitHub

JSON Schema

auth0-flowactionjwtverifyjwtparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionJwtVerifyJwtParams",
  "title": "FlowActionJwtVerifyJwtParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id",
    "token"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "token": {
      "type": "string",
      "maxLength": 100
    },
    "audience": {
      "type": "string",
      "maxLength": 500
    },
    "issuer": {
      "type": "string",
      "maxLength": 500
    }
  }
}