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