I'm getting the error: column "assigned_techs" is of type jsonb but expression is of type integer[] Hint: You will need to rewrite or cast the expression.
with the postregsql query: INSERT INTO tickets (po_number, sow, eta, assigned_techs, customerID, siteCompanyID, siteID, status, projectCode)
VALUES (
{{ticketPO.text}},
{{ticketSOW.text}},
{{ticketDateTime.formattedDate}},
{{AssignTechsMS.selectedOptionValues}},
{{CustList.selectedOptionValue}},
{{SiteCompanyList.selectedOptionValue}},
{{SiteList.selectedOptionValue}},
{{statusSelect.selectedOptionValue}},
{{projectSelect.selectedOptionLabel}}
);