Hi Team, I have one json_array_t(variable =ARR) with value given below and I want to make one json data type(variable=FINAL_J) using this value and adding one key to the array .Could you please help me understand which json data type to be used here and how to create that? Will it be json_element_t?
ARR := JSON_ARRAY_T('[{"Address1":"3121,"Address2":"Suite 301"},{"Address1":"3121","Address2":"Suite 301"}]');
FINAL_J = '{"distributors":[{"Address1":"3121,"Address2":"Suite 301"},{"Address1":"3121","Address2":"Suite 301"}] }'