Bulk tags creation in aem from json
Hello,
I have this service creation requirement of tags creation.
i am using aem 6.5 version.
we have data in nested json format for creating tags.
eg:
{
"abc":{
"jcr:title":"Abc",
"pqr":{
"jcr:title":"PQR"
},
"xyz":{
"jcr:title":"XYZ"
}
}
}
from this json, my requirement is to create abc as parent tag then its title property. Child element of abc as pqr and xyz and in some scenarios we might have child elements of abc node as well
is it possible to create such tags hierarchy in aem under /content/cq:tags
please help.
