Hi i have this structure in my column jsonb in postgres
{
"cronograma_actividades": {
"section_template_id": 5,
"ciclos": [
{
"ciclo_verano": {
"nro_semanas_max": 9,
"programas": [
{
"pregrado": {
"modalidades": [
{
"type": "presencial",
"codigo_formula": "FOR2234",
"unidades": [
{
"nro": 1,
"titulo": "Unidad aprendi",
"logro": "Logro de una unidad es texto",
"semanas": [
]
},
{}
]
},
]
}
So how I can update the field codigo_formula with postgres this column is a jsonb type I find the json_object_set_path , but i dont know how acces to deep tree
Regards