Auth0 · Schema

FlowActionJwtSignJwtParams

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection_id string
payload object
subject string
issuer string
audience string
expires_in string
View JSON Schema on GitHub

JSON Schema

auth0-flowactionjwtsignjwtparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlowActionJwtSignJwtParams",
  "title": "FlowActionJwtSignJwtParams",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection_id"
  ],
  "properties": {
    "connection_id": {
      "type": "string",
      "maxLength": 30,
      "format": "flows-vault-connections-id"
    },
    "payload": {
      "$ref": "#/components/schemas/FlowActionJwtSignJwtParamsPayload"
    },
    "subject": {
      "type": "string",
      "maxLength": 100
    },
    "issuer": {
      "type": "string",
      "maxLength": 100
    },
    "audience": {
      "type": "string",
      "maxLength": 100
    },
    "expires_in": {
      "type": "string",
      "maxLength": 25
    }
  }
}