"{\"t_in\":[0],\"t_out\":[1]}"
create table t (f jsonb);
insert into t values ('{"t_in":[0],"t_out":[1]}');
# table t;
f
-----------------------------
{"t_in": [0], "t_out": [1]}
# select f->'t_in' from t;
?column?
----------
[0]
(1 row)
select '{"t_in":[0],"t_out":[1]}'::jsonb->'t_in';