{ "$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 } } }