yugabyte=# INSERT INTO emp (id, name, attributes)
yugabyte-# VALUES (1,
yugabyte(# 'Jim',
yugabyte(# ('"age" => "43",
yugabyte'# "salary" => "100000",
yugabyte'# "hire_date" => "03/19/2021"')
yugabyte(# );
INSERT 0 1
yugabyte=# SELECT * FROM emp;
id | name | attributes
----+------+------------------------------------------------------------
1 | Jim | "age"=>"43", "salary"=>"100000", "hire_date"=>"03/19/2021"
(1 row)