I have a JSON object similar to this one:
{ \"name\": \"Cain\", \"parents\": { \"mother\" : \"Eve\", \"father\" : \"Adam\" } }
No
More recently, gjson supports selection of nested JSON properties.
name := gjson.Get(json, "name") mother := gjson.Get(json, "parents.mother")