The following example sets a UDT employee address to a default if the inserted address is null.
CREATE TRIGGER DefaultEmployeeAddress
BEFORE INSERT ON Employee
REFERENCING NEW AS NewRow
FOR EACH ROW
WHEN (NewRow.address IS NULL)
SET NewRow.address =
address().street('17095 Via Del Campo').zip('92127');